/* RESET */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* general */
body,
html {
    min-height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: opacity 0.3s linear;
    font-size: 20px;
    line-height: 1.5;
    background: #0d0d0d;
    color: #ffffff;
}

.open-menu {
    overflow: hidden;
}

svg {
    display: block;
}

a {
    transition: all 0.3s ease;
    text-decoration: underline;
    color: #f25c05;
}

a:hover:not(".btn") {
    color: #f25c05;
    text-decoration: underline;
}

strong,
b {
    font-weight: 700;
}

.loader {
    position: relative;
}

.loader .lds-roller {
    display: block;
}

.loader .layout {
    opacity: 0;
}

.layout {
    min-height: 100vh;
    position: relative;
    transition: opacity 0.3s linear;
    overflow: hidden;
}

section {
    padding: 100px 0;
}

.wrapper {
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    position: relative;
}

picture,
img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    body {
        font-size: 16px;
    }
    section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 1340px) {
    .wrapper {
        padding: 0 20px;
    }
}

/* bootstrap utils styles */
.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.show {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.collapsing {
    height: 0;
    position: relative;
    transition: height 0.35s ease;
}

.collapsing,
.modal-open {
    overflow: hidden;
}

/* typography */
.main-title {
    display: block;
}

.title {
    font-weight: 700;
}

.title-lvl-1 {
    font-size: 64px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    font-family: inherit;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    overflow: hidden;
    padding: 16px 32px;
    border-radius: 16px;
    background: linear-gradient(90deg, #f25c05 0%, #f28729 100%);
    border: 2px solid rgba(13, 13, 13, 0.8);
    box-shadow: 0px 8px 20px rgba(191, 68, 23, 0.2);
    text-transform: capitalize;
}

.btn span {
    display: block;
    position: relative;
    z-index: 4;
}

.btn:hover {
    text-decoration: none;
}

.btn:after {
    background: linear-gradient(90deg, #551f00 0%, #c3610a 100%);
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.5;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 3;
}

.btn:hover:after {
    left: 120%;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline {
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, #f25c05 0%, #f28729 100%);
}

.btn-outline:before {
    content: "";
    position: absolute;
    display: block;
    background: #0d0d0d;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    border-radius: 13px;
    z-index: 1;
}

.btn-outline:after {
    background: linear-gradient(90deg, #f25c05 0%, #f28729 100%);
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.5;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 3;
}

.btn-outline:hover:after {
    left: 120%;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.accent {
    background: linear-gradient(90deg, #f25c05 0%, #f28729 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .subtitle {
        font-size: 24px;
    }
}

/* header */
.header {
    z-index: 100;
    padding: 32px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.2s linear;
    background: #0d0d0d;
}

.header--scrolled {
    padding: 20px 0;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    border: 1px solid rgba(242, 242, 242, 0.2);
    border-radius: 10px;
    padding: 8px 32px;
}

.header__logo {
    display: block;
    position: relative;
    z-index: 100;
}

.header__pic {
    display: block;
    width: 100%;
    max-width: 196px;
    height: auto;
    transition: all 0.2s ease;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__item {
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    margin-right: 32px;
    letter-spacing: 0;
}

.header__item:last-child {
    margin-right: 0;
}

.header__link {
    text-decoration: none !important;
    position: relative;
    white-space: nowrap;
    line-height: 1;
    transition: color 0.2s linear;
    color: #ffffff;
    display: block;
}

/* .header__link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    transition: all 0.2s linear;
    z-index: -1;
    height: 3px;
    width: 0;
    background: #0D0D0D;
    border-radius: 0;
} */

.header__link:hover::before,
.header__link.active::before {
    width: 24px;
    right: initial;
    left: -1px;
    color: #ffffff;
}

.header__btn {
    display: none;
    position: relative;
    width: 18px;
    height: 22px;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    outline: none;
    border: none;
    position: relative;
    z-index: 30;
}

.header__btn span {
    position: absolute;
    height: 2px;
    background-color: #f2f2f2;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.header__btn span:nth-child(1) {
    top: 2px;
}

.header__btn span:nth-child(2) {
    top: 10px;
}

.header__btn span:nth-child(3) {
    top: 18px;
}

.header__btn.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.header__btn.open span:nth-child(2) {
    transform: rotate(180deg);
    opacity: 0;
}

.header__btn.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .header__logo {
        max-width: 164px;
    }

    .header__link::before {
        height: 3px;
    }

    .header__nav {
    }
}

@media screen and (max-width: 992px) {
    .header__nav {
    }
}

@media screen and (max-width: 980px) {
    .header {
        padding: 11px 0;
    }

    .header__nav {
        max-width: 100%;
        width: auto;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 100dvh;
        z-index: 25;
        transform: translateY(-200px);
        opacity: 0;
        transition: all 0.5s ease;
        padding: 114px 10px 20px;
        background: #0d0d0d;
        flex-direction: column;
        justify-content: flex-start;
        gap: 50px;
        z-index: -100;
        pointer-events: none;
    }

    .header__item {
        margin: 0;
    }

    .header__link {
        font-size: 22px;
    }

    .header__link::before {
        display: none;
    }

    .header__nav.open {
        transform: none;
        opacity: 1;
        z-index: 10;
        pointer-events: all;
    }

    .header__btn {
        display: block;
    }

    .header .btn-wrapper {
        display: none;
    }
}

/* footer */
.footer {
    padding: 94px 0 70px;
    position: relative;
    letter-spacing: 0px;
    font-size: 20px;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 550px;
}

.footer__link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s linear;
}

.footer__copyright br {
    display: none;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .footer {
        padding: 60px 0 50px;
    }
    .footer__nav {
        max-width: 477px;
    }
}

@media screen and (max-width: 1280px) {
    .footer {
        font-size: 16px;
    }

    .footer__nav {
        max-width: 410px;
    }
}

@media screen and (max-width: 940px) {
    .footer__wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
}

@media screen and (max-width: 500px) {
    .footer__nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer__copyright br {
        display: block;
    }
}

/* content */
.main {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 92px;
}

.section {
    position: relative;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .main {
        padding-top: 90px;
    }
}

@media screen and (max-width: 768px) {
    .main {
        padding-top: 44px;
    }
}

/* section intro */
.intro {
    padding: 160px 0;
    text-align: center;
}

.intro__title {
    display: block;
    font-size: 152px;
    line-height: 1;
    margin-bottom: 32px;
}

.intro__subtitle {
    display: block;
    font-size: 32px;
}

.intro .btn-wrapper {
    margin-top: 27px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .intro {
        padding: 120px 0 80px;
        text-align: center;
    }

    .intro__title {
        font-size: 120px;
        margin-bottom: 24px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .intro__subtitle {
        display: block;
        font-size: 24px;
    }
}

@media screen and (max-width: 1040px) {
    .intro {
        min-height: calc(100vh - 200px);
        display: flex;
        align-items: center;
    }
    .intro__title {
        font-size: 60px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 768px) {
    .intro__title {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .intro__subtitle {
        font-size: 20px;
    }

    .intro .btn-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
    }

    .intro .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* SECTION ABOUT */
.about {
    padding: 160px 0;
}

.about .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.about__column {
    flex: 1 0 0;
    max-width: 50%;
}

.about__title {
    text-transform: capitalize;
}

.about__subtitle {
    margin-bottom: 40px;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .about {
        padding: 80px 0;
    }
}

@media screen and (max-width: 980px) {
    .about .wrapper {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .about .wrapper {
        flex-direction: column;
        gap: 0;
    }
    .about__column {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .about__subtitle {
        margin-bottom: 24px;
    }
}

/* SECTION SERVICES */
.services {
    padding: 150px 0 100px;
}

.services__title {
    margin-bottom: 16px;
}

.services__subtitle {
}

.services__list {
    margin-top: 40px;
}

.services__list-item {
    display: flex;
    gap: 20px;
    padding: 32px 0;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(242, 242, 242, 0.25);
    border-radius: 10px;
    min-height: 230px;
}

.services__list-item .item-icon {
    width: 100%;
    max-width: 240px;
}

.services__list-item .item-title {
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    width: 100%;
    max-width: 510px;
}

.services__list-item .item-description {
    width: 100%;
    max-width: 510px;
    margin-left: auto;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .services {
        padding: 80px 0;
    }

    .services__list-item {
        min-height: 180px;
    }

    .services__list-item:last-child {
        margin-bottom: 0;
    }

    .services__list-item .item-icon {
        max-width: 160px;
    }

    .services__list-item .item-icon svg {
        max-width: 60px;
        height: auto;
    }

    .services__list-item .item-title {
        font-size: 40px;
        max-width: 375px;
    }

    .services__list-item .item-description {
        max-width: 600px;
    }
}

@media screen and (max-width: 1040px) {
    .services__list-item .item-icon {
        max-width: 80px;
    }
    .services__list-item .item-icon svg {
        max-width: 50px;
    }
}

@media screen and (max-width: 768px) {
    .services__list-item {
        flex-wrap: wrap;
    }
    .services__list-item .item-description {
        max-width: 100%;
        padding-left: 100px;
    }
}

@media screen and (max-width: 540px) {
    .services__list-item {
        flex-wrap: wrap;
        margin-bottom: 24px;
    }
    .services__list-item .item-icon {
        max-width: 100%;
    }
    .services__list-item .item-title {
        font-size: 40px;
        max-width: 375px;
    }
    .services__list-item .item-description {
        max-width: 100%;
        padding-left: 0;
    }
}

/* section contact us */
.contact-us {
}

.contact-us__row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 120px;
}

.contact-us__column {
    flex: 1 0 0;
    width: 100%;
    max-width: 50%;
}

.contact-us__column .title {
    margin-bottom: 24px;
}

.contact-us__column .subtitle {
    margin-bottom: 20px;
}

.contact-us__adress {
    position: absolute;
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 60px;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.contact-us__adress-item {
}

.contact-us__adress-item h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.contact-us__adress-item p {
}

.contact-us__adress-item a:hover {
    color: #f25c05;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #f25c05;
    background-clip: initial;
    text-fill-color: initial;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .contact-us {
        padding: 80px 0;
    }
    .contact-us__row {
        gap: 60px;
    }
    .contact-us__column:first-child {
        flex: 1 0 600px;
        max-width: 100%;
    }
    .contact-us__column:last-child {
        flex: 0 1 auto;
        max-width: 100%;
    }
    .contact-us__adress {
        padding: 30px;
        min-height: 560px;
    }
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
    .contact-us__row {
        flex-direction: column;
        gap: 50px;
    }

    .contact-us__column {
        flex: 0 0 auto !important;
        align-items: flex-start;
    }

    .contact-us__column:last-child {
    }

    .contact-us__adress {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        gap: 60px;
    }
}
@media screen and (max-width: 540px) {
    .contact-us__adress {
        flex-direction: column;
        gap: 40px;
    }
}

/* form */
.form-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    padding-top: 16px;
}

.form-control {
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: #ffffff;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    display: block;
    background: transparent;
}

.custom-contactus-parent {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-radius: 16px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 24px;
    position: relative;
}

.custom-contactus-parent label {
    flex: 1 0 0;
    white-space: nowrap;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
}

.custom-contactus-parent .form-control {
    height: 32px;
    font-size: 24px;
    line-height: 1.2;
}

.custom-contactus-parent.has-error {
    border-bottom: 1px solid #f25922;
}

.custom-contactus-parent.has-focus {
    box-shadow: 0px 4px 4px rgba(242, 242, 242, 0.25);
}

.form-control-message {
    resize: none;
}

.form-item__note {
    font-size: 14px;
    font-weight: 400;
    max-width: 114px;
}

.form-error {
    display: block;
    position: absolute;
    color: #f25922;
    padding-left: 0;
    font-size: 16px;
    top: 100%;
}

.has-error .form-control {
    border-color: #ff1d1d;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
    .custom-contactus-parent {
        padding: 16px 0;
    }

    .custom-contactus-parent label {
        font-size: 20px;
    }

    .custom-contactus-parent .form-control {
        height: 24px;
        font-size: 20px;
    }
}
@media screen and (max-width: 540px) {
    .custom-contactus-parent {
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
    }
    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .form-item__note {
        width: 100%;
        max-width: 100%;
    }

    .form-btn,
    .form-item .btn-wrapper,
    .form-btn .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* section terms */
.terms {
    padding: 138px 0 129px;
    margin: 0 auto;
}

.terms .update {
    margin-top: 50px;
}

.terms h1 {
    margin: 0 0 29px;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 0px;
}

.terms h2 {
    margin: 40px 0 9px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.terms p {
    margin-bottom: 13px;
}

.terms a:not(.btn) {
    white-space: nowrap;
    color: #f25c05;
}

.terms ul {
    margin-bottom: 13px;
    margin-left: 24px;
}

.terms ul li {
    list-style-type: disc;
    margin-bottom: 4px;
}

.terms table {
    border-collapse: collapse;
}
.terms table td {
    border: 1px solid;
    padding: 5px 10px;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .terms {
        padding: 34px 0 28px;
    }

    .terms h1 {
        font-size: 60px;
    }

    .terms h2 {
        font-size: 25px;
        margin: 33px 0 12px;
    }
}

@media screen and (max-width: 768px) {
    .terms {
        line-height: 1.5;
    }

    .terms h1 {
        margin-bottom: 11px;
        font-size: 35px;
    }

    .terms h2 {
        font-size: 22px;
        letter-spacing: -0.5px;
        gap: 14px;
    }

    .terms p {
        margin-bottom: 8px;
    }

    .terms .update {
        margin-top: 30px;
    }
}

/* page 404 */
.layout--404 {
    display: flex;
    flex-direction: column;
}

.main--404 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-404 {
    width: 100%;
    text-align: center;
    padding: 100px 0 130px;
}

.section-404__title {
    display: block;
    font-size: 120px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-404__subtitle {
    display: block;
    font-size: 40px;
    margin-bottom: 16px;
}

.section-404__pic {
    margin: 0 auto -12px;
}

.section-404 .btn {
    margin: 32px auto 0;
    min-width: 290px;
}

.section-404 .title {
    padding-bottom: 10px;
}

.section-404__pic--mob {
    display: none;
    position: initial;
    width: calc(100% - 40px);
    max-width: 590px;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .section-404 {
        padding: 70px 0 60px;
        min-height: calc(100vh - 230px);
    }
    .section-404__title {
        font-size: 80px;
    }
}

@media screen and (max-width: 768px) {
    .section-404 {
        padding: 74px 0 90px;
    }

    .section-404__pic--mob {
        display: block;
    }

    .section-404__pic--web {
        display: none;
    }
}

@media screen and (max-width: 576px) {
}

/* lds-roller */
.lds-roller {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 200;
}

.lds-roller div {
    -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f25c05;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    -webkit-animation-delay: -0.036s;
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    -webkit-animation-delay: -0.072s;
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    -webkit-animation-delay: -0.108s;
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    -webkit-animation-delay: -0.144s;
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    -webkit-animation-delay: -0.18s;
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    -webkit-animation-delay: -0.216s;
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    -webkit-animation-delay: -0.252s;
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    -webkit-animation-delay: -0.288s;
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@-webkit-keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* popup */
.popup {
    position: fixed;
    z-index: 700;
    display: none;
}

.popup__content {
    width: 100%;
    max-width: 1077px;
    margin: 0 auto;
}

.popup__wrap-btn {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.popup .subtitle {
    padding-bottom: 24px;
}

.popup a {
    /* color: #262626; */
}

.popup .btn {
    letter-spacing: -1px;
    border-color: transparent;
    box-shadow: 0px 8px 20px rgba(191, 68, 23, 0.2);
}

.popup--cookies {
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    padding: 67px 45px 80px;
    color: #0d0d0d;
}

.popup--thanks {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 655px;
    width: calc(100% - 40px);
    color: #0d0d0d;
    padding: 40px;
    background: #f2f2f2;
    box-shadow: 0px 0px 100px rgba(191, 68, 23, 0.5);
    border-radius: 20px;
    font-size: 20px;
}

.popup--thanks .subtitle {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 24px;
}

.popup--thanks .popup__wrap-btn {
    margin-top: 24px;
}

.popup--thanks .btn {
    min-width: 164px;
    border-color: transparent;
}

.popup-thanks-show {
    overflow: hidden;
}

.popup-thanks-show::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #000000;
    opacity: 0.8;
}

@media screen and (max-height: 820px), (max-width: 1540px) {
    .popup--cookies {
        padding: 49px 45px 58px;
    }

    .popup--thanks {
        max-width: 546px;
        padding: 45px 55px 50px;
    }
}

@media screen and (max-width: 768px) {
    .popup__wrap-btn {
        gap: 12px;
        margin-top: 20px;
    }

    .popup .subtitle {
        padding-bottom: 16px;
    }

    .popup--cookies {
        padding: 27px 20px 32px;
    }

    .popup--thanks {
        border-radius: 15px;
        padding: 37px 26px 40px;
    }

    .popup--thanks .subtitle {
        margin-right: -10px;
    }
}

@media screen and (max-width: 520px) {
}

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

/* map */
.map-container {
    min-height: 380px;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.map {
    min-height: 380px;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
.map-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(191.71deg, rgba(0, 0, 0, 0) 40.55%, rgba(242, 92, 5, 0.6) 99.83%);
}
.map .leaflet-control-attribution.leaflet-control {
    opacity: 0;
}
