:root {
    --bg-color: #F9F9F9;
    --black: #01150F;
    --green: #03D192;
    --green1: #B9F5E3;
    --green2: #7DDDC0;
    --green3: #2EBC91;
    --green4: #058A62;
    --green5: #046749;
    --yellow: #BDB605;
    --red: #9A291A;
    --transition: 0.35s ease-in;
    --gray: #A0A0A0;
    --no-assets: #F0F0F0;
    --container-width: 1160px;
    --container-left: calc((100vw - var(--container-width)) / 2)
}

a {
    text-decoration: none !important;
    cursor: pointer;
    display: block;
}


@font-face {
    font-family: "Oswald"; 
    src: url("../fonts/Oswald-Bold.woff") format("woff"); 
    font-weight: 700; 
}

@font-face {
    font-family: "Oswald"; 
    src: url("../fonts/Oswald-Regular.woff") format("woff"); 
    font-weight: 400; 
}


@font-face {
    font-family: "inter"; 
    src: url("../fonts/Inter-Light.woff") format("woff"); 
    font-weight: 300; 
}

@font-face {
    font-family: "inter"; 
    src: url("../fonts/Inter-Regular.woff") format("woff"); 
    font-weight: 400; 
}

@font-face {
    font-family: "inter"; 
    src: url("../fonts/Inter-Medium.woff") format("woff"); 
    font-weight: 500; 
}


@font-face {
    font-family: "inter"; 
    src: url("../fonts/Inter-SemiBold.woff") format("woff"); 
    font-weight: 600; 
}


.none {
    display: none !important;
}

.btn {
    display: block;
    text-decoration: underline !important;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.btn:hover {
    opacity: 1 !important;
}



ol {
    font-family: 'inter';
    padding-left: 20px;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}



.green1 {
    background-color: #B9F5E3;
    opacity: 0.8;
 }

.green2 {
   background-color: #7DDDC0;
   opacity: 0.8;
}

.green3 {
   background-color: #2EBC91;
   opacity: 0.8;
}

.green4 {
   background-color: #058A62;
   opacity: 0.8;
}

.green5 {
   background-color: #046749;
   opacity: 0.8;
}


* {
    box-sizing: border-box;
}

p, h1, h2, h3, h4, a, span, hr {
    margin: 0;
}

h1, h2 {
    font-family: Oswald;
}


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


body {
    margin: 0 auto;
    background-color: var(--bg-color);
}

h1, h1 > p, .mainpage_title > p {
    font-family: 'Oswald';
    font-size: 39px;
    font-weight: 600;
    line-height: 53px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--black);
    width: 32vw;
    max-width: 465px;
    text-transform: uppercase;
}

.mainpage_title em {
    font-style: normal !important;
}

h1 > span, h1 > p > em {
    color: var(--red);
}

.ckeditor img, .ckeditor iframe {
    max-width: 100%;
}


h2 {
    font-family: Oswald;
    font-size: 39px;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: 0.02em;
    color: var(--black);
    text-transform: uppercase;
}


p {
    font-family: Inter;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0em;
    color: var(--black);    
}

a {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    color: var(--black);
}


.menu {
    position: fixed;
    z-index: 100;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    top: -80px;
    transition: var(--transition);
}

.search_icon {
    cursor: pointer;
}

.menu_scroll {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--bg-color);
}

.menu p, .menu a {
    transition: var(--transition);
}

.menu_scroll p, .menu_scroll a {
    color: var(--black) !important;
}

.menu > .container {
    display: flex;
    justify-content: space-between;
}

.burger_menu, .search, .country_popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1010;
    left: 0;
    top: 0;
    transition: var(--transition);
    display: none;
}

.burger_icon {
    cursor: pointer;
}

.burger_menu_bg, .search_bg, .country_popup_bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #131313;
    opacity: 0.8;
    left: 0;
    top: 0;
    transition: var(--transition);
    cursor: pointer;
}

.burger_menu_body, .country_popup_body {
    position: absolute;
    width: 50%;
    height: 100vh;
    right: -50%;
    box-sizing: border-box;
    top: 0;
    background-color: var(--green);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 50px;
    padding-right: var(--container-left);
    overflow-y: scroll;

}


.search_body {
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    position: relative;
}

.burger_menu_body_top {
    display: flex;
    justify-content: space-between;
}

.burger_contacts > li{
    margin-bottom: 20px;
}

.burger_contacts > li:last-child {
    margin-bottom: 0;
}

.burger_contacts > li > a {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-decoration: none;
    margin-bottom: 20px;
    color: var(--black);
}

.burger_menu_body_constacts_body {
    display: flex;
    justify-content: space-between;
}

.burger_icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.burger_icons a {
    display: block;
}

.burger_menu_body_constacts > hr {
    border-color: var(--black) !important;
    margin-top: 40px;
    margin-bottom: 25px;
}

.right_burger {
    display: flex;
}

.right_burger > img {
    object-fit: contain;
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin-left: 30px;
}

.logo {
    width: 80px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
}

.right_path {
    display: flex;
    gap: 30px;
    align-items: center;
}

.right_path > img {
    height: 15px;
    width: 15px;
}

.right_path > .lang {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--bg-color);
    cursor: pointer;
    text-transform: uppercase;
}

nav.burger_menu_links > ul > li {
    margin-bottom: 30px;
}

nav.burger_menu_links > ul > li:last-child {
    margin-bottom: 0px;
}

nav.burger_menu_links > ul > li > a {
    font-family: Oswald;
    font-size: 31px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);    
    text-decoration: none;
}

.menu_hr {
    margin-top: 14px;
    border: none;
    border-bottom: 1px solid var(--black);
    width: var(--container-width);
    margin-left: var(--container-left);
}


.lang_burger {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    height: fit-content;
    cursor: pointer;
}


footer {
    background-color: var(--black);
    padding-top: 55px;
    padding-bottom: 55px;
}

footer > .container {
    display: flex;
    gap: 70px;
}


footer * {
    color: var(--bg-color)
}


footer a {
    display: block;
    text-decoration: none;
    width: 220px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
}

main {
    padding-bottom: 38px;
    min-height: calc(100vh - 226px - 74px);
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 70px;
}

.go_top_arrow {
    cursor: pointer;
}

.assets_block {
    cursor: pointer;
}


.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
}

#faq {
    margin-top: 145px;
}

#faq h2 {
    margin-top: 20px;
    margin-bottom: 35px;
}

.hr05 {
    opacity: 0.5;
}


.faq-title {
    font-family: Inter;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);
}

.faq-text, .active_body {
    height: 0px;
    overflow: hidden;
    transition: var(--transition);
}

.active_body > div > div > div > .faq-text {
    transition: 0s !important;
}

.faq-text p, .faq-text span {
    font-family: Inter;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);

}

.faq-content {
    padding-top: 22px;
    padding-bottom: 22px;
}

.faq-content a {
    display: inline;
    color: var(--green4);
    font-size: unset;
}

.faq-item-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}


.faq-item-flex:hover .faq-btn, .assets_block:hover > .faq_subhead > .faq-btn {
    outline: solid 1px var(--black);
}

.faq-btn {
    position: relative;
    cursor: pointer;
    padding: 10px;
    border-radius: 100%;
    transition: var(--transition);
    display: flex;
}

.faq-btn > img:first-child {
    width: 18px;
    height: 18px;
}

/* .faq-btn > img:last-child {
    position: absolute;
    top: 18px;
    left: 10px;
} */

.faq-btn:hover {
    outline: solid 1px var(--black);
}


.faq_subhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 82px;
}

.faq_subhead > h3 {
    font-family: Inter;
    font-size: 31px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);
}

.social_links {
    margin-top: 20px;
    display: flex;
    gap: 17px;
}

a > svg path, a > svg circle {
    transition: var(--transition);
    cursor: pointer;
}


a > svg:hover path {
    fill: var(--green2);
}

a > svg:hover circle {
    stroke: var(--green2);
}


::-webkit-scrollbar-thumb {
    background-color: #01150F;
    outline: 3px solid #01150F;
    border-radius: 8px;
}

::-webkit-scrollbar-track-piece {
    width: 3px;
    background-color: var(--bg-color);
}

::-webkit-scrollbar {
    width: 3px;
}


.search_header {
    height: 78px;
    background-color: var(--green);
    position: relative;
}

.search_header .container {
    display: flex;
    align-items: center;
    height: 100%;
}


.search_header input {
    width: 1082px;
    font-family: Inter;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--black);
    border: none;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--black);
    background-color: transparent;
}


.search_header input::placeholder {
    font-family: Inter;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--black);
}

.search_header input:focus {
    outline: none;
}

.search_mini {
    position: relative;
    left: -15px;
    pointer-events: none;
}


.search_clouse {
    width: 15px;
    height: 15px;
    cursor: pointer;
}


.search_results {
    height: calc(100vh - 78px);
    overflow-y: scroll;
}



.search_results .container {
    padding-left: 165px;
    padding-right: 165px;
    padding-top: 10px;
    padding-bottom: 20px;

}



.search_result {
    margin-top: 25px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.search_result h4 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-family: Oswald;
    font-size: 31px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--black);
}

.search_result p {
    font-family: Inter;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);
}

.tab_sovereign, .tab_private {
    transition: var(--transition);
}


.map_tab_active {
    opacity: 1 !important;
    text-decoration: underline;
}


/* dropdown styles */
.dropdown_arrow {
    margin-left: 7px;
    width: 13px;
    height: 7px;
    display: flex;
    margin-bottom: 5px;
    opacity: 0.5;
    transition: var(--transition);
}

.dropdown_top {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    padding-bottom: 10px;
}

.dropdown_body {
    background: var(--no-assets);
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    position: absolute;
    z-index: 10;
}


.dropdown_body_active {
    border: 1px solid rgba(1, 21, 15, 0.1);
    padding: 15px 20px;
    box-sizing: content-box;

}


.dropdown_body > li {
    cursor: pointer;
    font-family: Inter;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);
}

.dropdown_body > hr {
    margin-top: 9px;
    margin-bottom: 9px;
    border: none;
    border-bottom: 1px solid #01150F;
    opacity: 0.1;
}

.footer_hr {
    display: none;
}



/* push start */
.push {
    position: fixed;
    right: -400px;
    bottom: 150px;
    width: 400px;
    box-shadow: 0px 0px 4px 0px #02006833;
    transition: var(--transition);
    opacity: 0;
    background-color: var(--bg-color);
    z-index: 1110;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 20px;
}


.show_push {
    right: 100px;
    opacity: 1 !important;
}


.push_error {
    border-left: 2px solid var(--red);
}

.push_positive {
    border-left: 2px solid var(--green);
} 


.push_info {
    border-left: 2px solid var(--yellow);
} 

.push_neutral {
    border-left: 2px solid var(--green5);
} 



.push_content {
    display: flex;
    align-items: flex-start;
}

.push_content > p {
    margin-left: 15px;
}

.push_exit_btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0em;
    color: var(--green5);
    margin-top: 17px;
    margin-left: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.push_exit_btn:hover {
    opacity: 0.5;
}


@media (min-width: 992px) and (max-width: 1200px) {

    .push {
        bottom: 90px;
    }

    .show_push {
        right: 40px;
    }
}

@media (min-width: 660px) and (max-width: 991px) {
    .push {
        bottom: 100px;
    }

    .show_push {
        right: 30px;
    }
}

@media (min-width: 500px) and (max-width: 659px) {
    .push {
        bottom: 100px;
    }

    .show_push {
        right: 20px;
    }
}


@media (max-width: 1200px) {
    .product-placeholder {
        font-size: 12px;
    }
    
}

@media (max-width: 659px) {


.footer-links {
    width: 100% !important;
}
}


@media (max-width: 499px) {


    .push {
        bottom: 100px;
        width: 300px;
    }

    .show_push {
        right: 20px;
    }
}


/* push end */




.changelang {
    display: none;
}




/* form popup styles */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 209, 146, 0.2);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    max-width: 28%;
    width: 100%;
    position: relative;
    text-align: center;
    border: 2px solid var(--green4);
}

.popup-content h2 {
    color: var(--white-color);
    margin-bottom: 10px;
    /* font-family: var(--font-secondary); */
    font-weight: bold;
    font-size: var(--size-24);
}

.popup-content h2 span {
    color: var(--secondary-color);
    /* font-family: var(--font-secondary); */
    font-weight: bold;
    font-size: var(--size-24);
}

.popup-content p {
    color: #A9A9A9;
    margin-bottom: 20px;
    font-family: 'inter';
    font-weight: bold;
    font-size: var(--size-13);
}

.popup-content label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: var(--white-color);
    font-family: 'inter';
    font-weight: bold;
    font-size: var(--size-16);
}

.popup-content label:last-child {
    margin-bottom: 30px !important;
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"],
.popup-content textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--green5);
    border-radius: 3px;
    background-color: var(--bg-color);
    color: var(--black);
    font-family: 'inter';
    font-weight: bold;
    font-size: var(--size-16);
}

.popup-content input[type="checkbox"] {
    margin-right: 10px;
}

.submit-btn {
    background-color: var(--green3);
    border: none;
    color: var(--bg-color);
    padding: 15px 50px;
    font-size: var(--size-16);
    cursor: pointer;
    border-radius: 3px;
    font-family: 'inter';
    font-weight: 600;
    transition: 0.2s ease-out;
}

.submit-btn:hover {
    background-color: var(--bg-color);
    color: var(--green3);
    outline: 1px solid var(--green3);
}

.btn-disabled {
    opacity: 0 !important;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}



.error-field {
    color: var(--red) !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 18px !important;
    letter-spacing: 0em !important;
    text-align: left !important;
    display: none;
    width: 100%;
    margin: 5px;
}

.input-error {
    border-color: var(--red) !important;
}