/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


body, html {
  font-family: "Cormorant Garamond", serif;
  color: #1d1d1d;
}

a {
      color: #1d1d1d;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
         color: #1d1d1d;
}

p{
	       color: #1d1d1d;
}
/*--------------------------------------------------------------
# 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: 0px 0;
    background: #650060a3;
}

#header.header-scrolled,
#header.header-inner-pages {
     background: #650060a3;
}

#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;
}

video{
    width: 100%;
    background: black;
    margin-top: -185px;
    z-index: 1;
    position: relative;
}
#header .logo img {
       max-height: 100px;
    background: white;
    
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0!important;
}

.navbar ul {
  margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond';
    text-shadow: 1px 0px 3px #6a6a6a85;
}

.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: #ceaa5b;
}

.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: 7px 20px;
    font-size: 15px;
    text-transform: uppercase;
    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: #953a90;
}

.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: 300px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cca85a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
     margin: 10px 0px;
  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-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: 690px;
    object-fit: cover;
    object-position: center center;
}
.mainslider .item{
	position: relative;
}
.mainslider .item-slider-text{
    position: absolute;
    left: 20%;
    right: 20%;
    text-align: center;
    bottom: 95px;
}
.mainslider .item-slider-text h2{
	  color: white;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    background: #00000094;
    display: inline-block;
    padding: 7px 26px;
    border-radius: 5px;
}
.mainslider .item-slider-text h2 span{
display: block;
    font-size: 45px;
    /* font-family: system-ui; */
    font-weight: 600;
    margin-top: 6px;
}
#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%;
    border: 2px solid #ceaa5b;
    padding: 5px;
}
.more-btn{
	    text-align: center;
    margin-top: 8px;
}
.more-btn a{
	text-align: center;
    color: #1d1d1d;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.09em;
    font-weight: 600;
	transition: .4s;
	font-family: 'Cormorant Garamond';
}
.more-btn a:hover{
	text-align: center;
    color: #1d1d1d;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.09em;
    font-weight: 600;
    margin-left: 6px;
    transition: .4s;
}
.section-title{
    margin-bottom: 35px;
}
.section-title h2{
	      font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    color: #953a90;
        text-align: center;
}
.section-title p{
	margin: 0;
    text-align: center;
    font-size: 17px;
    color: #1d1d1d;
}

.section-title h2 span{
    font-weight: 400;
}
.stories-slider-text:before{
    content: "\f10d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #ceaa5b;
    font-size: 50px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
}
.bg-grey{
	  background: #ffffff;
}
.bg-dark-grey{
	background: #e2d1c229;
}
#stories_test_success{
    padding: 75px 0;
	position:relative;
}
#stories_test_success .stories img{
	 width: 100%;
    height: 475px;
    object-fit: cover;
    border-top-left-radius: 195px;
    border-top-right-radius: 195px;
    border: 2px solid #ceaa5b;
    padding: 5px;
}
#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;

}
#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: 25px;
    text-align: right;
    padding: 90px 0;
    position: relative;
    margin-left: 25px;
    margin-top: 75px;
}
#stories_test_success .stories-slider-text h2{
	color: #953a90;
    font-weight: 400;
    font-size: 27px;

}
#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: #953a90;
}
.main-btn{
	border: 1px solid #953b90;
    border-radius: 5px;
    padding: 8px 38px;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: .4s;
    color: #1d1d1d;
}
.main-btn:hover{
    border-radius: 5px;
    padding: 8px 38px;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: #ceaa5b;
    color: white;
    border: 1px solid #ceaa5b;
    transition: .4s;
}
.stories_btn{
	position: absolute;
    right: 70px;
    bottom: 215px;
}
#featured__categories h2{
   position: relative;
    overflow: hidden;
}

#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: 375px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #603f2e57;
    padding: 5px;
}
#featured__categories .exp_footer{
	text-align: center;
    border: 1px solid #ceaa5b;
    padding: 6px 0;
    margin-top: -1px;
    background-color: #ceaa5b;
}
#featured__categories .exp_footer h2{
	margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
#video__success{
	padding: 75px 0 0;
    position: relative;
}
#video__success img{
      height: 325px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #603f2e57;
    padding: 5px;
}


#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: 33px;
    margin-top: 11px;
    margin-bottom: 3pc;
    font-weight: 500;
    color: #953a90;
}
#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%;
    padding: 10px;
    padding: 10px;
    border-top-left-radius: 230px;
    border-top-right-radius: 230px;
    border: 1px solid #603f2e57;
}
#footer{
	    background: #282828;
}
#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;
    font-family: none;
}
#footer .footer__social{
	    text-align: center;
    padding: 25px 0;
}
#footer .footer__social img{
	width: 200px;
}
#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: #953a90;
    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: 600px;
}
.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{
	
    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: auto;
    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: 25px;
    text-transform: uppercase;
    margin: 0;
    
    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;

}
.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: #953a90;
    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-size: 25px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
    color: white;
    font-family: 'Cormorant Garamond';
}
.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{
	 
}
.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: 600px;
    object-fit: cover;
}
.stor_2_content .small{
	width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 18%;
    align-items: end;
    justify-content: end;
    float: right;
    border: 1px solid #603f2e57;
    padding: 10px;
}
.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: #282828;
}
.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;
   
    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;
}

.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;
    font-family: 'Cormorant Garamond';
}
.blog_post{
        position: relative;
}
.blog_post h5{
     position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0;
    color: white;
    font-size: 32px;
    padding: 0 70px;
    text-align: center;
    text-shadow: 1px 0px 3px #111111;
}

.videosall .owl-item.active .vid__bx img{
        height: 424px !important;
    margin-top: -50px;
}
.vid__bx {
    position: relative;
    margin-top: 60px;
}

/* ------------------------------------------------------------- *
 * 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;
}
.userLayers {
    bottom: 1rem;
    display: flex;
    justify-content: center;
    left: 50%;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 999;
}
.promoteInboundNumber {
    background-color: #ffffffeb;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    max-width: 640px;
    position: relative;
    width: calc(100% - var(--layout-padding)* 2);
}
.wrapper {
    grid-gap: 16px;
    grid-gap: clamp(8px, -0.72727px + 1.81818vw, 24px);
    align-items: center;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto 1fr auto;
    padding-left: 14px;
    padding-left: clamp(12px, 9.81818px + 0.45455vw, 16px);
    padding-right: 0.5rem;
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.promoteInboundNumber .close2 {
   cursor: pointer;
    display: grid;
    height: 2.5rem;
        margin: -1.5rem -2.25rem -0.5rem 0.5rem;
    /* place-items: center; */
    position: absolute;
    right: 1rem;
    top: 0.2rem !important;
    /* width: 2.5rem; */
    border: 0;
    /* text-align: center; */
    border-radius: 50%;
}
.close2:before {
    transform: rotate(45deg);
}
.close2:before, .close2:after {
   position: absolute;
    right: 17px;
    content: ' ';
    height: 18px;
    width: 2px;
    background-color: #040404;
    top: 9px;
}
.close2:after {
    transform: rotate(-45deg);
}
.content {
    display: block;
    color: black;
}

.frame-container {
          position: relative;
    padding-bottom: 27%;
    padding-top: 29%;
}

.frame-container iframe {
  position: absolute;
    top: -53px;
    left: 0;
    width: 100%;
    height: 100%;
}

.title {
    font-size: 1.1875rem;
    font-size: clamp(1.125rem, 1.05682rem + .22727vw, 1.25rem);
    font-weight: 600;
    line-height: 1.53125rem;
    line-height: clamp(1.4375rem, 1.33523rem + .34091vw, 1.625rem);
    margin-bottom: 0.25rem;
        font-family: 'Cormorant Garamond';
}
.description {
    font-size: .875rem;
    line-height: 1.3125rem;
}
.actions {
    grid-gap: 0.5rem;
    display: grid;
    grid-template-areas:
        "whatsapp phone"
        "number number";
}
.app-promote-inbound-number-close {
    width: 38px;
    color: black;
    font-weight: 600;
}
.button {
    border-radius: 100%;
    display: grid;
    height: 2.5rem;
    place-items: center;
    width: 2.5rem;
}
.phone {
    background-color: #48964d;
    grid-area: phone;
}
.button svg {
    fill: #fff;
    height: 1.25rem;
    width: 1.25rem;
}
.svgIcon svg {
    width: 100%;
        margin-top: 8px;
}
.whatsapp {
    background-color: #075e54;
    grid-area: whatsapp;
}
.svgIcon {
    display: inline-block;
}
.app-promote-inbound-number-close {
    width: 38px;
    color: black;
    font-weight: 600;
}
.app-promote-inbound-number-close {
    width: 38px;
    color: black;
    font-weight: 600;
}



/* 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) {
    .videosall .owl-item.active .vid__bx img {
    height: 310px !important;
    margin-top: 0!important;
}

    .mainslider .item-slider-text {
        bottom: 40px!important;
    }
    .contact_flex{
             display: block !important;
             margin: 40px 0;
    }
    .contact__section .contact_flex .contact_left, .contact__section .contact_flex .contact_right{
       width: 100%!important;
        padding: 0!important;
    }
    .promoteInboundNumber .close2 {
        margin: -1.5rem -0.25rem -0.5rem 0.5rem!important;
    }
    .frame-container {
        padding-bottom: 31%!important;
    }
    .frame-container iframe {
        top: 0!important;
    }
    video {
        margin-top: 0!important;
    }
#header .logo img {
    max-height: 75px!important;
}
	#footer .footer__links ul{
        display: block;
	}
	.mainslider img {
		height: 400px!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;
}
}