/* Base */

:root {
    --main-font: 'Inter', system-ui, sans-serif;
    --main-color: #005a9c;
    --main-dark: #003f6e;
    --main-light: #e8f1f9;
    --text-color: #101820;
    --muted-color: #5b6b7a;
    --border-color: #e3eaf1;
    --surface-color: #ffffff;
    --page-color: #f4f7fa;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(16, 24, 32, .06);
    --shadow-hover: 0 16px 40px rgba(0, 90, 156, .14);
    --header-height: 84px;
    --container-width: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--surface-color);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.5px;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

iframe {
    display: block;
    border: 0;
}

summary::-webkit-details-marker {
    display: none;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    user-select: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Button */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
}

.btn .material-symbols-outlined {
    font-size: 22px;
}

.btn-primary {
    background: var(--main-color);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 90, 156, .25);
}

.btn-primary:hover {
    background: var(--main-dark);
    box-shadow: 0 12px 26px rgba(0, 90, 156, .32);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(0, 90, 156, .25);
    background: rgba(255, 255, 255, .7);
    color: var(--main-color);
}

.btn-ghost:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Section */

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head__label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--main-light);
    color: var(--main-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-head__title {
    margin-bottom: 14px;
    font-size: 42px;
}

.section-head__desc {
    font-size: 18px;
    color: var(--muted-color);
}

@media (max-width: 767px) {
    .section-head {
        margin-bottom: 32px;
    }

    .section-head__title {
        font-size: 28px;
    }

    .section-head__desc {
        font-size: 16px;
    }
}

/* Header */

.header {
    position: fixed;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.header.is-scrolled {
    height: 68px;
    border-bottom-color: var(--border-color);
    box-shadow: 0 6px 24px rgba(16, 24, 32, .07);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.header-logo img {
    width: auto;
    height: 52px;
    transition: .3s;
}

.header.is-scrolled .header-logo img {
    height: 42px;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.header-nav__link {
    position: relative;
    font-weight: 600;
    color: var(--text-color);
    transition: .3s;
}

.header-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: .3s;
}

.header-nav__link:hover {
    color: var(--main-color);
}

.header-nav__link:hover::after {
    width: 100%;
}

.header-nav__phones {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
}

.header-phone__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--main-light);
    color: var(--main-color);
    transition: .3s;
}

.header-phone__icon .material-symbols-outlined {
    font-size: 20px;
}

.header-phone:hover {
    color: var(--main-color);
}

.header-phone:hover .header-phone__icon {
    background: var(--main-color);
    color: #ffffff;
}

.header-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface-color);
    cursor: pointer;
}

.header-burger__line {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--main-color);
    transition: .3s;
}

.header-burger.is-open .header-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-burger.is-open .header-burger__line:nth-child(2) {
    opacity: 0;
}

.header-burger.is-open .header-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .header {
        height: 68px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .header-logo img {
        height: 42px;
    }

    .header-nav {
        position: fixed;
        top: 68px;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        background: var(--surface-color);
        box-shadow: 0 20px 30px rgba(16, 24, 32, .1);
        transition: .3s;
    }

    .header-nav.is-open {
        max-height: calc(100vh - 68px);
        padding: 10px 20px 20px;
        overflow-y: auto;
    }

    .header-nav__link {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 17px;
    }

    .header-nav__link::after {
        display: none;
    }

    .header-nav__phones {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .header-nav__phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: var(--radius-sm);
        background: var(--main-light);
        color: var(--main-color);
        font-weight: 700;
    }

    .header-phone {
        display: none;
    }

    .header-burger {
        display: flex;
    }
}

/* Hero */

.hero {
    position: relative;
    padding: calc(var(--header-height) + 70px) 0 80px;
    background: linear-gradient(180deg, var(--main-light) 0%, rgba(232, 241, 249, 0) 100%), url(/assets/images/bg.png) center / cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 90, 156, .12) 0%, rgba(0, 90, 156, 0) 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 56px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--surface-color);
    box-shadow: var(--shadow);
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-label .material-symbols-outlined {
    font-size: 18px;
}

.hero-title {
    margin-bottom: 18px;
    font-size: 56px;
    font-weight: 800;
}

.hero-desc {
    max-width: 720px;
    margin-bottom: 28px;
    font-size: 19px;
    color: var(--muted-color);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tags__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    background: rgba(255, 255, 255, .8);
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.hero-tags__item .material-symbols-outlined {
    font-size: 20px;
    color: var(--main-color);
    transition: .3s;
}

.hero-tags__item:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #ffffff;
}

.hero-tags__item:hover .material-symbols-outlined {
    color: #ffffff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-bar__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    column-gap: 16px;
    padding: 26px 28px;
    background: var(--surface-color);
    transition: .3s;
}

.hero-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--main-light);
    color: var(--main-color);
    transition: .3s;
}

.hero-bar__icon .material-symbols-outlined {
    font-size: 24px;
}

.hero-bar__value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-bar__note {
    font-size: 14px;
    color: var(--muted-color);
}

.hero-bar__phone {
    font-size: 17px;
    font-weight: 700;
    color: var(--main-color);
    transition: .3s;
}

.hero-bar__phone:hover {
    color: var(--main-dark);
}

a.hero-bar__item:hover {
    background: var(--main-light);
}

a.hero-bar__item:hover .hero-bar__icon {
    background: var(--main-color);
    color: #ffffff;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 108px 0 56px;
    }

    .hero-content {
        margin-bottom: 36px;
    }

    .hero-bar {
        grid-template-columns: 1fr;
    }

    .hero-bar__item {
        padding: 20px 24px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        margin-bottom: 22px;
        font-size: 17px;
    }

    .hero-tags {
        margin-bottom: 26px;
    }

    .hero-tags__item {
        padding: 8px 13px;
        font-size: 14px;
    }
}

/* Whyus */

.whyus {
    padding: 90px 0;
    scroll-margin-top: 80px;
}

.whyus-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.whyus-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--surface-color);
    transition: .3s;
}

.whyus-item:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.whyus-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    background: var(--main-light);
    color: var(--main-color);
}

.whyus-item__icon .material-symbols-outlined {
    font-size: 28px;
}

.whyus-item__title {
    margin-bottom: 10px;
    font-size: 21px;
}

.whyus-item__desc {
    color: var(--muted-color);
}

@media (max-width: 991px) {
    .whyus {
        padding: 60px 0;
    }

    .whyus-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .whyus-item {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .whyus-items {
        grid-template-columns: 1fr;
    }
}

/* Services */

.services {
    padding: 90px 0;
    background: var(--page-color);
    scroll-margin-top: 80px;
}

.services-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-item {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--surface-color);
    transition: .3s;
}

.services-item:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.services-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
    background: var(--main-color);
    color: #ffffff;
}

.services-item__icon .material-symbols-outlined {
    font-size: 30px;
}

.services-item__title {
    margin-bottom: 12px;
    font-size: 24px;
}

.services-item__desc {
    margin-bottom: 20px;
    color: var(--muted-color);
}

.services-item__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.services-item__tag {
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--main-light);
    color: var(--main-dark);
    font-size: 14px;
    font-weight: 600;
}

.services-item__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--main-color);
    font-weight: 700;
    transition: .3s;
}

.services-item__link .material-symbols-outlined {
    font-size: 20px;
    transition: .3s;
}

.services-item__link:hover {
    color: var(--main-dark);
}

.services-item__link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .services-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .services {
        padding: 60px 0;
    }

    .services-item {
        padding: 24px;
    }

    .services-item__title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .services-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Flow */

.flow {
    padding: 90px 0;
    scroll-margin-top: 80px;
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 52px 40px;
}

.flow-step {
    position: relative;
    flex: 0 1 calc(33.333% - 27px);
    padding-bottom: 28px;
}

.flow-step::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--main-color) var(--flow-progress), var(--border-color) var(--flow-progress));
}

.flow-step__num {
    margin-bottom: 14px;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--main-color);
    transition: .3s;
}

.flow-step:hover .flow-step__num {
    color: var(--main-dark);
}

.flow-step__title {
    margin-bottom: 8px;
    font-size: 22px;
}

.flow-step__desc {
    color: var(--muted-color);
}

@media (max-width: 991px) {
    .flow {
        padding: 60px 0;
    }

    .flow-steps {
        gap: 44px 40px;
    }

    .flow-step {
        flex-basis: calc(50% - 20px);
    }

    .flow-step__num {
        font-size: 38px;
    }

    .flow-step__title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .flow-steps {
        gap: 36px;
    }

    .flow-step {
        flex-basis: 100%;
        padding-bottom: 22px;
    }

    .flow-step__num {
        margin-bottom: 10px;
        font-size: 34px;
    }

    .flow-step__title {
        font-size: 19px;
    }

    .flow-step__desc {
        font-size: 15px;
    }
}

/* Brands */

.brands {
    padding: 0 0 90px;
    scroll-margin-top: 80px;
}

.brands-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    border-radius: var(--radius);
    background: var(--page-color);
}

.brands-title {
    margin-bottom: 12px;
    font-size: 30px;
}

.brands-desc {
    color: var(--muted-color);
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brands-item {
    padding: 11px 20px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    background: var(--surface-color);
    color: var(--muted-color);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s;
}

.brands-item:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

@media (max-width: 991px) {
    .brands {
        padding: 0 0 60px;
    }

    .brands-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .brands-title {
        font-size: 24px;
    }

    .brands-item {
        padding: 9px 16px;
        font-size: 14px;
    }
}

/* Contacts */

.contacts {
    padding: 90px 0;
    background: var(--page-color);
    scroll-margin-top: 80px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contacts-hours,
.contacts-place {
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--surface-color);
}

.contacts-hours {
    display: flex;
    flex-direction: column;
}

.contacts-place {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contacts-call {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--main-dark) 0%, var(--main-color) 100%);
    color: #ffffff;
}

.contacts-call__title {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.contacts-call__desc {
    margin-bottom: 20px;
    opacity: .85;
}

.contacts-call__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .12);
    font-size: 15px;
    line-height: 1.5;
}

.contacts-call__note .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 22px;
}

.contacts-call__phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.contacts-call__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-sm);
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
}

.contacts-call__phone:first-child {
    border-color: transparent;
    background: #ffffff;
    color: var(--main-color);
}

.contacts-call__phone:hover {
    border-color: transparent;
    background: var(--main-light);
    color: var(--main-dark);
    transform: translateY(-2px);
}

.contacts-hours__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-size: 20px;
    font-weight: 700;
}

.contacts-hours__head .material-symbols-outlined {
    color: var(--main-color);
}

.contacts-hours__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
}

.contacts-hours__day {
    color: var(--muted-color);
}

.contacts-hours__time {
    font-weight: 700;
}

.contacts-hours__row--off .contacts-hours__time {
    color: #b8c2cc;
}

.contacts-hours__row--today {
    margin: 0 -14px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: var(--main-light);
}

.contacts-hours__row--today .contacts-hours__day {
    color: var(--main-color);
    font-weight: 700;
}

.contacts-place__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contacts-place__head .material-symbols-outlined {
    font-size: 20px;
}

.contacts-place__address {
    margin-bottom: 4px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.contacts-place__note {
    color: var(--muted-color);
}

.contacts-place__link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
    padding: 16px 26px;
    border-radius: var(--radius-sm);
    background: var(--main-light);
    color: var(--main-color);
    font-weight: 700;
    transition: .3s;
}

.contacts-place__link .material-symbols-outlined {
    font-size: 20px;
    transition: .3s;
}

.contacts-place__link:hover {
    background: var(--main-color);
    color: #ffffff;
}

.contacts-place__link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.contacts-map {
    height: 460px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .contacts {
        padding: 60px 0;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .contacts-call {
        padding: 28px;
    }

    .contacts-call__title {
        font-size: 24px;
    }

    .contacts-call__phones {
        flex-direction: row;
    }

    .contacts-call__phone {
        flex: 1;
    }

    .contacts-hours,
    .contacts-place {
        padding: 24px;
    }

    .contacts-place {
        grid-column: auto;
    }

    .contacts-place__address {
        font-size: 22px;
    }

    .contacts-map {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .contacts-call__phones {
        flex-direction: column;
    }

    .contacts-call__phone {
        padding: 14px 16px;
        font-size: 18px;
    }

    .contacts-place {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .contacts-place__address {
        font-size: 19px;
    }

    .contacts-place__link {
        justify-content: center;
    }
}

/* Footer */

.footer {
    padding: 60px 0 30px;
    background: var(--main-dark);
    color: rgba(255, 255, 255, .75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-logo {
    display: inline-block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: #ffffff;
}

.footer-logo img {
    width: auto;
    height: 44px;
}

.footer-about__text {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
}

.footer-about__brand {
    color: #ffffff;
}

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

.footer-col__title {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.footer-col__link {
    font-size: 15px;
    transition: .3s;
}

.footer-col__link:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    font-size: 15px;
}

.footer-created a {
    color: #ffffff;
    font-weight: 700;
    transition: .3s;
}

.footer-created a:hover {
    color: var(--main-light);
}

@media (max-width: 991px) {
    .footer {
        padding: 44px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
