/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
      color: rgb(108 92 10);
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
         color: rgb(108 92 10);
}

p{
	       color: rgb(108 92 10);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
     background: #956f00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: black;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
     background: linear-gradient(180deg, black, transparent);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
     max-height: 77px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 23px 10px 23px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e1ae41;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
     padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #181818;
    display: block;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #af9032;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
     display: block;
    position: absolute;
    top: 55px;
    right: 16px;
    /* bottom: 15px; */
    /* left: 15px; */
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    width: 200px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

.mainslider img{
	    height: 600px;
    object-fit: cover;
    object-position: center center;
}
.mainslider .item{
	position: relative;
}
.mainslider .item-slider-text{
	position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 95px;
}
.mainslider .item-slider-text h2{
	    color: white;
    font-size: 52px;
    font-weight: 400;
}
.mainslider .item-slider-text h2 span{
	display: block;
    font-size: 41px;
    font-family: system-ui;
    font-weight: 200;
    margin-top: 16px;
}
#featured__wedding {
    padding: 75px 0;
}
#featured__wedding .featured_box{
	    text-align: center;
}
#featured__wedding .featured_box img{
	height: 460px;
    object-fit: cover;
    object-position: center 0;
    width: 100%;
}
.more-btn{
	    text-align: center;
    margin-top: 8px;
}
.more-btn a{
	text-align: center;
    color: #644e31;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.09em;
    font-weight: 300;
	transition: .4s;
}
.more-btn a:hover{
	text-align: center;
    color: #644e31;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.09em;
    font-weight: 300;
    margin-left: 6px;
    transition: .4s;
}
.section-title{
    margin-bottom: 35px;
}
.section-title h2{
	      font-size: 33px;
    font-weight: 400;
    /* text-transform: uppercase; */
    position: relative;
}
.section-title h2 span{
	font-family: "Jost", sans-serif;
    font-weight: 500;
}
.stories-slider-text:before{
    content: "\f10d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #5a3b02;
    font-size: 50px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
}
.bg-grey{
	  background: #d9d1c7;
}
.bg-dark-grey{
	background: #cbba9c;
}
#stories_test_success{
    padding: 75px 0;
	position:relative;
}
#stories_test_success .stories img{
	    width: 100%;
    height: 371px;
    object-fit: cover;
}
#stories_test_success .item{
	display: inline-flex;
    margin: 30px 0;
}
#stories_test_success h3{
	    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    position: relative;
    display: block;
    overflow: hidden;
	font-family: "Jost", sans-serif;
}
#stories_test_success h3:after{
	content: '';
    position: absolute;
    background: #76633e;
    height: 1px;
    width: 100%;
    top: 9px;
    margin-left: 9px;
}
#stories_test_success .stories-slider-text{
	margin-right: 50px;
    text-align: right;
    padding: 90px 0;
	position: relative;
}
#stories_test_success .stories-slider-text h2{
	color: #5c3c03;
    font-weight: 400;
    font-size: 27px;
	font-family: "Jost", sans-serif;
}
#stories_test_success .stories-slider-text p{
	font-size: 15px;
    font-weight: 300;
    margin-bottom: 16px;
}
#stories_test_success .stories-slider-text .name{
	font-size: 18px;
    text-transform: uppercase;
    color: #5a3b02;
}
.main-btn{
	border: 1px solid rgb(108 92 10 / 53%);
    border-radius: 50px;
    padding: 8px 38px;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.07em;
	transition:.4s;
	color: #5c3d06;
}
.main-btn:hover{
	    border-radius: 50px;
    padding: 8px 38px;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: #9d8736;
    color: white;
    border: 1px solid #9d8736;
	transition:.4s;
}
.stories_btn{
	position: absolute;
    right: 70px;
    bottom: 215px;
}
#featured__categories h2{
   position: relative;
    overflow: hidden;
}
#featured__categories h2:after{
     content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #6c5c0a;
    top: 24px;
    margin-left: 16px;
}
#featured__categories{
	padding: 75px 0;
    position: relative;
}
#featured__categories .featured_box{
	     text-align: center;
    margin-top: 25px;
	    position: relative;
}
#featured__categories .featured_box img{
	    height: 445px;
    width: 100%;
    object-fit: cover;
}
#featured__categories .exp_footer{
	text-align: center;
    border: 1px solid #74695a;
    padding: 6px 0;
    margin-top: -1px;
}
#featured__categories .exp_footer h2{
	margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
    font-family: "Jost", sans-serif;
}
#video__success{
	padding: 75px 0 0;
    position: relative;
}
#video__success img{
      height: 325px;
    width: 100%;
    object-fit: cover;
}


#brands_clients{
	padding: 75px 0;
}
#brands_clients h5{
	    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
#brands_clients h5 span{
	     display: block;
    font-size: 26px;
    margin-top: 11px;
    font-weight: 500;
}
#brands_clients .brands img{
	width: 100%;
    padding: 5px;
    height: 145px;
    object-fit: contain;
}
#meet__our__Team{
	padding: 27px 0;
    position: relative;
}

#meet__our__Team .section-title{
	position: relative;
    z-index: 2;
}
#meet__our__Team h2{
	position: relative;
}
#meet__our__Team h2:after{
	content: '';
    position: absolute;
    background: #6c5c0a;
    height: 1px;
    width: 400px;
    margin-left: -228px;
    top: 47px;
}
#meet__our__Team .team_photo{
	  top: -139px;
	      position: relative;
}
#meet__our__Team .team_photo img{
	    width: 401px;
  
    z-index: 1;
    position: relative;
    animation-delay: 0;
    left: 150px;
}
#meet__our__Team .aboutus_heading{
	    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: #6c5c0a;
}
#meet__our__Team p{
      font-size: 15px;
    font-weight: 300;
}
#latest__news_blogs{
	    overflow: hidden;
}
#latest__news_blogs .blog_post{
	
}
#latest__news_blogs .blog_title{
	    padding: 28% 24px;
}
#latest__news_blogs .blog_post img{
	height: 540px;
    object-fit: cover;
    width: 100%;
}
#footer{
	    background: #544e35;
}
#footer .footer__links{
	padding: 15px 0;
    border-bottom: 1px solid grey;
    border-top: 1px solid grey;
}
#footer .footer__links ul, #footer .footer__social ul{
	    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}
#footer .footer__links ul li{
	display: inline-flex;
}
#footer .footer__links ul li a{
	    color: white;
    text-transform: uppercase;
    margin: 0 28px;
    letter-spacing: 0.05em;
    font-weight: 300;
}
#footer .footer__social{
	    text-align: center;
    padding: 25px 0;
}
#footer .footer__social img{
	width: 257px;
}
#footer .footer__social li{
	    margin-top: 13px;
}
#footer .footer__social li a{
	    color: white;
    margin: 0 20px;
}
#footer .footer__dots i{
color: #a79342;
    font-size: 6px;
    margin: 0 5px;
}
.footer__copyright{
	text-align: center;
    border-top: 1px solid #ffffff42;
    padding: 10px 0;
}
.footer__copyright p{
	    color: white;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
}
.footer__copyright p span{
	    color: #d7b93b;
    font-weight: 400;
}
#main_slider .owl-nav{
	margin: 0;
}
#main_slider .owl-prev span, #main_slider .owl-next span{
	margin-top: -15px;
    display: block;
}
#main_slider .owl-prev{
	position: absolute;
    left: 0;
    top: 50%;
    color: white;
    background: #b37f1847;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 46px;
    font-weight: 300;
}
#main_slider .owl-next{
	position: absolute;
    right: 0;
    top: 50%;
    color: white;
    background: #b37f1847;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 46px;
    font-weight: 300;
}
.wpo-page-title{
	          padding: 60px 0 0;
    height: 332px;
}
.wpo-page-title .wpo-breadcumb-wrap{
	    list-style: none;
    margin: 0;
    padding: 0;
}
.port_box {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.port_box img{
	    height: 300px;
    width: 100%;
    object-fit: cover;
}
.port_box h4{
	font-family: "Jost", sans-serif;
    background: #000000cf;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 0;
    font-size: 20px;
}
.wpo-page-title h2 span{
	font-family: fangsong;
    display: block;
}
.section-padding{
	padding:75px 0;
}
.wpo-about-section .wpo-about-wrap{
	padding:0px 0;
}
.wpo-about-section .wpo-about-wrap img{
	width: 100%;
    height: 446px;
    object-fit: cover;
}
.wpo-about-section .wpo-about-wrap h2{
	font-size: 34px;
    font-weight: 400;
    margin-bottom: 13px;
}
.wpo-about-section .wpo-about-wrap p{
	font-size: 15px;
}
.team_section .section-title h2:after{
	content: '';
    position: absolute;
    width: 349px;
    height: 1px;
    background: #8d7b489c;
    left: -119px;
    top: 48px;
}
.team_section .teem_box{
	
}
.team_section .teem_box img{
	height: 372px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 16px;
}
.team_section .teem_box h2{
	    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    font-family: "Jost", sans-serif;
    font-weight: 500;
}
.team_section .teem_box h2 span{
	    font-size: 15px;
    display: block;
    margin-top: 10px;
    font-family: monospace;
    text-transform: capitalize;
    margin-bottom: 11px;
}
.cta {
    padding: 75px 0;
}
.cta h3 {
  font-size: 35px;
    font-weight: 600;
    color: white;
}
.cta h3 span {
  font-size: 28px;
    font-weight: 700;
    display: block;
    font-family: monospace;
}
.cta p {
   font-size: 15px;
    margin: 0;
    color: white;
}
.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}
.why-us .accordion-list li {
       padding: 20px;
    background: #a79962;
    border-radius: 4px;
    margin-bottom: 6px;
}
.why-us .accordion-list a.collapsed {
       color: #ffffff;
}
.icony{
	position: absolute;
    /* left: 0; */
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.icony i{
	background: white;
    color: red;
    line-height: 32px;
    font-size: 64px;
}
.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
	color: white;
}
.why-us .accordion-list span {
   color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}
.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list .icon-show {
    display: none;
}
.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.collapse:not(.show) {
    display: none;
}
.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}
.services h2{font-size: 50px;}
.services h2 i{
	font-size: 14px;
    display: inline-block;
    position: relative;
    top: -10px;
    margin: 0 8px;
}
.stories__section h2{
	color: rgb(108 92 10);
    font-size: 36px;
    font-weight: 400;
    border-left: 1px solid rgb(108 92 10);
    padding-left: 13px;
}
.stories__section h2 span{
	    font-family: fantasy;
}
.stories1_content {
	height: 100%;
    padding: 22% 0;
}
.stories1_content p{
	    font-size: 14px;
}
.stories1_img_box{
	 display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    text-align: center;
}
.stories1_img_box .sto_img{
	width: 50%;
    /* height: 100%; */
    border: 1px solid #603f2e57;
    padding: 10px;
}
.stories1_img_box .sto_img img{
	width: 100%;
    height: 450px;
    object-fit: cover;
}
.stories1_img_box .sto_title{
	background: rgba(96,63,46,1);
    width: 50%;
    height: 100%;
    padding: 17% 17px;
    border: 1px solid grey;
}
.stories1_img_box .sto_title h3{
	    color: white;
    font-size: 27px;
    font-weight: 300;
    margin-bottom: 0;
}
.stories1_img_box .sto_title h4{
	    margin: 0;
    text-transform: uppercase;
    color: white;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    margin-top: 119px;
}
.stories1_img_box .sto_title h4:after{
	    content: '';
    position: absolute;
    height: 95px;
    width: 1px;
    background: white;
    left: 0;
    right: 0;
    top: -111px;
    text-align: center;
    margin: 0 auto;
}
.stor_2_content{  
    padding: 75px 0;
    overflow: hidden;
}

.stor_2_content .big{
	width: 100%;
    height: 517px;
    object-fit: cover;
}
.stor_2_content .small{
	width: 82%;
    height: 389px;
    object-fit: cover;
    margin-top: 18%;
    align-items: end;
    justify-content: end;
    float: right;
}
.stor_2_content h2{
    font-size: 16px;
    font-weight: 500;
}
.stor_2_content p{
	font-size: 14px;
}
.stor_2_content h5{
	margin: 0;
    text-transform: uppercase;
    /* color: white; */
    font-size: 14px;
    font-weight: 400;
    position: relative;
    margin-top: 27px;
}
.stor_2_content2{
	padding: 20% 0;
}
.contact__section {
	background: #534e36;
}
.contact__section .contact_flex {
	    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact__section .contact_flex .contact_left{
	padding: 65px 30px;
    width: 50%;
}
.contact__section .contact_flex .contact_left .add_bx_sec{
	background: #221c00;
    padding: 14px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.contact__section .contact_flex .contact_left .add_bx_sec h4{
	    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.contact__section .contact_flex .contact_right{
	width: 50%;
    padding: 50px 100px;
}
.contact__section .contact_flex .contact_right h2{
    color: white;
    font-size: 30px;
    margin-bottom: 12px;
}
.contact__section .contact_flex .contact_right h3{
	    font-size: 24px;
    color: white;
    font-weight: 300;
}
.contact__section .contact_flex .contact_right h3 span{
	display: block;
    font-family: fantasy;
    margin-top: 6px;
}
.contact__section .contact_flex .contact_right p{
	color: white;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 48px;
}
.contact__section .contact_flex .contact_right form input{
	    margin-bottom: 19px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #787878;
    border-radius: 0;
    color: white!important;
}
.contact__section .contact_flex .contact_right form select{
	
}
.contact__section .contact_flex .contact_right form textarea{
	background: transparent;
    border: 1px solid grey;
}
.contact__section .contact_flex .contact_right form .theme-btn-s4{
	
}
#video__success{
	    padding: 75px 0;
    position: relative;
}
.vid__bx{
	position: relative;
}
.vid__bx i{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: red;
    background: #ffffff4f;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 58px;
    font-size: 28px;
    border: 2px solid white;
}
#video__success h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #6c5c0a;
    top: 24px;
    margin-left: 16px;
}
.owl-nav{display:none;}

.tt-section {
       position: relative;
    padding: 80px 0;
    background: #1e1703;
}
.tt-section-inner {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}
/* ------------------------------------------------------------- *
 * Scrolling text
/* ------------------------------------------------------------- */

.tt-scrolling-text {
	display: flex;
	position: relative;
	pointer-events: none;
}
.tt-scrolling-text-inner {
	padding-left: 2vw;
	font-size: calc(16px + 6vw);
	line-height: 1;
	font-weight: bold;
	font-weight: 600;
	color: #CCC;
	white-space: nowrap;
	animation-name: tt_scrolling_text; 
	animation-timing-function: linear; 
	animation-iteration-count: infinite; 
	animation-play-state: running;
	/* animation-duration is handled by js. */
}
.tt-scrolling-text-inner:after {
	content: attr(data-text);
}

@keyframes tt_scrolling_text {
	0% { transform: translateX(0) }
	100% { transform: translateX(-50%) }
}

/* Animation direction reverse. */
.tt-scrolling-text.scr-text-reverse .tt-scrolling-text-inner {
	animation-direction: reverse;
}


/* Scrolling text styles 
========================= */
/* Style stroke */
.tt-scrolling-text.scr-text-stroke .tt-scrolling-text-inner {
	font-weight: bold;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #CCC;
	-webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
	#footer .footer__links ul{
        display: block;
	}
	.mainslider img {
		height: 300px!important;
	}
	.mainslider .item-slider-text h2 {
		font-size: 30px!important;
	}
	.mainslider .item-slider-text h2 span {
    font-size: 20px!important;
	}
	.autopopup {
    right: -40px!important;
	}
	#stories_test_success .item{display: block;}
	#latest__news_blogs .blog_title {
		padding: 10% 24px!important;
	}
	#footer .footer__social img {
    width: 150px!important;
}
}
