*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}



body {

    font-family: "Inter", sans-serif;
     letter-spacing: 0.2px;
     line-height: 1.5;
}
h1,
h2,
h3 {

    letter-spacing: 0.5px;

}



html {
    scroll-behavior: smooth;
}



/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    background: #111111;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.header__wrapper {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.header__logo {
    font-size: 24px;
    font-weight: 700;
    color: #FFC107;
    text-decoration: none;
    white-space: nowrap;
    padding-left: 50px;
}


/* MENU */

.header__menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.header__link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}


.header__link:hover {
    color: #FFC107;
}



/* CONTACTS */

.header__contacts {
    display: flex;
    align-items: center;
    gap: 25px;

    padding-right: 80px;
}


.header__phone {
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
}

/* CALL BUTTON */

.header__call {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFC107;
    border: 2px solid #FFC107;
    border-radius: 50%;

    transition: all 0.3s ease;
}

.header__call img {
    width: 22px;
    height: 22px;

    display: block;
}

.header__call:hover {
    background: #FFA000;
    color: #111111;
}

.header__call:hover img {
    filter: brightness(0);
}


/* BUTTON */

.header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 45px;
    padding: 0 25px;

    background: #111111;
    color: #ffffff;
    border: 2px solid #FFC107;

    font-size: 15px;

  font-weight: 600;

  text-decoration: none;
  /*text-transform: uppercase;*/

    border-radius: 50px;

    transition: background 0.3s ease;
}


.header__button:hover {
    background: #FFC107;
    color: #111111;
}

.header__button,
.header__link {
    white-space: nowrap;
}

/* =========================
   HERO SECTION
========================= */
.hero__brand {
    font-size: 84px;
    font-weight: 800;
    line-height: 1;

    margin: 0;
    letter-spacing: 2px;
}
.hero__service {

    display: flex;
    align-items: center;

    font-size: 118px;
    font-weight: 800;

    line-height: 1;

    margin: 10px 0 25px;
}

.hero__key {
    display: inline-flex;
    align-items: center;

    margin: 0 0.08em;
}



.hero__key img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    animation: wrenchSwing 3s ease-in-out infinite;

    transform-origin: center;
}

.hero__key-circle {

    display: inline-flex;

    width: 0.80em;
    height: 0.80em;

    align-items: center;
    justify-content: center;

    background: #FFC107;

    border: 0.04em solid #111;

    border-radius: 50%;

    overflow: hidden;

    vertical-align: middle;
}

.hero__key-circle img {

    width: 0.55em;
    height: 0.55em;

    object-fit: contain;

    animation: wrenchSwing 1.8s ease-in-out infinite;

    transform-origin: center;
}


@keyframes wrenchSwing {

    0% {
        transform: rotate(-160deg);
    }


    50% {
        transform: rotate(160deg);
    }


    100% {
        transform: rotate(-160deg);
    }

}
.hero__description {

    font-size: 24px;

    font-weight: 400;

    line-height: 1.5;

    max-width: 450px;

    margin: 0;
}


.hero {

    position: relative;

    min-height: calc(100vh + 30px);

    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* затемнение картинки */

.hero__overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);

}



/* контейнер */

.hero__wrapper {

    position: relative;

    display: flex;

    align-items: center;

    min-height: calc(100vh + 30px);

}



.hero__content {

    max-width: 700px;

    color: #ffffff;
    padding-left: 60px;

}



/* маленький заголовок */

.hero__subtitle {

    font-size: 60px;

    font-weight: 600;

    margin-bottom: 25px;

    letter-spacing: 0.3px;

}



/* главный заголовок */

.hero__title {

    font-size: 56px;

    line-height: 1.15;

    font-weight: 700;

    margin: 0 0 25px;

}



/* описание */

.hero__description {

    max-width: 620px;

    font-size: 19px;

    line-height: 1.6;

    color: rgba(255,255,255,0.9);

    margin-bottom: 40px;

}



/* кнопки */

.hero__buttons {

    display: flex;

    align-items: center;

    gap: 20px;

}



/* основная кнопка */

.hero__button {

    display: inline-flex;

    align-items: center;

    justify-content: center;


    height: 52px;

    padding: 0 35px;


    background: #FFC107;

    color: #111111;


    font-size: 16px;

    font-weight: 700;


    text-decoration: none;


    border-radius: 50px;


    transition: all 0.3s ease;

}


.hero__call {
    background: #FFC107;
    border: 2px solid #FFC107;
    color: #111111;
    padding: 0 5px;
    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    border-radius: 50px;
}

.hero__button:hover {

    background: black;
    color: #fff;

}

.hero__call img {
    width: 18px;
    height: 18px;

    display: block;
}
.hero__call:hover {
    background: #FFA000;
    color: #111111;
    
}

.hero__button--call:hover img {
    filter: brightness(0);
}

.hero__slogan {
    font-size: 30px;
    line-height: 1.3;

    padding-top: 50px;
    padding-bottom: 50px;
}

/* ==========================================
   TRUST
========================================== */

.trust {
    padding: 100px 0;
}

.trust__container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: stretch;
}

.trust__image {
    overflow: hidden;
}

.trust__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.trust__content {
    display: flex;
    flex-direction: column;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.trust-card {
    border: 1px solid #000;
    padding: 30px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.trust-card__title {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.trust-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* ==============================
   Appointment section
============================== */

.appointment {
    padding: 80px 0;
    background-color: #ffffff;
}


.appointment__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    padding-left: 20px;
    padding-right: 10px;
}


/* Левая часть */

.appointment__content {
    width: 100%;
    padding-left: 50px;
    
}


.appointment__title {
    margin: 0 0 15px;

    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;

    color: #111111;
}

.appointment__line {
    width: 100%;
    height: 1px;
    background-color: #111111;

    margin: 20px 0 20px;
}

.appointment__divider {
    display: flex;
    align-items: center;
    gap: 15px;

    margin: 20px 0 30px;
}


.appointment__divider span {
    height: 1px;
    flex: 1;
    background-color: #111111;
}


.appointment__divider p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #555555;

    white-space: nowrap;
}


.appointment__subtitle {
    margin: 0 0 30px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;

    color: #555555;
}


/* Форма */

.appointment__form {
    width: 100%;
}


.appointment__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    margin-bottom: 20px;
}


.appointment__input {
    width: 100%;
    height: 52px;

    padding: 0 18px;

    border: 1px solid #111111;
    border-radius: 6px;

    font-family: "Inter", sans-serif;
    font-size: 15px;

    color: #111111;
    background-color: #ffffff;

    outline: none;

    transition: border-color 0.2s ease;
}


.appointment__input::placeholder {
    color: #777777;
}


.appointment__input:focus {
    border-color: #000000;
}


/* Кнопка */

.appointment__button {
    width: 100%;
    height: 54px;

    border: 1px solid #111111;
    border-radius: 50px;

    background-color: #ffffff;
    color: #111111;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: background-color 0.3s ease;
}


.appointment__button:hover {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}


/* Фото */

.appointment__image {
    display: flex;
    justify-content: center;
    align-items: center;
}


.appointment__image img {

    width: 100%;
    max-width: 380px;

    height: 350px;

    object-fit: contain;

    display: block;
   
}

.appointment__image {
    width: 100%;
    max-width: 380px;
    height: 350px;

    overflow: hidden;
    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}


.appointment__image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}




/* ==============================
   Booking section
============================== */

.booking {
    padding: 80px 0;
    background-color: #ffffff;
}


/* ==============================
   Header
============================== */

.booking__header {
    width: calc(100% - 100px);

    margin-left: 50px;
    margin-right: 50px;

    margin-bottom: 40px;
}


.booking__title-line {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}



.booking__title-line span {

    display: block;

    width: 100%;

    height: 1px;

    background-color: #111111;
}



.booking__title {

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 32px;

    font-weight: 700;

    text-transform: uppercase;

    white-space: nowrap;

    text-align: center;

    color: #111111;
}



.booking__subtitle {

    margin: 20px 0 0;

    text-align: center;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    font-weight: 400;

    color: #555555;
}



/* ==============================
   Form wrapper
============================== */


.booking__form-wrapper {

    background-color: #f5f5f5;

    margin: 0 50px;

    padding: 50px;

}



.booking__form-title {

    margin: 0 0 30px;

    font-family: "Inter", sans-serif;

    font-size: 20px;

    font-weight: 700;

    color: #111111;
}



/* ==============================
   Form
============================== */


.booking__form {

    width: 100%;
}



.booking__input {

    width: 100%;

    height: 52px;

    padding: 0 18px;


    border: 1px solid #111111;

    border-radius: 6px;


    background-color: #ffffff;


    font-family: "Inter", sans-serif;

    font-size: 15px;


    color: #111111;


    outline: none;

    box-sizing: border-box;


    transition: border-color 0.2s ease;
}



.booking__input::placeholder {

    color: #777777;
}



.booking__input:focus {

    border-color: #000000;
}



/* первые два поля */

.booking__form > .booking__input {

    margin-bottom: 20px;

}



/* строки с двумя полями */

.booking__row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 20px;
}



/* ==============================
   Button
============================== */


.booking__button {

    width: 100%;

    height: 54px;


    margin-top: 10px;


    background-color: #ffffff;

    color: #111111;


    border: 1px solid #111111;

    border-radius: 50px;


    font-family: "Inter", sans-serif;


    font-size: 16px;


    font-weight: 600;


    cursor: pointer;


    transition: all 0.3s ease;
}



.booking__button:hover {

    background-color: #111111;

    color: #ffffff;

    transform: translateY(-2px);
}




/* ===== Services ===== */


.services {

    padding: 60px 0;

}


.services__container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}


.services__list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}





.services__item {
    width: 100%;
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 20px 20px 20px 10px;

    background-color: #fff;
    border: 1px solid #000;
    border-radius: 70px;

    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;

    transition: 0.3s;
}

.services__item:hover {
    background-color: #000;
    color: #fff;
}

.services__icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    flex-shrink:0;

    margin-left: 10px;

    border-radius: 50%;
    background-color: #f5c400; 

    display: flex;
    justify-content: center;
    align-items: center;
}

.services__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.services__text {

    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;
     letter-spacing: 0.8px;
    margin:0;
}



/* ===== Prices ===== */

.prices {

    padding: 60px 0;
    padding-left: 5px;

}


.prices__container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}


/* Выпадающий список */

.prices__dropdown {

    position: relative;

}


/* Поле выбора */

.prices__select {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    padding: 22px 30px;

    background-color: #fff;

    border: 1px solid #000;

    border-radius: 60px;

    cursor: pointer;

    transition: 0.3s;

}


.prices__select:hover {

    background-color: #000;

    color: #fff;

}


/* Текст */

.prices__current {

    font-size: 20px;

    font-weight: 600;

}


/* Стрелка */

.prices__arrow {

    font-size: 18px;

    transition: transform 0.3s;

}


/* Поворот стрелки */

.prices__dropdown.active .prices__arrow {

    transform: rotate(180deg);

}


/* Выпадающий список */

.prices__list {

    display: none;

    position: absolute;

    top: calc(100% + 10px);

    left: 0;

    width: 100%;

    background: #fff;

    border: 1px solid #000;

    border-radius: 25px;

    overflow: hidden;

    z-index: 100;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

}


.prices__list.active {

    display: block;

}


/* Пункты списка */

.prices__item {

    padding: 18px 30px;
    background:#ffffff;

    cursor: pointer;

    transition: 0.3s;

    border-bottom: 1px solid #ddd;

}


.prices__item:last-child {

    border-bottom: none;

}


.prices__item:hover {

    background-color: #000;

    color: #fff;

}


/* Блок с ценами */

.prices__content {

    margin-top: 35px;

}


/* Каждая строка */

.prices__row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 25px;

    margin-bottom: 10px;

    background: #fff;

    border: 1px solid #000;

    border-radius: 10px;

}


.prices__service {

    font-weight: 500;

}


.prices__price {

    font-weight: 700;

}
/* ===== Advantages ===== */

/* ===== Advantages ===== */


/* ===========================
   ADVANTAGES
=========================== */


/* ===========================
   ADVANTAGES
=========================== */


.advantages {

    padding: 60px 0;

}


.advantages__container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}


.advantages__list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.advantages__item {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    background-color: #fff;

    border: 1px solid #000;

    border-radius: 70px;

    transition: 0.3s;

}


.advantages__item:hover {

    background-color: #000;

    color: #fff;

}


.advantages__icon {

    width: 70px;

    height: 70px;

    min-width: 70px;

    border-radius: 50%;

    background-color: #f5c400;

    display: flex;

    justify-content: center;

    align-items: center;

}


.advantages__icon img {

    width: 35px;

    height: 35px;

    object-fit: contain;

}


.advantages__text {

    font-size: 20px;

    font-weight: 700;

    text-transform: uppercase;

}

/* ===== Payment ===== */

.payment {

    padding: 60px 0;

}


.payment__container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}


.payment__title {

    margin-bottom: 30px;

}


.payment__list {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.payment__item {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    background-color: #fff;

    border: 1px solid #000;

    border-radius: 10px;

    transition: background-color 0.3s ease,
                color 0.3s ease;


}


.payment__item:hover {

    background-color: #000;

    color: #fff;

}


.payment__icon {

    width: 50px;

    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    border: 1px solid #000;

    font-size: 24px;

}


.payment__item:hover .payment__icon {

    border-color: #fff;

}


.payment__text {

    margin: 0;

    font-size: 16px;
    letter-spacing: 0.5px;

    line-height: 1.5;

}

/* ===== Reviews ===== */

.reviews {

    padding: 60px 0;

}


.reviews__container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}


.reviews__slider {

    display: flex;

    align-items: center;

    gap: 20px;

}

.reviews__window {

    overflow: hidden;

    flex: 1;

}


.reviews__list {

    display: flex;

    gap: 20px;

    transition: transform 0.4s ease;

}





.reviews__item {
    min-height: 220px;

    flex: 0 0 calc((100% - 40px) / 3);

    padding: 25px;

    background-color: #fff;

    border: 1px solid #000;

    border-radius: 10px;

    transition: 0.3s;

}


.reviews__item:hover {

    background-color: #000;

    color: #fff;

}


.reviews__header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

}


.reviews__name {

    margin: 0;

    font-size: 18px;

}


.reviews__rating {

    font-size: 16px;

}


.reviews__text {

    margin: 0;

     line-height: 1.6;

    letter-spacing: 0.3px;

}

.reviews__arrow {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: 1px solid #000;

    background-color: #fff;

    font-size: 22px;

    cursor: pointer;
    transition: 0.3s;

}


.reviews__arrow:hover {

    background-color: #000;

    color: #fff;

}




/* ===== Callback ===== */


.callback {

    padding: 60px 0;

}


.callback__container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 40px 20px;

    text-align: center;

    background-color: #fff;

    border: 1px solid #000;

    border-radius: 30px;

}


.callback__title {

    margin-bottom: 25px;

}


.callback__phone {

    display: inline-block;

    margin-bottom: 20px;

    font-size: 32px;

    font-weight: 700;

    color: #000;

    text-decoration: none;

    transition: 0.3s;

}


.callback__phone:hover {

    color: #555;

}


.callback__text {

    margin: 0;

    font-size: 18px;
    

}

 /* ================= CONTACTS ================= */

.contacts {
    background-color: #f5f5f5;
    margin-top: 100px;
}

.contacts__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
    
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 80px;
}


.contacts__info {

    width:40%;
    height:680px;

    padding:25px;

    border:1px solid #000;

    border-radius: 20px;

    background:#fff;

}


.contacts__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}


.contacts__item {
    margin-bottom: 35px;
}


.contacts__label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}


.contacts__text,
.contacts__link {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}


.contacts__link {
    text-decoration: none;
    transition: .3s;
}


.contacts__link:hover {
    opacity: .6;
}


.contacts__button {
    width: 300px;
    height: 50px;
    padding: 0 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 10px;

    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50px;

    color: #000;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;

    transition: .3s;
}


.contacts__button:hover {
    background-color: #000;
    color: #fff;
}


.contacts__map {

    width:60%;

    height:680px;

    overflow:hidden;

    border:1px solid #000;

    border-radius:20px;

}


.contacts__map iframe {
    width: 100%;
    height: 100%;

    border: none;
}

/* =========================
   BRANDS
========================= */

.brands {
  padding: 100px 50px;
  background-color: #ffffff;
}
.brands__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.brands__line {
    width: 150px;
    height: 1.5px;
    background-color: #000;
}

.brands__heading {
    margin: 0;

    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}


.brands__subtitle {
  max-width: 650px;

  margin: 20px auto 0;

  text-align: center;

  color: #555;

  font-size: 16px;

  line-height: 1.6;
}


/* Сетка логотипов */

.brands__grid {

  margin-top: 50px;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 20px;

}



/* Карточка логотипа */

.brands__item {

  height: 90px;

  border: 1px solid #111;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #fff;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}



/* Логотип */

.brands__item img {

  max-width: 80%;

  max-height: 50px;

  object-fit: contain;

  transition: transform 0.3s ease;

}



/* Эффект наведения */

.brands__item:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

}


.brands__item:hover img {

  transform: scale(1.08);

}



/* Нижний текст и кнопка */

.brands__bottom {

  margin-top: 60px;

  text-align: center;

}


.brands__bottom p {

  max-width: 650px;

  margin: 0 auto 30px;

  font-size: 18px;

  line-height: 1.5;

}
/* =========================
   BUTTON
========================= */

.brands__botton {

  display: inline-flex;

  width: 600px;
  height: 50px;

  align-items: center;
  justify-content: center;

  background-color: #ffffff;

  color: #000000;

  border: 1px solid #000000;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 500;

  text-decoration: none;
  text-transform: uppercase;

  transition: 
    background-color 0.3s ease,
    color 0.3s ease;

}


/* Hover */

.brands__botton:hover {

  background-color: #000000;

  color: #ffffff;

}




/* ===== Footer ===== */


/* ===== Footer ===== */


/* ================= FOOTER ================= */

.footer {
    background-color: #f5f5f5;
    margin-top: 100px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px 50px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #000;
}

.footer__brand,
.footer__contacts,
.footer__menu {
    display: flex;
    flex-direction: column;
}

.footer__brand {
    max-width: 340px;
}

.footer__logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #FFC107;
}

.footer__text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.footer__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer__link,
.footer__address,
.footer__policy {
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    margin-bottom: 18px;
    transition: .3s;
}

.footer__link:hover,
.footer__policy:hover {
    color: #FFC107;
}

.footer__button {
    width: 190px;
    height: 50px;
    margin-top: 50px;
    padding: 10px 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #111111;
    color: #ffffff;
    border: 2px solid #FFC107;
    border-radius: 50px;

    
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;

    transition: .3s;
}

.footer__button:hover {
    background: #FFC107;
    color: #111111;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    font-size: 14px;
}

.footer__copyright {
    color: #555;
}

/* ===== Section titles ===== */

.section-title {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 50px;

    font-size: 36px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    text-align: left;

}


.section-title::before {

    content: "";

    width: 80px;

    height: 1px;

    background-color: #000;

}

.services__item,
.prices__item,
.advantages__item,
.footer__link,
.footer__policy,
.contacts__button,
.footer__button,
.brands__botton {

    letter-spacing: 0.5px;

}

.form__success {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    color: #111111;
}
