@font-face {
	font-family: 'Inter-Regular';
	src: url('../fonts/Inter-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Inter-Medium';
	src: url('../fonts/Inter-Medium.ttf') format('truetype');
	font-weight: medium;
	font-style: normal;
}
@font-face {
	font-family: 'Inter-Bold';
	src: url('../fonts/Inter-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'DMSans-Bold';
	src: url('../fonts/DMSans-Bold.eot');
	src: local('☺'), url('../fonts/DMSans-Bold.ttf') format('truetype'), url('../fonts/DMSans-Bold.svg') format('svg');
	font-weight: bold;
	font-style: normal;
}
:root {
    --main-hover-color: #002460;
    --main-text-hover-color: #304595;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh);
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    background-color: #F5F5F5;
}
.no-scroll{
    overflow: hidden;
}
.main{
    padding-top: 100px;
    transition: 0.2;
}
.footer{
    min-height: 364px;
    background-color: #01173B;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: #fff;
    transition: 0.2s;
    z-index: 10;
    border-bottom: 1px solid #30449510;
}
.container{
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 32px;
}
.header-container{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 32px;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    transition: 0.2s;
}
.header-menu-list{
    list-style: none;
    display: flex;
    justify-content: center;
}
.header-menu-list li{
    margin: 25px;
}
.header-menu-list li a{
    font-family: 'Inter-Medium';
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s;
}
.header-menu-list li a:hover{
    color: var(--main-text-hover-color);
}
.header-menu-list .current-menu-item a{
    color: var(--main-text-hover-color);
    font-weight: 700;
}
.menu-item a span{
    font-size: 12px;
    display: inline-block;
    min-width: 43px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #ffffff31;
    background-color: #ffffff10;
    margin-left: 4px;
}

.main-logo{
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 208px;
    height: 48px;
}
.view-plans-button{
    color: #fff;
    text-decoration: none;
    font-family: 'DMSans-Bold', sans-serif;
    font-weight: 500;
    background-color: #01173B;
    transition: 0.2s;
    padding: 12px 27px;
    border-radius: 30px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.40px;
    border: 2px solid transparent;
    width: fit-content;
}
.view-plans-button:hover{
    background-color: var(--main-hover-color);
    border: 2px solid #01173B;
}
.menu-burger-btn{
    display: none;
}
.header-scrolled{
    height: 75px;
    -webkit-box-shadow: 0px 27px 20px -25px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 27px 20px -25px rgb(0 0 0 / 15%);
    box-shadow: 0px 27px 20px -25px rgb(0 0 0 / 15%);
}
.header-scrolled .header-inner{
    height: 75px;
}
.main-header-scrolled{
    padding-top: 75px;
}
@media screen and (max-width: 861px){
    .header-menu-list li{
        margin: 15px 0;
    }
    .header-inner .view-plans-button{
        margin-right: 80px;
    }
    .menu-burger-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 30px;
        z-index: 5;
        position: absolute;
        top: 35px;
        right: 32px;
        transition: 0.2s;
    }
    .menu-burger-btn span{
        position: relative;
        width: 100%;
        height: 2px;
        border-radius: 9px;
        background-color: #01173B;
    }
    .menu-burger-btn span:before{
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 9px;
        background-color: #01173B;
        position: absolute;
        left: 0;
        top: 10px;
        transition: 0.2s;
    }
    .menu-burger-btn span:after{
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 9px;
        background-color: #01173B;
        position: absolute;
        left: 0;
        top: -10px;
        transition: 0.2s;
    }
    .header-scrolled .menu-burger-btn{
        top: 25px;
    }
    .menu-burger-btn-active span{
        background-color: transparent;
    }
    .menu-burger-btn-active span:after{
        top: 0;
        transform: rotate(-45deg);
    }
    .menu-burger-btn-active span:before{
        top: 0;
        transform: rotate(45deg);
    }
    .header-main-menu{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background-color: #F5F5F5;
        display: none;
        justify-content: center;
        align-items: center;
    }
    .header-menu-list{
        flex-direction: column;
        align-items: center;
    }
    .header-main-menu-active{
        display: flex;
    }
}
@media screen and (max-width: 650px){
    .header-container{
        padding: 0 14px;
    }
    .header-inner .view-plans-button{
        margin-right: 70px;
        flex-shrink: 0;
    }
    .menu-burger-btn{
        right: 14px;
    }
}
@media screen and (max-width: 495px){
    .main-logo{
        width: 120px;
        height: 35px;
    }
    .header-inner .view-plans-button{
        margin-right: 60px;
        flex-shrink: 0;
        padding: 6px 15px;
    }
}
@media screen and (max-width: 376px){
    .header-inner .view-plans-button{
        margin-right: 45px;
    }
}

/* footer */

.footer-menu-header{
    text-transform: uppercase;
    cursor: default;
    margin-bottom: 14px;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    color: #EAECF0;
    padding-top: 64px;
}
.footer-logo-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 310px;
}
.footer-logo{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 168px;
    height: 48px;
    margin-bottom: 32px;
}
.footer-text{
	font-size: 16px;
}
.footer-menu-list{
    display: flex;
    width: 100%;
    list-style: none;
}
.footer-menu-list li{
    min-width: 144px;
    margin-right: 21px;
}
.footer-menu-header{
    color: #EAECF0;
    font-family: 'Inter-Medium';
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.footer-menu-list li a{
    text-decoration: none;
    color: #EAECF0;
    font-family: 'Inter-Medium';
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.footer-menu-list .sub-menu{
    list-style: none;
    margin-top: 10px;
}
.footer-menu-list .sub-menu li{
    margin-bottom: 6px;
}
.footer-menu-list .sub-menu li a{
    text-decoration: none;
    color: #EAECF0;
    font-family: 'Inter-Medium';
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
}
.footer-menu-wrapper{
    display: flex;
    min-width: 588px;
}
.menu-item-disabled{
    cursor: default;
}
.footer-socials-wrapper{
    padding-top: 5px;
}
.footer-socials{
    display: flex;
    justify-content: space-between;
    min-width: 216px;
    flex-wrap: wrap;
}
.footer-social-icon{
    width: 24px;
    height: 24px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.2s;
}
.footer-inner{
    height: 364px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-bottom{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copyright-text{
    color: #D0D5DD;
    font-size: 16px;
}
@media screen and (max-width: 1025px){
    .footer-menu-wrapper{
        min-width: auto;
    }
    .footer-socials{
        min-width: auto; 
        justify-content: flex-start;
    }
    .footer-social-icon{
        margin-right: 20px;
        margin-bottom: 15px;
    }
    .footer-menu-list li{
        min-width: auto;
        margin-right: 25px;
    }
    .footer-logo-wrapper{
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 897px){
    .footer-top{
        flex-direction: column;
        align-items: center;
        padding-top: 35px;
    }
    .footer-logo-wrapper{
        width: 100%;
    }
    .footer-menu-wrapper{
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding-bottom: 25px;
    }
    .footer-inner{
        height: fit-content;
    }
    .footer-menu-list li{
        margin-right: 35px;
    }
}
@media screen and (max-width: 636px){
    .footer-top{
        padding-top: 30px;
        flex-direction: column;
    }

    .footer-menu-wrapper{
        width: 100%;
        justify-content: space-between;
        padding-top: 25px;
        padding-bottom: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-menu-list li{
        min-width: 70px;
    }
}
@media screen and (max-width: 506px){
    .footer-menu-wrapper{
        flex-direction: column;
    }
    .footer-socials-wrapper{
        padding-top: 20px;
    }
    .footer{
        height: fit-content;
    }
    .footer-inner{
        height: fit-content;
    }
    .footer-copyright-text{
        font-size: 12px;
    }
    .footer-bottom{
        height: 65px;
    }
    .footer-menu-list li{
        margin-right: 15px;
    }
    .footer-logo-wrapper{
        display: flex;
        align-items: center;
    }
}
@media screen and (max-width: 426px){
    .footer-bottom{
        height: 35px;
        justify-content: center;
    }
    .footer-menu-list{
        justify-content: space-evenly;
    }
    .footer-socials-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* full-width-bg-block */

.full-width-bg-block-inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.full-width-bg-block-inner-right{
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.full-width-bg-block-inner-right .fwbg-text-wrapper{
    padding-top: 74px;
    margin-left: 63px;
}
.fwbg-image-wrapper{
    max-width: 608px;
    max-height: 608px;
}
.fwbg-heading{
    font-family: 'DMSans-Bold', sans-serif;
    font-size: 56px;
    line-height: 80px;
    letter-spacing: -1.6px;
    margin-bottom: 25px;
}
.fwbg-text-wrapper{
    padding-top: 86px;
    display: flex;
    flex-direction: column;
}
.fwbg-text{
    font-size: 18px;
    line-height: 28px;
    max-width: 560px;
    margin-bottom: 15px;
}
.fwbg-text p{
    margin-bottom: 17px;
}
.fwbg-image{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1281px){
    .fwbg-heading{
        font-size: 40px;
        line-height: 50px;
    }
    .fwbg-image-wrapper{
        max-width: 500px;
        height: fit-content;
    }
}
@media screen and (max-width: 1025px){
    .fwbg-heading{
        font-size: 38px;
        line-height: 48px;
    }
    .fwbg-image-wrapper{
        max-width: 445px;
    }
    .fwbg-text{
        max-width: 490px;
    }
}
@media screen and (max-width: 850px){
    .fwbg-text{
        font-size: 16px;
    }
    .fwbg-image-wrapper{
        max-width: 300px;
    }
    .full-width-bg-block-inner{
        align-items: center;
    }
}
@media screen and (max-width: 769px){
    .fwbg-text-wrapper{
        padding-top: 0;
    }
}
@media screen and (max-width: 678px){
    .full-width-bg-block-inner{
        flex-wrap: wrap;
        justify-content: center;
    }
    .fwbg-text{
        max-width: 100%;
    }
    .container{
        padding: 0 14px;
    }
}
@media screen and (max-width: 426px){
    .fwbg-text-wrapper{
        padding-top: 0 !important;
        margin-left: 0 !important;
    }
    .fwbg-image-wrapper{
        max-width: 250px;
        padding-top: 25px; 
    }
    .fwbg-heading{
        font-size: 36px;
        line-height: 48px;
        text-align: center;
    }
    .fwbg-text{
        font-size: 15px;
    }
    .fwbg-text-wrapper .view-plans-button{
        margin: 0 auto;
    }
}
@media screen and (max-width: 355px){
    .fwbg-heading{
        font-size: 30px;
        line-height: 40px;
    }
}
/* simple text with heading block */
.simple-text-with-heading-inner{
    max-width: 998px;
    margin: 0 auto; 
}
.simple-text-heading{
    font-family: 'DMSans-Bold', sans-serif;
    font-size: 56px;
    line-height: 80px;
    letter-spacing: -1.4px;
    margin-bottom: 25px;
    text-align: center;
}
@media screen and (max-width: 1281px){
    .simple-text-heading{
        font-size: 40px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1025px){
    .simple-text-heading{
        font-size: 38px;
        line-height: 48px;
    }
}
@media screen and (max-width: 850px){
    .simple-text-text{
        font-size: 16px;
    }
}
@media screen and (max-width: 426px){
    .simple-text-heading{
        font-size: 36px;
        line-height: 48px;
    }
    .simple-text-text{
        font-size: 15px;
    }
    .simple-text-with-heading-inner{
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}
@media screen and (max-width: 355px){
    .simple-text-heading{
        font-size: 30px;
        line-height: 40px;
    }
}
/* container full width block */
.content-text-wrapper{
    display: flex;
    flex-direction: column;
    max-width: 590px;
}
.content-texts{
    font-size: 16px;
    line-height: 24px;
    color: #71828A;
    font-family: 'Inter-Regular', sans-serif;
}
.content-texts p{
    margin-bottom: 15px;
}
.content-with-image-block .content-text-wrapper .content-texts > h1,h2,h3,h4{
    font-size: 46px;
    line-height: 64px;
    font-family: 'DMSans-Bold', sans-serif;
    letter-spacing: -1.4px;
    margin-bottom: 25px;
    color: #01173B;
}
#main .content-with-image-block .content-with-image-inner .content-text-wrapper .content-texts h1,h2,h3,h4{
    font-size: 46px !important;
    line-height: 64px !important;
    font-family: 'DMSans-Bold', sans-serif !important;
    letter-spacing: -1.4px !important;
    margin-bottom: 25px !important;
    color: #01173B;
}
.content-with-image-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.content-with-image-inner-right{
    flex-direction: row-reverse;
}
.content-image-wrapper{
    width: 100%;
    height: 100vh;
    max-width: 526px;
    max-height: 526px;
    background-color: #fff;
    border: 1px solid #30449510;
    border-radius: 30px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0px 44px 64px -20px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 44px 64px -20px rgba(0,0,0,0.1);
    box-shadow: 0px 44px 64px -20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.content-text-wrapper .view-plans-button{
    margin-top: 22px;
}
@media screen and (max-width: 1201px){
    .content-image-wrapper{
        max-width: 425px;
        max-height: 425px;
    }
    .content-with-image-block .content-text-wrapper .content-texts > h1, h2, h3, h4{
        font-size: 40px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1025px){
    .content-with-image-block .content-text-wrapper .content-texts > h1, h2, h3, h4{
        font-size: 38px;
        line-height: 48px;
        text-align: center;
    }
    .content-image-wrapper{
        max-width: 360px;
        max-height: 360px;
    }
    .content-text-wrapper{
        max-width: 510px;
    }
    .content-text-wrapper .view-plans-button{
        margin: 10px auto;
    }
}
@media screen and (max-width: 769px){
    .content-with-image-inner{
        flex-direction: column;
        justify-content: center;
    }
    .content-text-wrapper{
        max-width: 100%;
    }
    .content-image-wrapper{
        margin-top: 25px;
    }

}

@media screen and (max-width: 426px){
    .content-with-image-block .content-text-wrapper .content-texts > h1, h2, h3, h4{
        font-size: 34px;
        line-height: 46px;    
    }
    .content-texts p{
        font-size: 15px;
    }
    .content-image-wrapper{
        max-width: 300px;
        max-height: 300px;
    }
}
@media screen and (max-width: 355px){
    .content-with-image-block .content-text-wrapper .content-texts > h1, h2, h3, h4{
        font-size: 30px;
        line-height: 40px;
    }
    .content-image-wrapper{
        max-width: 280px;
        max-height: 280px;
    }
}
/* contact us block */
.contact-us-block{
    width: 100%;
    min-height: 391px;
    background-image: url('../img/EagleBg.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}
.contact-us-block-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 107px;
}
.contact-us-block-inner .view-plans-button{
    margin-top: 30px;
}

@media screen and (max-width: 1025px){
    .contact-us-block-inner{
        align-items: center;
    }
}
@media screen and (max-width: 860px){
    .contact-us-block{
        background-size: cover;
    }
}
@media screen and (max-width: 769px){
    .contact-us-block-inner{
        padding-top: 45px;
    }
    .contact-us-block{
        min-height: 280px;
    }
}
@media screen and (max-width: 426px){
    .contact-us-block{
        min-height: 310px;
    }
}

/* full-width-heading-text-block */

.full-width-heading-text-block{
    min-height: 348px;
}
.full-width-heading-text-inner{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    min-height: 348px;
}
.full-width-heading-text-inner-Right{
    flex-direction: row-reverse;
}
.full-width-heading-text-heading{
    font-size: 56px;
    line-height: 78px;
    letter-spacing: -1.6px;
    font-family: 'DMSans-Bold', sans-serif;
}
.full-width-heading-text-inner-text{
    color: #fff;
    max-width: 525px;
    font-size: 20px;
    line-height: 30px;
}
.full-width-heading-text-inner-text strong{
    font-family: 'Inter-Bold', sans-serif;
}
@media screen and (max-width: 1281px){
    .full-width-heading-text-heading{
        font-size: 40px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1025px){
    .full-width-heading-text-heading{
        font-size: 38px;
        line-height: 48px;
    }
    .full-width-heading-text-inner{
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 426px){
    .full-width-heading-text-heading{
        font-size: 34px;
        line-height: 46px;    
        text-align: center;
    }
    .full-width-heading-text-inner{
        justify-content: center;
    }
}
@media screen and (max-width: 355px){
    .full-width-heading-text-heading{
        font-size: 30px;
        line-height: 40px;
    }
   
}
/* simple-text-with-image-block */

.simple-text-with-image-inner-image-wrapper{
    max-width: 560px;
    width: 100%;
    height: fit-content;
}
.simple-text-with-image-inner-image{
    width: 100%;
    height: auto;
}
.simple-text-with-image-inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.simple-text-with-image-inner-Right{
    flex-direction: row-reverse;
}
.simple-text-with-image-inner-text{
    max-width: 560px;
    width: 100%;
    font-size: 16px;
    color: #71828A;
    display: flex;
    flex-direction: column;
}
.simple-text-with-image-inner-text .view-plans-button{
    margin-top: 25px;
}
.simple-text-with-image-inner-text p{
    line-height: 24px;
}
.simple-text-with-image-inner-text blockquote{
    font-family: 'Inter-Medium', sans-serif;
    color: #01173B;
    position: relative;
    font-weight: 500;
    margin: 22px 0 0 0;
    padding-left: 15px;
}
.simple-text-with-image-inner-text blockquote:before{
    content: '';
    width: 2px;
    height: 100%;
    background-color: #FFB800;
    position: absolute;
    left: 0;
    top: 0;
}
@media screen and (max-width: 1025px){
    .simple-text-with-image-inner-Left .simple-text-with-image-inner-image{
        margin-left: 15px;
    }
    .simple-text-with-image-inner-Right .simple-text-with-image-inner-image{
        margin-right: 15px;
    }
}
@media screen and (max-width: 615px){
    .simple-text-with-image-inner{
        flex-direction: column;
    }
    .simple-text-with-image-inner-Left .simple-text-with-image-inner-image{
        margin-left: 0;
    }
    .simple-text-with-image-inner-Right .simple-text-with-image-inner-image{
        margin-right: 0;
    }
    .simple-text-with-image-inner-image{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .simple-text-with-image-inner-text .view-plans-button{
        margin: 10px auto;
    }
}
/* simple-text-with-image-button-inner*/
.simple-text-with-image-button-inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.simple-text-with-image-button-inner-Right{
    flex-direction: row-reverse;
}
.simple-text-with-image-button-inner-wrapper-Square{
    width: fit-content;
    height: fit-content;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    max-width: 531px;
}
.simple-text-with-image-button-inner-wrapper-Square img{
    max-height: 368px;
    width: auto;
}
.simple-text-with-image-button-inner-wrapper-Round{
    border-radius: 50%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: #fff;
    flex-shrink: 0; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.simple-text-with-image-button-inner-wrapper-Round img{
    width: 100%;
    height: auto;
}
.simple-text-with-image-button-inner-text-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.simple-text-with-image-button-inner-text{
    font-family: 'Inter-Medium';
    margin-bottom: 8px;
}   
.simple-text-with-image-button-inner-text p{
    margin-bottom: 17px;
}
@media screen and (max-width: 1281px){
    .simple-text-with-image-button-inner-Right .simple-text-with-image-button-inner-text-wrapper{
        margin-left: 15px;
    }
    .simple-text-with-image-button-inner-Left .simple-text-with-image-button-inner-text-wrapper{
        margin-right: 15px;
    }
    .simple-text-with-image-button-inner-text{
        font-size: 26px;
    }
}
@media screen and (max-width: 769px){
    .simple-text-with-image-button-inner-text{
        font-size: 20px;
        line-height: 36px;
    }
    .simple-text-with-image-button-inner-Right{
        flex-direction: column-reverse;
    }
    .simple-text-with-image-button-inner-Left{
        flex-direction: column;
    }
    .simple-text-with-image-button-inner-wrapper-Square{
        max-width: 70%;
        height: auto;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .simple-text-with-image-button-inner-wrapper-Round{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .simple-text-with-image-button-inner-wrapper-Square img{
        max-width: 100%;
        height: auto;
    }
    .view-plans-button{
        margin: 0 auto;   
    }
}
@media screen and (max-width: 605px){
    .simple-text-with-image-button-inner-Right .simple-text-with-image-button-inner-text-wrapper{
        margin-left: 0;
    }
    .simple-text-with-image-button-inner-Left .simple-text-with-image-button-inner-text-wrapper{
        margin-right: 0;
    }
    .simple-text-with-image-button-inner{
        flex-direction: column;
    }
    .simple-text-with-image-button-inner-text-wrapper{
        margin-bottom: 25px;
    }
    .simple-text-with-image-button-inner-text-wrapper .view-plans-button{
        margin: 10px auto;
    }
}

/* large-centered-image-and-text */
.large-centered-image-and-text-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.large-centered-image-and-text .large-centered-text-wrapper > h2{
    font-family: 'Inter-Medium' !important;
    font-size: 30px !important;
    max-width: 985px;
    line-height: 48px !important;
    letter-spacing: 0 !important;
}
.large-centered-text-wrapper{
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    /* margin: 30px 0 33px 0; */
}
.large-centered-text-wrapper > h1, h2, h3, h4{
    font-size: 30px;
    line-height: 44px;
    font-weight: 500;
    color: #01173B;
    font-family: 'Inter-Medium', sans-serif;
    letter-spacing: 0.05px;
}
.large-centered-image-wrapper{
    width: 100%;
    max-width: 595px;
    height: fit-content;
}
.large-centered-image{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1025px){
    .large-centered-image-wrapper{
        max-width: 425px;
    }
}
@media screen and (max-width: 525px){
    .large-centered-image-wrapper{
        max-width: 320px;
    }
}

/* product */
.main-product-wrapper{
    background-color: #fff;
    padding-top: 66px;
}
.product-main-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 35px;
}
.woocommerce-product-gallery{
    width: 100%;
    max-width: 616px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
}
.flex-viewport{
    width: 100%;
    max-width: 488px !important;
    max-height: 488px !important;
    height: 488px !important;
}
.woocommerce-product-gallery__trigger{
    display: none;
}
.flex-control-nav.flex-control-thumbs{
    width: 100%;
    max-width: 96px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-control-nav.flex-control-thumbs li{
    cursor: pointer;
    width: 96px;
    height: 104px;
    margin-bottom: 10px;
}
.flex-control-nav.flex-control-thumbs li img{
    width: 96px;
    height: 104px;
    border: 1px solid #EBEDF5; 
    border-radius: 4px;
}
.flex-control-nav.flex-control-thumbs li>.flex-active{
    border: 1px solid #304595;
    
}
.posted_in{
    display: none;
}
.pswp__caption__center{
    display: none;
}
.summary.entry-summary{
    width: 100%;
    max-width: 520px;
}
.product_title{
   font-size: 24px;
   line-height: 36px; 
   color: #01173B;
   letter-spacing: -0.7px;
   font-family: 'DMSans-Bold', sans-serif;
   margin-bottom: 4px;
}
.product-subtitle-wrapper{
    width: 100%;
    max-width: 476px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-subtitle{
    display: flex;
    align-items: center;
    color: #304595;
    font-size: 12px;
    line-height: 14px;
}
.product-subtitle span{
    margin-right: 5px;
}
.subtitle-price{
    font-size: 24px;
    line-height: 24px; 
    color: #01173B;
    letter-spacing: -0.7px;
    font-family: 'DMSans-Bold', sans-serif; 
}
.product-content{
    font-size: 14px;
    line-height: 21px;
    color: #71828A;
    padding-top: 15px;
    max-width: 489px;
}
.product-content p{
    margin-bottom: 10px;
}
.product-main-wrapper .woocommerce-Price-amount.amount{
    display: none;
}
.product-main-wrapper .cart{
    width: 100%;
    display: flex;
    max-width: 479px;
    justify-content: space-between;
    align-items: center;
    padding-top: 17px;
}
.single_add_to_cart_button{
    border-radius: 100px;
    background-color: #01173B;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    max-width: 353px;
    height: 52px;
    outline: none;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px; 
    letter-spacing: -0.7px;
    font-family: 'DMSans-Bold', sans-serif; 
    transition: 0.2s;
}
.single_add_to_cart_button:hover{
    border: 2px solid #01173B;
    background-color: #002460;
}

.add-to-cart-undertext{
    color: #01173B;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-top: 7px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 479px;
}
.product-additional-information{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 479px;
    font-size: 14px;
    line-height: 22px;
    color: #292929;
    background-color: #F9FAFB;
    margin-top: 10px;
    padding: 23px 25px 25px 25px;
    border-radius: 4px;
}
.product-additional-information p{
    font-size: 14px;
    line-height: 22px;
    color: #292929;
}
.view-more-btn{
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #01173B;
    position: relative;
    padding-right: 20px;
}
.view-more-btn:after{
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 4px;
    background-image: url('../img/more-arrow.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.view-more-content{
    display: block;
    -webkit-transition: max-height 0.2s; 
    -moz-transition: max-height 0.2s; 
    -ms-transition: max-height 0.2s; 
    -o-transition: max-height 0.2s; 
    transition: max-height 0.2s;  
    overflow: hidden;
    max-height: 0;
    margin-top: -10px;
    transition: 0.2s;
}
.view-more-content-active{
    max-height: 1000px;
    margin-top: inherit;
}
.product-blocks-wrapper{
    background-color: #F9FAFB;
}
@media screen and (max-width: 1135px){
    .flex-viewport{
        width: 350px !important;
        height: 350px !important;
    }
    .flex-viewport img{
        width: 100% !important;
        height: 100% !important;
    }
    .woocommerce-product-gallery{
        max-width: 460px;
    }
    .summary.entry-summary{
        max-width: 570px;
    }
}
@media screen and (max-width: 1025px){
    .single_add_to_cart_button{
        margin-left: 10px;
    }
    .flex-control-nav.flex-control-thumbs li{
        width: 50px;
        height: 54px;
    }
    .flex-control-nav.flex-control-thumbs li img{
        width: 50px;
        height: 54px;
    }
}
@media screen and (max-width: 769px){
    .product-main-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .summary.entry-summary{
        max-width: 100%;
    }
    .product-content{
        max-width: 100%;
    }
    .product-main-wrapper .cart{
        max-width: 100%;
        justify-content: center;
    }
    .add-to-cart-undertext{
        max-width: 100%;
    }
    .product-additional-information{
        margin: 10px auto;
    }
    .product-subtitle-wrapper{
        max-width: 100%;
    }
}
@media screen and (max-width: 426px){
    .flex-viewport{
        height: 300px !important;
    }
}
.main .woocommerce-message{
    display: flex;
    align-items: center;
}
.main .button.wc-forward.wp-element-button{
    border-radius: 100px;
    background-color: #01173B;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    max-width: 200px;
    height: 52px;
    outline: none;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.7px;
    font-family: 'DMSans-Bold', sans-serif;
    transition: 0.2s;
    margin: 10px 20px;
}
.main .button.wc-forward.wp-element-button:hover{
    border: 2px solid #01173B;
    background-color: #002460;
}
/* contact page */

.contact-page-inner{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.contact-page-col{
    width: 50%;
    max-width: 50%;
}
.contact-page-col-inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 80px;
}
.contact-page-col-inner-wrapper{
    display: flex;
    flex-direction: column;
}
.contact-icon{
    width: 20px;
    height: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.contact-icon-Email{
    background-image: url('../img/email.png');
}
.contact-icon-Tel{
    background-image: url('../img/phone.png');
}
.contact-single-item{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-page-col{
    color: #fff;
    min-height: 644px;
}
@media (min-height: 1054px) {
    .contact-page-col{
        min-height: 100vh;
    }
  }
.contact-page-col-left h1{
    font-family: 'DMSans-Bold';
    font-weight: 700;
    font-size: 46px;
    line-height: 64px;
    letter-spacing: -1.3px;
}
.contact-page-address-heading{
    font-family: 'DMSans-Bold';
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: -0.3px;
    margin-bottom: 17px;
}
.contact-page-col-inner-wrapper-contacts{
    min-width: 281px;
}
.contact-page-inner{
    min-height: 100%;
}
.contact-page-col-left{
    width: 100%;
    max-width: 538px;
}
.contact-page-col-first{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 70px;
}
.contact-page-col-second{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 98px;
}
.contact-page-form-wrapper{
    width: 100%;
}
.contact-page-form-wrapper input{
    width: 100%;
    max-width: 512px;
    height: 52px;
    border: 1px solid #EBEDF5;
    border-radius: 4px;
    outline: none;
    transition: 0.2s;
    letter-spacing: 0.3px;
}
.contact-page-form-wrapper br{
    display: none;
}
.contact-page-form-wrapper .wpcf7 form .wpcf7-response-output{
    margin: 20px 0px 0 0px;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2 !important;
    max-width: 400px;
    color: #000;
    font-size: 16px;
}
.contact-page-form-wrapper .wpcf7-form-control-wrap{
    margin-bottom: 24px;
    display: block;
}
.contact-page-form-wrapper .invalid{
    padding: 120px 0 40px 0;
}
.contact-page-form-wrapper .wpcf7-not-valid-tip{
    font-size: 16px !important;
    padding-left: 5px;
    margin-top: 5px;
    display: block;
}
.contact-page-form-wrapper input:focus{
    border: 1px solid #417EDA;
    -webkit-box-shadow: 0px 0px 0px 3px rgba(65,126,218,0.2);
    -moz-box-shadow: 0px 0px 0px 3px rgba(65,126,218,0.2);
    box-shadow: 0px 0px 0px 3px rgba(65,126,218,0.2);
}
.contact-page-form-wrapper input::placeholder{
    color: #71828A;   
    font-size: 16px;
    letter-spacing: 0.3px;
}
.contact-page-form-wrapper input{
    color: #01173B;
    font-size: 16px;
    letter-spacing: 0.3px;
    padding-left: 20px;
    padding-right: 20px;
}
.contact-page-form-wrapper textarea{
    width: 100%;
    max-width: 512px;
    height: 164px;
    border: 1px solid #EBEDF5;
    border-radius: 4px;
    outline: none;
    margin-bottom: 24px;
    transition: 0.2s;
    letter-spacing: 0.3px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    resize: none;
    font-size: 16px !important;
    font-family: 'Inter-Regular' !important;
    letter-spacing: 0.3px !important;
}
.contact-page-form-wrapper textarea:focus{
    border: 1px solid #417EDA;
    -webkit-box-shadow: 0px 0px 0px 3px rgba(65,126,218,0.2);
    -moz-box-shadow: 0px 0px 0px 3px rgba(65,126,218,0.2);
    box-shadow: 0px 0px 0px 3px rgba(65,126,218,0.2);
}
.contact-page-form-wrapper textarea::placeholder{
    color: #71828A;   
    font-size: 16px !important;
    font-family: 'Inter-Regular' !important;
    letter-spacing: 0.3px !important;
    font-weight: 400;
}
.contact-page-form-wrapper textarea{
    color: #01173B;
    font-size: 16px;
    font-family: 'Inter-Regular';
    font-weight: 400;
}
.contact-page-form-wrapper input.wpcf7-submit{
    color: #fff;
    text-decoration: none;
    font-family: 'DMSans-Bold', sans-serif;
    font-weight: 500;
    background-color: #01173B;
    transition: 0.2s;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 0.40px;
    border: 2px solid transparent;
    width: fit-content;
    cursor: pointer;
    margin-top: 27px;
    -webkit-appearance: none;
}
.contact-page-form-wrapper input.wpcf7-submit:hover{
    background-color: var(--main-hover-color);
    border: 2px solid #01173B;
}
@media screen and (max-width: 1289px){
    .contact-page-col-second{
        padding-left: 35px;
        padding-top: 50px;
        align-items: flex-start;
    }
    .contact-page-col-left h1{
        font-size: 35px;
        line-height: 44px;
    }
    .contact-page-col-first{
        align-items: flex-start;
        padding-right: 45px;
        padding-top: 50px;
        padding-left: 12px;
    }
    .contact-page-form-wrapper input{
        height: 45px;
    }
    .contact-page-form-wrapper textarea{
        height: 115px;
    }
}
@media screen and (max-width: 1145px){
    .contact-page-col-second{
        padding-right: 12px;
    }
    .contact-page-col-inner-wrapper-contacts{
        min-width: auto;
    }
    .contact-page-col-inner{
        padding-top: 50px;
    }
}
@media screen and (max-width: 931px){
    .contact-page-col-inner-wrapper:first-child{
        margin-right: 15px;
    }
}
@media screen and (max-width: 870px){
    .contact-page-col{
        min-height: calc(100vh - 400px);
        padding-top: 90px;
    }
}
@media screen and (max-width: 769px){
    .contact-page-inner{
        flex-direction: column;
    }
    .contact-page-col{
        max-width: 100%;
        width: 100%;
        max-width: 100%;
        width: 100%;
        justify-content: center;
        height: fit-content;
        padding: 50px 12px 50px 12px;
        min-height: auto;
    }
    .contact-page-col-second{
        justify-content: center;
    }
    .contact-page-form-wrapper{
        display: flex;
        justify-content: center;
    }
    .g-recaptcha{
        display: flex;
        justify-content: center;
    }
    .wpcf7-submit{
        display: block;
        margin: 0 auto;
    }
    .contact-page-form-wrapper .wpcf7-form-control-wrap{
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 426px){
    .contact-page-col-inner{
        flex-direction: column;
    }
    .contact-page-col-inner-wrapper:first-child{
        margin-right: 0;
    }
    .contact-page-col-inner-wrapper{
        margin-bottom: 20px;
    }
    .contact-page-col-left h1{
        text-align: center;
    }
    .contact-page-col-inner{
        align-items: center;
    }
    .contact-page-col-inner-wrapper:first-child{
        margin-right: 0;
        min-width: auto;
        max-width: initial;
        width: 100%;
        text-align: center;
    }
    .contact-page-col-inner-wrapper{
        text-align: center;
    }
}

/* thank you page */

.thank-you-page-inner{
    text-align: center;
    padding-top: 75px;
    font-family: 'Inter-Regular';
}
.thank-you-page-inner h1{
    font-family: 'Inter-Regular'; 
}
.go-to-home-btn{
    color: #fff;
    text-decoration: none;
    font-family: 'DMSans-Bold', sans-serif;
    font-weight: 500;
    background-color: #01173B;
    transition: 0.2s;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 0.40px;
    border: 2px solid transparent;
    width: fit-content;
    cursor: pointer;
    margin: 35px 0 35px 0;
    display: inline-block;
}
.go-to-home-btn:hover{
    background-color: var(--main-hover-color);
    border: 2px solid #01173B;
}
.contact-us-block-heading{
    font-size: 46px;
    font-family: 'DMSans-Bold';
    letter-spacing: -1.3px;
    margin-bottom: 36px;
}
@media screen and (max-width: 426px){
    .thank-you-page-inner{
        padding-top: 35px;
    }
}


.wc-proceed-to-checkout a.checkout-button.button.alt.wc-forward.wp-element-button{
    max-width: fit-content;
    text-decoration: none;
}
.wp-block-post-title{
    display: none;
}
.is-layout-flow.wp-block-group{
    background-color: #F9FAFB;
}
.wp-site-blocks{
    background-color: #F9FAFB;
    padding: 0;
}

.woocommerce-page main .woocommerce{
    max-width: 100% !important;
}
.woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=apply_coupon], .woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=update_cart]{
    border-radius: 100px;
    background-color: #01173B;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    max-width: 200px;
    height: 52px;
    outline: none;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.7px;
    font-family: 'DMSans-Bold', sans-serif;
    transition: 0.2s;
    margin: 10px 20px;
    text-decoration: none;
}
.woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=apply_coupon], .woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=update_cart]:disabled{
    background-color: #C2C2C2;
    color: #8C8C8C;
}
.woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=apply_coupon], .woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=update_cart]:disabled:hover{
    background-color: #C2C2C2;
    color: #8C8C8C;
    border: 2px solid #C2C2C2;
}
.woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=apply_coupon], .woocommerce-page .woocommerce-cart-form table.shop_table_responsive button[name=update_cart]:hover{
    background-color: var(--main-hover-color);
    border: 2px solid #01173B;
}
body .is-layout-flow > * + *{
    margin-block-start: 0;
}
.woocommerce-cart-form{
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 32px;
}
.woocommerce-page .cart-collaterals{
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 32px;
    padding-bottom: 75px;
}
.header-cart-btn{
    width: 40px;
    height: 40px;
    background-image: url('../img/ic.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 25px;
}
.header-cart-wrapper{
    width: 100%;
    max-width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-main-nav{
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 590px){
    .header-cart-btn{
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 426px){
    .header-inner .view-plans-button{
        padding: 3px 7px;
        font-size: 13px;
    }
}
