body {
  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: "Playfair Display", 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: 0px 0;
  height: 70px;
}

#header.header-scrolled,
#header.header-inner-pages {
       background: #e790a5;
    transition: .3s;
}

#header .logo {
     padding: 0;
    display: block;
    margin: 35px 0 0;
}

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

#header .logo img {
    max-height: 100px;
    padding: 0px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
     padding: 0 !important;
    width: 100%;
    justify-content: space-between !important;
    align-items: center;
    position: relative;
}

.navbar .nav-left,
.navbar .nav-right {
      margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.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: 24px 23px 24px 23px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
	font-family: "Playfair Display", serif;
}

.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: #d6d6d6;
}
.logo-center a:after{
	    border-bottom: none!important;
}
.logo-center a:hover:after{
	    border-bottom: none!important;
}
.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: 0px;
  top: calc(100% + 20px);
  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;
      padding: 0;
}

.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown:hover>ul {
    padding: 0;
}
.navbar .dropdown ul a {
     padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #181818;
    display: block;
	transition:.2s;
}
.navbar .dropdown ul a:hover {
              color: white !important;
    background: #e790a5;
    transition: .2s;
}
.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 .nav-left,
  .navbar .nav-right {
    display: none;
  }
  
  .navbar .logo-center {
    position: absolute;
    left: 20px;
    transform: none;
  }
  
  .mobile-nav-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.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;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Side Menu */
.mobile-side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 23456;
  transition: all 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-side-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #484746;
}

.mobile-logo img {
  height: 50px !important;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ddd;
}

.mobile-menu-content {
  padding: 20px 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f8f9fa;
  color: #956f00;
}

.mobile-dropdown-icon {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  display: none;
  overflow: hidden;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li {
  border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 12px 30px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  background: #e9ecef;
  color: #956f00;
}

.navbar-mobile .nav-left,
.navbar-mobile .nav-right {
  display: block !important;
}

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

.navbar-mobile ul {
     display: block;
    position: absolute;
    top: 55px;
    right: 16px;
    left: 16px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    width: auto;
    max-height: 70vh;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 12px 20px;
  font-size: 15px;
  color: #37517e;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.navbar-mobile li:last-child a {
  border-bottom: none;
}

.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: 0;
  padding: 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #f8f9fa;
  box-shadow: none;
  border-radius: 0;
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 30px;
  font-size: 14px;
  color: #6c757d;
}

.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: "/";
}
.owl-dots{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
}
.owl-dots button{
	border: 0;
    background: transparent;
    padding: 0;
}
.owl-dots button span{
	   height: 23px !important;
    width: 23px !important;
    background: transparent !important;
    border: 2px double grey;
}
.owl-dots button.active span{
	background: #023803 !important;
    border: 7px double #b1b1b1;
}

.mainslider img{
	    height: 675px;
    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;
        text-shadow: 3px 0px 3px #00000085;
}
.mainslider .item-slider-text h2 span{
	display: block;
    font-size: 41px;
    font-weight: 200;
    margin-top: 16px;
}
.heading_title{
	text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.heading_title h2{
	    color: #e790a5;
    font-weight: 400;
    font-size: 35px;
}
.heading_title h2 span{
	       color: #575757;
    font-weight: 400;
    font-size: 17px;
    display: block;
    margin-top: 8px;
    line-height: 24px;
}
#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;
    color: white;
    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: #c1c1c1;
    font-size: 70px;
    padding-right: 0.5em;
    position: absolute;
    top: -42px;
    left: 37px;
}
.bg-grey{
	  background: #d9d1c7;
}
.bg-dark-grey{
	background: #cbba9c;
}
#stories_test_success{
    overflow: hidden;
    padding: 75px 0 176px;
    position: relative;
}
#stories_test_success:after{
	     content: '';
        background: #ffffff;
    right: 0;
    top: 175px;
    position: absolute;
    width: 878px;
    bottom: 110px;
    height: auto;
}
#stories_test_success .aboutmore{
	   position: absolute;
    left: 29%;
    bottom: 14%;
}

#stories_test_success .stories img{
	     width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #e790a5;
    padding: 10px;
}
#stories_test_success .item{
	    display: flex;
    margin: 30px 0;
    width: 100%;
    gap: 6%;
    justify-content: end;
    align-items: center;
}
#stories_test_success .item .test_img{
	      width: 60%;
    position: relative;
    left: 15%;
}
#stories_test_success .item .test_img img{
	
}
#stories_test_success h3{
	text-transform: uppercase;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.08em;
    position: relative;
    display: block;
    overflow: hidden;
    color: white;
    margin-bottom: 68px;
}

#stories_test_success .stories-slider-text{
	margin-right: 50px;
    text-align: left;
    padding: 50px 70px 50px 30px;
    position: relative;
    width: 100%;
    margin-left: 10%;
}
#stories_test_success .stories-slider-text h2{
	    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #4b4b4b;
    line-height: 26px;
}
#stories_test_success .stories-slider-text p{
	      font-size: 17px;
    font-weight: 100;
    margin-bottom: 16px;
    color: #252525;
    line-height: 26px;
}
#stories_test_success .stories-slider-text .name{
	font-size: 24px;
    text-transform: uppercase;
    color: #e790a5;
    margin-bottom: 10px;
}
.testimonial-slider {
   padding: 75px 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
	    margin-bottom: 25px;
}

.testimonial-image img {
      width: 100%;
    height: 310px;
    object-fit: cover;
    border: 1px solid #c7c7c7;
    margin-bottom: 0;
    border-radius: 10px;
}

.testimonial-text, .testimonial-text p, .testimonial-text p span, .testimonial-text span, .testimonial-content,.testimonial-content p,.testimonial-content p span, .testimonial-content span {
    font-size: 15px;
    color: #333;
}

.testimonial-name {
    font-weight: bold;
    font-size: 17px;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-designation {
    font-size: 14px;
    color: #666;
}
@media (max-width: 768px) {
	#marq_text {
    padding: 14px 0 15px!important;
}
.posrt_h_img .img img {
    height: 442px !important;
}
    .testimonial-card {
        max-width: 100%;
    }
}
.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{
	
}
#get_in_touch{
	  overflow: hidden;
    padding: 45px 0 36px;
    position: relative;
}
.footer_contact{
	position:relative;
}
.footer_contact:after{
	   content:'';
	   background:url(../img/contact_bg.jpg);
	       width: 850px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 0;
}
#get_in_touch .con_from_hme{
	background: #f4f0ed;
    padding: 50px;
    margin-top: 40px;
    /* max-width: 900px; */
    margin: 0 auto;
    margin-bottom: 24px;
}
#get_in_touch .con_from_hme label{
	    color: white;
    font-size: 13px;
    text-transform: uppercase;
}
#get_in_touch .con_from_hme input{
	       background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    margin-bottom: 17px;
    min-height: 48px;
}
#get_in_touch .con_from_hme select{
	    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    margin-bottom: 17px;
	 min-height: 48px;
}
#get_in_touch .con_from_hme textarea{
	    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    margin-bottom: 17px;
}
#get_in_touch .home_form_btn{
	background: black !important;
    color: white;
    width: 100%;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.08em;
}
#featured__categories{
	overflow: hidden;
    padding: 75px 0;
    position: relative;
}
#featured__categories .featured_box{
	     text-align: center;
    margin-top: 25px;
	    position: relative;
}
#featured__categories .featured_box img{
	   height: 585px;
    width: 100%;
    object-fit: cover;
}
#featured__categories .exp_footer{
       position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px 0;
}
#featured__categories .exp_footer h2{
	     margin: 0;
    text-transform: uppercase;
    font-size: 27px;
    font-weight: 300;
    color: white;
    display: block;
    background: linear-gradient(45deg, black, transparent);
}
#featured__categories .exp_footer h2 span{
    display: block;
    font-size: 34px;
    margin-top: 12px;
}
#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;
    padding: 75px 0;
    position: relative;
}
#latest__news_blogs .blog_post{
	
}
#latest__news_blogs .blog_title{
	padding: 10px 0px;
}
#latest__news_blogs .blog_title h4{
	color: white;
    font-size: 23px;
    text-transform: uppercase;
}
#latest__news_blogs .blog_title a{
	color: #5b6c46;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin-top: 35px;
    display: inline-block;
}
#latest__news_blogs .blog_post img{
	height: 350px;
    object-fit: cover;
    width: 100%;
}
#footer{
	       background: #919485;
    padding: 40px 0;
}

#footer .footer__social ul{
	         list-style: none;
    display: flex;
    gap: 15px;
}
#footer .footer__links ul{
	    list-style: none;
    margin-top: 28px;
}
#footer h4{
	color: white;
    text-transform: uppercase;
    font-size: 20px;
    position: relative;
    margin-bottom: 19px;
}
#footer h4:after{
	content: '';
    position: absolute;
    background: white;
    width: 50px;
    height: 1px;
    left: 0;
    top: 38px;
}
#footer .footer__logo{
	    text-align: center;
    margin-bottom: 18px;
}
#footer .footer__logo img{
	    width: 180px;
}
#footer .footer__links ul li{
	    line-height: 33px;
}
#footer .footer__links ul li a{
	      color: #ffffff;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: 15px;
    display: block;
    transition: .3s;
    font-weight: 300;
}
#footer .footer__links ul li a:hover{
	transition: .3s;
    margin-left: 2px;
    color: goldenrod;
}


.border-left-right{
	    border-left: 1px solid #c4c4c4;
    border-right: 1px solid #c2c2c2;
}
#footer .footer__social p{
	        color: #ffffff;
    font-weight: 300;
    font-size: 17px;
    margin-top: 30px;
}
#footer .footer__social img{
	width: 130px;
}
#footer .footer__social li{
	    margin-top: 13px;
}
#footer .footer__social li a{
	        color: white;
    margin-right: 0;
    font-size: 13px;
    border: 1px solid #d6d6d6;
    height: 30px;
    display: inline-block;
    width: 30px;
    text-align: center;
    line-height: 29px;
    border-radius: 3px;
}
#footer .footer__dots i{
color: #a79342;
    font-size: 6px;
    margin: 0 5px;
}
.footer__copyright{
	text-align: center;
        border-top: 1px solid #ffffff63;
    padding: 10px 0;
}
.footer__copyright p{
	    color: white;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
}
.footer__copyright p span{
	   color: #ffabbf;
    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;
}
.port_cat{
	position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    background: #bf8b07a3;
    color: white;
    padding: 4px 12px;
}
.portDesc p{
	color:white;
}
.wpo-page-title{
	          padding: 60px 0 0;
    height: 310px;
}
.wpo-page-title .wpo-breadcumb-wrap{
	list-style: none;
}
.ser_desc {    margin-bottom: 40px;}
.ser_desc p{
	color: #3b3b3b;
    font-size: 18px;
    font-weight: 300;
    font-family: system-ui;
    line-height: 26px;
}
.port_box {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.port_box img{
	        height: 415px;
    width: 100%;
    object-fit: cover;
}
.port_box h4{
    background: linear-gradient(360deg, #a04a57, transparent);
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    padding: 60px 0 21px;
    font-size: 25px;
    bottom: 0;
}
.faqs h2{    color: #e790a5;}
.faqs h2 span{}
.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;
	    border: 1px solid #7f7f7f;
    padding: 10px;
}
.wpo-about-section .wpo-about-wrap h2{
	font-size: 34px;
    font-weight: 400;
    margin-bottom: 13px;
}
.wpo-about-section .wpo-about-wrap p{
	 color: #252525;
    font-size: 16px;
    font-weight: 300;
    font-family: system-ui;
    line-height: 26px;
}
.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;
    color: white;
    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 {
     border-radius: 4px;
    margin-bottom: 6px;
}
.why-us .accordion-list a.collapsed {
      color: #919485;
}
.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;
}
#main_video marquee{
	margin-top: -95px;
    z-index: 2;
    position: relative;
    top: -40px;
}
#main_video marquee h1{
	    font-size: 6em;
    font-weight: 600;
    color: #cecece;
}
#main_video .mainV{
	    width: 100%;
    overflow: hidden;
	    position: relative;
}
#main_video .mainV:after{
	    content: '';
    background: linear-gradient(0deg, #0000004d, transparent);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
#main_video .mainV img{
	    width: 100%;
    object-fit: cover;
    object-position: center 0;
}
#main_video .mainV iframe{
	    width: 100%;
    height: 590px;
    position: relative;
    top: -52px;
}
#main_video{
	  position: relative;
    padding: 55px 0 !important;
}
#main_video h6{
    color: white;
    font-size: 40px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    background: #00000075;
    padding: 24px 22px;
    border-radius: 5px;
}
#main_video h6 span,#main_video h6 p{
	color: white;
    font-weight: 300;
    font-size: 19px;
    margin-top: 6px;
    display: block;
    line-height: 28px;
    margin-top: 12px;
}
#home_services{
   position: relative;
}
#home_services:after{
	   content: '';
    position: absolute;
    background: url(../img/ser_bg_logo.png);
    height: 428px;
    width: 424px;
    left: 0;
    top: 103px;
    background-size: contain;
    opacity: 0.5;
    background-repeat: no-repeat;
}
#home_services .serv_head{
	      height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
#home_services .serv_head ul{
	      margin: 0;
    padding: 0;
    list-style: none;
    border: 0;
    width: 40%;
    display: inline-block;
    text-align: right;
}
#home_services .serv_head ul li a.active{
	       background: transparent;
    border: 0;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 15px;
    font-weight: 400;
}
#home_services .serv_head ul li a:hover,#home_services .serv_head ul li a:focus,#home_services .serv_head ul li a:focus-visible{
	border-bottom: 2px solid #e790a5;
    transition: .1s;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-bottom: 15px;
    font-weight: 400;
}
#home_services .serv_head ul li{
	   line-height: 24px;
    margin-bottom: 20px;
    width: 100%;
}
#home_services .serv_head ul li a{
	         color: #323232;
    font-size: 32px;
    font-weight: 300;
    display: inline-block;
    text-transform: capitalize;
    /* letter-spacing: 0.04em; */
    border-bottom: 2px solid #ffffff00;
    padding-bottom: 15px;
    transition: .1s;
    font-family: "Playfair Display", serif;
	}
#home_services .serv_head ul li a span{
	    font-size: 14px;
    display: block;
}
#home_services .serv_image{
	    margin: 60px 0;
}
#home_services .serv_image img{
	       height: 530px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #e790a5;
    padding: 10px;
	
}
.why-us .accordion-list a {
 display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
    color: #919485;
    background: #ffffff;
    padding: 15px 10px;
    font-family: 'Playfair Display';
}
.acc__body{
	     background: #ffffff;
    color: white;
    border-top: 1px solid #d2d2d2;
    margin-top: 0px;
    padding: 16px 15px;
}
.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;
    font-family: system-ui;
    color: #adadad;
    font-size: 16px;
}
.blog_bx{
	
}
.blog_bx .blog_img{
	
}
.blog_bx .blog_img img{
	height: 475px;
    width: 100%;
    object-fit: cover;
}
.test__bx{
	  background: #ffffff;
    min-height: 710px;
    transition: .4s;
    margin-bottom: 30px;
}
.test__bx:hover{
	        background: #d7d7d7;
    transition: .4s;
}
.test__bx img{
	height: 500px;
    object-fit: cover;
    width: 100%;
}
.test__bx p{
	    font-size: 14px;
    color: #1f1f1f;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.test__bx .text__ftr{
	     padding: 14px 14px;
    text-align: center;
}
.test__bx .text__ftr h6{
	     color: #e790a5;
    font-weight: 600;
    font-size: 22px;
}
.test__bx .text__ftr h3{
        font-size: 24px;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid #1d1d1d42;
    padding-top: 10px;
    color: #4b4b4b;
    transition: .3s;
    margin-top: 10px;
}
.test__bx .text__ftr h3 span{
	display: block;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
    margin-top: 10px;
}
.blog_bx .entry-details h3{
	    color: white;
    text-transform: uppercase;
    font-size: 19px;
}
.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: 18px;
    color: white;
    font-weight: 300;
}
.stories1_img_box{
	 display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    text-align: center;
}
.stories1_img_box .sto_img{
	width: 50%;
    background: #e3e3e3;
    border: 1px solid #a5a5a557;
    padding: 10px;
}
.stories1_img_box .sto_img img{
	width: 100%;
    height: 450px;
    object-fit: cover;
}
.stories1_img_box .sto_title{
	background: #525a48;
    width: 50%;
    padding: 3% 17px;
}
.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 .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
/* ------------------------------------------------------------- */
.contact__section h3{
	color: white;
    font-size: 29px;
    margin-bottom: 25px;
    font-weight: 300;
}
.contact__section img{
	height: 620px;
    width: 100%;
    object-fit: cover;
}
.contact__section h2{
	      color: #181818;
    font-weight: 400;
    font-size: 28px;
}

.contact__section p{
	     color: #323232;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 40px;
}
.contact__section input, .contact__section select{
	      background: transparent;
    border: 0;
    border-bottom: 1px solid #848484;
    border-radius: 0;
    margin-bottom: 25px;
    color: #4f4f4f !important;
}
.contact__section textarea{
	       background: transparent;
    border: 0;
    border-bottom: 1px solid #4a4a4a;
    border-radius: 0;
    margin-bottom: 25px;
    color: #4f4f4f !important;
}
.contact_info{padding: 50px 0;}
.contact_info h3{
	    text-align: center;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 700;
    color: black;
    margin: 0;
}
.contact_info h3 span{
	        display: block;
    text-transform: capitalize;
    font-weight: 300;
    font-size: 16px;
    margin-top: 10px;
}
.contact_info .ad_bx{
	       border: 2px solid #d2d2d2;
    height: 100%;
        padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: white;
    border-radius: 5px;
}
.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;
}

.blog-home .item .wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
	position: relative;
	overflow: hidden;
}
.blog-home .item .wrap:hover {
    transition: 700ms cubic-bezier(0.17,0.67,0,1.01);
}

.blog-home .item .wrap .img {
    position: relative;
    transition: 700ms cubic-bezier(0.17,0.67,0,1.01);
    overflow: hidden;
}
.blog-home .item .wrap:hover .img img {
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    opacity: 1;
    transform: scale(1.1);
}
.blog-home .item .wrap .img:after {
    content: '';
    position: absolute;
    /*border: 1px solid #d5d5d599;*/
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
}
.blog-home .item .wrap:hover .title {
    transform: translateY(-50px);
}
.blog-home .item .wrap:hover .title .icon {
       opacity: 1;
  
}

.posrt_h_img .img img{
	    height: 607px;
}
.blog-home .item .wrap .img img {
    width: 100%;
    margin: 0;
    transition: 700ms cubic-bezier(0.17,0.67,0,1.01);
    background-size: cover;
    opacity: 1;
    object-fit: cover;
}
.blog-home .item .wrap .title {
    position: absolute;
    transition: 700ms cubic-bezier(0.17,0.67,0,1.01);
    bottom: 0;
    padding: 20px 20px 0;
    left: 10px;
    right: 10px;
}
.blog-home .item .wrap .title h4 {
       color: #fff;
       font-size: 23px;
    margin-bottom: 15px;
    line-height: 1.2em;
}
.blog-home .item .wrap .title h4 span{
   display: block;
    text-transform: uppercase;
    font-size: 26px;
    margin-top: 5px;
}

.blog-home .item .wrap .title .icon {
    font-size: 27px;
    color: #fff;
    opacity: 0;
    transition: .7s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
	border: 1px solid white;
    border-radius: 50%;
    display: inline-block;
	
}
.about_btn{
	   margin: 0 !important;
    position: absolute;
    left: 30%;
    bottom: 8%;
    z-index: 2;
}
section{
	padding:60px 0;
}
#marq_text{
	    padding: 24px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px dotted #cecece;
}
#marq_text marquee{
	       position: absolute;
    top: 0px;
    z-index: 1;
	    overflow: hidden;
}
#marq_text h2{
	    text-align: center;
    color: #252525;
    font-size: 44px;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 600;
}
#marq_text h2 span{
    font-weight: 300;
}
#marq_text h1{
    color: #2c2e2ac2;
    font-size: 130px;
    font-weight: 600;
}
@media only screen and (max-width: 767px) {
    #featured__categories .featured_box img {
        height: 250px!important;
    }

	#footer h4:after{left: 42%;}
	.footer__social{
		    text-align: center;
	}
	#footer .footer__social ul {
    justify-content: center;
    margin-bottom: 22px;
}
#footer .footer__links ul {
    margin-top: 20px;
}
.footer__links{
	text-align: center;
    margin-top: 23px;
}
	.contact__section img {
    height: 232px;
    margin-bottom: 30px;
}

	#home_services:after {
    width: 300px;
	height: 288px;
	}
#stories_test_success .aboutmore{
	text-align: center;
}
	#main_video{margin:15px 0;}
	
	#main_video .mainV {
   height: 340px !important;
}
#main_video .mainV img {
    height: 338px!important;
}
#main_video iframe {
       top: -46px !important;
    height: 241px !important;
}

	.blog-home .item .wrap .img img {
	   height: 410px;
	}
	#home_services .serv_image img, #stories_test_success:after, #main__about .ab_left:before{display:none;}
	#stories_test_success .stories-slider-text {
		padding: 47px 15px 34px 15px!important;
	}
	#home_services .serv_head {
    height: 100%;
    padding: 30px 0 0;
}
#home_services .serv_head ul li a {
      display: ruby-text;
    line-height: 43px;
    font-size: 23px;
}
#home_services .serv_head ul li a span {
    font-size: 25px;
    display: block;
    background: goldenrod;
    height: 40px;
    width: 44px;
    border-radius: 5px;
    text-align: center;
    line-height: 34px;
    margin-right: 15px;
}
	.ab_right{
		padding: 18px 20px 0;
	}
	#main__about .ab_left img {
    height: 335px!important;
    object-fit: contain!important;
}
	.contact__section .contact_flex .contact_left, .contact__section .contact_flex .contact_right {
		    padding: 0px 0px;
    width: 100%;
	}
	.contact_flex{
		display: block!important;
		padding: 60px 0;
	}
	#footer .footer__links ul{
        display: block;
	}
	.mainslider img {
		height: 500px!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;
}
}
.serv_head li a:hover .serv_image{
   visibility: visible !important;
    opacity: 1 !important;
    transition: .3s;
}
.serv_head li .active .serv_image{
	visibility: visible !important;
    opacity: 1 !important;
    transition: .3s;
}
#home_services .serv_image{
	position: absolute;
    right: 0;
    top: 65px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    width: 57%;
    margin: 0;
}
.footer_content{}
.footer_content h3{
	    color: white;
    font-size: 23px;
    margin-bottom: 14px;
}
.footer_content p{
        font-size: 14px;
    color: #323232;
    font-weight: 400 !important;
    font-family: system-ui;
    text-align: justify;
}
.blog-home h1{
       color: #1a1a1a;
    text-align: center;
    font-weight: 500;
    font-size: 35px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 35px;
}
.blog-home h1:after{
  content: '';
    position: absolute;
    border-bottom: 1px solid white;
    height: 1px;
    width: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    left: 50%;
    top: 125%;
}
.bg_light{background:#f3f3f3;}
.bg_dark{background:#f4f0ed;}

.bg_dark::after {

}

.logo-center{
	      position: absolute;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
        background: #ffffff;
    border-radius: 15px;
	padding: 16px;
    height: 150px;
    width: 150px;
    margin: 0 auto;
    text-align: center;
    top: -40px;
}
@media (max-width: 991px) {
  .nav-left,
  .nav-right {
    display: none !important;
  }

  .logo-center {
    position: relative;
    transform: none;
    left: auto;
    text-align: center;
  }
  
  .mobile-nav-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 576px) {

  .navbar .logo-center {
    left: -32px;
  }
  
  .mobile-nav-toggle {
    right: 15px;
    top: 55px;
    font-size: 34px;
  }
  
  .mobile-side-menu {
    width: 280px;
    left: -280px;
  }
  
  .logo-center img {
    height: 60px !important;
  }
}

@media (max-width: 480px) {
  .mobile-side-menu {
    width: 260px;
    left: -260px;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .mobile-dropdown-menu a {
    padding: 10px 25px;
  }
}

/* ===== MOBILE-FRIENDLY HOME PAGE STYLES ===== */

/* Main Slider Mobile Optimization */
@media (max-width: 768px) {
  #main_slider {
    height: 60vh;
    min-height: 400px;
  }
  
  #main_slider .item {
    height: 60vh;
    min-height: 400px;
    position: relative;
  }
  
  #main_slider .item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  #main_slider .item-slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 10;
  }
  
  #main_slider .item-slider-text h2 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  }
  
  #main_slider .item-slider-text h2 span {
    font-size: 18px !important;
    display: block;
    margin-top: 8px;
    color: #f0f0f0;
  }
}

/* Typing Animation Mobile */
@media (max-width: 768px) {
  #marq_text {
    padding: 20px 15px;
    background: #f8f9fa;
  }
  
  #marq_text h2 {
    font-size: 18px !important;
    text-align: center;
    line-height: 1.4;
  }
}

/* Services Section Mobile */
@media (max-width: 768px) {
  #featured__categories {
    padding: 40px 15px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .heading_title {
    margin-bottom: 30px;
    max-width: 100%;
  }
  
  .heading_title h2 {
    font-size: 24px !important;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 100%;
  }
  
  .heading_title h2 span {
    font-size: 14px !important;
    line-height: 1.5;
    color: #666;
    max-width: 100%;
  }
  
  .blog-home {
    max-width: 100%;
    overflow: hidden;
  }
  
  .blog-home .item {
    max-width: 100%;
  }
  
  .blog-home .item .wrap {
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: calc(100% - 20px);
  }
  
  .blog-home .item .wrap .img {
    height: 200px;
    overflow: hidden;
  }
  
  .blog-home .item .wrap .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blog-home .item .wrap:hover .img img {
    transform: scale(1.05);
  }
  
  .blog-home .item .wrap .title {
    padding: 20px 15px;
    background: #fff;
  }
  
  .blog-home .item .wrap .title h4 {
    font-size: 16px !important;
    margin-bottom: 8px;
    color: #333;
  }
  
  .blog-home .item .wrap .title .icon {
    font-size: 18px;
    color: #956f00;
  }
  
  .aboutmore {
    margin-top: 30px;
  }
  
  .aboutmore a {
    color: #353535;
    background: #ffabbf;
    padding: 11px 24px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 15px;
    transition: .3s;
    border: 1px solid #ffabbf;
  }
  
  .aboutmore a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(149, 111, 0, 0.3);
  }
}

/* About Section Mobile */
@media (max-width: 768px) {
  #main__about {
    padding: 50px 15px;
  }
  
  #main__about .row {
    flex-direction: column;
  }
  
  #main__about .col-md-5 {
    width: 100%;
    margin-bottom: 30px;
  }
  
  #main__about .ab_left {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #main__about .ab_left img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  #main__about .ab_right {
    text-align: center;
  }
  
  #main__about .ab_right h6 {
    font-size: 20px !important;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  #main__about .ab_right h6 span {
    font-size: 14px !important;
    color: #666;
    line-height: 1.6;
  }
  
  #main__about .aboutmore {
    text-align: center;
    margin-top: 20px;
  }
}

/* Portfolio Section Mobile */
@media (max-width: 768px) {
  .portdesktop {
    max-width: 100%;
    overflow: hidden;
  }
  
  .portdesktop .item {
    max-width: 100%;
  }
  
  .portdesktop .item .wrap {
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: calc(100% - 20px);
  }
  
  .portdesktop .item .wrap .img {
    height: 220px;
    overflow: hidden;
  }
  
  .portdesktop .item .wrap .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .portdesktop .item .wrap:hover .img img {
    transform: scale(1.05);
  }
  
  .portdesktop .item .wrap .title {
    padding: 20px 15px;
    background: #fff;
  }
  
  .portdesktop .item .wrap .title h4 {
    font-size: 16px !important;
    margin-bottom: 5px;
  }
  
  .portdesktop .item .wrap .title h4 span {
    font-size: 14px !important;
    color: #666;
  }
}

/* Video Section Mobile */
@media (max-width: 768px) {
  #main_video {
    padding: 30px 15px;
  }
  
  #main_video marquee h1 {
    font-size: 16px !important;
    padding: 15px 0;
  }
  
  #main_video .mainV {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  #main_video .mainV img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  #main_video h6 {
    font-size: 18px !important;
    text-align: center;
    margin-bottom: 10px;
  }
  
  #main_video h6 span {
    font-size: 14px !important;
    color: #ccc;
    line-height: 1.6;
  }
}

/* Masonry Grid Mobile */
@media (max-width: 768px) {
.masonry-grid {
    margin: 0 -5px;
    max-width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 5px;
  }
  
  .masonry-item {
    width: 100% !important;
    padding: 0;
    max-width: 100%;
  }
  
  .home_photos {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 100%;
  }
  
  .home_photos img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
  }
  
  .home_photos:hover img {
    transform: scale(1.05);
  }
}

@media (max-width: 480px) {
  .masonry-item {
    width: 100%;
  }
  
  .home_photos img {
    height: 200px;
  }
}

/* Testimonials Section Mobile */
@media (max-width: 768px) {
  #stories_test_success {
    padding: 50px 15px;
  }
  
  #stories_test_success .heading_title h2 {
    font-size: 22px !important;
    margin-bottom: 10px;
  }
  
  #stories_test_success .heading_title h2 span {
    font-size: 14px !important;
    color: #ccc;
  }
  
  #stories_test_success .item {
    text-align: center;
    padding: 20px;
  }
  
  #stories_test_success .test_img {
    margin-bottom: 20px;
  }
  
  #stories_test_success .test_img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #956f00;
  }
  
  #stories_test_success .stories-slider-text {
    padding: 0 10px;
  }
  
  #stories_test_success .stories-slider-text .name {
    font-size: 14px;
    color: #956f00;
    margin-bottom: 10px;
  }
  
  #stories_test_success .stories-slider-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
  }
  
  #stories_test_success .stories-slider-text h2 {
    font-size: 16px;
    color: #fff;
  }
  
  #stories_test_success .aboutmore {
    text-align: left;
    margin-top: 30px;
  }
}

/* Experience Section Mobile */
@media (max-width: 768px) {
  .experience-section {
    padding: 50px 15px;
  }
  
  .experience-section .heading_title h2 {
    font-size: 22px !important;
    margin-bottom: 10px;
  }
  
  .experience-section .heading_title h2 span {
    font-size: 14px !important;
    color: #666;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .experience-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #fff;
  }
  
  .experience-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .experience-item h3 {
    font-size: 18px !important;
    margin-bottom: 12px;
    color: #333;
  }
  
  .experience-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
  }
}

/* Blog Section Mobile */
@media (max-width: 768px) {
  #latest__news_blogs {
    padding: 50px 15px;
    max-width: 100%;
    overflow: hidden;
  }
  
  #latest__news_blogs .heading_title h2 {
    font-size: 22px !important;
    margin-bottom: 10px;
    max-width: 100%;
  }
  
  #latest__news_blogs .heading_title h2 span {
    font-size: 14px !important;
    color: #ccc;
    max-width: 100%;
  }
  
  .blogslider {
    max-width: 100%;
    overflow: hidden;
  }
  
  .blogslider .item {
    max-width: 100%;
  }
  
  .blogslider .item .wrap {
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: calc(100% - 20px);
  }
  
  .blogslider .item .wrap .img {
    height: 180px;
    overflow: hidden;
  }
  
  .blogslider .item .wrap .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blogslider .item .wrap:hover .img img {
    transform: scale(1.05);
  }
  
  .blogslider .item .wrap .title {
    padding: 20px 15px;
    background: #fff;
  }
  
  .blogslider .item .wrap .title h4 {
    font-size: 16px !important;
    color: #333;
  }
}

/* Contact Form Mobile */
@media (max-width: 768px) {
  #get_in_touch {
    padding: 50px 15px;
  }
  
  #get_in_touch .heading_title h2 {
    font-size: 22px !important;
    margin-bottom: 10px;
  }
  
  #get_in_touch .heading_title h2 span {
    font-size: 14px !important;
    color: #666;
  }
  
  .con_from_hme {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  .con_from_hme .row {
    margin: 0 -10px;
  }
  
  .con_from_hme .col-md-6,
  .con_from_hme .col-md-12 {
    padding: 0 10px;
    margin-bottom: 15px;
  }
  
  .con_from_hme input,
  .con_from_hme select {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 15px;
    background: #fff;
  }
  
  .con_from_hme input:focus,
  .con_from_hme select:focus {
    border-color: #956f00;
    box-shadow: 0 0 0 2px rgba(149, 111, 0, 0.1);
    outline: none;
  }
  
  .con_from_hme button {
    height: 50px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #956f00, #b8860b);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .con_from_hme button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(149, 111, 0, 0.3);
  }
}

/* General Mobile Improvements */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
  }
  
  /* Fix container overflow */
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .bg_dark {
    background: #2d2d2d !important;
  }
  
  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
  }
  
  /* Better touch targets */
  a, button, input, select {
    min-height: 44px;
  }
  
  /* Improved spacing */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col-md-6,
  .col-md-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Fix carousel overflow */
  .owl-carousel {
    overflow: hidden;
  }
  
  /* Fix masonry grid overflow */
  .masonry-grid {
    overflow: hidden;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  #main_slider .item-slider-text h2 {
    font-size: 24px !important;
  }
  
  #main_slider .item-slider-text h2 span {
    font-size: 16px !important;
  }
  
  .heading_title h2 {
    font-size: 20px !important;
  }
  
  .heading_title h2 span {
    font-size: 13px !important;
  }
  
  .blog-home .item .wrap .img,
  .portdesktop .item .wrap .img,
  .blogslider .item .wrap .img {
    height: 160px;
  }
  
  .masonry-item {
    width: 100%;
  }
  
  .home_photos img {
    height: 180px;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Better button styling for mobile */
  .theme-btn, .aboutmore a, .con_from_hme button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Improve form elements */
  input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
  }
  
  /* Better focus states for accessibility */
  a:focus, button:focus, input:focus, select:focus {
    outline: 2px solid #956f00;
    outline-offset: 2px;
  }
  
  /* Optimize carousel navigation */
  .owl-nav {
    display: none !important;
  }
  
  .owl-dots {
    bottom: 10px;
  }
  
  .owl-dots button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
  
  /* Improve loading states */
  .item {
    opacity: 1;
    transform: none;
  }
  
  /* Better spacing for mobile */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Optimize masonry grid for mobile */
  .masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .masonry-item {
    width: 100% !important;
    padding: 0 !important;
  }
  
  /* Reduce animations on mobile for better performance */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
  }
  
  /* Improve touch scrolling */
  .owl-carousel {
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile Landscape Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  #main_slider {
    height: 50vh;
    min-height: 300px;
  }
  
  #main_slider .item {
    height: 50vh;
    min-height: 300px;
  }
  
  #main_slider .item-slider-text h2 {
    font-size: 20px !important;
  }
  
  #main_slider .item-slider-text h2 span {
    font-size: 14px !important;
  }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .blog-home .item .wrap .img img,
  .portdesktop .item .wrap .img img,
  .blogslider .item .wrap .img img,
  .home_photos img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Targeted overflow prevention for mobile devices */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling on body */
  body {
    overflow-x: hidden;
  }
  
  /* Fix carousel overflow issues */
  .owl-carousel {
    overflow: hidden;
  }
  
  /* Ensure containers don't overflow */
  .container,
  .container-fluid {
    overflow-x: hidden;
  }
  
  /* Fix logo positioning */
  .logo-center {
    left: 50%;
    transform: translateX(-50%);
  }
}

.masonry-grid {
  margin: 0 -10px;
}

.masonry-item {
  width: 25%; /* 4 per row */
  padding: 10px;
  box-sizing: border-box;
   opacity: 1;
  transition: opacity 0.8s ease;
}
.masonry-item.fade-out {
  opacity: 0;
}
.home_photos img {
 width: 100%;
    height: 355px;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

@media (max-width: 991px) {
  .masonry-item {
    width: 50%; /* 2 per row */
  }
}

@media (max-width: 575px) {
  .masonry-item {
    width: 100%; /* 1 per row */
  }
}
.navbar a:after{
	content: '';
    border-bottom: 2px solid white;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: .3s;
    margin: 0 auto;
}
.navbar a:hover:after{
        width: 100%;
    visibility: visible;
    border-bottom: 2px solid #ffffff;
    opacity: 1;
    transition: .3s;
}
 .experience-section {
          text-align: center;
    background: #9d9f95;
    }
    .experience-grid {
      display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    }
.experience-section h2{
	color: #ffffff;
}
.experience-section h2 span{
	color: #ffffff;
}
    .experience-item {
      flex: 1 1 30%;
    min-width: 280px;
    text-align: center;
    /* background: #ffffff; */
    padding: 20px;
    border-radius: 5px;
    transition: .3s;
    }
.experience-item:hover {
	    margin-top: -4px;
    background: #e790a5;
    transition: .3s;
    }
    .experience-item img {
         height: 125px;
    margin-bottom: 10px;
    }

    .experience-item h3 {
        font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
	color: #ffffff;
    }

    .experience-item p {
          font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    }

    @media (max-width: 768px) {
      .experience-grid {
        flex-direction: column;
        align-items: center;
      }

      .experience-item {
        max-width: 400px;
      }
    }
	