/**
* Template Name: Indo Wedding
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Jost",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Jost",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #848892; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #323232; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cca194; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #323232;  /* The default color of the main navmenu links */
  --nav-hover-color: #cca194; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #323232; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #323232; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cca194; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'monallesia';
  src: url("../fonts/monallesiascript.woff2") format("woff2"), 
  url("../fonts/monallesiascript.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Fullscreen */
#weddingLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Center */
.loader-content {
  text-align: center;
}

/* Flower Circle Loader */
.flower-loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 20px;
  animation: rotate 2s linear infinite;
}

/* Petals */
.flower-loader::before,
.flower-loader::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #D4B0A5;
  border-radius: 50%;
  opacity: 0.6;
}

/* Inner circle */
.flower-loader::after {
  transform: scale(0.7);
  opacity: 1;
}

/* Text */
.loading-text {
  font-size: 26px;
  color: #D4B0A5;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.5px;
}

.sub-text {
  color: #777;
  font-size: 13px;
  margin-top: 5px;
  font-family: sans-serif;
}

.flower-loader {
  box-shadow: 0 0 20px rgba(212,176,165,0.4);
}
/* Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}



/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 18px;
  line-height: 1.8em;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

.mobile-nav-toggle{
  display: none;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.index-page .header-height{
  display: none;
}

.single-page .header {
    padding: 8px 0;
}
.hd-inner-wrap {
    background: #fff;
    width: 94%;
    border-radius: 5px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
max-height: 84px;
    margin-right: 8px;
    transition: .3s ease all;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.header-social {
    margin-left: 20px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
    padding: 8px 0;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 30px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu > ul > li > a {
    text-transform: uppercase;
}

  .scrolled .navmenu a, .scrolled .navmenu a:focus {
    padding: 15px 12px;
}

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 6px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-top: 1px solid #7b7676;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
    order:3;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu > ul {
        list-style: none;
        position: absolute;
        /* inset: 60px 20px 20px 20px; */
        padding: 10px 0;
        margin: 0;
        border-radius: 0px;
        background-color: #bda29a;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        width: 300px;
                left: -320px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 15px 30px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
  }

  .mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
  }


  .mobile-nav-active .navmenu > ul {
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color:#fff;
  background-color:#2b2b2b;
  font-size: 14px;
  padding-bottom: 0px;
  position: relative;
  line-height: 1.4;
  position: relative;
}

.footer-about .sitename img {
    max-width: 200px;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -10px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
  position: relative;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid #cca194;
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: #e8e1e1;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .vector-1, .footer .vector-2 {
    opacity: 0.5;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  background: url(../img/lp-banner.jpg) no-repeat center top / cover;
  min-height: 360px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}

.page-title .heading {
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-weight: 400;
    font-size: 40px;
    line-height: 57px;
    color: #323232;
    margin-bottom: 25px;
    font-family: "monallesia";
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  padding: 0;
  font-weight: 600;
  justify-content: center;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h4 {
    font-weight: 400;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    color: #939580;
    font-family: "monallesia";
    margin-bottom: .5rem;
}

.section-title h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.4;
    margin: 0;
    position: relative;
    /* font-family: "Jost", sans-serif; */
    color: #323232;
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    margin-top: 10px;
    text-transform: uppercase;
}

.section-title h2:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -10px;
    width: 70%;
    height: 1px;
    content: "";
    background: #F3E1DB;
}

.section-title h2:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120%;
    height: 1px;
    content: "";
    background: #F3E1DB;
    left: -10%;
}

@media(max-width:767px){
  .section-title h4 {
    font-size: 25px;
    line-height: 35px;
}

.section-title h2 {
    font-size: 32px;
    line-height: 40px;
}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section .hero-slide {
    background-position: center;
    background: top center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
     padding-top: 100px;
     background-attachment: fixed;
}

.hero-section .hero-slide:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    content: "";
    opacity: .15;
}

.hero-section {
    padding-top: 0;
}

.hero-section .hero-slide .bg-cover-image {
    position: absolute;
    top: 0;
	left:0;
	height:100%;
	width:100%;
}

.hero-section .hero-slide .bg-cover-image img{
	height:100%;
	width:100%;
	object-fit:cover;
}


.hero-section .hero-slide .slide-content {
    position: relative;
    z-index: 1;
    text-align: left;
    margin: 0;
    background: rgba(0, 2, 19, 0.2);
    padding: 30px 40px 50px;
    text-align: center;
    border: 1px solid #848484;
    transition: .2s ease all;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-timing-function: ease-in-out;
    transition-duration: .8s;
    opacity: 0;
}

.hero-section .swiper-slide-active  .hero-slide .slide-content{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.hero-section .hero-slide .slide-content h2 {
    color: #fff;
    font-weight: 400;
    font-size: 60px;
    line-height: 94px;
    margin-bottom: 10px;
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
    margin: 10px 0 35px;
}

.hero-section .hero-slide .slide-content p {
    font-weight: 400;
    font-size: 25px;
    line-height: 36px;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
    color: #fff;
}

.theme-btn {
    text-transform: capitalize;
    border-radius: 0;
    font-weight: 600;
    font-size: 18px;
    background: #D4B0A5;
    color: #fff;
    display: inline-block;
    padding: 15px 45px;
    border: 0;
    -webkit-backface-visibility: hidden;
    z-index: 1;
    position: relative;
    transition: all .3s;
}

.theme-btn:hover {
    background: #c79889;
    color: #fff;
}

.slide-content-wrap {
    /* padding-left: 50px; */
    padding-top: 100px;
     padding-bottom: 100px;
    /* max-width: 800px; */
    position: relative;
}

img {
    max-width: 100%;
}

.slide-content-wrap .shape-1 {
    margin-bottom: 15px;
    text-align: center;
}

.slide-content-wrap .shape-2 {
    margin-top: 15px;
    text-align: center;
}


@media(max-width:1199px){
  .hero-section .hero-slide .slide-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .hero-slide .slide-content p {
    font-size: 18px;
    line-height: 32px;
}
  
}

@media(max-width:991px){
  .header-social {
    display: none;
}

.hd-inner-wrap {
    padding: 8px;
}

.hero-section .hero-slide .slide-content h2 {
    font-size: 34px;
}
}

@media(max-width:767px){
  .slide-content-wrap {
    padding-top: 43px;
    padding-bottom: 43px;
}
}

@media(max-width:480px){
  .hero-section .hero-slide .slide-content h2 {
    font-size: 22px;
}

.hero-section .hero-slide .slide-content {
    padding: 10px 20px 30px;
}

.hero-section .hero-slide .slide-content p {
    font-size: 16px;
    line-height: 1.5;
}
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 180px;
}

.about-item .image-wrap {
    position: relative;
    z-index: 1;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    text-align: center;
}

.about-item .image-wrap .image {
    width: 460px;
    height: 460px;
    padding: 20px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
}

.about-item .image-wrap .image img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover;
  object-position:top;
}

.about-item .image-wrap .shapes {
    position: absolute;
    width: 100%;
    left: 0;
    top: -30%;
    z-index: -1;
}

.about-item .about-content {
    margin-left: -268px;
    -ms-flex-preferred-size: 60%;
    flex-basis: 70%;
    border: 1px solid #F3ECE9;
    padding: 20px;
    padding-left: 285px;
    position: relative;
}


/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.contact-section .contact-img img {
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    object-position: top;
    /* height: 100%; */
}

.contact-section-wrapper {
    position: relative;
    margin: 0 auto;
    background: #d2ada2;
    z-index: 1;
}

.contact-section-wrapper .vector-1,
.footer .vector-1 {
    position: absolute;
    left: 0;
    top: 0;
}

.contact-section-wrapper .vector-2,
.footer .vector-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.contact-section-wrapper .contact-form-area {
    padding: 60px 30px;
    position: relative;
    z-index: 99;
}

.contact-section .col {
    padding: 0 !important;
}


.contact-section-wrapper form .form-control {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    border: 0;
    border-bottom: 1px solid #EDCCC1;
    background: transparent;
    border-radius: 0;
    color: #fff;
    color-scheme: #fff;
    font-size: 18px;
}

.contact-section-wrapper form .form-control::placeholder {
    color: #fff;
}

.contact-section-wrapper form select.form-control {
    color: #fff;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: transparent url(../img/shapes/select-icon.png) no-repeat calc(100% - 15px) center;
    position: relative;
}

.contact-section-wrapper form .submit-area {
    text-align: center;
    margin-top: 40px;
}


.contact-section-wrapper form .submit-area .theme-btn-s3 {
    background: #fff;
    color: #D4B0A5;
}

.contact-section-wrapper .contact-form-area h4 {
    color: #fff;
}

.contact-section-wrapper .contact-form-area h2 {
    color: #fff;
}

option {
    color: #525252;
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding-top: 0;
}

.stats .stats-item {
    background-color: transparent;
    padding: 0px 15px;
    position: relative;
    justify-content: center;
}
.stats .stats-item .flower {
    position: absolute;
    right: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.stats .stats-item span {
    display: block;
    font-weight: 400;
    font-size: 3rem;
    line-height: 86px;
    color: #323232;
    margin: 0 0 0.1em;
    font-family: "monallesia";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
    color: #939580;
    text-align: center;
    font-family: "monallesia";
}

.patner-content {
    background: #323232;
    padding: 40px 100px;
    color: #fff;
    font-size: 14px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -130px;
    /* border: 10px solid #cca194; */
    /* padding: 10px; */
    padding-top: 150px;
    text-align: justify;
}

.patner-card {
    position: relative;
    text-align: center;
}

.patner-card h3 {
    color: #fff;
    font-size: 24px;
    margin: 10px 0 0 0;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item {
    padding: 15px;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 50px;
}

.service-item img {
    overflow: hidden;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
    aspect-ratio: 2 / 2;
    object-fit: cover;
}

.service-item .thumbnail {
    overflow: hidden;
}

.service-item:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.service-item .text {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #323232;
    position: absolute;
    left: 50%;
    bottom: -20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 240px;
    height: 60px;
    line-height: 60px;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-icon-wrap .icons-box {
    text-align: center;
    width: 265px;
    text-align: center;
    border: 1px solid #D3D3D3;
    height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: -1px;
    justify-content: center;
    align-items: center;
}

.icons-box img {
    max-width: 100px;
    width: 70px;
}

.icons-box .title {
    font-size: 18px;
    margin-top: 15px;
    color: #cca194;
}

.service-icon-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.service-icon-wrap .icons-box:nth-child(even) {
    background: #F8F8F8;
}

.destination-card {
    padding: 15px;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 50px;
}

.destination-card .thumbnail {
    overflow: hidden;
}

.destination-card .thumbnail img {
    aspect-ratio: 1/;
    min-height: 300px;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
}

.destination-card .text {
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #323232;
    position: absolute;
    left: 50%;
    bottom: -20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    padding: 0px 20px;
    height: 60px;
    white-space: nowrap;
    line-height: 60px;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.destination-card:hover .thumbnail img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}


.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.swiper-pagination-bullet-active {
    background: #493d3d !important;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border-color: #cca194;
    border-width: 1px solid;
    border: 3px solid #dabdb4;
    opacity: 1;
    background: #fff;
}


.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  top: auto;
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  border-radius: 50%;
}

.swiper-pagination {
  position: relative;
}

.testimonials {
    background: #cca1946e;
}

.testimonial-image {
 position: relative;
    width: 100%;
	max-width:400px;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    bottom: 0;
    border: 10px solid #fff;
    padding: 10px;
    padding-left: 0;
    background: #e9d6d1;
}

.testimonial-image img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    aspect-ratio: 2/ 2;
}

.testimonial-content {
    margin-left: -270px;
    padding-left: 270px;
    border: 1px solid #c78665;
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonial-content h4 {
    font-style: italic;
    font-size: 20px;
}

.testimonial-content h3 {
    font-size: 40px;
    font-family: 'monallesia';
    color: #cca194;
    margin-bottom: 25px;
}

.testimonial-content {
    color: #474242;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-image {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.team-image img {
    border-radius: 50%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.team-image:before {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    content: "";
    border: 1px solid rgba(212, 176, 165, 0.8);
    z-index: 1;
}

.left-item-image {}

.team .left-item-image .team-image {
    margin-left: auto;
    /* margin-right: 0; */
    margin-right: 40px;
}

.team-content {
    padding: 30px 15px;
}

.team-content h3 {
    font-size: 25px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: "monallesia";
}

.team-content h4 {
    font-size: 18px;
    color: #939580;
}

.team .right-item-image .team-image {
    margin-right: auto;
    margin-left: 40px;
}

.team-card {
    margin-bottom: 40px;
}


.right-item-image.team-card .team-content {
    text-align: right;
}


.video-section-sec {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.video-section-sec .video-wrap {
    padding: 40px;
    -webkit-box-shadow: 0px 4px 12px rgba(0, 5, 50, 0.15);
    box-shadow: 0px 4px 12px rgba(0, 5, 50, 0.15);
    position: relative;
}

.video-section-sec .video-wrap .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 150px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 11;
}

.video-section-sec .video-wrap .video-btn i {
    font-size: 50px;
    color: #fff;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* about page */

.leader-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 50px;
    align-items: center;
}

.leader-card .image-wrap {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    position: relative;
}

.leader-card .image-wrap:before {
    position: absolute;
    width: 96%;
    height: 92%;
    left: 5%;
    top: 7%;
    border: 1px solid #D4B0A5;
    -webkit-transform: skewY(-4deg);
    transform: skewY(-4deg);
    content: "";
    z-index: 11;
}

.leader-card .image-wrap .img-inner {
    -webkit-clip-path: polygon(0 0, 100% 8%, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 8%, 90% 100%, 0 100%);
    /* width: 100%; */
}

.leader-card .image-wrap .img-inner img {
    width: 100%;
    height: 677px;
    object-fit: cover;
}

.leader-card .content-wrap {
    padding: 40px;
    margin-left: 0;
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    background: #fff;
    border: 1px solid #EAEAEA;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    margin-right: -80px;
    z-index: 11;
    margin-top: 30px;
}

.leader-card .content-wrap .section-title {
    text-align: left;
}

.leader-card .content-wrap .section-title h4 {
    text-align: inherit;
}

.office-info-item {
    text-align: center;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    padding: 40px 15px;
}

.office-info-item .office-info-icon {
    width: 85px;
    height: 85px;
    background: #f5f5f5;
    line-height: 85px;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}

.office-info-item .office-info-icon i {
    font-size: 35px;
    color: #939580;
}

.office-info-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
    /* font-family: "Jost", sans-serif; */
}

.office-info-item p {
    margin: 0;
}

.contact-pg-sec .form-area {
    padding: 10px;
    border: 1px solid #ddd;
    display: flex;
    padding: 50px;
    background: #fff;
    -webkit-box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    padding-bottom: 0;
    margin-bottom: -125px;
    position: relative;
    z-index: 9;
}



.contact-pg-sec .form-area .form-image img {
    max-width: 100%;
    height: 422px;
    width: 100%;
    width: 500px;
    object-fit: cover;
}

.contact-pg-sec .form-area .form-wrap {
  flex-basis: 70%;
}

#contact-form-main > div {
    width: calc(50% - 20px);
    float: left;
    margin: 0 10px 25px;
}

#contact-form-main > div > .form-control {
    background: transparent;
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-left: 25px;
    border: 1px solid #ebebeb;
}

#contact-form-main > div.fullwidth {
    width: calc(100% - 25px);
    float: none;
    clear: both;
}

#contact-form-main > div textarea.form-control {
    height: 180px;
    padding-top: 15px;
}

#contact-form-main  .submit-area {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}

.error-handling-messages {
    display: none;
}

.contact-map-section {
  padding:0;
}

.contact-map-section .contact-map {
    height: 550px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


@media(max-width:1199px){

.about-item {
    flex-wrap: wrap;
    padding-top: 100px;
}

.about-item .image-wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.about-item .about-content {
    padding-left: 20px;
    margin-left: 0;
    margin-top: 100px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.about-item .image-wrap .image {
    width: 360px;
    height: 360px;
}

.about-item .image-wrap .shapes {
    top: -20%;
    width: 100%;
    left: 0;
}
}

@media(max-width:991px){
  .leader-card {
    flex-direction: column-reverse;
}

.leader-card .image-wrap .img-inner img {
    max-height: 400px;
}

.patner-content {
    padding-top: 150px;
    padding: 40px 40px;
    padding-top: 150px;
}

.leader-card .content-wrap .section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 35px;
}

.leader-card .content-wrap .section-title h4 {
    font-size: 30px;
    line-height: 1;
}

.container {
    max-width: 100%;
}
.leader-card .content-wrap {
    margin-right: auto;
}
.section-title h2:after {
    left: 0;
    width: 100%;
}
}

@media(max-width:767px){
  .team .left-item-image .team-image {
    margin-right: auto;
}

.right-item-image.team-card {
    flex-direction: column-reverse;
}

.team .right-item-image .team-image {
    margin-left: auto;
}
.team-content {
    padding: 40px 40px;
    text-align: justify;
}

.section-title h2 {
    font-size: 28px;
}

.team-image {
    width: 240px;
    height: 240px;
}

.team-image:before {
    width: 220px;
    height: 220px;
}
.leader-card .content-wrap {
    padding: 20px;
}
.right-item-image.team-card .team-content {
    text-align: justify;
}
}

@media(max-width:575px){
  .section-title h2 {
    font-size: 22px;
    line-height: 40px;
}

.hero-section {
    padding-bottom: 0;
}

.about-item .image-wrap .image {
    width: 260px;
    height: 260px;
}

.about-item {
    padding-top: 50px;
}

.about-item .about-content {
    margin-top: 33px;
}

}
