:root {
    --green-color: #53C918;
    --green-color-hover: #46AD14;
    --black-color: #2B2F33;
    --light-color: #F9FBFB;
}

body {
    font-size: 16px;
    line-height: 1.3;
}

*, *:before, *:after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.main-container {
    width: 100%;
    max-width: 1324px;
    margin: 0 auto;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #DEE1E0;
    padding: 25px 0;
}

.main-header__container {
    margin-bottom: 50px;
    position: relative;
}

.main-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.main-header__logo {
    object-fit: cover;
}

.main-header__buttons {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-header__nav {
    display: flex;
    gap: 70px;
    align-items: center;
}

.main-header__nav-link {
    color: var(--black-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .3s;
    cursor: pointer;
}

.main-header__nav-link svg path {
    transition: stroke .3s;
}

.main-header__nav-link:hover,
.main-header__nav-link.show,
.main-header__nav-link[aria-expanded="true"] {
    color: var(--green-color);
}

.main-header__nav-link:hover svg path,
.main-header__nav-link.show svg path,
.main-header__nav-link[aria-expanded="true"] svg path {
    stroke: var(--green-color);
}

.main-header__nav-link svg {
    transition: transform .3s;
}

.main-header__nav-link.show svg,
.main-header__nav-link[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.main-header__language {
    display: flex;
    gap: 7px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    cursor: pointer;
    transition: color .3s;
}

.main-header__language svg {
    transition: transform .3s;
}

.main-header__language.show svg {
    transform: rotate(180deg);
}

.main-header__language:hover,
.main-header__language.show {
    color: var(--green-color);
}

.main-header__language svg path {
    transition: stroke .3s;
}

.main-header__language:hover svg path,
.main-header__language.show svg path {
    stroke: var(--green-color);
}

.main-header__btn {
    background: var(--green-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 11px 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    transition: background .3s;
    border: 0;
}

.main-header__btn:hover {
    background: var(--green-color-hover);
}

.main-title {
    color: var(--black-color);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.main-subtitle {
    color: var(--black-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.main-search__wrapper {
    border: 2px solid var(--green-color);
    border-radius: 20px;
    padding: 10px 10px 10px 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.main-search__wrapper--ai {
    padding: 40px;
}

.main-search__input {
    flex-grow: 1;
    border: none;
    font-weight: 400;
    align-self: stretch;
}

.main-search__input--ai {
    min-height: 50px;
    resize: none;
    border-bottom: 1px solid #DEE1E0;
    padding-bottom: 15px;
}

.main-search__input:focus {
    outline: none;
}

.main-search__input::placeholder {
    color: #CCCCCC;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

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

.main-search__whois {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--black-color);
    gap: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    transition: color .3s;
}

.main-search__whois:hover {
    color: var(--green-color);
}

.main-search__whois svg path {
    transition: stroke .3s;
}

.main-search__whois:hover svg path {
    stroke: var(--green-color);
}

.main-search__btn {
    background: var(--green-color);
    color: #fff;
    border: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    border-radius: 6px;
    padding: 16px 21px;
    cursor: pointer;
    transition: background .3s;
}

.main-search__btn:hover,
.main-search__btn.active {
    background: var(--green-color-hover);
}

.main-btn__green {
    background: var(--green-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    transition: background .3s;
    border: 0;
}

.main-btn__green:hover {
    background: var(--green-color-hover);
}

.main-btn__secondary {
    background: #8d959c;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    transition: background .3s;
    border: 0;
}

.main-btn__secondary:hover {
    background: #768089;
}

.main-domain__prices {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.main-domain__prices-item {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.main-cards__row {
    display: flex;
    gap: 16px;
}

.main-cards__row-multiple {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.main-cards__row-left {
    flex-basis: 33.33%;
}

.main-cards__row-right {
    flex-basis: 66.67%;
}

.main-card {
    --main-card-padding: 40px;
    background: var(--black-color);
    color: #fff;
    border-radius: 30px;
    padding: var(--main-card-padding);
    transform: translateY(0);
    transition: transform .15s ease-out;
    will-change: transform;
}

.main-card:hover {
    transform: translateY(-2px);
}

.main-card--seo {
    min-height: 839px;
    display: flex;
}

.main-card__margin-bottom {
    margin-bottom: var(--main-card-padding);
}

.main-card__margin-right {
    margin-right: var(--main-card-padding) !important;
}

.main-card__margin-left {
    margin-left: var(--main-card-padding);
}

.main-card--light {
    background: var(--light-color);
    color: #000;
}

.main-card--green {
    background: var(--green-color);
}

.main-card--light-gray {
    background: #F4F4F4;
}

.main-card--light-green {
    background: #F0FFE3;
    padding-left: 0;
}

.main-card--dark-gray {
    background: #3B3B3B;
}

.main-cards__row-small {
    flex-basis: calc(50% - 8px);
}

.main-cards__row-big {
    flex-basis: 100%;
}

.main-card__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-card__title--seo {
    font-size: 40px;
    margin-bottom: 30px;
}

.main-card--light .main-card__title {
    color: #1E1E1E;
}

.main-card--light .main-card__subtitle,
.main-mail__white-card .main-card__subtitle,
.main-card__subtitle--gray,
.main-about__card .main-card__subtitle {
    color: #9CA6A3;
}

.main-card__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.main-card__subtitle--seo {
    font-size: 16px;
    min-height: 75px;
}

.main-card__subtitle--seo-light {
    font-size: 16px;
    min-height: 75px;
    color: #5A5A5A !important;
}

.main-card__btn {
    border-radius: 6px;
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 25px;
    line-height: 1.3;
    text-decoration: none;
    display: inline-flex;
    transition: background .3s;
    border: 0;
}

.main-card__btn:hover {
    background: #F0F0F0;
}

.main-card__btn--green {
    background: var(--green-color) !important;
    color: #fff !important;
}

.main-card__btn--green:hover {
    background: var(--green-color-hover) !important;
}

.main-card__btn--our-services {
    background: #F9FBFB !important;
    color: #000 !important;
    width: 100%;
    justify-content: center;
}

.main-card__btn--our-services:hover {
    background: #F0F3F3 !important;
}

.main-card--light .main-card__btn {
    background: #F2F4EF;
}

.main-card--light .main-card__btn:hover {
    background: #E4E7DE;
}

.main-cards__row .main-card {
    height: 100%;
}

.main-section-margin {
    margin-bottom: 50px;
}

.main-section-margin-top {
    margin-top: 33px;
}

.main-header__search svg path {
    transition: fill .3s;
}

.main-header__search:hover svg path {
    fill: var(--green-color);
}

.main-site {
    background: #F3FFED;
    margin-bottom: 50px;
    border-radius: 30px;
    padding: 50px 60px 0 60px;
}

.main-site__title {
    color: var(--black-color);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.main-site__subtitle {
    color: var(--black-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 80px;
}

.main-site__template {
    width: 100%;
    max-width: 853px;
    background: #fff;
    border: 1px solid #9CA6A3;
    border-bottom-style: none;
    border-radius: 30px 30px 0 0;
    position: relative;
}

.main-site__template-header {
    border-bottom: 1px solid #9CA6A3;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-site__template-left {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-site__template-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-site__template-links__item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #565656;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    transition: color .3s;
}

.main-site__template-links__item:hover {
    color: var(--green-color);
}

.main-site__template-body {
    padding: 30px 100px 90px 85px;
    display: flex;
    gap: 35px;
    position: relative;
}

.main-site__template-for-key {
    position: relative;
    color: var(--black-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #6FDA39;
    padding: 12px 55px 12px 12px;
}

.main-site__template-for-key__decoration-top-left {
    width: 5px;
    height: 5px;
    background: #fff;
    border: 1px solid #6FDA39;
    position: absolute;
    top: -3px;
    left: -3px;
}

.main-site__template-for-key__decoration-bottom-left {
    width: 5px;
    height: 5px;
    background: #fff;
    border: 1px solid #6FDA39;
    position: absolute;
    bottom: -3px;
    left: -3px;
}

.main-site__template-for-key__decoration-top-right {
    width: 5px;
    height: 5px;
    background: #fff;
    border: 1px solid #6FDA39;
    position: absolute;
    top: -3px;
    right: -3px;
}

.main-site__template-for-key__decoration-bottom-right {
    width: 5px;
    height: 5px;
    background: #fff;
    border: 1px solid #6FDA39;
    position: absolute;
    bottom: -3px;
    right: -3px;
}

.main-site__more {
    background: #EFF2F1;
    color: #1E1E1E;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    padding: 17px 28px;
    display: inline-flex;
    transition: background .3s;
    position: relative;
    z-index: 30;
}

.main-site__more:hover {
    background: #D9DEDC;
}

.main-site__note {
    display: flex;
    align-items: start;
    max-width: 289px;
    min-width: 289px;
    border-radius: 40px;
    padding: 30px;
    gap: 10px;
    justify-content: space-between;
    min-height: 209px;
    position: relative;
}

.main-site__note--warn {
    background: #FFF2CE;
    bottom: -70px;
    transform: rotate(7.49deg);
}

.main-site__note--blue {
    background: #B9EAFF;
    bottom: -55px;
    left: -5px;
    transform: rotate(-5.62deg);
}

.main-site__note--red {
    background: #FFCECE;
    bottom: -80px;
    left: -25px;
    transform: rotate(7.66deg);
}

.main-site__note--purple {
    background: #EFE2FF;
    left: -30px;
    bottom: -60px;
    transform: rotate(-5.23deg);
}

.main-site__note-title {
    color: #1E1E1E;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.main-site__note-subtitle {
    color: #616161;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.main-site__note-container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -210px;
    overflow-y: hidden;
    overflow-x: auto;
}

.main-google {
    transform: rotate(7.89deg);
}

.main-card__title--why-hosti {
    font-size: 32px;
    color: var(--black-color) !important;
}

.main-card__subtitle--why-hosti {
    color: var(--black-color) !important;
}

.main-card__title--why-hosti-white {
    font-size: 32px;
    color: #fff !important;
}

.main-card__subtitle--why-hosti-white {
    color: #fff !important;
}

.main-footer-top {
    border-top: 1px solid #EAECEB;
    border-bottom: 1px solid #EAECEB;
    padding: 40px 0 30px 0;
}

.main-footer__card {
    background: #F9FBFB;
    border-radius: 13px;
    padding: 15px 20px;
    min-height: 95px;
    text-decoration: none;
    transition: background .3s;
}

.main-footer__card--ratingkazneta span {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--black-color);
    transition: color .3s;
    text-decoration: none;
}

.main-footer__card--telegram svg path,
.main-footer__card--instagram svg path,
.main-footer__card--youtube svg path {
    transition: fill .3s;
}

.main-footer__card--telegram:hover {
    background: #0088CC;
}

.main-footer__card--telegram:hover svg path,
.main-footer__card--youtube:hover svg path {
    fill: #fff;
}

.main-footer__card--instagram:hover .fill {
    fill: transparent;
}

.main-footer__card--instagram:hover {
    background: #E1306C;
}

.main-footer__card--youtube:hover {
    background: #FF0000;
}

.main-footer__card--ratingkazneta:hover {
    background: #212121;
}

.main-footer__card--ratingkazneta:hover span {
    color: #fff;
}

.main-footer__card-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: var(--black-color);
    margin-bottom: 10px;
    transition: color .3s;
    text-decoration: none;
}

.main-footer__card-title:hover {
    color: var(--green-color);
}

.main-footer__card-subtitle {
    color: #9CA6A3;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.main-footer-top-gutter {
    --bs-gutter-y: 17px;
    --bs-gutter-x: 17px;
}

.main-footer-center {
    padding: 40px 0;
    border-bottom: 1px solid #EAECEB;
}

.main-footer-center__text {
    color: #777777;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.main-footer-bottom {
    padding: 50px 0;
}

.main-footer-bottom__text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.main-footer-bottom__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-footer-bottom__links-item {
    text-decoration: underline;
    color: #777777;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    transition: color .3s;
}

.main-footer-bottom__links-item:hover {
    color: var(--green-color);
}

.main-header__burger {
    display: none;
    align-items: center;
    height: 18px;
    cursor: pointer;
}

.main-header__burger-item {
    width: 16px;
    height: 2px;
    background: var(--black-color);
    border-radius: 1px;
    position: relative;
}

.main-header__burger-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: var(--black-color);
    transition: transform .3s, top .3s;
}

.main-header__burger-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: var(--black-color);
    transition: transform .3s, bottom .3s;
}

.main-header__mobile-menu {
    display: none;
    transform: translateX(-100%);
    transition: transform .2s;
    background: #fff;
    flex-direction: column;
    width: 100%;
    position: absolute;
}

body.main-mobile-menu-open,
html.main-mobile-menu-open{
    overflow: hidden;
}

.main-mobile-menu-open .main-header__burger-item {
    background: transparent;
}

.main-mobile-menu-open .main-header__burger-item::before {
    transform: rotate(45deg);
    top: 0;
}

.main-mobile-menu-open .main-header__burger-item::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.main-mobile-menu-open .main-header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.main-mobile-menu-open .main-header__container {
    height: calc(100vh - var(--main-header-height));
    overflow-y: auto;
    overflow-x: hidden;
}

.main-mobile-menu-open .main-header__nav-link[aria-expanded="true"] {
    position: sticky;
    top: var(--main-header-height);
}

.main-mobile-menu-open .main-header__nav-link {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #EAECEB;
}

.main-mobile-menu-open .main-header__nav {
    gap: 0 !important;
}

.main-mobile-menu-open .collapse-padding {
    padding: 20px;
    border-bottom: 1px solid #EAECEB;
}

.main-about__row {
    display: flex;
    gap: 18px;
}

.main-about__row-img {
    border-radius: 30px;
    object-fit: cover;
}

.main-about__title {
    color: #1E1E1E;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.3;
}

.main-about__subtitle {
    color: #1E1E1E;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.main-about__card {
    border: 1px solid #EAECEB;
    border-radius: 30px;
    padding: 40px 15px;
}

.main-about__card-title {
    line-height: 1.3;
    color: #1E1E1E;
    font-weight: 500;
    font-size: 40px;
}

.main-about__card-subtitle {
    line-height: 1.3;
    color: #1E1E1E;
    font-weight: 500;
    font-size: 16px;
}

.main-about__card--our-services {
    /*padding: 60px 40px;*/
    padding: 40px;
}

.main-about__card-title---our-services {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
    margin-bottom: 30px;
}

.main-about__card-subtitle---our-services {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #777777;
    margin-bottom: 40px;
}

.main-about__card-img-wrapper--our-services {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 303px;
    max-height: 303px;
    margin-bottom: 20px;
}

.main-cards__row-right-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.main-header__language-dropdown {
    --bs-dropdown-border-width: 0 !important;
    --bs-dropdown-padding-x: 15px;
    --bs-dropdown-padding-y: 15px;
    --bs-dropdown-min-width: unset;
    --bs-dropdown-border-radius: 12px;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.main-header__language-dropdown-item {
    color: var(--black-color);
    transition: color .3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
}

.main-header__language-dropdown-item:hover {
    color: var(--green-color);
}

.main-about-dropdown {
    --bs-dropdown-border-width: 0 !important;
    --bs-dropdown-min-width: 1324px;
    border-bottom: 1px solid #DEE1E0;
    --bs-dropdown-padding-x: 50px;
    --bs-dropdown-padding-y: 50px;
    --bs-dropdown-border-radius: 0;
}

.main-about-dropdown.show {
    position: absolute;
    width: 100%;
    margin-top: unset !important;
}

.main-about-dropdown__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--black-color);
}

.main-about-dropdown__link {
    font-weight: 600;
    color: #777777;
    font-size: 16px;
    line-height: 1.3;
    transition: color .3s;
    text-decoration: none;
}

.main-about-dropdown__link:hover {
    color: var(--green-color);
}

.main-site__note-container--mobile {
    display: none;
    position: absolute;
    bottom: -18px;
    right: -18px;
    transform: rotate(4deg);
}

.main-site__note-container--mobile .main-site__note {
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
}

.main-site__note-container--mobile .main-site__note-title {
    font-size: 16px;
}

.main-site__template-body__img {
    max-width: 100%;
    height: auto;
}

.alert-message {
    background: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: start;
    column-gap: 20px;
    padding: 14px;
}

.alert-message.hide {
    display: none;
}

.alert-message__text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.alert-message__text-bold {
    font-weight: 700;
}

.alert-message__close {
    background: transparent;
    border: 0;
    padding: 0;
}

.alert-message__close {
    display: flex;
}

.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f8f8f8 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

.skeleton-big {
    width: 500px;
    height: 30px;
}

.skeleton-small {
    width: 100px;
    height: 50px;
}

.main-card__title--domain {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 12px;
}

.main-card__subtitle--domain {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
}

.main-card__price {
    background-color: #fff;
    border-radius: 10px;
    padding: 4px 6px;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    display: inline-flex;
}

.main-card--light .main-card__price {
    background: #ecebeb;
}

.bg-green {
    --bs-bg-opacity: 1;
    background-color: #53C918 !important;
}

.main-mail-title {
    color: #1E1E1E;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.main-mail-subtitle {
    color: #636968;
    font-size: 16px;
    font-weight: 500;
}

.main-mail-card {
    background: #F9FBFB;
    border-radius: 26px;
}

.main-mail-btn {
    display: inline-flex;
    justify-content: center;
    min-width: 270px;
    margin-top: 30px;
    text-decoration: none;
}

.main-mail__grey-card {
    background: #F9FBFB;
    border-radius: 26px;
    padding: 30px 30px 50px 30px;
}

.main-mail__grey-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.main-mail__grey-card-text {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.main-mail__gray {
    background: #F9FBFB;
    padding: 90px 0;
}

.main-mail__white-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 30px;
}

.main-mail__white-card__title {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 25px;
}

.main-mail__white-card__subtitle {
    color: #777777;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 40px;
}

.main-mail__white-card__price {
    font-weight: 600;
    font-size: 36px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-mail__white-card__price span {
    text-decoration: line-through;
    color: #9CA6A3;
    font-size: 32px;
}

.main-mail__white-card__price-text {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 25px;
}

.main-mail__white-card__price-year {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 30px;
}

.main-about-dropdown__name {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    max-width: 300px;
}

.main-career-img {
    border-radius: 30px;
    object-fit: cover;
    height: 350px;
    width: 500px;
    object-position: top;
}

.main-about__card-manager {
    width: 191px;
    height: 191px;
    border-radius: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.swiper-small .swiper-button-next {
    right: 10px !important;
}

.swiper-small .swiper-button-prev {
    left: 10px !important;
}

.main-map {
    border-radius: 30px;
}

.main-browser-frame {
    width: 100%;
    height: 600px;
    border: 1px solid #EAECEB;
    border-top-style: none;
}

.main-browser-frame__safari {
    width: 100%;
}

.main-migrate-one {
    min-height: 607px;
    height: 607px;
}

.main-migrate-two {
    min-height: 644px;
}

.main-migrate-three {
    min-height: 607px;
    height: 607px;
}

.main-ads-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.main-ads-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-ads-text {
    font-size: 15px;
    color: #59CAB6;
    flex-grow: 1;
    display: flex;
}

.main-ads-text--red {
    color: #FF0000;
}

.main-ads-title--left {
    margin-right: 59px;
    text-align: end;
}

.main-ads-title--right {
    margin-left: 59px;
    text-align: start;
}

.main-ads-icon {
    width: 43px;
    height: 43px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}






.main-section-margin-group{
    display: flex;
    flex-direction: column;
    gap: 15px;
}



html, body{
    overflow-x: hidden;
}

.article-content{gap: 25px;}
.article-content, .article-content-item{
    display: flex;
    flex-direction: column;
}

.article-content-item > h1,
.article-content-item > h2,
.article-content-item > h3,
.article-content-item > h4 {
    margin-bottom: 20px;
}

.custom-phone-list{
    list-style-type: none;
    padding: 0; margin: 0;
    display: flex; gap: 3px;
    flex-direction: column;
}


/* test */

.custom-features-list{
    gap: 5px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; 
    flex-direction: column;
}
.feature-custom-item{
    display: flex; gap: 10px;
}
.feature-custom-item::before{
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    max-width: 22px;
    height: 22px; 
   
    background-color: #9CA6A3; /* цвет иконки задаётся здесь */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    /* WebKit (Chrome, Safari, iOS) */
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik04Ljc1NDMgMTYuNUwzLjUyOTMgMTEuMjc1TDQuODM1NTUgOS45Njg3Mkw4Ljc1NDMgMTMuODg3NUwxNy4xNjQ3IDUuNDc3MDVMMTguNDcxIDYuNzgzM0w4Ljc1NDMgMTYuNVoiIGZpbGw9IiM5Q0E2QTMiPjwvcGF0aD4KPC9zdmc+Cg==");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    /* Standard (Firefox, modern browsers) */
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik04Ljc1NDMgMTYuNUwzLjUyOTMgMTEuMjc1TDQuODM1NTUgOS45Njg3Mkw4Ljc1NDMgMTMuODg3NUwxNy4xNjQ3IDUuNDc3MDVMMTguNDcxIDYuNzgzM0w4Ljc1NDMgMTYuNVoiIGZpbGw9IiM5Q0E2QTMiPjwvcGF0aD4KPC9zdmc+Cg==");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
.feature-custom-text{
    padding: 0; margin: 0;
}









.main-header__container{
    display: flex;
    flex-direction: column;
}


.main-mobile-menu-open .main-header__mobile-menu{
    position: relative; flex: auto;
}

.main-header__mobile-menu{
    --p-round-links: 20px;
    overflow-y: auto;
}


.main-header__mobile-menu .main-header__nav-link{
    padding: var(--p-round-links) !important;
}

.main-mobile-menu-open .main-header__nav-link[aria-expanded="true"]{
    top: 0 !important;
}

.main-mobile-menu-open .main-header{
    position: relative !important;
}

.header-fix-columns{
    display: flex;
    flex-direction: column;
}






/* styles for include partial: alert-message in partial: header */
.main-mobile-menu-open .main-header__container{
    height: 100vh;
}
.main-header__mobile-menu{
    position: relative; height: 0;
}






.main-mail__white-card__price{
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}




.scroll_to_top{
    padding: 5px;
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--green-color);
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease-in-out;
    z-index: 10;
    display: flex;
    flex-direction: column;
}
.scroll_to_top:hover{
    background-color: var(--green-color-hover);
}
.scroll_to_top::after{
    transform: rotate(-90deg);
    pointer-events: none;
    background-position: center center;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: white; /* ← здесь меняешь цвет иконки */
    -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgICA8cGF0aCBkPSJNNC4yNDE5NyA4Ljc4NjI4SDEyLjIxNDNMOC43MzEzMyA1LjMwMzI4QzguNDUyOTggNS4wMjQ5MiA4LjQ1Mjk4IDQuNTY4MTQgOC43MzEzMyA0LjI4OTc4QzguNzk3MzYgNC4yMjM2MiA4Ljg3NTc5IDQuMTcxMTIgOC45NjIxNCA0LjEzNTMxQzkuMDQ4NDggNC4wOTk0OSA5LjE0MTA0IDQuMDgxMDUgOS4yMzQ1MSA0LjA4MTA1QzkuMzI3OTkgNC4wODEwNSA5LjQyMDU1IDQuMDk5NDkgOS41MDY4OSA0LjEzNTMxQzkuNTkzMjMgNC4xNzExMiA5LjY3MTY2IDQuMjIzNjIgOS43Mzc2OSA0LjI4OTc4TDE0LjQ0MTIgOC45OTMyNkMxNC41MDczIDkuMDU5MjkgMTQuNTU5OCA5LjEzNzcyIDE0LjU5NTcgOS4yMjQwN0MxNC42MzE1IDkuMzEwNDEgMTQuNjQ5OSA5LjQwMjk3IDE0LjY0OTkgOS40OTY0NEMxNC42NDk5IDkuNTg5OTIgMTQuNjMxNSA5LjY4MjQ4IDE0LjU5NTcgOS43Njg4MkMxNC41NTk4IDkuODU1MTYgMTQuNTA3MyA5LjkzMzU5IDE0LjQ0MTIgOS45OTk2Mkw5LjczNzY5IDE0LjcwMzFDOS42NzE2MiAxNC43NjkyIDkuNTkzMTcgMTQuODIxNiA5LjUwNjgzIDE0Ljg1NzRDOS40MjA1IDE0Ljg5MzEgOS4zMjc5NiAxNC45MTE1IDkuMjM0NTEgMTQuOTExNUM5LjE0MTA3IDE0LjkxMTUgOS4wNDg1MyAxNC44OTMxIDguOTYyMiAxNC44NTc0QzguODc1ODYgMTQuODIxNiA4Ljc5NzQxIDE0Ljc2OTIgOC43MzEzMyAxNC43MDMxQzguNjY1MjYgMTQuNjM3IDguNjEyODQgMTQuNTU4NiA4LjU3NzA4IDE0LjQ3MjJDOC41NDEzMiAxNC4zODU5IDguNTIyOTEgMTQuMjkzNCA4LjUyMjkxIDE0LjE5OTlDOC41MjI5MSAxNC4xMDY1IDguNTQxMzIgMTQuMDEzOSA4LjU3NzA4IDEzLjkyNzZDOC42MTI4NCAxMy44NDEzIDguNjY1MjYgMTMuNzYyOCA4LjczMTMzIDEzLjY5NjdMMTIuMjE0MyAxMC4yMTM3SDQuMjQxOTdDMy44NDk0MiAxMC4yMTM3IDMuNTI4MjQgOS44OTI1NiAzLjUyODI0IDkuNTAwMDFDMy41MjgyNCA5LjEwNzQ2IDMuODQ5NDIgOC43ODYyOCA0LjI0MTk3IDguNzg2MjhaIiBmaWxsPSJ3aGl0ZSI+PC9wYXRoPg0KPC9zdmc+") no-repeat center / contain;
          mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgICA8cGF0aCBkPSJNNC4yNDE5NyA4Ljc4NjI4SDEyLjIxNDNMOC43MzEzMyA1LjMwMzI4QzguNDUyOTggNS4wMjQ5MiA4LjQ1Mjk4IDQuNTY4MTQgOC43MzEzMyA0LjI4OTc4QzguNzk3MzYgNC4yMjM2MiA4Ljg3NTc5IDQuMTcxMTIgOC45NjIxNCA0LjEzNTMxQzkuMDQ4NDggNC4wOTk0OSA5LjE0MTA0IDQuMDgxMDUgOS4yMzQ1MSA0LjA4MTA1QzkuMzI3OTkgNC4wODEwNSA5LjQyMDU1IDQuMDk5NDkgOS41MDY4OSA0LjEzNTMxQzkuNTkzMjMgNC4xNzExMiA5LjY3MTY2IDQuMjIzNjIgOS43Mzc2OSA0LjI4OTc4TDE0LjQ0MTIgOC45OTMyNkMxNC41MDczIDkuMDU5MjkgMTQuNTU5OCA5LjEzNzcyIDE0LjU5NTcgOS4yMjQwN0MxNC42MzE1IDkuMzEwNDEgMTQuNjQ5OSA5LjQwMjk3IDE0LjY0OTkgOS40OTY0NEMxNC42NDk5IDkuNTg5OTIgMTQuNjMxNSA5LjY4MjQ4IDE0LjU5NTcgOS43Njg4MkMxNC41NTk4IDkuODU1MTYgMTQuNTA3MyA5LjkzMzU5IDE0LjQ0MTIgOS45OTk2Mkw5LjczNzY5IDE0LjcwMzFDOS42NzE2MiAxNC43NjkyIDkuNTkzMTcgMTQuODIxNiA5LjUwNjgzIDE0Ljg1NzRDOS40MjA1IDE0Ljg5MzEgOS4zMjc5NiAxNC45MTE1IDkuMjM0NTEgMTQuOTExNUM5LjE0MTA3IDE0LjkxMTUgOS4wNDg1MyAxNC44OTMxIDguOTYyMiAxNC44NTc0QzguODc1ODYgMTQuODIxNiA4Ljc5NzQxIDE0Ljc2OTIgOC43MzEzMyAxNC43MDMxQzguNjY1MjYgMTQuNjM3IDguNjEyODQgMTQuNTU4NiA4LjU3NzA4IDE0LjQ3MjJDOC41NDEzMiAxNC4zODU5IDguNTIyOTEgMTQuMjkzNCA4LjUyMjkxIDE0LjE5OTlDOC41MjI5MSAxNC4xMDY1IDguNTQxMzIgMTQuMDEzOSA4LjU3NzA4IDEzLjkyNzZDOC42MTI4NCAxMy44NDEzIDguNjY1MjYgMTMuNzYyOCA4LjczMTMzIDEzLjY5NjdMMTIuMjE0MyAxMC4yMTM3SDQuMjQxOTdDMy44NDk0MiAxMC4yMTM3IDMuNTI4MjQgOS44OTI1NiAzLjUyODI0IDkuNTAwMDFDMy41MjgyNCA5LjEwNzQ2IDMuODQ5NDIgOC43ODYyOCA0LjI0MTk3IDguNzg2MjhaIiBmaWxsPSJ3aGl0ZSI+PC9wYXRoPg0KPC9zdmc+") no-repeat center / contain;
}


.scroll_to_top.active {
    opacity: 1;
    visibility: visible;
}











.error-block {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
}

.error-page-big-text {
    font-size: 180px;
    text-align: center;
}

.error-page-small-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    margin-top: 15px;
}