html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    overflow-x: hidden;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: "Inter", sans-serif;
}

.input-group {
    position: relative;
    max-width: 388px;
}

.input-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 12px 13px;
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    outline: none;
    color: #053D61;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
}

.input-group input:focus {
    border-color: #8dd1fb;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 12px;
    font-size: 12px;
    color: #527389;
}

.input-group label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #527389;
    pointer-events: none;
    transition: 0.2s ease;
    padding: 0 4px;
}

.zip__input__wrapper {
    width: 100%;
    max-width: 388px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
}

.success-icon {
    background: url('../images/check.svg') no-repeat center/contain;
}

.input-group.success .input-icon {
    opacity: 1;
}

.step-6 .input-icon{
  top: 25px;
}

.zip-error {
    font-size: 14px;
    color: #e74242;
    padding-top: 10px;
    min-height: 18px;
}

span.error, span.custom-error {
    color: #e74242;
    display: block;
    padding-top: 10px;
}

.input-group input.error, .input-group.error input{
    border-color: #e74242;
}

.zip__input.error:focus, .base__input.error:focus{
    outline: none;
    box-shadow: none;
}

.btn__default {
    min-width: 321px;
    border-radius: 1000px;
    border: none;
    background: linear-gradient(91deg, #0187B3 -0.8%, #00CBDC 47.91%, #058C95 96.62%);
    display: flex;
    padding: 17px 0;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

@keyframes pulse-soft {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-pulse {
    animation: pulse-soft 1.6s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
}

.btn__default:hover {
    background: linear-gradient(91deg, #017496 -0.8%, #00B4C3 47.91%, #047A82 96.62%);
    color: #FFF;
}

.btn__default.disabled{
    background: linear-gradient(91deg, #0187b3c4 -0.8%, #00cadca8 47.91%, #058b95a2 96.62%);
    color: #ffffffc1;
}

.btn__secondary{
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
    border: 2px solid #0187B3;
    background: #FFFFFF;
    color: #0187B3;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
}

.step .btn__secondary{
    width: 54px;
    height: 54px;
}

.radio__btns__wrapper {
    display: flex;
    gap: 11px;
    justify-content: center;
    width: 100%;
    max-width: 388px;
}

.btn__tertiary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
    border-radius: 12px;
    border: 2px solid #DBDBDB;
    transition: all .3s;
    background: #FFF;
    align-items: center;
    max-width: 156px;
    max-height: 156px;
    padding: 15px 15px 7px 16px;
    box-sizing: border-box;
    cursor: pointer;

    input[type="radio"] {
        display: none;
    }

    &:hover {
        border: 2px solid #0187B3;
    }

    span {
        color: #053D61;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%; /* 16.8px */
    }
}

.step-1 .btn__tertiary{
    max-width: 156px;
}

.group{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-top: 7px;
    max-width: 388px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.radio__btns__wrapper label:has(input[type="radio"]:checked) {
    border: 2px solid #0187B3;
}

.step-1 .radio__btns__wrapper label span{
    font-size: 14px;
    margin-top: 5px;
}

.btn__tertiary img{
    width: 138px;
    height: 92px;
}

.checkbox__group{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #527389;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 388px;
    box-sizing: border-box;
}

.checkbox__group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox__input {
    display: none;
}

.checkbox__custom {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #00B9C5;
    background: #FFF;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s, transform 0.2s;
}

.checkbox__input:checked + .checkbox__custom {
    background-color: #DCF3F5;
    width: 16px;
    height: 16px;
}

.checkbox__custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #00B9C5;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox__input:checked + .checkbox__custom::after {
    opacity: 1;
}

.reviews__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.reviews__img {
    max-width: 100px;
    max-height: 100px;
}

.reviews__img img{
    width: 100%;
    height: 100%;
}

.reviews__img:first-child img {
    cursor: pointer;
}

.ui-autocomplete.ui-menu {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0 4px;
    margin: 0;
    list-style: none;
    background: transparent;
    border: none;
    box-shadow: none;
    position: static !important;
    width: auto !important;
    max-width: none;
    box-sizing: border-box;
    z-index: auto;
}

.ui-autocomplete .ui-menu-item {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.ui-autocomplete .ui-menu-item-wrapper {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #0187B3;
    border-radius: 20px;
    font-size: 13px;
    color: #0187B3;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
    background: #0187B3;
    color: #ffffff;
    border-color: #0187B3;
}

.ui-helper-hidden-accessible {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 100;
}

.overlay.active,
.exit__popup.active {
    opacity: 1;
    visibility: visible;
}

.exit__popup{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    background: #FFF;
    min-width: 447px;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 101;
    transition: 0.3s;
}

.exit__popup__wrapper{
    display: flex;
    flex-direction: column;
}

.exit__popup__header{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 14px;
    margin-bottom: 24px;
}

.popup__btns{
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 407px;
}

.popup__btns button{
    width: 50%;
    min-width: fit-content;
}

.popup__title{
    color: #053D61;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 31.2px */
    letter-spacing: 0.48px;
}

.popup__descr{
    color: #527389;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.close__btn{
    border: none;
    background-color: inherit;
    width: 24px;
    height: 24px;
    align-self: flex-end;
    cursor: pointer;
}

.form-steps {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: 0.3s;
    position: relative;
}

.form-steps.loaded {
    opacity: 1;
    height: 100%;
    visibility: visible;
    min-height: 360px;
    min-width: 400px;
}

.form-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.form-loader.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top: 4px solid #32BFD1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}






/* =========================================HEADER===================================== */


.header {
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
    isolation: isolate;
}

.header__text{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(91deg, #0187B3 -0.8%, #00CBDC 47.91%, #058C95 96.62%);
    min-height: 24px;
}

.header__text p{
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
}

.header__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.form__wrapper{
    display: flex;
    padding: 18px 60px;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    background: #FFF;
    min-width: 805px;
    min-height: 560px;
    position: relative;
}


.main__title{
    color: #053D61;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.76px;
    max-width: 495px;
}

.main__subtitle{
    color: #527389;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.title__accent{
    color: #3CD2FF;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.76px;
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    flex-direction: column;
    align-items: center;
    min-height: 360px;
    gap: 24px;
}

.step.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.btns__wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 388px;
    justify-content: center;
    align-items: center;
}

.btns__wrapper__column{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.form__header__progress{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.form__header__progress__item{
    width: 52px;
    height: 6px;
    border-radius: 2px;
    background: #EAEAEB;
}

.form__header__progress__item.active{
    background: #32BFD1;
}

.descr__group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 10px;
}

.descr__group img{
    width: 20px;
    height: 20px;
}

.main__descr{
    color: #053D61;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.step__text{
    color: #527389;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.step__text a{
    color: #527389;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.btns__group{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    justify-content: center;
    align-items: stretch;
}

.btns__group .btn__tertiary{
    display: flex;
    min-height: 54px;
    width: 100%;
    max-width: 100%;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.address__panel{
    color: #053D61;
    text-align: center;
    border-radius: 12px;
    background: #F6F5FD;
    padding: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
}


/* ======================================REVIEW=================================== */

.review{
    width: 100%;
    background: #F4F8FA;
}

.review__wrapper{
    max-width: 1252px;
    padding: 32px 10px 0px 10px;
    margin: 0 auto;
}

.review__list{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.review__list__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: url("../images/concept.png") center/cover no-repeat;
    min-width: 142px;
    min-height: 60px;
    justify-content: center;
}

.review__list__item span{
    color: #212327;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    text-transform: uppercase;
}

.review__list__item p{
    color: #3E5877;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 77px;
}

.review__block{
    display: flex;
    gap: 4px;
    align-items: center;
}

.review__block img{
    width: 22px;
    height: 22px;
}

/* ======================================FOOTER================================== */

.footer{
    background: #F4F8FA;
}

.footer__wrapper{
    display: flex;
    flex-direction: column;
    padding: 20px 87px 31px 87px;
    justify-content: center;
    align-items: center;
}

.footer__logo{
    width: 134px;
    height: 45px;
    margin-bottom: 20px;
}

.footer__logo img{
    width: 100%;
    height: 100%;
}

.footer__text{
    color: #3E5877;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 19.6px */
    margin-bottom: 20px;
    position: relative;
}

.footer__links__list{
    display: flex;
    gap: 22px;
    margin-bottom: 20px;
}

.footer__links__group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link{
    color: #527389;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer__copyright{
    color: rgba(3, 40, 63, 0.44);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    max-width: 200px;
}





/* ======================================THANK-YOU-PAGE===================================== */

.thank__header{
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
    isolation: isolate;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.thank__header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/typBg.webp') center center / cover no-repeat;
    z-index: -1;
}

.thank__header .header__content{
    display: flex;
    padding: 22px 60px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #FFF;
    max-width: 1360px;
    align-self: center;
    position: relative;
}

.thank__section__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 685px;
    position: relative;
    padding-bottom: 49px;
}

.thank__content::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 50%;
    height: 1px;
    background-color: #93C3D6;
}

.loader{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader p{
    color: #053D61;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 45.5px */
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.loader span{
    color: #001842;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 24px */
    letter-spacing: 0.4px;
}

.loader span::after {
    content: "";
    display: inline-block;
    width: 1em;
    text-align: left;
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%   { content: ""; }
    33%  { content: "."; }
    66%  { content: ".."; }
    100% { content: "..."; }
}


.thank__content__loader__img{
    width: 239px;
    height: 204px;
    margin-bottom: 37px;
}

.thank__content__loader__img img, .thank__content__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank__content__img{
    width: 239px;
    height: 204px;
}

.thank__content__text .title{
    color: #053D61;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 45.5px */
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.thank__content__text .text__light__bold{
    color: #053D61;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
}

.discover{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 49px;
}

.discover__title {
    color: #053D61;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 45.5px */
    letter-spacing: 0.7px;
    text-transform: uppercase;
    max-width: 750px;
    margin-bottom: 12px;
}

.discover__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.discover__list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 30px;
    border: 2px solid #B1E1FF;
    background: #FFF;
    transition: all .3s;
}

.discover__list__item:hover{
    background: #D2EDFF;
}

.discover__list__item p{
    color: #053D61;
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 27.6px */
    letter-spacing: 0.46px;
    text-transform: uppercase;
}

.discover__list__item__img{
    max-width: 359px;
    max-height: 194px;
    border-radius: 30px;
    border: 2px solid #34E3D2;
    background: lightgray 50% / cover no-repeat;
    overflow: hidden;
}

.discover__list__item__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank__section__wrapper .btn__default{
    width: 100%;
}

#email-suggestion {
    display:none;
    font-size:14px;
    margin-top:15px;
    margin-bottom: 15px;
    color: #3E5877;
    font-style: normal;
    font-weight: 300;
}
.suggestion_email {
    font-weight: 600;
}
.suggestion_link {
    color: rgb(5, 61, 97);
    font-weight: 400;
    text-underline-position: from-font;
}

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}



/* ======================================REVIEWS MODAL===================================== */

.reviews-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 100;
    overflow-y: auto;
}

.reviews-modal--open {
    display: flex;
}

.reviews-modal__card {
    background: #FFF;
    border-radius: 14px;
    width: 100%;
    max-width: 706px;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
}

.reviews-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.reviews-modal__brand {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.reviews-modal__brand-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.reviews-modal__brand-name {
    font-size: 22px;
    font-weight: 500;
    color: #053D61;
    line-height: 1.2;
}

.reviews-modal__brand-subtitle {
    font-size: 16px;
    color: #91969E;
    line-height: 1.3;
}

.reviews-modal__rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-modal__rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-modal__rating-score {
    font-size: 44px;
    font-weight: 500;
    color: #053D61;
    line-height: 1;
}

.reviews-modal__rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.reviews-modal__rating-max {
    font-size: 18px;
    color: #91969E;
}

.reviews-modal__rating-count {
    font-size: 16px;
    color: #91969E;
}

.reviews-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #91969E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-modal__list {
    display: flex;
    flex-direction: column;
}

.reviews-modal__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #EBEBEB;
}

.reviews-modal__item:first-child {
    border-top: 1px solid #EBEBEB;
}

.reviews-modal__item:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.reviews-modal__item-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #adadad;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-modal__item-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.reviews-modal__item-body {
    flex: 1;
    min-width: 0;
}

.reviews-modal__item-name {
    font-size: 16px;
    font-weight: 500;
    color: #053D61;
    margin-bottom: 5px;
}

.reviews-modal__item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reviews-modal__item-stars {
    display: flex;
    gap: 2px;
}

.reviews-modal__item-stars-img {
    height: 16px;
}

.reviews-modal__item-date {
    font-size: 13px;
    color: #91969E;
}

.reviews-modal__item-text {
    font-size: 14px;
    color: #053D61;
    line-height: 1.6;
    margin: 0;
}



/* ===================================MEDIA============================= */

@media (min-height: 1210px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    header {
        flex: 1;
    }
}

@media (min-height: 520px) {
    .header__nav {
        margin: 15px auto 15px auto;
    }
}

@media (min-height: 900px) {
    .header__nav {
        margin: 31px auto 76px auto;
    }
}

@media (max-width: 1000px) {
    .main__title, .title__accent, .thank__content__text .title, .discover__title, .loader p{
        font-size: 28px;
    }


    .thank__content__text .text__light__bold, .loader span{
        font-size: 18px;
    }

    .review__list{
        flex-wrap: wrap;
        gap: 30px;
    }

    .header__nav {
        margin: 31px auto 76px auto;
    }

    .form__wrapper {
        min-width: 600px;
        height: 100%;
    }

}

@media (max-width: 900px) {

    .step-1 .radio__btns__wrapper label span {
        text-align: left;
    }

}

@media (max-width:760px) {
    .main__title, .title__accent, .thank__content__text .title, .discover__title, .loader p{
        font-size: 20px;
    }

    .header__nav{
        margin: 31px auto 36px auto;
    }

    .header__btn{
        display: none;
    }

    .header__btn.mobile{
        display: block;
        padding: 10px 20px;
    }

    .form__wrapper{
        padding: 24px 8px;
        min-width: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .header__form{
        width: 100%;
    }

    .footer__wrapper{
        padding: 48px 12px 48px 12px;
    }

    .discover__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .discover__list__item {
        width: 100%;
    }

    .thank__header .header__content{
        padding: 15px 30px;
    }

    .main__title{
        margin-top: 7px;
    }

    .step .btn__default{
        min-width: 80%;
    }

    .exit__popup{
        min-width: 320px;
    }

    .popup__title{
        font-size: 20px;
    }

    .reviews__img{
        max-width: 75px;
        max-height: 65px;
    }
}

@media (max-width: 450px) {
    .form__header__progress__item{
        width: 45px;
    }

    .form-steps.loaded{
        min-width: 100%;
    }

    .btn__tertiary{
        padding: 11px 11px 24px 11px;
    }

    .btns__wrapper {
        margin-top: inherit;
    }

    .group{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
        margin-top: 7px;
    }

    .step {
        min-height: 504px;
    }

    .form__wrapper{
        min-height: 560px;
        max-height: 100%;
        height: 100%;
    }

    .discover__list__item{
        cursor: pointer;
        padding: 10px;
    }

    .discover__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .thank__section__wrapper .btn__default{
        display: none;
    }

    .thank__header .header__content{
        padding: 5px;
    }

    .descr__group{
        align-items: flex-start;
        justify-content: flex-start;
    }

    .main__descr{
        text-align: left;
    }

    .exit__popup{
        padding: 10px;
    }

    .popup__descr{
        font-size: 12px;
    }

    .exit__popup {
        min-width: 300px;
    }

  .reviews-modal__rating-score{
        font-size: 36px;
    }
}

@media (max-width: 360px) {

    .discover__list {
        grid-template-columns: 1fr;
    }
}