@font-face {
    font-family: 'Gotham Pro';
    src: url(../fonts/gothampro.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url(../fonts/gothampro_bold.ttf);
    font-weight: 700;
}

:root {
    --blue: #4286F5;
    --black: #131313;
    --gray: #E9EAE9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
}

body {
    background-color: white;
    position: relative;
    font-family: 'Gotham Pro';
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

@media screen and (min-width: 767px) {
    h1 {
        font-size: 40px;
    }
}

h2 {
    font-size: 30px;
    font-weight: 700;
}

@media screen and (min-width: 767px) {
    h2 {
        font-size: 40px;
    }
}

h3 {
    font-size: 18px;
    font-weight: 700;
}

@media screen and (min-width: 767px) {
    h3 {
        font-size: 20px;
    }
}

p {
    font-size: 16px;
    font-weight: 400;
}

button {
    outline: none;
    border: none;
    background-color: var(--blue);
    border-radius: 1000px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid var(--blue);
}

@media screen and (min-width: 767px) {
    button {
        padding: 20px 32px;
    }
}

button span {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

@media screen and (min-width: 767px) {
    button span {
        font-size: 20px;
    }
}

.no-border-btn {
    background-color: transparent;
}

.no-border-btn span {
    color: var(--blue);
}

.blue-btn:hover {
    background-color: transparent;
}

.blue-btn:hover span {
    color: var(--blue);
}

.blue-btn:hover svg path {
    fill: var(--blue);
}

.no-border-btn:hover {
    background-color: var(--blue);
}

.no-border-btn:hover span {
    color: white;
}

.no-border-btn:hover svg path {
    fill: white;
}

.container {
    max-width: 1300px;
    padding: 0 12px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.header div.logo {
    width: 120px;
}

@media screen and (min-width: 767px) {
    .header div.logo {
        width: 180px;
    }
}

@media screen and (min-width: 991px) {
    .header div.logo {
        width: 292px;
    }
}

.header div.logo img {
    object-fit: contain;
    width: 100%;
}

a {
    text-decoration: none;
}

.menu {
    display: flex;
    align-self: center;
}

.menu span a,
.menu span {
    padding: 4px 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    color: var(--black);
}

@media screen and (min-width: 520px) {
    padding: 4px 6px;
}

@media screen and (min-width: 767px) {
    .menu span a,
    .menu span {
        padding: 4px 12px;
        font-size: 16px;
    }
}

.menu span.active,
.menu span:hover {
    border-bottom: 1px solid var(--blue);
}

.menu {
    gap: 10px;
}

@media screen and (min-width: 767px) {
    .menu {
        gap: 40px;
    }
}

.language {
    display: flex;
    padding: 14px;
    background-color: #fff;
    border-radius: 4px;
    align-items: center;
    justify-content: space-between;
}

.language span {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    padding-right: 10px;
}

.lang-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -4px;
}

.lang-img img {
    max-width: 100%;
    object-fit: cover;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.header-right {
    display: flex;
}

@media screen and (min-width: 991px) {
    .header-right {
        min-width: 292px;
        justify-content: flex-end;
    }
}

.buttons-header {
    display: none;
}

@media screen and (min-width: 767px) {
    .buttons-header {
        display: flex;
        align-content: center;
        justify-content: center;
        margin-top: -8px;
    }
}

.buttons-header a {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;
    text-decoration: none;
    transition: 0.1s;
}

.header .switch-lang {
    position: relative;
}

.header .switch-lang .language {
    background: #F9F9F9;
}

.header .switch-lang.open_lang .content-lang {
    display: block;
}

.header .switch-lang:hover .content-lang {
    display: block;
}

.header .switch-lang #open_lang::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 50;
}

.header .switch-lang .content-lang {
    position: absolute;
    content: " ";
    z-index: 3;
    border-radius: 10px;
    border: 1px solid rgba(143, 143, 143, 0.2);
    background: #FFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
    display: none;
    width: 100px;
    right: 0;
}

.header .switch-lang .content-lang::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 60px;
    top: -60px;
}


.header .switch-lang .lang:hover span {
    opacity: 0.7;
}

.header .switch-lang .lang:last-child {
    margin-bottom: 0;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 40px;
    flex-wrap: wrap;
}

@media screen and (min-width: 767px) {
    .banner {
        flex-wrap: nowrap;
        padding: 40px 0;
    }
}

@media screen and (min-width: 1100px) {
    .banner {
        padding: 20px 0 40px;
    }
}

@media screen and (min-width: 1200px) {
    .banner {
        padding: 0;
    }
}

.banner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    order: 2;
}

@media screen and (min-width: 767px) {
    .banner > div {
        max-width: 520px;
        order: 1;
        padding-top: 140px;
        padding-bottom: 20px;
    }
}

.banner .img-size {
    padding-top: 0;
    display: block;
    width: 100%;
    order: 1;
    max-height: 300px;
    max-width: 100%;
}

@media screen and (min-width: 767px) {
    .banner .img-size {
        order: 2;
        max-height: initial;
    }
}

.banner .img-size img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
}

@media screen and (min-width: 767px) {
    .banner .img-size img {
        max-height: initial;
    }
}

.banner h1 {
    color: var(--blue);
}

.banner h3 {
    font-weight: 400;
}

.banner > div > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

@media screen and (min-width: 767px) {
    .banner > div > div {
        flex-wrap: nowrap;
    }
}

.review,
.title-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-div {
    gap: 20px;
    width: 100%;
}

.title-div span {
    width: 200px;
    height: 1px;
    background-color: var(--black);
}

.title-div h2,
.title-div p {
    text-align: center;
}

.title-div p {
    max-width: 908px;
}

.review {
    margin-top: 20px;
    gap: 48px;
}

.swiper-container {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    bottom: 0;
    top: auto;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.swiper-button-next:hover {
    content: url('../images/left.svg');
    width: 40px;
    height: 40px;
}

.swiper-button-prev:hover {
    content: url('../images/left.svg');
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
}

.swiper-button-prev {
    right: 60px;
    left: auto;
}

.swiper-pagination {
    left: 0 !important;
    right: auto;
    position: absolute;
    bottom: 0 !important;
    width: fit-content !important;
    transition: all 0.2s;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #e5e5e5;
    opacity: 1;
    border-radius: 50%;
    margin: 0 6px;
    transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 30px !important;
    border-radius: 8px;
    background-color: var(--blue) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: url(../images/right.svg);
    width: 40px;
    height: 40px;
    z-index: 1;
}

.swiper-button-prev::after {
    transform: rotate(180deg);
}

.swiper-button-disabled::after {
    content: url(../images/left.svg);
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--blue);
    padding: 40px;
    border-radius: 12px;
    color: white;
    height: auto;
}

.swiper-slide-title,
.swiper-slide-title .left,
.swiper-slide-title .right {
    display: flex;
    align-items: center;
}

.swiper-slide-title .left {
    gap: 20px;
}

.swiper-slide-title .left h4 {
    font-size: 20px;
}

.swiper-slide-title .right {
    gap: 12px;
}

.swiper-slide-title {
    justify-content: space-between;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.avatar img {
    max-width: 100%;
}

.swiper-slide-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.with-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.with-us .buttons-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.with-us-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

@media screen and (min-width: 767px) {
    .with-us-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 991px) {
    .with-us-content {
        grid-template-columns: repeat(3, 1fr);
    }
}


.with-us-item {
    background-color: var(--gray);
    padding: 30px 20px 40px;
    border-radius: 10px;
    text-align: center;
}

.with-us-item img {
    max-width: 60px;
    height: 80px;
    margin-bottom: 10px;
}

.with-us-item h3 {
    color: var(--black);
    margin: 10px 0;
}

.with-us-item p {
    font-size: 16px;
    color: var(--black);
}

.steps,
.steps-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps {
    margin-top: 60px;
}

.steps-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 72px;
}

.steps-content-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (min-width: 860px) {
    .steps-content-items {
        flex-wrap: nowrap;
    }
}

.steps-content-item {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
}

@media screen and (min-width: 860px) {
    .steps-content-item {
        width: 48%;
        margin-bottom: 100px;
        align-items: initial;
    }
}

.steps-content-item h4 {
    margin-bottom: -60px;
}

.steps-content-item img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 55%;
    display: none;
}

@media screen and (min-width: 860px) {
    .steps-content-item img {
        display: inline;
        margin-top: -10px;
    }
}

.steps-content-item h4 {
    color: var(--gray);
    font-weight: 700;
    font-size: 160px;
    line-height: 150px;
    text-align: center;
}

@media screen and (min-width: 860px) {
    .steps-content-item h4 {
        text-align: left;
        font-size: 200px;
        line-height: 190px;
    }
}

.steps-content-item ol {
    margin-left: 20px;
}

.steps-content-item ol li {
    font-size: 16px;
    color: #A6A6A6;
}

.steps-content-item ol li:not(:first-of-type) {
    margin-top: 16px;
}

.steps-content-item button {
    max-width: 100%;
    margin-top: 20px;
}

@media screen and (min-width: 860px) {
    .steps-content-item button {
        margin-top: 28px;
        max-width: 50%;
    }
}

.steps-content-item.first img {
    left: 50%;
    top: 20px;
}

.steps-content-item > span {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    position: relative;
    cursor: pointer;
    transition: 0.1s;
}

@media screen and (min-width: 767px) {
    .steps-content-item > span {
        font-size: 20px;
    }
}

.steps-content-item span::after {
    position: relative;
    content: url(../images/arrow-blue.svg);
    transform: rotate(90deg);
    display: inline-block;
    right: -10px;
    top: -1px;
    transition: 0.1s;
}

.steps-content-item > span:hover::after {
    right: -15px;
}

.blue-btn span::after {
    content: " ";
}

.read-more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--gray);
    margin-top: 20px;
    flex-wrap: wrap;
}

@media screen and (min-width: 767px) {
    .read-more {
        flex-wrap: nowrap;
        margin-top: 60px;
    }
}

.read-more > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    justify-content: center;
}

@media screen and (min-width: 767px) {
    .read-more > div {
        flex-wrap: nowrap;
        gap: 60px;
        justify-content: flex-start;
    }
}

.read-more > div > span {
    width: 100%;
    display: block;
    text-align: center;
}

@media screen and (min-width: 767px) {
    .read-more > div > span {
        width: initial;
        display: inline;
        text-align: start;
    }
}

.safety,
.safety-content,
.safety-item > div {
    display: flex;
    flex-wrap: wrap;
}

.safety {
    margin-top: 60px;
}

.safety .buttons-social {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0 20px;
}

.safety-content {
    margin-top: 60px;
}

@media screen and (min-width: 767px) {
    .safety-content {
        margin-top: 115px;
    }
}

.safety button {
    width: fit-content;
}

.safety {
    align-items: center;
}

.safety-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

@media screen and (min-width: 767px) {
    .safety-item {
        flex-wrap: nowrap;
    }
}

@media screen and (min-width: 991px) {
    .safety-item {
        gap: 128px;
        margin-bottom: 30px;
    }
}

.safety-item:last-child {
    margin-bottom: 20px;
}

.safety-item > div {
    gap: 20px;
    order: 2;
}

@media screen and (min-width: 767px) {
    .safety-item > div {
        order: initial;
        width: 50%;
    }
}

.safety-item .img-size {
    display: block;
    order: 1;
    max-height: 300px;
}

@media screen and (min-width: 767px) {
    .safety-item .img-size {
        order: initial;
        max-height: initial;
        width: 50%;
    }
}

.safety-item .img-size img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

@media screen and (min-width: 767px) {
    .safety-item .img-size img {
        max-height: initial;
    }
}

.safety-item > div h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
}

@media screen and (min-width: 767px) {
    .safety-item > div h4 {
        font-size: 32px;
    }
}

.safety-item > div button {
    margin-top: 20px;
}

.accordion__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion {
    border-radius: 12px;
    padding: 15px 20px;
    background-color: var(--gray);
}

@media screen and (min-width: 767px) {
    .accordion {
        padding: 20px 60px;
    }
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: 0.1s;
}

.accordion__header:hover {
    opacity: 0.65;
}

.accordion__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s;
}

.accordion__icon.rotate {
    transform: rotate(180deg);
}

.accordion__content {
    overflow: hidden;
    height: 0;
}

.accordion__content.open {
    height: fit-content;
    margin-top: 20px;
}

.faq {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

@media screen and (min-width: 767px) {
    .faq {
        max-width: 1060px;
        margin: 40px auto 0;
    }
}

.faq h2 {
    margin-bottom: 10px;
}

.footer {
    background-color: var(--blue);
    padding: 20px 0;
    color: #fff;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media screen and (min-width: 767px) {
    .footer-content {
        justify-content: space-around;
    }
}

.footer-section {
    width: 100%;
    margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
    .footer-section {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 767px) {
    .footer-section {
        flex: 1;
    }
}

.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer .footer-section.footer-lang {
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
}

.footer .switch-lang .lang a {
    margin-bottom: 10px;
    pointer-events: none;
    max-width: 80px;
    width: 100%;
    padding: 10px 6px;
}

.footer .switch-lang {
    width: 100%;
}

@media screen and (min-width: 600px) {
    .footer .switch-lang {
        width: 50%;
    }
}

@media screen and (min-width: 767px) {
    .footer .switch-lang {
        width: initial;
    }
}

.footer .switch-lang .lang .language {
    background: #4286F5;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.footer .switch-lang .lang .language span {
    color: #fff;
}

.footer .switch-lang .content-lang {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width: 600px) {
    .footer .switch-lang .content-lang {
        display: block;
        columns: 2;
    }
}

.footer .switch-lang .content-lang .language {
    padding: 10px 6px;
    margin-bottom: 5px;
    max-width: 80px;
    width: 80px;
    transition: 0.1s;
    margin-right: 5px;
}

@media screen and (min-width: 600px) {
    .footer .switch-lang .content-lang .language {
        margin-bottom: 5px;
        margin-right: 0;
    }
}

.footer .switch-lang .content-lang .language:hover {
    opacity: 0.9;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-section img {
    max-width: 40px;
}

.logo-section p:last-of-type {
    font-size: 12px;
}

.logo-section p {
    color: var(--gray);
}

.privacy-policy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.privacy-policy > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-policy h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
}

.p-line {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--black);
}

.privacy-policy ul {
    padding-left: 20px;
}

.privacy-policy ul.with-padd li:not(:first-of-type) {
    margin-top: 20px;
}

.buttons-fixed {
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 5000;
}

@media screen and (min-width: 991px) {
    .buttons-fixed {
        right: 20px;
        bottom: 20px;
    }
}

.buttons-fixed a {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    text-decoration: none;
    transition: 0.1s;
}

.buttons-fixed a:hover {
    opacity: 0.85;
}

.buttons-fixed.animation a:nth-child(1) {
    animation: bounce-1 0.2s ease infinite;
    animation-delay: 0s;
    animation-duration: 5s;
}

.buttons-fixed.animation a:nth-child(2) {
    animation: bounce-2 0.2s ease infinite;
    animation-delay: 0s;
    animation-duration: 5s;
}

@keyframes bounce-1 {
    0%, 100% { transform: translateY(0); }
    10% { transform: translateY(-8px); }
    20% { transform: translateY(4px); }
    30% { transform: translateY(-4px); }
    40% { transform: translateY(2px); }
    50% { transform: translateY(0); }
}

@keyframes bounce-2 {
    0%, 100% { transform: translateY(0); }
    10% { transform: translateY(-9px); }
    20% { transform: translateY(5px); }
    30% { transform: translateY(-5px); }
    40% { transform: translateY(3px); }
    50% { transform: translateY(0); }
}

/* popup */
.popup__modal {
    position: fixed;
    z-index: -99999;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.popup__modal.open {
    z-index: 99999990;
    opacity: 1;
}

.popup__modal .bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 902;
    background: rgba(8, 9, 12, 0.70);
}

.popup__modal .popup_inner {
    position: relative;
    content: " ";
    top: 0;
    left: 0;
    z-index: 99999993;
    padding: 24px 0;
}

@media screen and (max-width: 767px) {
    .popup__modal .popup_inner {
        padding: 24px;
    }
}

.popup__modal .popup_inner .content {
    background: #fff;
    min-height: 200px;
    overflow: auto;
    border-radius: 12px;
}

@media screen and (max-width: 767px) {
    .popup__modal .popup_inner .content {
        width: 100%;
    }
}

.popup_title {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    padding-top: 30px;
}

.form-container {
    max-width: 420px;
    margin: auto;
    background: #f8f9ff;
    padding: 30px 30px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.form-field {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

.form-submit {
    width: 100%;
    background-color: #3478f6;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit:hover {
    background-color: #245dc9;
}

.form-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.form-buttons a {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;
    text-decoration: none;
    transition: 0.1s;
}

.form-buttons a:hover {
    opacity: 0.85;
}

.whatsapp-btn {
    background-color: #25D366;
}

.telegram-btn {
    background-color: #0088cc;
}

.popup__modal .close {
    position: absolute;
    content: " ";
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial;
    font-size: 32px;
    transform: rotate(45deg);
    background: #fff;
    border-radius: 50%;
    z-index: 905;
    top: 24px;
    right: 24px;
    width: 30px;
    height: 30px;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    cursor: pointer;
}

.popup__modal .close:hover {
    opacity: 0.8;
}