*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  line-height: 24px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Libre Franklin", sans-serif;
  color: #747474;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-top: 0;
}

/* h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  line-height: 36px;
}

h3 {
  font-size: 30px;
  line-height: 30px;
}

h4 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

h5 {
  font-size: 14px;
  line-height: 18px;
}

h6 {
  font-size: 12px;
  line-height: 14px;
} */

p:last-child {
  margin-bottom: 0;
}

a,
button {
  color: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a,
button,
img,
input,
span {
  transition: all 0.3s ease 0s;
}

.btn:focus {
  box-shadow: none;
}

*:focus {
  outline: none !important;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/*-- 
      - Common Classes
  -----------------------------------------*/
.container {
  max-width: 1140px;
}

.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
  margin: 0;
}

/*-- 
      - Background color
  -----------------------------------------*/
.bg-white {
  background-color: #ffffff;
}

.bg-light-grey {
  background-color: #f6fafb;
}

.bg-grey {
  background-color: #f8f8f8;
}

.bluewood-bg {
  background: #354b65;
}

/*- Overlay Color BG -*/
.bluewood-bg-overlay {
  position: relative;
}
.bluewood-bg-overlay::before {
  background: rgba(70, 90, 112, 0.9);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.overly-bg-black {
  position: relative;
}
.overly-bg-black::after {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*-- 
      - color
  -----------------------------------------*/
/*-- 
      - Input Placeholder
  -----------------------------------------*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*-- 
      Scroll Up 
  -----------------------------------------*/
#scrollUp {
  background: #242424 none repeat scroll 0 0;
  bottom: 85px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  height: 45px;
  line-height: 39px;
  position: fixed;
  right: 12px;
  text-align: center;
  width: 45px;
  z-index: 9999;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#scrollUp:hover i {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

/*-- 
      - Main Wrapper
  -----------------------------------------*/
.main-wrapper.header-transparent {
  padding: 0 !important;
  margin: 0 !important;
}

/*-- 
      - Section Padding
  -------------------------------------*/
.section-ptb {
  padding: 100px 0;
}

.section-pt {
  padding-top: 100px;
}

.section-pt-70 {
  padding-top: 70px;
}

.section-pb-70 {
  padding-bottom: 80px;
}

.section-pb {
  padding-bottom: 100px;
}

/* 02. Element */
.button {
  background: #ff6a28;
  border-radius: 16px;
  box-shadow: none;
  color: #ffffff;
  display: inline-block;
  height: 33px;
  line-height: 33px;
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 12px;
}

/* 2. Home 1 Header css here */
/* 03. header css here */

.sticky-header.sticky {
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
  /*background: rgba(255, 255, 255, 0.9);*/
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 900ms;
  animation-duration: 900ms;
  -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #747474;
  top: 0;
}
.off_canvars_overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.offcanvas_menu {
  display: none;
}

.offcanvas_menu .container {
  position: relative;
}

.offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 99;
  top: 0;
  height: 100vh;
  transition: 0.5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 20px 30px;
  overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
  margin-left: 0;
}
.offcanvas_menu_wrapper .slinky-theme-default {
  background: inherit;
  min-height: 300px;
  overflow-y: auto;
}
.offcanvas_menu_wrapper .welcome_text {
  display: block;
}
.offcanvas_menu_wrapper .welcome_text ul li {
  color: #242424;
  line-height: 20px;
}
.offcanvas_menu_wrapper .welcome_text ul li span {
  color: #242424;
}
.offcanvas_menu_wrapper .top_right {
  display: block;
}
.offcanvas_menu_wrapper .top_right > ul > li {
  padding-left: 10px;
  margin-left: 10px;
}
.offcanvas_menu_wrapper .top_right > ul > li > a {
  color: #242424;
  font-size: 11px;
}
.offcanvas_menu_wrapper .search_bar {
  display: block;
}
.offcanvas_menu_wrapper .cart_area {
  display: flex;
}
.offcanvas_menu_wrapper .contact_phone {
  display: block;
  margin-top: 0;
  margin-bottom: 28px;
}
.offcanvas_menu_wrapper .contact_phone p {
  line-height: 17px;
}

.offcanvas_main_menu > li.menu-item-has-children.menu-open > span.menu-expand {
  transform: rotate(180deg);
}
.offcanvas_main_menu
  > li
  ul
  li.menu-item-has-children.menu-open
  span.menu-expand {
  transform: rotate(180deg);
}

.offcanvas_main_menu li {
  position: relative;
}
.offcanvas_main_menu li:last-child {
  margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}
.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.offcanvas_main_menu li a:hover {
  color: #ff6a28;
}
.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.offcanvas_footer {
  margin-top: 30px;
  padding-bottom: 50px;
  text-align: center;
}
.offcanvas_footer span a {
  font-size: 14px;
}
.offcanvas_footer span a:hover {
  color: #ff6a28;
}
.offcanvas_footer ul {
  margin-top: 20px;
}
.offcanvas_footer ul li {
  display: inline-block;
  margin-right: 4px;
}
.offcanvas_footer ul li:last-child {
  margin-right: 0;
}
.offcanvas_footer ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 13px;
  color: #ffffff;
}
.offcanvas_footer ul li.facebook a {
  background: #3c5b9b;
}
.offcanvas_footer ul li.facebook a:hover {
  background: #ff6a28;
}
.offcanvas_footer ul li.twitter a {
  background: #1da1f2;
}
.offcanvas_footer ul li.twitter a:hover {
  background: #ff6a28;
}
.offcanvas_footer ul li.pinterest a {
  background: #bd081b;
}
.offcanvas_footer ul li.pinterest a:hover {
  background: #ff6a28;
}
.offcanvas_footer ul li.google-plus a {
  background: #dd4d42;
}
.offcanvas_footer ul li.google-plus a:hover {
  background: #ff6a28;
}
.offcanvas_footer ul li.linkedin a {
  background: #010103;
}
.offcanvas_footer ul li.linkedin a:hover {
  background: #ff6a28;
}

.slinky-theme-default a:not(.back) {
  padding: 10px 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}
.slinky-theme-default a:not(.back):hover {
  background: inherit;
  color: #ff6a28;
}

.canvas_close {
  position: absolute;
  top: 10px;
  right: 13px;
}
.canvas_close a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: block;
  text-align: center;
  line-height: 31px;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.canvas_close a:hover {
  background: #ff6a28;
  border-color: #ff6a28;
  color: #fff;
}

.canvas_open {
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 9;
}

.canvas_open a {
  font-size: 30px;
  color: #747474;
  width: 43px;
  height: 41px;
  display: block;
  line-height: 40px;
  text-align: center;
  border: 1px solid #747474;
  border-radius: 3px;
}

.canvas_open a:hover {
  color: #ff6a28;
  border-color: #ff6a28;
}

.offcanvas_four .canvas_open a {
  color: #fff;
  border: 1px solid #fff;
}
.offcanvas_four .canvas_open a:hover {
  color: #ff6a28;
  border-color: #ff6a28;
}

.header_top {
  background: #242424;
  padding: 7px 0;
}

.welcome_text ul li {
  display: inline-block;
  font-size: 12px;
  color: #a9a9a9;
  line-height: 26px;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}

.welcome_text ul li::before {
  content: "";
  height: 16px;
  width: 1px;
  background: #a9a9a9;
  position: absolute;
  top: 7px;
  right: 0;
}

.welcome_text ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.welcome_text ul li:last-child::before {
  display: none;
}
.welcome_text ul li span {
  color: #fff;
}
.top_right {
  text-align: right;
}

.top_right > ul > li {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}

.top_right > ul > li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.top_right > ul > li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: #999;
  top: 6px;
  left: 0px;
}
.top_right > ul > li:first-child::before {
  display: none;
}
.top_right > ul > li > a {
  color: #fff;
  text-transform: capitalize;
  line-height: 26px;
  font-size: 12px;
  cursor: pointer;
  display: block;
  font-weight: 400;
}
.top_right > ul > li > a i {
  margin-left: 5px;
  font-size: 10px;
  color: #6c6c6c;
  pointer-events: none;
}
.top_right > ul > li > a:hover {
  color: #ff6a28;
}
.top_right > ul > li > a:not([href]):not([tabindex]) {
  color: #fff;
}

.top_right > ul > li:hover a:not([href]):not([tabindex]) {
  color: #ff6a28;
}

.dropdown_currency,
.dropdown_language,
.dropdown_links {
  position: absolute;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-width: 140px;
  text-align: center;
  top: 127%;
  max-height: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  right: 0;
  z-index: 9999;
  padding: 0 15px;
}

.dropdown_currency li {
  border-bottom: 1px solid #ddd;
  line-height: 36px;
}
.dropdown_currency li:last-child {
  border-bottom: 0;
}
.dropdown_currency li a {
  text-transform: capitalize;
  display: block;
  font-size: 12px;
  color: #747474;
  text-align: left;
}
.dropdown_currency li a:hover {
  color: #ff6a28;
}

.dropdown_language li {
  border-bottom: 1px solid #ddd;
  line-height: 36px;
}
.dropdown_language li:last-child {
  border-bottom: 0;
}
.dropdown_language li a {
  text-transform: capitalize;
  display: block;
  font-size: 12px;
  color: #747474;
  text-align: left;
}
.dropdown_language li a:hover {
  color: #ff6a28;
}

.dropdown_links li {
  border-bottom: 1px solid #ddd;
  line-height: 36px;
}
.dropdown_links li:last-child {
  border-bottom: 0;
}
.dropdown_links li a {
  text-transform: capitalize;
  display: block;
  font-size: 12px;
  color: #747474;
  text-align: left;
}
.dropdown_links li a:hover {
  color: #ff6a28;
}

.dropdown_currency.open,
.dropdown_language.open,
.dropdown_links.open {
  max-height: 150px;
}

.top_right ul li a img {
  margin-right: 5px;
}

/*header top css end*/
/* 2.2 header middel css here */

.header_middel {
  padding: 8px 0;
  background: #CCCCCC;
}
.header{
  position: relative;
}

.logo {
  display: inline-block;
}

.logo_img {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header_middel .logo_text{
  text-align: center;
  /* padding: 20px; */
  color: #11336D;
}


.header_middel .logo_text h1{
  font-family: emoji;
  font-size: 50px;
  margin-bottom: 0;
}


.header_middel .logo_text span{
    display: inline-block;
    height: 1px;
    width: 60%;
    background: #11336D;
    margin: 0;
    padding: 0;
}

.header_middel .logo_text h3{
    font-size: 22px;
    /* line-height: 30px; */
    font-family: emoji;
}







/* 


.header_middel {
  background: #cccccc;
}

.header_middel .logo_text {
  text-align: center;
  padding: 20px;
  color: #11336d;
}

.header_middel .logo_text h1 {
  font-family: emoji;
  font-size: 60px;
}

.header_middel .logo_text span {
  display: inline-block;
  height: 1px;
  width: 60%;
  background: #11336d;
  margin: 20px 0;
}

.header_middel .logo_text h3 {
  font-size: 27px;
  line-height: 30px;
  font-family: emoji;
} */

/*! CSS Used from: http://sms_de.test/css/style.css */

.welcome_text ul li {
  display: inline-block;
  font-size: 12px;
  color: #a9a9a9;
  line-height: 26px;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}
.welcome_text ul li::before {
  content: "";
  height: 16px;
  width: 1px;
  background: #a9a9a9;
  position: absolute;
  top: 7px;
  right: 0;
}
.welcome_text ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.welcome_text ul li:last-child::before {
  display: none;
}
.welcome_text ul li span {
  color: #fff;
}
.header_middel {
  padding: 8px 0;
  background: #CCCCCC;
}
.header{
  position: relative;
}

.logo {
  display: inline-block;
}

.logo_img {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header_middel .logo_text{
  text-align: center;
  /* padding: 20px; */
  color: #11336D;
}


.header_middel .logo_text h1{
  font-family: emoji;
  font-size: 50px;
  margin-bottom: 0;
}


.header_middel .logo_text span{
    display: inline-block;
    height: 1px;
    width: 60%;
    background: #11336D;
    margin: 0;
    padding: 0;
}

.header_middel .logo_text h3{
    font-size: 22px;
    /* line-height: 30px; */
    font-family: emoji;
}

.header_static {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_menu nav > ul > li {
  display: inline-block;
  position: relative;
}
.main_menu nav > ul > li > a {
  display: block;
  padding: 15px 15px;
  color: #242424;
  font-size: 13px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 500;
}
.main_menu nav > ul > li > a i {
  margin-left: 2px;
}
.main_menu nav > ul > li:hover > a {
  color: #ff6a28;
}
.main_menu nav > ul > li.active > a {
  color: #ff6a28;
}
.main_menu nav > ul > li:first-child a {
  padding-left: 0;
}
.main_menu nav > ul > li ul.sub_menu {
  position: absolute;
  min-width: 220px;
  padding: 10px 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9;
  top: 140%;
}
.main_menu nav ul li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main_menu nav ul li ul li a:hover {
  color: #ff6a28;
}
.main_menu nav > ul > li > ul > li > a {
  color: #444444;
  font-size: 13px;
  text-transform: capitalize;
  line-height: 18px;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.main_menu nav > ul > li > ul.sub_menu > li:last-child > a {
  margin-bottom: 0;
}
.header_bottom {
  box-shadow: 0px 7px 10px -6px;
}

.single_slider {
  height: 500px;
  /* margin-bottom: 100px; */
}

.single_slider {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

.single_slider .row {
  height: 750px;
}



.single_slider .slider_content.content_one {
  margin-left: 13%;
  width: 550px;
  text-align: center;
}


.single_slider .slider_content.content_two {
  margin-left: 15%;
  width: 550px;
  text-align: center;
}


.single_slider .slider_content.content_three {
  text-align: center;
}
.single_slider .slider_content.content_three img {
  width: 600px;
  margin: 0 auto;
}


.active .slider_content img {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}


.slider_style .slider_content p {
  font-size: 16px;
  color: #fff;
  margin-top: 22px;
}

.slider_style .slider_content a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}
.slider_style .slider_content a:hover {
  color: #ff6a28;
  border-color: #ff6a28;
}



.slider_area.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}
.slider_area.owl-carousel .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  font-size: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transition: .3s;
  color: #5f5f5f;
  left: 40px;
  opacity: 0;
  visibility: hidden;
}

.slider_area.owl-carousel .owl-nav div:hover {
  color: #fff;
}
.slider_area.owl-carousel .owl-nav div.owl-next {
  right: 40px;
  left: auto;
}

.slider_area.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.slider_area.owl-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 3px;
  display: inline-block;
  background: #ddd;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider_area.owl-carousel .owl-dots .owl-dot.active {
  background: #ff6a28;
}
.section_title {
  text-align: center;
  margin-bottom: 28px;
}
.section_title h2 {
  font-size: 30px;
  color: #242424;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 11px;
  line-height: 38px;
  letter-spacing: -0.05em;
}
.section_title p {
  margin-bottom: 0;
}
.message {
  padding: 0 120px 54px;
}
.gallery_section {
  padding-bottom: 91px;
}
.gallery_section .section_title {
  margin-bottom: 49px;
}
.blog_wrapper {
  padding-bottom: 95px;
  border-bottom: 1px solid #ddd;
}
.blog_wrapper .col-lg-4 {
  flex: 0 0 100%;
  width: 100%;
}
.blog_thumb {
  position: relative;
  margin-bottom: 22px;
  width: 85%;
  height: 300px;
  margin: auto;
}
.blog_thumb > a {
  display: block;
  height: 100%;
  width: 100%;
}
.blog_thumb > a img {
  height: 100%;
}
.blog_thumb:hover::before {
  opacity: 1;
  visibility: visible;
}
.blog_thumb:hover .blog_icon {
  opacity: 1;
  visibility: visible;
}
.blog_thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.blog_icon {
  position: absolute;
  position: absolute;
  top: 48%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.blog_icon a {
  width: 52px;
  height: 52px;
  background: #ff6a28;
  position: relative;
  display: inline-block;
}
.blog_icon a::before {
  position: absolute;
  content: "\e032";
  font-family: "simple-line-icons";
  font-size: 23px;
  line-height: 52px;
  color: #fff;
  width: 100%;
  text-align: center;
  left: 0;
}
.blog_icon a::after {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  border: 1px solid #ff6a28;
  left: -6px;
  top: 4px;
}
.blog_wrapper:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  left: -25px;
}
.blog_wrapper .owl-nav > div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  border: 0;
  background: inherit;
  font-size: 50px;
  z-index: 9;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #a9a9a9;
}
.blog_wrapper .owl-nav > div:hover {
  color: #ff6a28;
}

.sidebar_widget h3.widget_title {
  border-bottom: 1px solid #ddd;
  color: #fff;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  background: #11336d;
}
.widget_categories, .widget_categories h3{
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.sidebar_widget.widget_categories {
  border: 1px solid #ddd;
  margin-bottom: 39px;
}
.sidebar_widget.widget_categories h3.widget_title {
  padding: 12px 15px;
}
.sidebar_widget.widget_categories ul {
  padding: 0 0 19px 15px;
}
.sidebar_widget.widget_categories ul li {
  line-height: 30px;
}
.sidebar_widget.widget_categories ul li a {
  color: #000;
}
.sidebar_widget.widget_categories ul li a:hover {
  color: #ff6a28;
}
.sidebar_widget2 h3.widget_title {
  border-bottom: 1px solid #ddd;
  color: #fff;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  background: #11336d;
}
.sidebar_widget2.widget_categories {
  border: 1px solid #ddd;
  margin-bottom: 39px;
}
.sidebar_widget2.widget_categories h3.widget_title {
  padding: 12px 15px;
}
.sidebar_widget2.widget_categories ul {
  padding: 0;
}
.sidebar_widget2.widget_categories ul li {
  line-height: 30px;
}
.sidebar_widget2.widget_categories ul li a {
  color: #000;
  width: 100%;
  display: inline-block;
  padding: 10px 10px 10px 10px;
  margin: 0px 0px;
  box-shadow: 2px 5px 14px -12px;
  font-size: 16px;
}
.sidebar_widget2.widget_categories ul li a:hover {
  color: #ff6a28;
}
.sidebar_widget2.widget_categories ul li a i {
  color: #ff6a28;
}

/*! CSS Used from: http://sms_de.test/css/style2.css */
.bistarito {
  font-size: 16px;
  font-weight: 700;
  height: 38px;
  line-height: 18px;
  padding: 10px 20px;
  color: #ff6a28;
  text-transform: uppercase;
}
.body_widget3 h3.widget_title {
  border-bottom: 1px solid #ddd;
  color: #11336d;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  font-weight: 600;
}
.body_widget3.widget_categories {
  border: 1px solid #ddd;
  margin-bottom: 39px;
  overflow: hidden;
}
.body_widget3 .full_body_tt {
  padding: 20px 20px;
}
.body_widget3 .widget_body_left {
  width: 30%;
  float: left;
}
.body_widget3 .widget_body_left .widget_body_left_img {
  width: 85%;
  margin: auto;
}
.body_widget3 .widget_body_left .widget_body_left_img img {
  width: 100%;
  height: 100%;
}
.body_widget3 .widget_body_right {
  width: 70%;
  float: right;
}
.body_widget3.widget_categories h3.widget_title {
  padding: 12px 15px;
}
.body_widget3.widget_categories ul {
  padding: 0 0 19px 15px;
}
.body_widget3.widget_categories ul li {
  line-height: 30px;
}
.body_widget3.widget_categories ul li a {
  color: #000;
  font-size: 16px;
}
.body_widget3.widget_categories ul li a:hover {
  color: #ff6a28;
}
/* 
.footer_top {
  background: #11336d;
  padding: 60px 0;
}
.footer_top p, .footer_top a {
  color: rgb(209, 209, 209);
}

.f_title {
  position: relative;
}
.f_title::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 3px;
  width: 70px;
  background: #FF6A28;
}

.widgets_container h3 {
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-weight: 600;
  color: #ffffff;
}
.footer_menu ul li a {
  display: block;
  font-weight: 400;
  line-height: 30px;
}
.footer_menu ul li a:hover {
  color: #ff6a28;
}
.footer_contact p {
  margin-bottom: 0;
  line-height: 30px;
}
.footer_contact ul {
  margin-top: 10px;
}
.footer_contact ul li {
  display: inline-block;
  margin-right: 7px;
}
.footer_contact ul li:last-child {
  margin-right: 0;
}
.footer_contact ul li a {
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1e1e1;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  display: block;
}
.footer_contact ul li a:hover {
  background: #242424;
  color: #fff;
  border-color: #242424;
}

.footer_bottom {
  padding: 18px 0;
  background: #FF6A28;
  color: #fff;
  font-size: 16px;
}
.copyright_area p {
  text-transform: capitalize;
} */


/* ==================== Counter start ==================== */
@import url(//fonts.googleapis.com/css?family=Montserrat:400,700);
.counter-area {
	padding: 30px 0;
	text-align: center;
	background: #63abdf;
}
.counter-area .heading{
	font-size: 35px;
	border-bottom: 2px solid blue;
	display: inline-block;
	margin-bottom: 45px;
}
.counter {
  animation-duration: 1s;
  animation-delay: 0s;
}
.rating-area {
	padding: 20px 0 20px 0;
	background: #fff;
}
.rating-area h3 {
	font-size: 18px;
	color: #c89666;
	/* font-family: GothamMed; */
	/* border-right: 1px solid; */
	text-align: center;
	position: unset;
}
.animate_line {
	position: relative;
	z-index: 0;
}
.area-boder-right{
	border-right: 2px solid #E8E8E8;
}
.fa-area-boder-right {
	font-size: 30px !important;
	color: #003066;
	margin-bottom: 10px;
}
.area-boder-margin-top h1{
	margin-top: 15px;
	font-size: 36px;
}
.color-reject{
	color: #9b2335 !important;
}
/* ==================== Counter end ==================== */

/* ==================== FOOTER ==================== */
.social_icon p {
  margin-bottom: 0;
  line-height: 30px;
}
.social_icon ul {
  margin-top: 10px;
}
.social_icon ul li {
  display: inline-block;
  margin-right: 7px;
}
.social_icon ul li:last-child {
  margin-right: 0;
}
.social_icon ul li a {
  /* color: #b2b2b2; */
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1e1e1;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  display: block;
}
.social_icon ul li a:hover {
  background: #242424;
  color: #fff;
  border-color: #242424;
}

footer.construct {
	background: #003066;
	padding: 40px 0 0px;
	display: block;
}
footer.construct .container {
	border-top: 0;
}
footer.construct .widget h3 {
	color: #EFA600;
	border-color: #ffffff;
}
footer .widget h3 {
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	padding-bottom: 15px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ffffff;
}
footer.construct .widget .our-services li a {
	font-size: 14px;
	color: #fff;
	text-transform: capitalize;
	line-height: 24px;
	font-family: 'Open Sans';
	border-bottom: 1px solid #ffffff;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	transition: all .3s ease;
	text-decoration: none;
}
a, a:hover, a:active, a:focus {
	text-decoration: none;
	outline: none;
}
footer.construct .widget .contact-info li .fa {
	color: #fff;
}
footer .widget .contact-info li .fa {
	font-size: 19px;
	margin-right: 10px;
}
footer .widget .contact-info li {
	font-size: 14px;
	line-height: 26px;
	color: #7e959e;
	margin-bottom: 8px;
	border-bottom: 1px solid #0E3C4F;
	padding-bottom: 8px;
}
footer.construct .widget .contact-info li span {
	line-height: 21px;
	padding-left: 15px;
	font-family: 'Open Sans';
}
footer.construct .widget .contact-info li i, footer.construct .widget .contact-info li span {
	display: table-cell;
	vertical-align: middle;
}
footer.construct .widget .contact-info li span a{
	text-decoration: none;
	color: #fff;
}
.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
}
footer.construct .widget .our-services li a::before {
	font-family: 'FontAwesome';
	content: '\f105';
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	margin-right: 15px;
	transition: all .3s ease;
}
footer.construct .widget p, footer.construct .widget .popular-post li a h5, footer.construct .widget .contact-info li {
	color: #fff;
}
footer .widget p {
	font-size: 14px;
	line-height: 24px;
	color: #7e959e;
}
footer.construct .widget .our-services li:last-child a {
	border-bottom: 0;
}
footer .widget .contact-info li:last-child {
	border: none;
}
.contact-info p {
	margin-bottom: 0;
}
p {
	font-family: 'Open Sans';
	margin: 0 0 10px;
}
.text {
	text-align: justify;
}
ul, li {
	list-style: none;
}
b, strong {
	font-weight: 700;
}
/* ==================== Bottom Bar ==================== */
#bottom-bar.construct {
	background: #FF6A28;
}
.pull-left {
	float: left !important;
}
#bottom-bar.construct .container p {
	color: #fff;
}
.pull-right p a{
	float: right !important;
	color: #fff;
}
#bottom-bar .container p {
	margin-bottom: 0;
	color: #185166;
	font-size: 14px;
	line-height: 60px;
}


