/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&display=swap');

:root {
    --font-primary: "Manrope", sans-serif;
    --font-secondary: "DM Sans", sans-serif;
    --font-third: "Caveat", cursive;
    --color-white: #fff;
    --color-black: #000;
    --color-primary: #0F58E0;
    --color-secondary: #2C2E47;
    --color-text: #94A3B8;
    --color-text2: #868686;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;    
    background: var(--color-white);
    color: var(--color-text);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--color-primary); 
    text-align: center; 
    font-size: 16px;
    color: var(--color-white);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--color-white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -6px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--color-primary); 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 14px 24px;
    background-color: var(--color-primary);
    position: relative;
    z-index: 9;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25), 0 4px 6px -4px rgba(37, 99, 235, 0.25);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    background-color: var(--color-secondary);
    z-index: -1;
    border-radius: 0 8px 8px 0;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 50%;
    background-color: var(--color-secondary);
    z-index: -1;
    border-radius: 8px 0 0 8px;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-border-radius: 8px 0 0 8px;
    -moz-border-radius: 8px 0 0 8px;
    -ms-border-radius: 8px 0 0 8px;
    -o-border-radius: 8px 0 0 8px;
}

.button:hover:after,
.button:hover:before {
    width: 50%;
}

.button:hover {
    color: var(--color-white);
}

/*=== header start ===*/

.header__topbar {
    padding: 21px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__topbar-email {
    font-family: var(--font-secondary);
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.header__topbar-email:hover {
    color: var(--color-primary);
}

.header__topbar-phone {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
}

.header__topbar-phone:hover {
    color: var(--color-secondary);
}

.header__brand {
    padding: 35px 0;
    background-color: var(--color-primary);
    text-align: center;
}

.header__brand img {
    max-width: 100%;
}

/*=== main start ===*/

.hero {
    padding-bottom: 113px;
}

.hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
}

.hero__content {
    padding-top: 51px;
}

.hero__title {
    color: var(--color-secondary);
    font-size: 64px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.hero__title-highlight {
    color: var(--color-primary);
}

.hero__desc {
    color: var(--color-text2);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-top: 8px;
    margin-bottom: 24px;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.button--outline {
    color: #334155;
    border: 2px solid #E2E8F0;
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
}

.button img {
    max-width: 100%;    
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

.button--outline small {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 500;
    width: 140px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #E2E8F0;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.button--outline:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(223deg) brightness(103%) contrast(101%);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 12px;
}

.hero__badge {
    color: var(--color-text2);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__badge img {
    max-width: 100%;
}

.hero__media {
    max-width: 537px;
    margin-left: auto;
    background: var(--Linear-Green, linear-gradient(180deg, rgba(15, 88, 224, 0.00) 0%, #0F58E0 100%));
    display: flex;
    align-items: end;
    padding-top: 96px;
}

.hero__media img {
    width: 100%;
}

/*=== problems start ===*/

.problems {
    padding: 64px 0;
}

.problems__heading {
    text-align: center;
    margin-bottom: 42px;
}

.problems__title {
    color: var(--color-secondary);
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    max-width: 636px;
    margin: 0 auto;
}

.problems__grid {
    max-width: 1127px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 46px;
    grid-row-gap: 32px;
}

.problems__item {
    padding: 26px 26px 11px 24px;
    border-radius: 20px;
    background: #F8F8F8;
}

.problems__icon {
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.problems__item-title {
    color: var(--color-secondary);
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 20px;
}

.problems__item-desc {
    color: var(--color-text2);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

/*=== solution start ===*/

.solution {
    background-color: #f8f8f8;
    position: relative;
    z-index: 9;
}

.solution .container {
    max-width: 1380px;
}

.solution__image {
    position: relative;
    z-index: 9;
    padding-top: 91px;
}

.solution__image img {
    width: 100%;
}

.solution__image::after {
    content: '';
    position: absolute;
    width: 387px;
    height: 100%;
    right: 34px;
    bottom: 0;
    background: var(--Linear-Green, linear-gradient(180deg, rgba(15, 88, 224, 0.00) 0%, #0F58E0 100%));
    z-index: -1;
}

.solution__image--position {
    position: absolute;
    width: 571px;
    top: 0;
    left: 0;
    z-index: -1;
}

.solution__grid {
    display: grid;
    grid-template-columns: 571px 1fr;
    gap: 40px;
    align-items: center;
}

.solution__content {
    max-width: 720px;
    margin-left: auto;
}

.solution__heading {
    max-width: 667px;
}

.solution__label {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.solution__label img {
    max-width: 100%;
}

.solution__sub {
    color: var(--color-text2);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.solution__title {
    color: var(--color-secondary);
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

.solution__desc {
    color: var(--color-text2);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 72px;
}

.solution__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 48px;
    grid-row-gap: 52px;
}

.solution__feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    margin-bottom: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.solution__feature-icon img {
    max-width: 100%;
}

.solution__feature-title {
    color: var(--color-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 14px;
}

.solution__feature-desc {
    font-family: var(--font-secondary);
    color: var(--color-text2);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

/*=== process start ===*/

.process {
    padding: 44px 0;
}

.process__wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.process__heading {
    max-width: 617px;
    margin-bottom: 32px;
}

.process__item {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 32px;
}

.process__item-number {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2563EB;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.process__item-number span {
    font-family: var(--font-secondary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.process__item-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #EFF6FF;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.process__item-icon img {
    max-width: 100%;
}

.process__item-title {
    color: #0F172A;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 4px;
}

.process__item-desc {
    color: #64748B;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
}

.process__cta {
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #D1FAE5;
    background: #ECFDF5;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.process__cta-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22C55E;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.process__cta-icon img {
    max-width: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(223deg) brightness(103%) contrast(101%);
}

.process__cta-action {
    margin-left: auto;
}

.process__cta-action .button {
    background-color: #22c55e;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.20), 0 2px 4px -2px rgba(34, 197, 94, 0.20);
}

.process__cta-action .button img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(223deg) brightness(103%) contrast(101%);
}

/*=== testimonials start ===*/

.testimonials {
    padding: 81.5px 0;
    background-color: #f0f8ed;
}

.testimonials__wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.testimonials__heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.testimonials__heading-action {
    padding-top: 64px;
}

.testimonials__heading-action .button {
    padding: 17px 37px;
    background-color: #F6B613;
    box-shadow: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 24px;
}

.testimonials__item {
    padding: 34px;
    background-color: var(--color-white);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    position: relative;
    z-index: 9; 
}

.testimonials__item-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonials__item-top img {
    max-width: 100%;
    margin-right: 20px;
}

.testimonials__author-name {
    color: #0B0A04;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.testimonials__item-title {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.testimonials__item-text {
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.testimonials__rating {
    width: 97px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F0F8ED;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    top: 0;
    right: 24px;
}

.testimonials__rating--blue {
    background-color: var(--color-primary);
}

.testimonials__rating--yellow {
    background-color: #F6B613;
}

/*=== audit start ===*/

.audit {
    background-image: url(../images/audit-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 71.5px 0;
    position: relative;
    z-index: 9;
}

.audit::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/audit-mobile-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    display: none;
}

.audit__grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 463px 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 24px;
    align-items: center;
}

.audit__info {
    padding: 48px 43px 11px 60px;
    background-color: #F3F3F3;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.audit__info .solution__title {
    font-size: 36px;
    line-height: normal;
    margin-bottom: 0;
}

.audit__info .solution__desc {
    font-size: 16px;
    margin-bottom: 16px;
}

.audit__list {
    padding-top: 16px;
    border-top: 1px solid #DEDEDE;
}

.audit__list li {
    font-family: var(--font-secondary);
    color: #2C2E47;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.audit__list li img {
    width: 24px;
    margin-right: 16px;
    margin-top: 1px;
}

.audit__note {
    font-family: var(--font-third);
    color: #2563EB;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.audit__note img {
    max-width: 100%;
}

.audit__form {
    padding: 33px;
    background-color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.audit__form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.audit__form-title {
    color: var(--color-secondary);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.audit__form-header img {
    max-width: 100%;
    cursor: pointer;
}

.audit__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.audit__field label {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    margin-bottom: 6px;
}

.audit__field input,
.audit__field select {
    color: #0F172A;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: var(--color-white);
    appearance: none;
}

.audit__field input::placeholder {
    opacity: 1;
    color: #9CA3AF;
}

.audit__field--full {
    grid-column: 1 / -1;
}

.audit__form .button {
    border: none;
    width: 100%;
    margin: 16px 0;
}

.audit__whatsapp {
    color: #94A3B8;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit__whatsapp a {
    color: #94A3B8;
    margin-left: 4px;
}

.audit__whatsapp a img {
    max-width: 12px;
    margin-right: 4px;
    display: inline-block;
    margin-bottom: 3px;
}

.audit__whatsapp a:hover {
    color: var(--color-primary);
}

/*=== cta start ===*/

.cta {
    padding: 64px 0 40px;
    background-color: #0F172A;
    text-align: center;
}

.cta__title {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.9px;
    margin-bottom: 16px;
}

.cta__desc {
    color: #94A3B8;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
}

.cta__wrapper .hero__actions {
    justify-content: center;
    margin-bottom: 24px;
}

.cta__wrapper .button--outline {
    color: var(--color-white);
    border-color: #475569;
}

.cta__wrapper .button--outline:hover {
    border-color: #2c2e47;
}

.cta__note {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

/*=== footer start ===*/

.footer {
    padding-top: 110px;
    background-color: #0F172A;
}

.footer__grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 207px;
    grid-row-gap: 24px;
    padding-bottom: 75px;
    border-bottom: 1px solid #F0F8ED;
}

.footer__logo img {
    max-width: 100%;
}

.footer__tagline {
    font-family: var(--font-secondary);
    color: #F0F8ED;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 20px;
}

.footer__item-title {
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.footer__list li a {
    font-family: var(--font-secondary);
    color: #F0F8ED;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: inline-block;
    margin-bottom: 12px;
}

.footer__list li:last-child a {
    margin-bottom: 0;
}

.footer__list li a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    padding: 24px 0 37px;
}

.footer__copyright {
    font-family: var(--font-secondary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.modal-dialog {
    max-width: 645px;
}

.modal-content {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.modal-dialog .audit__form {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.btn-close {
    width: 24px;
    height: 24px;
    background: transparent;
    padding: 0;
    color: transparent;
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.btn-close:hover {
    opacity: 1;
}

.modal__box {
    padding: 32px;
    text-align: center;
}

.modal__icon {
    margin-bottom: 16px;
}

.modal__icon img {
    max-width: 100%;
}

.modal__desc {
    color: #94A3B8;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    max-width: 315px;
    margin: 0 auto 16px;
}

.modal__box .button {
    width: 100%;
    border: none;
    margin-bottom: 16px;
}