* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
:root {
    --font-cormorant-garamond: "Cormorant Garamond", serif;
    --font-inclusive-sans: "Inclusive Sans", sans-serif;
    --font-albert-sans:"Albert Sans";
    --black:#1F1F1F;
    --golden:#B28B50;
    --brown: #E7DCCF;
    --section-bg: #FFFAF5;
    --white: #FFF;
    --transition: all 400ms ease-in-out;
}

html {
	-ms-overflow-style: scrollbar;
	box-sizing: border-box;
	font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
    -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
	box-sizing: inherit
}

body {
	font-family: var(--font-inclusive-sans);
	color: var(--black);
    font-size: 16px;
    font-weight: 400;
	letter-spacing: 0;
	line-height: normal;
    touch-action: pan-x pan-y;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container { 
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.small-container{
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
a {
	color: var(--blue);
	text-decoration: none;
    transition: var(--transition);
    text-decoration: none;
}
html, body {
    height: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
b,strong{
    font-weight: 600;
}
a:hover { color: var(--black);}
a:visited{
    color: var(--black);
}
p a{text-decoration: underline; color: var(--blue); font-weight: 400;transition: var(--transition);}
p a:hover{color: var(--black); text-decoration: underline;}
a:hover { text-decoration: none; }
a:focus { outline: none; text-decoration: none; }
img { display: block; }
input:focus, textarea:focus { outline: none;  }
img { max-width: 100%; display: block; }
label { font-weight: inherit; }
input:focus, textarea:focus { outline: none;  }
video, iframe { width: 100% }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {font-family: var(--font-rebuchet-ms); font-weight: 700;color: #12153E;}

h1,.h1 { font-size: 70px; line-height: 100%; font-weight: 700; margin: 0 0 10px; color: var(--black); font-family: var(--font-cormorant-garamond);}
h2,.h2 { font-size: 50px; line-height: 55px; font-weight: 700; margin: 0 0 10px; color: var(--black);font-family: var(--font-cormorant-garamond);}
h3,.h3 { font-size: 30px; line-height: 32px; letter-spacing: -0.6px; font-weight: 700; margin: 0 0 10px; color: var(--black);font-family: var(--font-cormorant-garamond);}
h4,.h4 { font-size: 28px; line-height: normal; font-weight: 700; margin: 0 0 10px; color: var(--black);font-family: var(--font-cormorant-garamond);}
h5,.h5 { font-size: 16px; line-height: 27px; font-weight: 500; margin: 0 0 10px; color: var(--black);font-family: var(--font-cormorant-garamond);}
h6,.h6 { font-size: 14px; line-height: 22px; font-weight: 400; margin: 0 0 10px; color: var(--black);font-family: var(--font-cormorant-garamond);}


h1 span ,.h1 span,h2 span,.h2 span,h3 span ,.h3 span,h4 span ,.h4 span,h5 span ,.h5 span{
    color: var(--golden);
}
.small-title{
    color: var(--black);
    font-family: var(--font-inclusive-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    border-radius: 20px;
    border: 1px solid #B28B50;
    background: rgba(178, 139, 80, 0.10);
    padding: 4px 20px;
    margin: 0 0px 10px 0px;
    width: max-content;
}

p { font-size: 16px; line-height: 26px; font-weight: normal;color: var(--black);margin-bottom: 15px; font-weight: 400;}
p:last-child{margin-bottom: 0px;}
p:empty { display: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.switch-column {
    flex-direction: row-reverse;
}
.overflow-hidden,.body-hidden{
    overflow: hidden;
}
.p-14{
    font-size: 14px;
    line-height: 24px;
}
/*gravity form*/

ul,
li,
ol {
    margin: 0;
    padding: 0;
}

.list-unstyled li::before {
    display: none;
}

.list-unstyled li,
.site-main .list-unstyled li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-main ul li{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 25px;
    margin: 0 0 15px;
    position: relative;
}
.site-main ol {
    list-style: none;
    counter-reset: list-counter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px;
    position: relative;
    color: var(--black);
}

.site-main ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 18px;
    margin-bottom: 16px;
}
.site-main ol li:last-child{
    margin-bottom: 0px;
}
.site-main ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: 700;
}
.site-main ol li:last-child{
    margin-bottom: 0px;
}

.site-main ul li {
    list-style-type: none;
}
.site-main ul li b,.site-main ol li b  {
    color: var(--black);
}

.site-main ul li ol li {
    list-style-type: inherit;
}

.site-main ul li ol li::before {
    display: none;
}

.site-main ul,
.site-main ol {
    margin-bottom: 30px;
}
.site-main ul:last-child, .site-main ol:last-child{
    margin-bottom: 0px;
}
.site-main ol li:last-child,
.site-main ul li:last-child {
    margin-bottom: 0;
}

.site-main ul.check-list li:before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: url(../images/check-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.site-main ul li a,.site-main ol li a{
    text-decoration: underline;
    color: var(--black);
}
.site-main ul li a:hover,.site-main ol li a:hover{
    color: var(--hover-text);
}
li::marker,
.menu li::marker {
    color: var(--black);
}

.list-unstyled li,
.site-main .list-unstyled li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.list-unstyled li::before {
    display: none;
}

.btn{
    background-color: #B68C57 !important;
    border-radius: 6px;
    color: var(--white) !important;
    padding: 10px 20px !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    transition: var(--transition) !important;
    position: relative;
    font-family: var(--font-cormorant-garamond);
}
.btn:hover{
    background-color: #8e632c !important;
}

/*------ Download btn -----*/
.download-btn{
    margin-bottom: 24px;
}
.download-btn::before{
    content: "";
    position: relative;
    width: 22px;
    height: 22px;
    background-image: url(../images/download-icon.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    margin-right: 8px;
}
.download-btn::after{
    display: none;
}

.inline-cta{
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    color: var(--red);
    transition: var(--transition);
    text-decoration: none;
}
.btn.border-btn{
    border: 1px solid #fff;
    background: transparent !important;
    color: var(--white) !important;
    padding: 14px 24px !important;
} 
.btn.border-btn:hover{
    border: 1px solid var(--blue);
    background: var(--blue) !important;
    color: var(--white) !important;
}
.btn.border-btn:hover span{
    color: var(--white) !important;
}
.inline-cta:hover{
    color: var(--dark-blue);
    text-decoration: none;
}

.video-popup-inner{
    height: 800px;
}
.video-popup-inner video,
.mfp-iframe {
  width: 100%;
  max-width: 600px;
  height: 100%;
  object-fit: cover;
}

.mfp-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.page-template-page-news_insight .site-content{
    background: var(--neutral);
}
.page-template-page-news_insight .site-content .loading{
    background-color: rgb(242 244 247 / 50%);
}

.separator-line {
    height: 1px;
    width: 100%;
    background: rgba(152, 100, 26, 0.35);
    margin-bottom: 48px;
}
.mobile-img{
    display: none
}

.site-main{
    min-height: 200px;
    position: relative;

}
.search-content{
    padding-top: 175px;
}


.mfp-close-btn-in .mfp-close {
    color: #fff;
    opacity: 1;
    width: 45px;
    height: 45px;
    font-size: 0px;
    font-weight: 400;
    font-family: var(--font-gt-walsheim-pro);
    background-color: var(--blue);
    right: 15px;
    top: 15px;
    line-height: normal;
    background-image: url(../images/close-icon.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
}
.mfp-close-btn-in .mfp-close:hover{
    background-color: var(--black);
}
.mfp-bg{
    background: var(--black);
    opacity: 0.7;
}
.entry-footer{
    padding: 0px 0px 50px 0px;
}
.nav-links a:hover{
    opacity: 0.5;
}

/* a + a{
    margin-left: 15px !important;
} */
.mb-80{
    margin-bottom: 80px;
}


.site-header.sticky {
    position: fixed;
    z-index: 99;
    top: 0px;
    border-bottom: 1px solid  rgba(0, 0, 0, 0.10);
    animation: goDown 0.8s ease-in-out forwards;
    background: #000;
}
@keyframes goDown {
    0% {
        transform: translateY(-60px);
    }
    100% {
      transform: translateY(0px);
    }
  }
header.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}

.site.no-transparent .content-area {
    padding-top: 150px;
    padding-bottom: 55px;
}

.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

.main-navigation {
    transition: all .5s cubic-bezier(.23,1,.32,1);
    position: relative;
}
.main-navigation ul{
    display: flex;
    list-style: none;
}
.main-navigation ul li a{
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
     border-bottom: 1px solid transparent;
}
.main-navigation ul li a:hover{
    color: var(--golden);
    text-underline-position: from-font;
    border-bottom: 1px solid var(--golden);
}
.main-navigation ul li a.active{
    border-bottom: 1px solid var(--golden);
    color: var(--golden);
}
.main-navigation ul li.menu-item-has-children > a::after{
    content: "";
    position: relative;
    background-image: url(../images/down-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    margin-left: 5px;
    transition: var(--transition);
}
.main-navigation ul li.menu-item-has-children:hover::before{
    content: "";
    position: absolute;
    top: 22px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: transparent;
    height: 33px;
    width: 150px;
    transition: var(--transition);
    max-width: 200px;
}
.main-navigation ul li.menu-item-has-children:hover > a::after{
    transform: rotate(180deg);
    background-image: url(../images/down-arrow-orange.svg);
}

.site-branding img {
    max-width: 135px;
}

.menu-toggle.active {
    z-index: 999;
}
.menu-toggle{
    display: none;
}
.header-mobile {
    display: none;
}

.head-right ul{
    display: flex;
    list-style: none;
}
.main-navigation .sub-menu{
    flex-direction: column;
    top: 50px;
    left: 0px;
    background: var(--white);
    display: none;
    transition: var(--transition);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    width: max-content;
    min-width: 150px;
    padding: 0px 20px;
}

.menu-close{
    display: none;
}
.main-navigation ul ul a{
    width: max-content;
}
.main-navigation li.menu-item-has-children:hover .sub-menu{
    display: flex;
}
.main-navigation .sub-menu li{
    margin-right: 0px;
    border-bottom: 1px solid rgb(28 65 83 / 10%);
    padding: 14px 0px;
    line-height: normal;
}
.main-navigation .sub-menu li a{
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.80);
}
.main-navigation .sub-menu li:last-child{
    border-bottom:0px;
}
.head-center .head-right.mobile{
    display: none;
}
.head-right{
    display: flex;
    align-items: center;
}

.main-navigation ul li:not(:last-child){
    margin-right: 25px;
}
.main-navigation ul li:nth-last-child(-n+2) {
    margin-right: 0;
}
.main-navigation .sub-menu li:not(:last-child){
    margin-right: 0px;
}
.mobile-open{
    display: none;
    margin-right: 18px;
    flex-shrink: 0;
    margin-right: 0px;
}
.mobile-open img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.mobile-bottom{
    display: none;
}
.mobile-bottom .phone-text{
    display: inline-flex;
    align-items: center;
    color: rgba(22, 16, 12, 0.80);
}
.mobile-bottom .phone-text::before{
    content: "";
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    background-image: url(../images/call-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.mobile-head-top{
    display: none;
}
.search-btn{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgba(0, 128, 161, 0.05);
    border: 1px solid var(--blue);
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.head-right.mobile{
    display: none;
}
.mobile-menu-css{
    display: none !important;
}
.mobile-menu-icon{
    display: none;
}
/*---------- Header End -----------*/


/*---------- Footer Start -----------*/
.site-footer{
    background: #080705;
    padding: 37px 0px;
}
.footer-top{
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}
.footer-logo img{
    width: 243px;
    height: 100%;
    object-fit: contain;
}
.footer-menu a{
    color: #FFF;
    font-weight: 600;
}
.footer-menu a:hover{
    color: var(--golden);
}
.footer-menu a:not(:last-child){
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.30);
}
.copyright-text-wrap{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.copyright-text{
    border-top: 1px solid rgba(182, 140, 87, 0.30);
    padding: 22px 0px;
    background: #080705;
}
.copyright-text p{
    color: #787878;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0px;
    font-family: var(--font-albert-sans);
}
.copyright-text a{
    color: #fff;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0px;
    font-family: var(--font-albert-sans);
}
.footer-menu{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
/*---------- Footer End -----------*/

/*---------- Form Common Css Start ---------*/
.form-row label{
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
    display: block;
}
.form-row br{
    display: none;
}
.form-row .form-col{
    width: calc(50% - 12px);
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"],
input[type="month"], input[type="week"], 
input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea{
    border-radius: 8px;
    border: 1px solid #B28B50;
    padding: 20px 10px;
    width: 100%;
    color: var(--black);
    transition: var(--transition);
    font-family: var(--font-inclusive-sans);
    background: transparent;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
}
.form-row input:focus,.form-row textarea:focus{
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.15);
}

input[type="text"]::placeholder, input[type="email"]::placeholder,textarea::placeholder{
    color: rgba(31, 31, 31, 0.50);
}
.form-row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
}
.form-row.two-span{
    gap: 24px;
}
.form-row p{
    width: 100%;
    line-height: 0px;
}
.form-row select{
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 12px 16px;
    width: 100%;
    background: var(--white);
    background-image: url(../images/select-dropdown.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 15px);
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    color: rgb(0 0 0 / 35%);
    cursor: pointer;
    font-family: var(--font-gt-walsheim-pro);
}
.form-row select.active{
    color: var(--black);
}
.form-row select:focus{
    outline: none;
}
.form-row select option{
    color: var(--black);
}
textarea{
    resize: none;
    height: 135px;
}
.form-row.full-width{
    width: 100%;
}
.wpcf7-submit{
    border-radius: 6px !important;
    background: var(--golden) !important;
    width: 100%;
    color: var(--white) !important;
    font-size: 18px;
    line-height: normal !important;
    padding: 10px 20px !important;
    font-family: var(--font-cormorant-garamond);
    cursor: pointer;
    transition: var(--transition);
    border: 0px !important;
    font-weight: 600;
}
.wpcf7-submit:hover{
    background: #8e632c !important;
}
.form-row.submit-wrapper{
    margin-bottom: 0px;
    margin-top: 40px;
}
.submit-wrapper{
    position: relative;
}
.wpcf7-spinner{
    position: absolute;
    right: -30px;
    top: 12px;
    width: 20px;
    height: 20px;
    margin: 0px;
}
.wpcf7 form .wpcf7-response-output{
    margin: 20px 0px 0px 0px;
}

.wpcf7 form.invalid .wpcf7-response-output{
    border-color: red;
}
.wpcf7-not-valid-tip{
    line-height: normal;
    margin-top: 10px;
    font-size: 14px;
    color: #ff3333 !important;
    font-weight: 500;
}
.wpcf7-validates-as-date{
    cursor: pointer;
}

.wpcf7 form.sent .wpcf7-response-output{
    border-color: #46b450;
    background: #46b450;
    border-radius: 8px;
    text-align: center;
    color: var(--white);
    padding: 8px 20px;
    font-weight: 500;
}
form.submitting .wpcf7-submit {
    cursor: not-allowed;
    pointer-events: none;
}
input,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
}
/*---------- Form Common Css End -----------*/

/*------- Not Found Start -----*/
.not-found{
    background: var(--black);
}
.not-found-wrap{
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 300px 0px 250px 0px;
}
.not-found-wrap h1{
    color: var(--golden);
    margin: 0px 0px 5px 0px;
    font-size: 100px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--font-inclusive-sans);
}
.not-found-wrap h2{
    margin: 0px 0px 20px 0px;
}
.not-found-wrap *{
    color: var(--white);
}
.not-found-wrap .btn::after{
    display: none;
}
.not-found-wrap p{
    margin-bottom: 25px;
}
/*------- Not Found End -----*/


#posts-loader {
    display: none;
    height: 100%;
    background-color: rgb(0 128 161 / 20%);
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    z-index: 10;
    transform: translateX(-50%);
    margin: 0px 15px;
}

#posts-loader .spinner {
    -webkit-animation: load8 .7s linear infinite;
    animation: load8 .7s linear infinite;
    border: 3px solid #fff;
    border-left-color: var(--blue);
    border-radius: 100%;
    height: 50px;
    left: 50%;
    margin: 0 auto;
    position: absolute;
    top: 20% !important;
    transform: translate(-50%, -50%);
    width: 50px;
    z-index: 999;
}
.wp-block-paragraph $nbsp{}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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


.inner-banner + .faq{
    padding-top: 0px;
}

.page-id-190 .contact-form-section{
    margin-top: 60px;
}

.back-to-top {
    width: 56px;
    height: 56px;
    border-radius: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--golden);
    transition: all .3s ease;
    position: fixed;
    right: 20px;
    bottom: 70px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.back-to-top img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.back-to-top:hover {
    background: var(--black);
}
@media only screen and (max-width:1399px) {

    .wpcf7-spinner{
        right: 15px;
    }
    .main-navigation ul li a {
        font-size: 15px;
    }
}
@media only screen and (max-width:1199px) {


}

@media only screen and (max-width:1200px) {

    /*---- Header Start ------*/
    
    .header-center {
        bottom: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        left: 0px;
        padding-left: 15px;
        opacity: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 130px 15px 0px 15px;
        position: fixed;
        transition: all .3s;
        visibility: hidden;
        z-index: 2;
        width: 100%;
        background:#000;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        height: 100vh;
        top: 0px;
    }
    .header-right a.btn{
        display: none !important;
    }
    .menu-open .header-inner{
        background-color: transparent;
        backdrop-filter: none;
    }
    .menu-open .header-center {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-menu-icon .humbger-box{
        width: 40px;
        height: 40px;
        background-color: var(--golden);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .mobile-menu-icon .humbger-box img{
        width: 20px;
        height: 20px;
        object-fit: contain;
        flex-shrink: 0;
    }
    .header-inner{
        padding: 15px 0px;
    }
    .mobile-menu-close{
        display: none;
    }
    .menu-open .mobile-menu-close{
        display: block;
        width: 15px !important;
        height: 15px !important;
    }
    .menu-open .mobile-menu-open{
        display: none;
    }
    .menu-open{
        overflow: hidden;
    }
    .site-branding, .mobile-menu-icon {
        z-index: 99;
        position: relative;
    }
    .mobile-menu-icon {
        display: flex;
        align-items: center;
    }
    .mobile-menu-close{
        display: none;
    }
    .menu-open .mobile-menu-close{
        display: block;
    }
    .menu-open .mobile-menu-open{
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    .menu-open .head-left{
        z-index: 9;
        position: relative;
    }
    .head-right .phone-text{
        display: none;
    }
    .main-navigation ul{
        flex-direction: column;
    }
    .main-navigation ul li a{
        justify-content: space-between;
    }

    .main-navigation ul li:not(:last-child), .head-right ul li:not(:last-child) {
        margin-right: 0px;
    }
    .menu-open .menu-icon, .menu-open .menu-icon .line {
        width: 30px;
    }
    .menu-open .menu-close {
        display: block;
    }
    .menu-open .menu-open {
        display: none;
    }
    .menu-icon img{
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
  
    .main-navigation li.active .sub-menu{
        padding: 5px 0px 0px 15px;
        margin-bottom: -15px;

        border-radius: 0px;
    }
    .sub-menu{
        overflow:hidden;
    }
    .main-navigation .sub-menu li:not(:last-child) {
        margin-bottom: 0px;
    }
    .main-navigation ul li.menu-item-has-children:hover > a::after{
        transform: unset;
        top: 0px;
        opacity: 1;
    }
    .main-navigation ul li.menu-item-has-children.active > a::after{
        transform: rotate(180deg);
        top: -2px;
        opacity: 0.6;
    }
    .mobile-open{
        display: flex;
        align-items: center;
    }

    .mobile-menu-icon{
        display: block;
    }

    .main-navigation ul li:not(:last-child){
        margin-bottom: 30px;
    }
 
    .head-right{
        margin-left: auto;
        display: none;
    }
    .mobile-menu-css{
        display: flex !important;
        width: max-content;
    }
    .mobile-menu-css a{
        color: var(--white) !important;
        font-size: 18px !important;
    }
    .menu-open .back-to-top{
        display: none;
    }
    /*---- Header End ------*/

}

@media only screen and (max-width:991px) {

    h1, .h1 {
        font-size: 50px;
        line-height: normal;
    }
    h2, .h2{
        font-size: 40px;
        line-height: normal; 
    }
    h3, .h3{
        font-size: 24px;
        line-height: normal; 
    }
    h4, .h4{
        font-size: 20px;
        line-height: normal; 
    }
    .mb-80 {
        margin-bottom: 60px;
    }
    .footer-cta-wrap h2 {
        font-size: 45px;
    }

    .video-popup-inner {
        height: 600px;
    }
    .mfp-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .flatpickr-calendar {
        width: 325px;
    }
    .page-id-190 .contact-form-section{
        margin-top: 50px;
    }
    .footer-top{
        gap: 70px;
    }
}

@media only screen and (max-width:767px) {
    p{
        font-size: 15px;
        line-height: 23px;
    }
    body{
        font-size: 14px;
    }
    h1, .h1 {
        font-size: 35px;
        line-height: normal;
    }
    h2, .h2{
        font-size: 28px;
        line-height: normal; 
    }
    h3, .h3{
        font-size: 20px;
        line-height: normal; 
    }
    h4, .h4{
        font-size: 18px;
        line-height: normal; 
    }

    .mb-80 {
        margin-bottom: 50px;
    }
    .btn{
        padding: 12px 18px !important;
    }
    .site-main ul li,  .site-main ol li{
        font-size: 14px;
        line-height: 26px;
    }
    .site-main ul li:before{
        top: 2px;
    }
    .btn{
        font-size: 18px;
    }
    /*-------------------*/
    .head-center{
        width: calc(100% - 30px);
    }

    .site-header a.btn {
        padding: 10px 15px !important;
    }
    .main-navigation ul li a {
        font-size: 16px;
    }

    .footer-top{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logo img {
        width: 100%;
        height: 100%;
    }    
    .footer-top {
        gap: 40px;
    }
    .footer-logo{
        width: 60%;
    }
    /*---- Footer End ------*/

    .back-to-top {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 30px;
    }
    .back-to-top img {
        width: 17px;
        height: 17px;
    }
    .footer-menu{
        row-gap: 22px;
    }
    /*------ Form Common Css Start -------*/

    .not-found-wrap{
        padding: 180px 0px 180px 0px;
    }
    .not-found-wrap h1{
        font-size: 80px;
    }
}
@media only screen and (max-width:575px) {
     /* .btn{
        width: 100%;
    } */
}
@media only screen and (max-width:375px) {

    .btn{
        min-width: auto;
    }
}

