@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


u {
    text-decoration: underline;
}

ul {
    padding-left: 15px;
}

html,
body,
.wrapper {
    min-height: 100vh;
}

body {
    display: flex;
    padding-bottom: 35px;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
}

.overflow-hidden {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1440px;
}

.header {
    top: 0;
    z-index: 11;
    width: 100%;
    flex: 0 0 auto;
    position: fixed;
    transition: background-color 0.2s linear;
}

.header.header__transparent {
    background-color: rgba(0, 20, 20, 0.9);
}

.header.header--static {
    position: static;
    background-color: rgba(0, 20, 20, 0.9);
}

.header.header__white {
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.header .header__row {
    display: flex;
    padding: 10px 0px;
    align-items: center;
    justify-content: space-between;
}

.header.header.header__white .navigation-list__link {
    color: #000000;
}

.lang-switcher {
    width: 55px;
    position: relative;
    border: 1px solid white;
}

.lang-switcher .lang-switcher__options {
    left: 0;
    width: 100%;
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lang-switcher.lang-switcher--active .lang-switcher__options {
    top: 100%;
    opacity: 1;
    padding-top: 10px;
    visibility: visible;
}

.lang-switcher .lang-switcher__current {
    color: white;
    display: block;
    cursor: pointer;
    padding: 5px 10px;
    text-align: center;
}

.lang-switcher .lang-switcher__option {
    padding: 5px;
    color: white;
    display: block;
    cursor: pointer;
    text-align: center;
    border: 1px solid white;
}

.lang-switcher .lang-switcher__option:hover {
    background-color: #ffffff86;
}

.lang-switcher .lang-switcher__option:last-child {
    border-top: none !important;
}

.lang-switcher .lang-switcher__option:not(:last-child) {
    border-bottom: 1px solid white;
}

.header.header.header__white .lang-switcher,
.header.header.header__white .lang-switcher .lang-switcher__option {
    color: #000000;
    background-color: white;
    border: 1px solid #000000;
}

.header.header.header__white .base-button.base-button.base-button--outlined {
    color: #000000;
    background-color: white;
    border: 1px solid #000000 !important;
}

.header.header.header__white .lang-switcher .lang-switcher__current {
    color: #000000;
}

.main {
    flex: 1 0 auto;
}

.footer {
    flex: 0 0 auto;
    border-top: 1px solid #f1f1f1;
}

.footer .footer__logo {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.footer .footer__logo span {
    max-width: 60%;
    font-size: 14px;
    color: #858585;
}

.footer .footer__row {
    display: flex;
    padding: 15px 0px;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
}

.contact {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.contact .contact__item {
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact .contact__heading {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.contact .contact__value {
    font-size: 15px;
    color: #858585;
    display: inline-block;
    text-decoration: underline;
}

.copyright span {
    font-size: 13px;
    color: #858585;
    text-transform: uppercase;
}

.navigation {
    transition: all 0.2s linear;
}

.navigation .navigation-list {
    gap: 20px;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.navigation .navigation-list .navigation-list__link {
    display: inline-block;
    color: white;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.navigation .navigation-list .navigation-list__link::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: -100%;
    bottom: 0;
    background-color: #ffffff;
    transition: left 0.2s linear;
}

.header.header__white .navigation .navigation-list .navigation-list__link::after {
    background-color: #000000;
}

.navigation .navigation-list .navigation-list__link:hover::after {
    left: 0;
}

.intro {
    padding-top: 100px;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('/src/images/map.jpg');
}

.intro::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0000009a;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.intro .container {
    height: 100%;
}

.intro .intro__row {
    z-index: 1;
    height: 100%;
    gap: 20px;
    display: flex;
    max-width: 60vw;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 10%;
}

.intro .intro__buttons {
    gap: 15px;
    display: flex;
    align-items: center;
}

.intro .intro__title {
    color: white;
    font-size: 48px;
}

.intro .intro__subtitle {
    font-size: 20px;
    line-height: 1.4;
    color: #d8d8d8;
}

.close-button {
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
}

.info-modal-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.info-modal-message {
    font-size: 20px !important;
    text-align: center !important;
}

.info-modal-icon {
    width: 100px;
    height: 100px;
}

.close-button:hover {
    background-color: #f1f1f1;
}

.base-button {
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s linear;
}

.base-button.base-button--full {
    width: 100%;
}

.base-button.base-button--xs {
    padding: 3.7px 10px;
    border: 1px solid white !important;
}

.base-button.base-button--outlined {
    border: 2px solid #ffffff;
}

.base-button.base-button--sm {
    padding: 5px 15px;
}

.base-button.base-button--outlined:hover {
    background-color: #ffffff3f;
}

.base-button.base-button--filled {
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    background-color: #00e1b9;
}

.base-button.base-button--filled:hover {
    background-color: #00cea8;
}

.base-button.base-button--filled:active {
    transform: scale(0.98);
}

.about {
    padding: 40px 0;
}

.about .about__row {
    gap: 60px;
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
}

.about-grid {
    gap: 30px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.about-grid-item img {
    width: 100%;
    border-radius: 10px;
}

.about-grid-item p {
    color: #414141;
    font-size: 16px;
}

.services {
    padding: 50px 0;
}

.services .services__title {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    color: #414141;
    text-align: center;
}

.section-title.calculator__title {
    margin-bottom: 40px;
}

.accordions {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.accordions.accordions--faq {
    gap: 0;
}

.accordions.accordions--faq .accordion--faq {
    border-radius: 0px;
}

.accordions.accordions--faq .accordion--faq:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.accordions.accordions--faq .accordion--faq:not(:last-child) {
    border-bottom: 0;
}

.accordion {
    width: 100%;
    max-width: 65%;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}

.accordion.accordion--faq {
    max-width: 100%;
}

.accordion.accordion--faq .accordion__content {
    display: block;
}

.accordion .accordion__panel {
    padding: 20px;
    gap: 20px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.accordion .accordion__panel span {
    font-size: 18px;
    font-weight: 500;
}

.accordion .accordion__panel svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.accordion .accordion__content {
    gap: 20px;
    padding: 0 20px;
    max-height: 0;
    display: grid;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    grid-template-columns: repeat(2, 1fr);
}

.accordion.open .accordion__panel {
    border-bottom: 1px solid #f1f1f1;
}

.accordion.open .accordion__panel svg {
    transform: rotate(180deg);
}

.accordion.open .accordion__content {
    padding: 20px;
}

.accordion .accordion__content img {
    width: 100%;
    border-radius: 10px;
}

.clients {
    padding: 50px 0;
}

.clients .clients__title {
    margin-bottom: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.clients-grid-item {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f1f1;
}

.clients-grid-item img {
    max-width: 50%;
    transition: transform 0.2s linear;
}

.clients-grid-item:hover img {
    transform: scale(0.9);
}

.burger {
    display: none;
    width: 36px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.burger .burger__meat {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    background-color: #ffffff;
    transition: all 0.2s linear;
}

.header.header.header__white .burger__meat {
    background-color: #000000;
}

.header .header__right {
    gap: 10px;
    display: flex;
    align-items: center;
}

.burger .burger__meat:nth-child(1) {
    top: 0;
}

.burger .burger__meat:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger .burger__meat:nth-child(3) {
    bottom: 0;
}

.burger.burger--active .burger__meat:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.burger.burger--active .burger__meat:nth-child(2) {
    width: 0;
    opacity: 0;
}

.burger.burger--active .burger__meat:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
}

.intro .register-form {
    max-width: 100%;
    padding-left: 0;
    align-items: center;
    justify-content: center !important;
}

.register-form__title {
    color: white;
}

.form {
    width: 100%;
    padding: 30px;
    max-width: 400px;
    border-radius: 20px;
    background-color: #1d1d1d;
}

.feedback-form {
    padding: 50px 0px;
}

.form.form--feedback,
.form.form--white {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.form.form--calculator {
    padding: 0;
    max-width: 65%;
    margin: 0 auto;
    box-shadow: none;
}

.form.form--calculation-modal {
    padding: 0;
    max-width: 100%;
    background-color: #ffffff;
}

.form.form--calculation-modal .form-field__label {
    color: black;
    font-weight: 500;
}

.form.form--calculation-modal .form-input {
    border: 1px solid #d6d6d6;
}


.form.form--calculator .form-field__label {
    font-weight: 500;
}

.form.form--feedback .form-field__label,
.form.form--white .form-field__label {
    color: black;
}

.form.form--feedback .form-input,
.form.form--feedback .form-textarea,
.form.form--white .form-input,
.form.form--white .form-textarea {
    border: 1px solid #d6d6d6;
}

.form.form--feedback .form-input:focus,
.form.form--feedback .form-textarea:focus,
.form.form--white .form-input:focus,
.form.form--white .form-textarea:focus {
    border-color: #07e4bc;
    box-shadow: 0 0 0 .2rem rgba(75, 226, 186, .35);
}

.form .base-button {
    width: 100%;
}

.form .form__row {
    gap: 30px;
    display: flex;
}

.form .form__footer {
    margin: 30px 0px;
}

.form .form__row.form__row-calculator-bottom {
    gap: 30px;
    justify-content: space-between;
}

.form-hint {
    color: white;
    font-size: 14px;
    margin-top: 15px;
    margin-left: auto;
    gap: 5px;
    display: flex;
    justify-content: center;
}

.form-hint a {
    color: rgb(75, 226, 186);
}

.form-field {
    width: 100%;
    margin-bottom: 20px;
    display: inline-block;
}

.form-field .form-field__label {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
}

.form-field {
    position: relative;
}

.form-field.form-field--uploader input {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.form-field.form-field--no-margin {
    margin: 0;
}

.form-field.form-field--arrow::after {
    content: '';
    width: 24px;
    height: 24px;
    top: 34px;
    right: -28px;
    position: absolute;
    display: inline-block;
    background-size: contain;
    background-image: url('../images/icons/arrow-right.svg');
}

.form-field__row {
    display: flex;
    gap: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    resize: none;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s linear;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgb(75, 226, 186);
    box-shadow: 0 0 0 .2rem rgba(75, 226, 186, .35);
}

.feedback-form-block .feedback-form-block__title {
    margin-bottom: 20px;
}

.feedback-form-grid {
    gap: 30px;
    display: grid;
    grid-template-columns: 30% 1fr;
}

.feedback-form-faq__title {
    margin-bottom: 20px;
}

.faq-content__title {
    margin-bottom: 10px;
}

.has-error {
    display: block;
    color: white;
    font-size: 14px;
    padding: 4px 2px;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 20px;
    text-align: center;
    background-color: rgb(255, 59, 59);
}

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 2px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

#signin-form button {
    display: flex;
    justify-content: center;
}

#signin-form button .lds-ring {
    display: none;
}

#signin-form button.loading .lds-ring {
    display: block;
}

#signin-form button.loading span {
    display: none;
}

#signin-form-errors {
    display: none;
}

#signin-form-errors.has-error {
    display: block;
}

.counters {
    width: 30%;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cargo-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-image: url('../images/box-bg.png');
}

.form-counter-item {
    gap: 40px;
    display: flex;
    justify-content: space-between;
}

.form-counter-item__name {
    display: flex;
    min-width: 80px;
    flex-direction: column;
}

.form-counter-item__name span:first-child {
    font-size: 14px;
}

.form-counter-item__name span:last-child {
    font-size: 14px;
    color: gray;
}

.counter {
    display: flex;
    align-items: center;
}

.counter-decrease,
.counter-increase {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
}

.counter-decrease img,
.counter-increase img {
    width: 20px;
    height: 20px;
}

.counter-decrease:hover,
.counter-increase:hover {
    background-color: #e8e8e8;
}

.counter-decrease:active,
.counter-increase:active {
    background-color: #dadada;
}

.counter-content {
    width: 40px;
    display: flex;
    justify-content: center;
}

input:focus:required:invalid {
    border-color: red !important;
    box-shadow: 0 0 0 .2rem rgba(226, 75, 75, 0.35) !important;
}

.uploader {
    gap: 10px;
    padding: 10px;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed black;
}

.uploader input {
    opacity: 0;
    visibility: hidden;
}

.uploader .uploader__icon {
    width: 40px;
    height: 40px;
}

.uploader .uploader__text {
    font-size: 15px;
    text-align: center;
}

.uploader.uploader.uploader--dark {
    border-color: white;
}

.uploader.uploader--dark .uploader__icon {
    color: white;
}

.uploader.uploader--dark .uploader__text {
    color: white;
}

#file-details {
    display: none;
    margin-bottom: 30px;
}

.file-details__item {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.file-details__preview-img {
    max-width: 30px;
    margin-top: 3px;
    max-height: 50px;
}

.file-details--active {
    display: block !important;
}

.password-input-wrapper {
    position: relative;
}

.password-reveal {
    height: 90%;
    position: absolute;
    right: 3px;
    top: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #ffffff;
    transform: translateY(-50%);
    padding: 2px 6px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.password-reveal:hover {
    background-color: #e7e7e7;
}

.password-reveal:active {
    background-color: #dadada;
}

.eye-closed {
    display: none;
}

#scrollToTop {
    bottom: 95px;
    right: 25px;
    border: none;
    color: #fff;
    display: none;
    position: fixed;
    font-size: 20px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    z-index: 1;
    border-radius: 50%;
    background-color: #00cea8;
    box-shadow: 0px 4px 6px rgba(0, 206, 168, 0.1);
}

button:disabled {
    filter: grayscale(1);
    pointer-events: none;
}

.news {
    margin-top: 40px;
    margin-bottom: 70px;
}

.news .news__title {
    margin-bottom: 40px;
}

.news-grid {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.news-item {
    padding: 15px;
    display: flex;
    border-radius: 8px;
    flex-direction: column;
    border: 2px solid #f1f1f1;
    transition: all 0.2s linear;
}

.news-item:hover {
    border-color: #00cea8;
}

.news-item-top {
    gap: 6px;
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.news-item-title {
    color: black;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-item-excerpt {
    color: #666666;
}

.news-item-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.news-item-date {
    padding: 4px 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    background-color: #00cea8;
}

.news-page {
    display: grid;
    grid-template-columns: 60% 40%;
}

.news-page {
    padding: 40px 10px 40px 0px;
}

.news-content {
    padding-right: 15px;
}

.subscribe-form {
    padding-left: 15px;
    display: inline-block;
}

.subscribe-promo {
    margin-bottom: 20px;
}

.subscribe-promo-title {
    margin-bottom: 8px;
}

.subscribe-promo-desc {
    color: gray;
}

.news-content-title {
    color: #333333;
    font-size: 28px;
    margin-bottom: 20px;
}

.prose {
    font-size: 16px;
    color: #585858;
}

.prose p {
    margin-bottom: 15px;
}

.prose ul,
.prose ol {
    padding-left: 24px;
}

.prose ul li:not(:last-child),
.prose ol li:not(:last-child) {
    margin-bottom: 10px;
}

.prose u {
    text-decoration: underline;
}

.error-text {
    display: block;
    color: #ff3b3b;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.success-text {
    display: block;
    font-size: 14px;
    color: #2ecc71;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.news-content-time {
    gap: 5px;
    color: gray;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.news-content-time svg {
    width: 26px;
    height: 26px;
    color: gray;
}

.news-content-time span {
    font-weight: 400;
    line-height: 1;
    margin-top: 3px;
    font-size: 15px;
    display: inline-block;
}

.subscribe-form.subscribe-form-clear {
    padding: 0;
}

.news-list-page {
    padding: 50px 0px;
}

.news-list-page .subscribe-form {
    display: flex;
    justify-content: center;
}

.news-list-page .news-grid {
    margin-bottom: 50px;
}

.news-list-page-title {
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.footer-low {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    padding: 8px 30px;
    align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    justify-content: space-between;
    background-color: #f0f0f0;
}

.solution-author {
    display: inline-flex;
    align-items: center;
}

.solution-author-link {
    display: inline-flex;
    align-items: center;
}

.solution-author img {
    height: 14px;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .intro .intro__row {
        max-width: 80%;
    }

    .intro .register-form {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .feedback-form-grid {
        grid-template-columns: 40% 1fr;
    }
}

@media (max-width: 992px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-page {
        grid-template-columns: 1fr;
    }

    .news-content {
        padding-right: 0;
    }

    .subscribe-form {
        padding-left: 0;
        display: flex;
        margin-top: 30px;
        justify-content: center;
    }

    .intro .intro__row {
        max-width: 85%;
        padding-left: 5%;
    }

    .accordion {
        max-width: 100%;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .about-grid:nth-child(2) {
        flex-direction: column-reverse;
    }

    .counters {
        width: auto;
    }

    .form.form.form--calculator {
        max-width: 100%;
    }

    .form .form__row.form__row-calculator-bottom {
        max-width: 100%;
    }

    .burger {
        display: block;
        order: 3;
    }

    .header .header__right {
        margin-left: auto;
        margin-right: 30px;
    }

    .navigation {
        position: fixed;
        top: 0;
        width: 100%;
        right: -100%;
        height: 100%;
        background-color: rgb(0, 20, 20);
    }

    .navigation.navigation--active {
        right: 0;
    }

    .navigation-list {
        width: 100%;
        height: 100%;
        padding-left: 0;
        gap: 0 !important;
        flex-direction: column;
        justify-content: center;
    }

    .navigation .navigation-list .navigation-list__item {
        width: 100%;
    }

    .navigation .navigation-list .navigation-list__link {
        width: 60%;
        display: flex;
        padding: 10px 0;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .desktop-hidden {
        display: none;
    }
}

@media (max-width: 768px) {
    #news {
        margin-top: 0;
    }

    body {
        padding-bottom: 78px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .tablet-hidden {
        display: none;
    }

    .intro {
        background-position: center;
    }

    .header.header__white .navigation {
        background-color: #ffffff;
    }

    .logo img {
        width: 80px;
    }

    .intro .intro__title {
        font-size: 36px;
    }

    .intro .intro__subtitle {
        font-size: 18px;
    }

    .clients,
    .services,
    .about {
        padding: 20px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .clients .clients__title {
        margin-bottom: 30px;
    }

    .feedback-form-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .feedback-form-block {
        display: flex;
        justify-content: center;
    }

    .footer-low {
        gap: 10px;
        padding: 8px 15px;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .mobile-hidden {
        display: none;
    }

    .intro .intro__row {
        max-width: 100%;
        padding: 0 5%;
    }

    .intro .register-form {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .intro .intro__title {
        font-size: 24px;
    }

    .intro .intro__subtitle {
        font-size: 16px;
    }

    .intro .intro__buttons {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .intro .intro__buttons .base-button {
        width: 100%;
    }

    .accordion .accordion__panel span {
        font-size: 16px;
    }

    .accordion .accordion__content {
        grid-template-columns: 1fr;
    }

    .clients-grid-item img {
        max-width: 80%;
    }

    .footer .footer__logo span {
        display: none;
    }

    .footer .footer__row {
        gap: 30px;
    }

    .footer .footer__contact .contact__item {
        align-items: flex-end;
    }

    .footer .footer__contact .contact__value {
        text-align: right;
    }

    .base-button {
        font-size: 16px;
    }

    .form .form__row {
        gap: 0;
        flex-direction: column;
    }

    .form-field__row {
        gap: 0;
        flex-direction: column;
    }

    .form-field.form-field--arrow::after {
        left: 45%;
        top: calc(100% + 20px);
        transform: rotate(90deg) translateX(-45%);
    }

    .form .form__row.form__row-calculator-bottom {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .navigation .navigation-list .navigation-list__link {
        width: 90%;
    }

    .clients-grid-item img {
        max-width: 90%;
    }
}