:root{
    --thm-primary: #2dcd7c;
    --thm-primary-rgb: 45, 205, 124;
    --thm-secondary: #9cb7bd;
    --thm-secondary-rgb: 156, 183, 189;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-gray: #838e91;
    --thm-gray-rgb: 131, 142, 145;
    --thm-border: #e1e8ea;
    --thm-border-rgb: 225,232,234;
    --thm-black: #003b49;
    --thm-black-rgb: 0,59,73;
    --thm-dark-black: #01313c;
    --thm-dark-black-rgb: 1,49,60;
    --thm-light-bg: #f3f6f7;
    --thm-light-bg-rgb: 243,246,247;
    --thm-font: "Manrope", sans-serif;
    --thm-special-font: "reeyregular", sans-serif;
    scroll-behavior: auto;
}

*,
*::before,
*::after{
    box-sizing: border-box;
}

html{
    -webkit-text-size-adjust: 100%;
}

body{
    margin: 0;
    font-family: var(--thm-font);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    color: var(--thm-gray);
    border: none;
    background: #fff;
}

body.locked{
    overflow: hidden;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 800;
    color: var(--thm-black);
    letter-spacing: -0.4px;
    margin-top: 0;
    margin-bottom: 15px;
}

p{
    font-family: var(--thm-font);
    color: var(--thm-gray);
    line-height: 1.875;
    font-weight: 500;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
}

a{
    text-decoration: none;
    color: var(--thm-secondary);
    transition: all 500ms ease;
}

img{
    border-style: none;
}

button,
select,
input,
textarea{
    font: inherit;
}

select{
    text-transform: none;
}

.container{
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px){
    .container{
        max-width: 540px;
    }
}

@media (min-width: 768px){
    .container{
        max-width: 720px;
    }
}

@media (min-width: 992px){
    .container{
        max-width: 980px;
    }
}

@media (min-width: 1200px){
    .container{
        max-width: 1320px;
    }
}

@media (min-width: 1400px){
    .container{
        max-width: 1480px;
    }
}

.row{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > *{
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.g-4{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

@media (min-width: 768px){
    .col-md-6{
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px){
    .col-lg-2{
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3{
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4{
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-8{
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9{
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (min-width: 1400px){
    .col-xl-3{
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4{
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-8{
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9{
        flex: 0 0 auto;
        width: 75%;
    }
}

.text-center{
    text-align: center !important;
}

.w-100{
    width: 100% !important;
}

.d-none{
    display: none !important;
}

.d-block{
    display: block !important;
}

@media (min-width: 992px){
    .d-lg-none{
        display: none !important;
    }

    .d-lg-block{
        display: block !important;
    }
}

@media (max-width: 991.98px){
    .d-lg-none{
        display: block !important;
    }

    .d-lg-block{
        display: none !important;
    }
}

.m-0{
    margin: 0 !important;
}

.mt-3{
    margin-top: 1rem !important;
}

.mb-0{
    margin-bottom: 0 !important;
}

.mb-1{
    margin-bottom: .25rem !important;
}

.mb-3{
    margin-bottom: 1rem !important;
}

.mb-4{
    margin-bottom: 1.5rem !important;
}

.p-0{
    padding: 0 !important;
}

.ps-2{
    padding-left: .5rem !important;
}

.pe-2{
    padding-right: .5rem !important;
}

.list-unstyled{
    padding-left: 0;
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
}

.img-fluid{
    max-width: 100%;
    height: auto;
}

.form-group{
    margin-bottom: 10px;
}

.form-control{
    display: block;
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 20px 20px;
    font-size: 14px;
    font-family: var(--thm-font);
    min-height: 48px;
}

.form-select{
    display: block;
    width: 100%;
    min-width: 120px;
    min-height: 46px;
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--thm-black);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23003b49' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select:focus,
.form-control:focus{
    outline: none;
    box-shadow: none;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    border: 0;
}

.btn-primary{
    padding: 18px 50px;
    background-color: var(--thm-primary);
    border: 0;
    color: var(--thm-white);
    border-radius: 0;
    font-size: 14px;
    font-weight: 800;
    transition: all 500ms ease;
}

.btn-default{
    padding: 18px 50px;
    background-color: #fff;
    border: 0;
    color: var(--thm-black);
    border-radius: 0;
    font-size: 14px;
    font-weight: 800;
    transition: all 500ms ease;
}

.btn-secondary{
    padding: 18px 50px;
    background-color: var(--thm-black);
    border: 0;
    color: #fff;
    border-radius: 0;
    font-size: 14px;
    font-weight: 800;
    transition: all 500ms ease;
}

.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active,
.btn-primary:focus,
.show > .btn-primary.dropdown-toggle:focus{
    box-shadow: none;
    background-color: var(--thm-black);
    border-color: transparent;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus{
    background: var(--thm-black);
}

.btn-primary:hover{
    background-color: var(--thm-black);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus,
.form-control:focus{
    box-shadow: none;
}

.scroll-to-top{
    height: 40px;
    width: 40px;
    background-color: var(--thm-primary);
    line-height: 40px;
    text-align: center;
    position: fixed;
    right: 30px;
    color: #fff;
    bottom: 30px;
    z-index: 1111111;
    border: 1px solid #fff;
}

.scroll-to-top:hover{
    background-color: var(--thm-black);
    color: #fff;
}

.header{
    position: relative;
    z-index: 99;
}

.sticky-header{
    position: relative;
    z-index: 99;
}

.sticky-header--cloned{
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: var(--thm-white);
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-120%);
    box-shadow: 0px 10px 40px 0px rgb(0 0 0 / 15%);
}

@media (max-width: 1199px){
    .sticky-header--cloned{
        display: none !important;
    }
}

.sticky-header--cloned.sticky-fixed{
    transform: translateY(0);
    opacity: 1;
    transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
    visibility: visible;
}

@media (max-width: 1199px){
    .topbar{
        display: none;
    }
}

.topbar-inner{
    display: flex;
    justify-content: space-between;
    background-color: var(--thm-black);
    padding-right: 60px;
}

.topbar-left{
    display: flex;
}

.topbar-socials{
    background-color: var(--thm-primary);
    padding: 10px;
    min-width: 253px;
    text-align: center;
}

.topbar-socials a{
    color: var(--thm-white);
    font-size: 14px;
}

.topbar-socials a + a{
    margin-left: 25px;
}

.topbar-info{
    padding: 10px 10px 10px 40px;
    color: var(--thm-secondary);
}

.topbar-info ul{
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
}

@media (max-width: 991px){
    .topbar-info ul{
        display: block;
    }
}

.topbar-info ul li{
    display: flex;
    align-items: center;
}

@media (max-width: 991px){
    .topbar-info ul li{
        margin-bottom: 10px;
    }
}

.topbar-info ul li + li{
    margin-left: 35px;
}

@media (max-width: 991px){
    .topbar-info ul li + li{
        margin-left: 0;
    }
}

.topbar-icon i{
    color: var(--thm-primary);
    font-size: 14px;
}

.topbar-text{
    margin-left: 5px;
    font-family: var(--thm-font);
    font-size: 13px;
}

.topbar-text a{
    margin-left: 5px;
    font-size: 13px;
}

.topbar-text a:hover{
    color: var(--thm-white);
}

.topbar-text span{
    color: var(--thm-secondary);
    font-size: 13px;
}

.topbar-right{
    padding: 10px 0;
}

@media (max-width: 1399px){
    .topbar-right{
        display: none;
    }
}

.topbar-right ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.topbar-right li{
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 13px;
}

.topbar-right li a:hover{
    color: var(--thm-white);
}

.topbar-right li + li:before{
    content: '/';
    margin: 0 10px;
}

.main-menu{
    background-color: var(--thm-light-bg);
}

.main-menu-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu-left{
    display: flex;
    flex-grow: 1;
}

.main-menu-logo{
    min-width: 253px;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}

@media (max-width: 399px){
    .main-menu-logo{
        width: 100%;
        max-width: 220px;
        padding: 10px 20px;
    }
}

.navigation{
    padding-left: 50px;
    padding-right: 40px;
}

@media (max-width: 1499px){
    .navigation{
        padding-left: 50px;
    }
}

@media (max-width: 1199px){
    .navigation{
        display: none;
    }
}

.main-menu .main-menu-list{
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 1399px){
    .main-menu .main-menu-list{
        display: none;
    }
}

.main-menu .main-menu-list > li{
    position: relative;
}

.main-menu .main-menu-list > li > a{
    padding: 38px 0;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    color: var(--thm-gray);
}

.main-menu .main-menu-list > li > a:before{
    position: absolute;
    content: '';
    height: 5px;
    left: 0;
    top: calc(50% + 3px);
    background-color: var(--thm-primary);
    width: 100%;
    opacity: 0.3;
    transform: scale(0,1);
    transition: transform 500ms ease;
    transform-origin: right;
}

.main-menu .main-menu-list > li.active > a:before,
.main-menu .main-menu-list > li:hover > a:before{
    transform: scale(1,1);
    transform-origin: left;
}

.main-menu .main-menu-list > li.active > a,
.main-menu .main-menu-list > li > a:hover{
    color: var(--thm-black);
}

.main-menu .main-menu-list > li + li{
    margin-left: 50px;
}

@media (max-width: 1520px){
    .main-menu .main-menu-list > li + li{
        margin-left: 30px;
    }
}

.main-menu-right{
    display: flex;
    align-items: center;
    margin-left: 10px;
}

@media (max-width: 575px){
    .main-menu-right{
        margin-right: 20px;
    }
}

.search-box{
    margin-right: 30px;
}

.main-menu-right-button .btn-primary{
    margin-right: 40px;
    padding: 12px 20px;
}

@media (max-width: 1399px){
    .main-menu-right-button{
        display: none;
    }
}

.main-menu-right-button .btn-primary a{
    color: var(--thm-white);
    padding: 10px 0;
}

.mobile-menu-button{
    display: none;
    margin-left: 30px;
}

@media (max-width: 1399px){
    .mobile-menu-button{
        display: block;
    }
}

@media (max-width: 575px){
    .mobile-menu-button{
        margin-left: 0;
    }
}

.mobile-menu-button span{
    height: 2px;
    width: 20px;
    background-color: var(--thm-black);
    display: block;
}

.mobile-menu-button span + span{
    margin-top: 4px;
}

.mobile-nav-toggler span{
    background-color: var(--thm-black);
}

.mobile-nav-wrapper{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1111111;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 500ms ease 500ms;
}

.mobile-nav-wrapper.expanded{
    transform: translateX(0);
    opacity: 1;
    transition: all 500ms ease 0ms;
}

.mobile-nav-overlay{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: var(--thm-dark-black);
    opacity: 0.9;
}

.mobile-nav-content{
    position: absolute;
    max-width: 300px;
    display: inline-block;
    width: 100%;
    padding: 30px 15px;
    z-index: 1;
    background: var(--thm-black);
    height: 100vh;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 500ms ease 0ms;
    overflow-y: auto;
}

.mobile-nav-wrapper.expanded .mobile-nav-content{
    transform: translateX(0);
    opacity: 1;
    transition: all 500ms ease 500ms;
}

.mobile-nav-close{
    position: absolute;
    height: 25px;
    width: 25px;
    right: 15px;
    top: 20px;
}

.mobile-nav-close span{
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    background-color: #fff;
}

.mobile-nav-close span:nth-child(2){
    transform: translate(-50%,-50%) rotate(-45deg);
}

.mobile-nav-container{
    position: relative;
    margin-top: 20px;
}

.mobile-nav-container > ul{
    margin-bottom: 0;
}

.mobile-nav-container > ul li{
    line-height: 45px;
}

.mobile-nav-container > ul li + li{
    border-top: 1px solid rgba(var(--thm-border-rgb),0.17);
}

.mobile-nav-container > ul li > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.main-menu-list li.has-dropdown > a button{
    border: 0;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu-list li.has-dropdown > a button i{
    transition: all 500ms;
    font-size: 14px;
}

.main-menu-list li.has-dropdown > a button.expanded i{
    transform: rotate(90deg);
}

.mobile-nav-container > ul > li ul{
    display: none;
    margin-left: 15px;
    border-top: 1px solid rgba(var(--thm-border-rgb),0.15);
}

.mobile-nav-contact{
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav-contact li{
    display: flex;
    align-items: center;
    color: #fff;
}

.mobile-nav-contact li + li{
    margin-top: 10px;
    margin-bottom: 10px;
}

.mobile-nav-contact li i{
    color: var(--thm-primary);
    margin-right: 15px;
    display: inline-block;
}

.mobile-nav-contact li a{
    color: inherit;
}

.mobile-nav-social{
    display: flex;
    align-items: center;
}

.mobile-nav-social li + li{
    margin-left: 15px;
}

.mobile-nav-social li a{
    height: 36px;
    width: 36px;
    background-color: var(--thm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-nav-social li a:hover{
    background-color: #fff;
    color: var(--thm-black);
}