* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
    --font-brockmann: 'Brockmann';
    --teal:#779797;
    --black: #000;
    --white: #FFF;
    --grey: #f1f1f1;
    --red: #ea2200;
    --transition: all 400ms ease-in-out;
}

html {
	-ms-overflow-style: scrollbar;
	box-sizing: border-box;
	font-size: 100%;
}

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

body {
	font-family: var(--font-brockmann);
	color: var(--teal);
	font-size: 15px;
    line-height: 20px;
    font-weight: 400;
	letter-spacing: 0;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
} 
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
a {
	color: var(--black);
	text-decoration: none;
	transition: .3s;
}
a:visited {
    color: var(--black);;
}
a:hover { color: var(--black);}
p a{text-decoration: underline;}
p a:hover{color: var(--mid-blue);text-decoration: underline;}
a:hover { text-decoration: none; }
a:focus { outline: none; text-decoration: none; }
img { display: block; }
input:focus, textarea:focus { outline: none; box-shadow: none !important; }
img { max-width: 100%; display: block; }

ul, li, ol { margin: 0; padding: 0; }
ul li,ol li{
    margin-bottom: 20px;
    margin-left: 20px;
}
ul li a,
ol li a{
    color: var(--teal);

}

label { font-weight: inherit; }
input:focus, textarea:focus { outline: none; box-shadow: none; }
video, iframe { width: 100% }

h1,.h1 { font-size: 70px; line-height: normal;margin: 0 0 20px; color: var(--teal); font-weight: 400; }
h2,.h2 { font-size: 70px; line-height: normal;margin: 0 0 20px; color: var(--teal); font-weight: 400;}
h3,.h3 { font-size: 47px; line-height: normal;margin: 0 0 20px; color: var(--teal); font-weight: 400;}
h4,.h4 { font-size: 35px;  line-height: normal;margin: 0 0 20px; color: var(--teal); font-weight: 400;}
h5,.h5 { font-size: 27px;  line-height: normal;margin: 0 0 20px; color: var(--teal); font-weight: 400;}
h6,.h6 { font-size: 22px;  line-height: normal;margin: 0 0 20px; text-transform:uppercase;color: var(--teal);  font-weight: 400;}

h1 span, .h1 span{color: var(--light-blue);}

p { font-size: 15px;line-height: 20px; margin-bottom: 20px; color: var(--teal);}
p:last-child{ margin-bottom: 0; }
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 {
    overflow: hidden;
}
.post, .page {
    margin: 0px;
}

a.btn,.mobile-menu-link a{
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 12px 24px;
    border-radius: 100px;
    transition: var(--transition);
    line-height: normal;
    background: transparent;
    font-size: 15px;
    letter-spacing: 0.1px;
    border: 2px solid var(--teal);
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none !important;
    z-index: 1;
    background: var(--teal);
}

a.btn::before{
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--teal);
    transition: var(--transition);
    position: absolute;
    color: #fff;
    z-index: -1;
}

a.btn:hover,.mobile-menu-link:hover a{
    color: var(--teal) !important;
    background: transparent;
}
a.btn:hover::before,.mobile-menu-link:hover a::before{
    width: 0%;
}

.small-title{
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 20px;
}
/*----- Header---*/
.header-sticky{
    position: fixed;
    width: 100%;
    z-index: 99;
}
header{
    position: sticky;
    width: 100%;
    z-index: 99;

    top: 0px;
}
.site-header.sticky{
    position: fixed;
    width: 100%;
    left: 0px;
    background: rgb(119 151 151 / 70%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: goDown 0.8s ease-in-out forwards;
}

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

}
.site-header.sticky .header-inner{
    padding: 20px 0px;
}
.header-right{
    display: flex;
    align-items: center;
}
.main-navigation ul {
    position: relative;
    display: flex;
    list-style: none;
}
.main-navigation ul li:not(:last-child){
    margin-right: 35px;
}

.main-navigation ul li a {
    position: relative;
    display: inline-flex;
    color: var(--white);
    text-decoration: none;
    z-index: 1;
    text-transform: uppercase;
}
.main-navigation ul li a::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-right: 12px solid #fff;
    border-top: 0px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 0px;
    top: 4px;
    position: relative;
    transition: var(--transition);
}
.main-navigation ul li.current-menu-item a::before,
.main-navigation ul li a:hover::before{
    border-right: 12px solid var(--teal);
}
header.sticky .main-navigation ul li.current-menu-item a::before,
header.sticky .main-navigation ul li a:hover::before{
    border-right: 12px solid var(--black);
}
.main-navigation ul li a:hover{
    transform: translateX(5px);
}
.main-navigation{
    position: relative;
}
/* .main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    color: var(--white);
} */
/* .main-navigation ul li.current-menu-item a{
    background-color: var(--teal);
} */

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


.mobile-icons-wrap{
    display: none;
}

.social-media-links{
    position: relative;
}
.social-media-links a:not(:last-child){
    margin-right: 15px;
}
.social-title{
    position: absolute;
    top: -20px;
    right: 0px;
    color: var(--red);
    display: none;
}
.menu-icon {
    width: 40px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 99;
  }
  
.menu-icon .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.menu-icon .line:nth-child(1) {
    top: 6px;
}

.menu-icon .line:nth-child(2) {
    top: 17px;
}

/* Active (close) state */
.mobile-menu-icon.active .line:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-menu-icon.active .line:nth-child(2) {
    transform: rotate(-45deg);
    top: 10px;
}
.mobile-menu-icon{
    display: none;
}
.main-navigation li{
    margin-bottom: 0px;
    margin-left: 0px;
}

header.site-header a.btn:hover{
    color: var(--white) !important;
    border: 2px solid var(--white);
}
.mobile-menu-link{
    display: none;
}
/*----------- Footer Start ------------*/
footer{
    padding: 90px 0px 60px 0px;
    background: #f2f2f2;
}
footer .row{
    margin: 0px;
}
.footer-social{
    display: flex;

}
.footer-social a:not(:last-child){
    margin-right: 18px;
}

.footer-left{
    width: 60%;
}
.footer-right{
    width: 40%;
}
.footer-menu li{
    list-style: none;
    margin-left: 0px;
}
.footer-menu li:not(:last-child){
    margin-bottom: 16px;
}
.footer-menu-bottom ul li:not(:last-child){
    margin-right: 20px;
    margin-bottom: 0px;
}
.footer-menu-bottom ul li{
    margin-bottom: 0px;
}
.footer-menu li a{
    color: var(--black);
    text-transform: uppercase;

}
.footer-menu li a:hover{
    color: var(--teal);
}
.footer-logo img{
    max-width: 200px;
    margin-bottom: 80px;
}
.footer-menu-wrap{
    margin-bottom: 50px;
}
.footer-social{
    margin-bottom: 40px;
}
.footer-menu-bottom ul{
    display: flex;
    justify-content: space-between;
}
.footer-menu-bottom ul li a,.copyright-text p{
    text-transform: uppercase;
    font-size: 14px;
    color: var(--teal);
    margin-bottom: 0px;
}
.copyright-text{
    width: 70%;
}
.footer-menu-bottom{
    width: 30%;
}
.footer-menu li.current-menu-item a{
    color: var(--teal);
}
.footer-menu-bottom ul li a:hover{
    color: var(--black);
}
.menu-footer-menu2-container ul li.current-menu-item a{
    color: var(--black);
}
.footer-left-wrapper{
    max-width: 600px;
}

.footer-menu-wrapper{
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin-left: auto;
}

.footer-menu-left-right a {
    color: var(--teal);
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out; /* smooth color fade */
}
.footer-menu-left-right a:hover{
    color: var(--red);
}
.footer-menu-left-right a span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out; /* smooth transform */
}

.footer-menu-left-right a:hover span {
    transform: translateX(6px);
}
.footer-menu-left-right a::before{
    content: "";
    position: relative;
    width: 19px;
    height: 19px;
    object-fit: contain;
    background: url(../images/button-arow.svg) no-repeat;
    background-size: contain;
    display: inline-flex;
    margin-right: 12px;
    top: 3px;
}
.footer-menu-left-right{
    margin-right: 25px;
}
.copyright-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.subscribe-from p{
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--black);
}
.form-row input{
    background: transparent;
    border: 0px;
    border-bottom: 1px solid var(--teal);
    border-radius: 0px;
    padding: 0px 0px 18px 0px;
    width: 100%;
    color: var(--black) !important;
    font-size: 13px;
    font-family: var(--font-brockmann);
    transition: var(--transition);
}
.form-row input:focus{
    border-bottom: 1px solid var(--black);
}
.form-row input::placeholder{
    color: var(--teal);
    font-size: 12px;
    text-transform: uppercase;
    pointer-events: none;
}
.subscribe-btn .wpcf7-submit{
    padding: 0px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--teal) !important;
    border-bottom: 0px;
    text-align: right;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-brockmann);
    border-bottom: 0px !important;
}
.subscribe-btn .wpcf7-submit:hover{
    color: var(--black) !important;
    border-bottom: 0px;
}
.form-row p{
    margin-bottom: 0px;
}
.subscribe-from{
    max-width: 650px;
    margin-bottom: 70px;
}
.subscribe-btn{
    width: max-content;
    position: absolute;
    top: 0px;
    right: 0px;
}
.subscribe-from .form-row{
    position: relative;
}
.wpcf7 input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:hover,
.wpcf7 input:-webkit-autofill:focus,
.wpcf7 textarea:-webkit-autofill,
.wpcf7 select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--black) !important;  /* change to your text color */
    background-color: transparent !important;
    caret-color:  var(--black) !important; /* cursor color */
    transition: background-color 9999s ease-in-out 0s !important;
}
.subscribe-btn .wpcf7-spinner{
    top: 0px;
    position: absolute;
    right: -50px;
}

.wpcf7-spinner {
    background-color: var(--teal);
    opacity: 1;
    width: 20px;
    height: 20px;
    margin: 0 15px;
}
.wpcf7-spinner::before{
    background-color: var(--white);
    top: 2px;
    left: 2px;
    transform-origin: 6px 6px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    margin: 15px 0px;
    padding: 10px;
    color: var(--teal);
    font-size: 16px;
    border: 1px solid var(--teal);
}
.wpcf7-not-valid-tip {
    color: var(--red);
    margin-top: 12px;
    font-size: 15px;
}
.submitting{
    pointer-events: none;
}
.footer-social a img{
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition);
}
.footer-social a img:hover{
    filter: brightness(0%);
}
.wpcf7 form.sent .wpcf7-response-output{
    background: #46b450;
    padding: 14px;
    color: #fff;
    border: 0px;
    margin: 25px 0px 0px 0px;
    text-align: center;
    border-radius: 40px;
}

.footer-text p{
    font-size: 14px;
    line-height: 18px;
}

@media(max-width:1499px){
    .footer-menu-bottom ul li:not(:last-child){
        margin-right: 15px;
    }
}
/*----------- Footer End ------------*/
.panel {
    min-height: 100vh;
    position: relative;
    overflow: visible;
    z-index: 9;
}
footer.panel {
    min-height: auto;
}
.blank-section-wrap{
    height: 100px;
}
.parallax-section{
    margin-bottom: 50px;
}

/*------- Loader Start -----*/
.home #site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* avoid using 100vh if causing issues, 100% fixed should work */
    z-index: 99999; /* higher if needed */
    background-color: #ffffff; /* or desired bg */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.6s ease; /* fade out */
}

.home #site-loader .loader-panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--teal);
    z-index: 2;
    transform: translateY(0);
}

.home #site-loader .loader-panel.top {
    top: 0;
}

.home #site-loader .loader-panel.bottom {
    bottom: 0;
}

.home #site-loader .loader-center {
    position: relative;
    z-index: 3;
    text-align: center;
}

.home .loader-logo {
    opacity: 0;
    transform: scale(0.9);

}
.home .loader-logo h1{
    color: #fff;
    font-size: 120px;
}
.home #site-loader.active .loader-logo {
    animation: logoIn 1s cubic-bezier(.2, .9, .3, 1) forwards 0.8s;
}

.home #site-loader.done .loader-panel.top {
    animation: panelOutTop 1s cubic-bezier(.77, 0, .18, 1) forwards;
}

.home #site-loader.done .loader-panel.bottom {
    animation: panelOutBottom 1s cubic-bezier(.77, 0, .18, 1) forwards;
}

.home #site-loader.done .loader-logo {
    animation: logoOut 0.6s ease forwards;
}

@keyframes logoIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoOut {
    to {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
}

@keyframes panelOutTop {
    to {
        transform: translateY(-100%);
    }
}

@keyframes panelOutBottom {
    to {
        transform: translateY(100%);
    }
}
body.aos-disabled [data-aos] {
    opacity: 0 !important;
    transform: none !important;
  }
body.loader-active {
    overflow: hidden;
    height: 100vh;
}


body.home .page-content {
    opacity: 0;
    /* hide all content initially */
}

body.home.loaded .page-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

body.home .home-hero,
body.home .brand-pills,
body.home .split {
    opacity: 0;
    visibility: hidden;
}

body.home.loaded .home-hero,
body.home.loaded .brand-pills,
body.home.loaded .split,
body.home.loaded .split .line,
body.home.loaded .split .line div {
    opacity: 1 !important;
    visibility: visible !important;
}
/*------- Loader End -----*/




@keyframes SlideTopContentText {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

@-webkit-keyframes SlideTopContentText {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

/*----- 404 Start ------*/
.error-text{
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px 0px 250px 0px;
}

.error-text a{
    color: var(--dark-brown);
    font-size: 20px;
}

.error-text a span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out; /* smooth transform */
}

.error-text a:hover span {
    transform: translateX(6px);
}
.error-text a::before{
    content: "";
    position: relative;
    width: 19px;
    height: 19px;
    object-fit: contain;
    background: url(../images/button-arow.svg) no-repeat;
    background-size: contain;
    display: inline-flex;
    margin-right: 12px;
    top: 3px;
}
.error-text p{margin-bottom: 30px;}

.dummy-text{
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px 0px 250px 0px;
}
/*----- 404 End ------*/



/*Small Desktop*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {

}
@media (max-width: 1440px) {

}

@media (max-width: 1400px) { 
    /*----------- Footer Start ------------*/
    .footer-left {
        width: 45%;
    }

    .footer-right {
        width: 55%;
    }
    .footer-menu-wrapper{
        width: 72%;
    }
    .footer-menu-bottom {
        width: 40%;
    }
    .copyright-text {
        width: 60%;
    }
    /*----------- Footer End ------------*/
}

@media (max-width: 1250px) {
    .container{
        padding-left: 40px;
        padding-right: 40px;
    }
    .panel{
        min-height: auto;
    }
}

@media (max-width: 1199px) {
    h1,h2{
        font-size: 55px;
    }
    h3, .h3{
        font-size: 40px;
    }
    .container{
        padding-left: 30px;
        padding-right: 30px;
    }
    .header-inner{
        padding: 30px 0px;
    }
    .site-branding img {
        max-width: 180px;
    }
    .main-navigation ul li:not(:last-child) {
        margin-right: 30px;
    }
}

@media (max-width: 1024px) {
    .footer-menu-wrapper {
        width: 85%;
    }
    .footer-menu-bottom {
        width: 48%;
    }
    .copyright-text {
        width: 55%;
    }
}

/*Tablet*/
@media (max-width: 991px) {
    .container{
        padding-left: 30px;
        padding-right: 30px;
    }
    h1,h2 {
        font-size: 55px;
    }
    h3, .h3 {
        font-size: 35px;
    }
    /*-------- Header Start -------------*/
    html.menu-open {
        overflow: hidden !important;
        height: 100% !important;
        position: fixed !important;
        width: 100% !important;
      }
    .mobile-menu-icon{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        z-index: 9;
        cursor: pointer;
    }
    .mobile-menu-icon.active .menu-icon{
        margin-top: 2px;
    }
    .menu-text{
        margin-left: 15px;
        font-size: 18px;
        color: var(--white);
        line-height: normal;
    }
    .header-inner{
        padding: 20px 0px;
    }
    .header-left a img{
        margin: 0 auto;
    }

    .header-right{
        display: none;
    }
    .header-center {
        bottom: 0;
        display: flex;
        flex-direction: column;
        right: 0px;
        opacity: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0;
        position: fixed;
        top: 0px;
        transition: all .5s;
        visibility: hidden;
        z-index: 9;
        width: 100%;
        background: rgb(119 151 151 / 60%);
        height: 100vh;
        width: 100%;
        align-items: flex-start;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transform: translateX(100%);
        display: none;
    }
    .menu-open{
        overflow: hidden;
    }
    .menu-open .header-center {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        display: block;
    }
    .menu-open .mobile-menu-icon .line{
        background-color: var(--white);
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        border-radius: 0px;
        background: transparent;
        padding-top: 100px;
    }
    .menu-menu-1-container{
        display: none;
        opacity: 0;
    }
    .menu-open .menu-menu-1-container {
        display: block;
        animation: fadeUp 0.4s ease forwards;
        animation-delay: 0.5s;
    }
    @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
  
    .main-navigation ul li{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .main-navigation ul li:last-child{
        margin-bottom: 0px;
    }
    .main-navigation{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100vh;
        padding: 20px;
    }
    .main-navigation ul li a{
        font-size: 14px;
        justify-content: flex-start;
        color: var(--white);
    }
    .nav-indicator{
        display: none;
    }

    .site-branding{
            z-index: 11;
        position: relative;
    }
    .main-navigation ul li:not(:last-child) {
        margin-right: 0px;
    }
    .main-navigation ul li a::before{
        border-right: 9px solid var(--white);
        border-bottom: 9px solid transparent;
        top: 6px;
    }
    .main-navigation ul li.current-menu-item a{
        color: var(--black);
    }
    .main-navigation ul li.current-menu-item a::before{
        border-right: 9px solid var(--black);
    }
    .mobile-menu-link{
        display: block;
    }
    .main-navigation ul li.mobile-menu-link a::before{
        display: none;
    }
    .main-navigation ul li.mobile-menu-link a{
        background: var(--white);
        color: var(--teal) !important;
    }
    .menu-icon{
        width: 30px;
        height: 20px;
        top: -2px;
    }
    /*-------- Header End -------------*/

    /*----- Footer Start ------*/
    .copyright-wrapper{
        flex-direction: column;
    }
    .footer-menu-bottom {
        width: 100%;
    }
    .copyright-text {
        width: 100%;
        margin-bottom: 18px;
    }
    .footer-menu-left-right {
        margin-right: 0px;
    }
    .footer-menu-wrapper {
        width: 100%;

    }
    footer .row.top-row{
        margin: 0px;
        padding-bottom: 20px;

    }
    .footer-left {
        width: 60%;
        padding: 0px 30px 0px 0px;
    }
    .footer-right {
        width: 40%;
        padding: 0px 0px 0px 30px;  
    }
    .footer-social a img {
        width: 35px;
        height: 35px;
    }
    footer .row{
        margin: 0px;
    }
    /*----- Footer End ------*/

    .home .loader-logo h1{
        font-size: 80px;
    }
}

@media only screen and (max-width:767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1{
        font-size: 30px !important;
    }
    h2 {
        font-size: 24px !important;
    }
    h3, .h3 {
    font-size: 22px !important;
    }
    h4, .h4 {
        font-size: 22px !important;
    }
    h5, .h5 {
        font-size: 20px !important;
    }
    a.btn, .mobile-menu-link a{
            padding: 10px 16px;
            font-size: 14px;
    }
    /*-------- Header Start -------------*/
    .main-navigation ul li{
        margin-bottom: 20px;
    }
    .menu-text {
        margin-left: 12px;
        font-size: 14px;
    }
    .site-branding img {
        max-width: 140px;
    }
    .menu-icon {
        width: 20px;
        height: 20px;
        top: -3px;
    }
    .menu-icon .line:nth-child(1) {
        top: 9px;
    }
    .mobile-menu-icon.active .menu-icon {
        top: -2px;
    }

    /*-------- Header End -------------*/

    /*----- Footer Start ------*/
    .footer-left {
        width: 100%;
        margin-bottom: 40px;
        padding: 0px
    }
    .footer-right {
        width: 100%;
        padding: 0px
    }
    .footer-menu-wrapper {
        width: 100%;
    }
    .footer-menu-bottom ul{
        flex-direction: column;
    }
    .copyright-wrapper{
        text-align: left;
    }
    .footer-menu-bottom ul li:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .footer-menu-wrap {
        margin-bottom: 30px;
    }
    footer {
        padding: 40px 0px;
    }   
    .footer-logo img{
        margin-bottom: 50px;
        max-width: 150px;
    } 
    .copyright-wrapper{
        margin-top: 20px;
    }
    .subscribe-from{
        margin-bottom: 30px;
    }
    .footer-menu li{
        font-size: 14px;
    }
    .footer-menu li:not(:last-child) {
    margin-bottom: 10px;
    }
    .footer-social a img {
        width: 24px;
        height: 24px;
    }
    /*----- Footer End ------*/

    .subscribe-btn .wpcf7-spinner {
        top: 50px;
        position: absolute;
        right: 0px;
        margin: 0px;
    }

    .home .loader-logo h1{
        font-size: 70px;
    }
    .error-text{
        padding: 100px 0px 130px 0px;
    }
    .error-text a{
        font-size: 18px;
    }
    .wpcf7 form.sent .wpcf7-response-output{
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
        line-height: 20px;

    }
    .parallax-section {
        margin-bottom: 0px;
    }
    p ,body{
    font-size: 14px;
    }
    .small-title{
        margin-bottom: 14px;
        font-size: 14px;
    }
}
/* @media only screen and (max-width:375px) {
    h1{
        font-size: 30px;
    }
    h2 {
        font-size: 24px;
    }
    h3, .h3 {
    font-size: 22px;
}
} */

/* single-news*/

.single-news .post-content img{
    width: 100%;
    margin-top:30px
}
.single-news .post-content h2,.single-news .post-content h3,.single-news .post-content h4, .single-news .post-content h5,.single-news .post-content h6{
    margin-top:30px;
    margin-bottom: 16px;
}
.single-news .post-content{
    margin: 120px 0;
}
.nav-links a{
    color: var(--teal);
}
.nav-links a:hover{
    color: var(--black);
}
@media(max-width:991px){
    .single-news .post-content{
        margin: 80px 0;
    }
}
@media(max-width:991px){
    .single-news .post-content{
        margin: 50px 0;
    }
}

/* popup */

.white-popup {
    position: relative;
    background: #FFF;
    border-radius: 25px;
    padding: 70px 40px;
    width: auto;
    max-width: 600px;
    margin: 20px auto;
  }

  .white-popup .form-row input{
    font-size: 18px;
    padding: 12px 0px 12px 0px;
    margin-bottom: 17px;
    color: var(--black) !important;
}
.white-popup .form-row input::placeholder{
    font-size: 18px;
    text-transform: initial;
    color: var(--teal);
}
.white-popup .form-row label{
    font-size: 25px;
    color: var(--light-brown);
    margin-bottom: 30px;
    display: block;
}

.wpcf7-list-item {
    position: relative;
    line-height: normal;
    margin: 0px 25px 35px 0px;
}
.wpcf7-list-item input {
    position: absolute;
    display: none;
    color: #fff !important;

}
.wpcf7-list-item .wpcf7-list-item-label{
    padding: 8px 14px;
    text-transform: uppercase;
    border: 1px solid #B5B5B5;
    border-radius: 50px;
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
}

.wpcf7-list-item input:checked + .wpcf7-list-item-label {
    background-color: var(--dark-brown);
    color: var(--white);
    border: 1px solid var(--dark-brown);
}
.services-list br{
    display: none;
}
.services-list .wpcf7-list-item label{
    margin-bottom: 0px;
}
.services-list{
    margin-bottom: 35px;
}
.services-list .wpcf7-checkbox{
    margin-bottom: -12px;
    display: flex;
    flex-wrap: wrap;
}
.mfp-close{
    right: 15px !important;
    top: 15px !important;
}
.submit-button input{
    background-color: transparent !important;
    border: 0px !important;
    padding: 0px 0px 0px 30px !important;
    font-size: 18px !important;
    color: var(--light-brown) !important;
    font-weight: 500;
    cursor: pointer;
    background-image: url(../images/button-arow-teal.svg) !important;
    background-repeat: no-repeat !important;
    transition: var(--transition);
    background-size: contain !important;
}
.submit-button input:hover{
    color: var(--black) !important;
}
.submit-button input:hover{
    background-image: url(../images/button-arow-black.svg) !important;
}
.submit-button{
    margin-top: 20px;
}

body.popup-active,html.popup-active{
    overflow: hidden;
    width: 100%;
}

.full-with-content{
    margin: 120px 0;
}
.popup-title{
    margin-bottom: 30px;
}
.mfp-close-btn-in .mfp-close{
    color: var(--teal) !important;
    opacity: 1;
    font-size: 45px;
    transition: var(--transition);
}
.mfp-close-btn-in .mfp-close:hover{
    color: var(--black) !important;
}
@media(max-width:1199px){
    .full-with-content {
        margin: 80px 0;
    }
}
  @media(max-width:991px){
    .full-with-content{
        margin: 80px 0;
    }
}
@media(max-width:767px){
    .full-with-content{
        margin: 50px 0;
    }
    .mfp-container{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .white-popup{
        border-radius: 20px;
        padding: 50px 30px;
        max-width: 100%;
    }
    .mfp-close-btn-in .mfp-close{
        font-size: 40px;
    }
    .mfp-close {
        right: 10px !important;
        top: 10px !important;
    }
}




.embedform.apply-popup .popup-title {
    margin-bottom: 0;
    padding: 0 40px;
}
.embedform.apply-popup{
    padding: 70px 0 0 0;
    min-height: 500px;
}
.ep-close-icon{
    display: none;
}
.mfp-close-btn-in .mfp-close {
    color: #333;
    z-index: 9999999;
}