html {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    /* Изображение будет адаптироваться под экран, убирает полосу прокрутки на разных размерах экрана */
}

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0px;
    margin: 0px;
}

:root {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
}

a {
    text-decoration: none
}

/* Убираем стандартные отступы у элиментов везде*/

body {
    margin: 0 auto;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    background: #0b0c0e;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    max-width: 1200px;
    margin: 0px auto
}

/* Стили для шапки */
.header {
    background-color: #060606;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header_logo_container {
    width: 100px;
}

.header__logo-link {}


.header__title {
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #f6f6f6
}

.header__brand .header__title {
    text-transform: uppercase;
}

.header__title span {
    color: #f78f2f
}

.header__subtitle {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #a4a9ab
}

.header__nav {}

.header__menu {
    display: flex;
    gap: 35px;
}

.header__menu li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.header__menu a {
    color: #f6f6f6;
}

.header__icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header_icone_box {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: #aaa9ac;
    border-radius: 50%;
}

.icone_header {
    font-size: 18px;
    color: black;
}


.icon {}

.icon--phone {}

.fa-brands {}

.fa-paper-plane {
    font-size: 16px;
}

.fa-telegram {}

.icon--mail {}

.fa-vk {}

.icone_actions_container {
    display: flex;
    gap: 30px;
}

.header__actions {
    display: inline-block;
    background: #f78f2f;
    border-radius: 5px;
    padding: 12px 24px;
    text-align: center;
    align-self: start;
    justify-self: start;
}

.btn {}

.header__btn {
    font-family: 'Inter', sans-serif;
    color: #f6f6f6;
    font-size: 16px;
    font-weight: 600;
}

/* Стили для бургера */
.header_title_burger {
    display: none;
}

.burger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    /* При наведениее рука появялется */
    padding: 0px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.burger__line {
    /* Разделяем меню на бургеры */
    display: block;
    width: 32px;
    height: 3px;
    margin-bottom: 4px;
    background-color: white;
}

.burger__line:last-child {
    /* Убираем нижний отступ, который прижимает элименты внутри бока к верху */
    margin-bottom: 0;
}

/* Секция с выпадающим меню */
.sidenav {
    position: fixed;
    width: 300px;
    left: 0;
    top: 0;
    margin: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    height: 100%;
    height: calc(100% + 60px);
    height: -moz-calc(100%);
    padding-bottom: 60px;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}

/* Стили materializecss */
.z-depth-1,
nav,
.card-panel,
.card,
.toast,
.btn,
.btn-large,
.btn-small,
.btn-floating,
.dropdown-content,
.collapsible,
.sidenav {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidenav .collapsible,
.sidenav.fixed .collapsible {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.sidenav .collapsible li,
.sidenav.fixed .collapsible li {
    padding: 0;
}

.sidenav .collapsible-header,
.sidenav.fixed .collapsible-header {
    background-color: transparent;
    border: none;
    line-height: inherit;
    height: inherit;
    padding: 0 16px;
}

.sidenav .collapsible-header:hover,
.sidenav.fixed .collapsible-header:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidenav .collapsible-header i,
.sidenav.fixed .collapsible-header i {
    line-height: inherit;
}

.sidenav .collapsible-body,
.sidenav.fixed .collapsible-body {
    border: 0;
    background-color: #fff;
}

.sidenav .collapsible-body li a,
.sidenav.fixed .collapsible-body li a {
    padding: 0 23.5px 0 31px;
}

.sidenav.right-aligned {
    right: 0;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    left: auto;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.sidenav .collapsible {
    margin: 0;
}

.sidenav li {
    float: none;
    line-height: 48px;
}

.sidenav li.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidenav li>a {
    color: rgba(0, 0, 0, 0.87);
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}

.sidenav li>a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidenav li>a.btn,
.sidenav li>a.btn-large,
.sidenav li>a.btn-small,
.sidenav li>a.btn-large,
.sidenav li>a.btn-flat,
.sidenav li>a.btn-floating {
    margin: 10px 15px;
}

.sidenav li>a.btn,
.sidenav li>a.btn-large,
.sidenav li>a.btn-small,
.sidenav li>a.btn-large,
.sidenav li>a.btn-floating {
    color: #fff;
}

.sidenav li>a.btn-flat {
    color: #343434;
}

.sidenav li>a.btn:hover,
.sidenav li>a.btn-large:hover,
.sidenav li>a.btn-small:hover,
.sidenav li>a.btn-large:hover {
    background-color: #2bbbad;
}

.sidenav li>a.btn-floating:hover {
    background-color: #26a69a;
}

.sidenav li>a>i,
.sidenav li>a>[class^="mdi-"],
.sidenav li>a li>a>[class*="mdi-"],
.sidenav li>a>i.material-icons {
    float: left;
    height: 48px;
    line-height: 48px;
    margin: 0 32px 0 0;
    width: 24px;
    color: rgba(0, 0, 0, 0.54);
}

.sidenav .divider {
    margin: 8px 0 0 0;
}

.sidenav .subheader {
    cursor: initial;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
}

.sidenav .subheader:hover {
    background-color: transparent;
}

.sidenav .user-view {
    position: relative;
    padding: 32px 32px 0;
    margin-bottom: 8px;
}

.sidenav .user-view>a {
    height: auto;
    padding: 0;
}

.sidenav .user-view>a:hover {
    background-color: transparent;
}

.sidenav .user-view .background {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.sidenav .user-view .circle,
.sidenav .user-view .name,
.sidenav .user-view .email {
    display: block;
}

.sidenav .user-view .circle {
    height: 64px;
    width: 64px;
}

.sidenav .user-view .name,
.sidenav .user-view .email {
    font-size: 14px;
    line-height: 24px;
}

.sidenav .user-view .name {
    margin-top: 16px;
    font-weight: 500;
}

.sidenav .user-view .email {
    padding-bottom: 16px;
    font-weight: 400;
}

.sidenav.sidenav-fixed {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: fixed;
}

.sidenav.sidenav-fixed.right-aligned {
    right: 0;
    left: auto;
}

@media only screen and (max-width: 992px) {
    .sidenav.sidenav-fixed {
        -webkit-transform: translateX(-105%);
        transform: translateX(-105%);
    }

    .sidenav.sidenav-fixed.right-aligned {
        -webkit-transform: translateX(105%);
        transform: translateX(105%);
    }

    .sidenav>a {
        padding: 0 16px;
    }

    .sidenav .user-view {
        padding: 16px 16px 0;
    }
}

.sidenav .collapsible-body>ul:not(.collapsible)>li.active,
.sidenav.sidenav-fixed .collapsible-body>ul:not(.collapsible)>li.active {
    background-color: #ee6e73;
}

.sidenav .collapsible-body>ul:not(.collapsible)>li.active a,
.sidenav.sidenav-fixed .collapsible-body>ul:not(.collapsible)>li.active a {
    color: #fff;
}

.sidenav .collapsible-body {
    padding: 0;
}

.sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
    display: none;
}

.sidenav li>a>i,
.sidenav li>a>[class^="mdi-"],
.sidenav li>a li>a>[class*="mdi-"],
.sidenav li>a>i.material-icons {
    float: left;
    height: 48px;
    line-height: 48px;
    margin: 0 32px 0 0;
    width: 24px;
    color: rgba(0, 0, 0, 0.54);
}

/* Секция с изображнем и кнопками обратной связи */
.hero {
    position: relative;
    isolation: isolate;
    background-image:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 0) 45%,
            rgba(0, 0, 0, 0.35) 100%),

        linear-gradient(90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.90) 20%,
            rgba(0, 0, 0, 0.72) 40%,
            rgba(0, 0, 0, 0.42) 58%,
            rgba(0, 0, 0, 0.12) 78%,
            rgba(0, 0, 0, 0.03) 100%),

        url("../image/коптер_на_заставку.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 620px;
}

.hero__content {
    max-width: 540px;
    padding-top: 70px;
}

.box_content_hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero__overline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7c411b;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}

.hero__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #a4a9ab;
    max-width: 350px;
}

.hero__actions {
    display: flex;
    gap: 25px;
}

.hero__btn {}

.hero__btn_primary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    background: #f78f2f;
    color: white;
    border-radius: 5px;
    border: none;
}

.hero__btn_secondary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 24px;
    color: white;
    background-color: #060606;
    border-radius: 5px;
    border: 2px solid white;
    text-align: center;
}

.hero__features {
    display: flex;
    list-style: none;
    padding: 0px;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero__feature span {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hero__features_icons {
    color: #FF8A1F;
    filter: drop-shadow(0 0 6px rgba(255, 138, 31, 0.4));
    width: 36px;
    height: 36px;
}

/* Секция с карточками */
.services {
    padding-top: 50px;
    background: #f5f6f8;
}

.services__header {}

.services__overline {
    color: #d78347;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.services__title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.services__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
}

.services__line {
    max-width: 250px;
    width: 100%;
    height: 1px;
    background: gray;
}

.services__logo {
    width: 100px;
}

.services__cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services-card {
    position: relative;
    padding-top: 30px;
    padding-right: 10px;
    padding-bottom: 40px;
    padding-left: 20px;
    border-radius: 16px;
    background: #f5f5f5;
    overflow: hidden;
    width: 100%;
    max-width: 570px;
}

.card_autel {
    background-image:
        url("../image/карточка_Autel.png");
}

.card_mavic {
    background-image:
        url("../image/карточка_Mavic.png");
}

.services-card__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

.services-card__image img {}

.services-card__content {
    max-width: 45%;
}

.services-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #020102;
    margin-bottom: 12px;
}

.services-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #6f6e6e;
    margin-bottom: 16px;
}

.services-card__list {
    margin-bottom: 30px;
    padding-left: 0px;
    list-style: none;
}

.services-card__list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #6f6e6e;
    position: relative;
    padding-left: 25px;
}

.services-card__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: orange;
}

.services-card__actions {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.btn {}

.btn--primary {
    padding: 10px 16px;
    border: 2px solid #020102;
    border-radius: 5px;
    color: #020102;
}

.services-card__content,
.services-card__actions {
    position: relative;
    z-index: 2;
}

/* Секция о нас */
.about {
    background: #f5f6f8;
    padding-top: 50px;
}

.about__container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 50px;
    border-radius: 16px;
    background: #0d0d0d;
}

.about__content {
    flex: 1;
    max-width: 480px;
}

.about__overline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff8a00;
    margin-bottom: 16px;
}

.about__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.about__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 40px;
}

.about__stats {
    display: flex;
    justify-content: space-between;
}

.about__stat {}

.about__stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #ff8a00;
}

.about__stat-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, .7);
}

.about__image {
    flex-basis: 56%;
    min-height: 300px;
    background: url("../image/о_нас.png") center/cover no-repeat;
}

/* Стрелочки */
.work-process {
    background: #f5f6f8;
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.work-process__overline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff8a00;
    margin-bottom: 16px;
}

.work-process__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 64px;
}

.work-process__steps {
    display: flex;
    justify-content: space-between;
}

.work-step {
    position: relative;
    flex: 1;
    max-width: 250px;
}

.work-step__icon {
    display: flex;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    background: #f8e6d9;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.work-step__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
}

.work-step__title span {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.work-step__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.work-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(100% - 20px);
    width: 150px;
    height: 14px;
    background: url("../image/arrow.svg") no-repeat center;
    background-size: contain;
}

.work-step__icon svg {
    width: 37px;
    height: 37px;
    margin: 0px;
}

.work-step:not(:last-child)::after {
    left: 90px;
}

/* foother */
.footer {
    padding: 50px 60px;
}

.contacts__wrapper {
    display: flex;
    gap: 90px;
}

.contacts__column {}

.contacts__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #ecedec;
}

.contacts__list {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts__item {
    font-family: 'Inter', sans-serif;
    color: #9fa1a8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    list-style: none;
}

.contacts__text {
    font-family: 'Inter', sans-serif;
    color: #9fa1a8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    list-style: none;
}

.contacts__btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: white;
}

.foother_button {
    background: #f78f2f;
    border-radius: 5px;
    padding: 12px 24px;
    margin-top: 60px;
    justify-self: baseline;
}

.foother_icone {
    width: 16px;
    height: 16px;
}

.contacts_social_container {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #a0a1a5;
    align-items: center;
    justify-content: center;
}

.contacts__socials {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.contacts__social {
    color: black;
    font-size: 20px;
}

.icone_foother_btn {
    width: 20px;
    height: 20px;
}

/* Стили для адаптива */
@media screen and (max-width: 1280px) {
    .container {
        max-width: 960px;
        padding-inline: 32px;
    }
}

/* Стили header */
@media screen and (max-width: 1280px) {
    .header__menu {
        display: none;
    }

    .header_title_burger {
        display: block;
    }
}

/* Стили для изображения */
@media screen and (max-width: 1280px) {
    .hero__title {
        font-size: 48px;
    }
}

/* Стили для карточек */
@media screen and (max-width: 1280px) {
    .services__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-card {
        max-width: none;
    }

    .services-card__image {
        position: absolute;
        right: 0px;
        bottom: 160px;
        width: 87%;
        max-width: 500px;
        z-index: 1;
    }

    .services-card__text {}

    .services-card__content {
        max-width: 76%;
    }

    .services-card__list {
        margin-top: 150px;
    }
}

/* Cтили в секии о нас */
@media screen and (max-width: 1280px) {
    .about__container {
        gap: 20px;
        padding: 25px 30px;
    }

    .about__image {
        flex-basis: 45%;
        min-height: 260px;
    }

    .about__stat-number {
        font-size: 30px;
    }

    .about__title {
        font-size: 30px;
    }

}

/* Стрелочка с секциями */
@media screen and (max-width: 1280px) {
    .work-process__steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .work-step:not(:last-child)::after {
        display: none;
    }
}

/* Подвал */
@media screen and (max-width: 1070px) {
    .contacts__column:nth-child(3) {
        display: none;
    }

    .contacts__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* Стили для мобильнных устройств */
@media screen and (max-width: 768px) {
    body {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container {
        max-width: none;
        width: 100%;
        padding: 0 16px;
    }
}

/* header */
@media screen and (max-width: 768px) {
    .header__icons {
        display: none
    }

    .header__actions {
        display: none
    }
}

/* Секция с изображением */
@media screen and (max-width: 768px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__btn_primary {
        width: 100%;
    }

    .box_content_hero {
        max-width: 350px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__feature {
        gap: 28px;
    }

    .hero__features {
        flex-direction: column;
        gap: 16px;
        margin: 50px;
        padding: 0px;
        align-items: baseline;
    }

    .services__cards {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
    }

    .services__cards {
        justify-content: normal;
        grid-template-columns: none;
    }

    .services-card__image {
        bottom: 0px;
    }
}

/* Стили карточек */
@media screen and (max-width: 768px) {
    .services-card__list {
        margin-top: 0px;
        margin-bottom: 50px;
    }

    .services-card__image {
        bottom: 0px;
        width: 75%;
    }

    .services-card {
        min-height: 330px;
    }

    .services-card__content {
        max-width: 100%;
    }

    .services__line {
        width: 30%;
    }
}

/* Секция об мастерской */
@media screen and (max-width: 768px) {
    .about__container {
        flex-direction: column;
        align-items: normal;
    }

    .about__stats {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .about__image {
        order: 1;
    }

    .about__content {
        order: 2;
    }
}

/* Сервис */
@media screen and (max-width: 768px) {
    .work-step {
        display: grid;
        grid-template-columns: 0.1fr 9fr;
        gap: 20px;
    }

    .work-step {
        max-width: 100%;
    }

    .work-process {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .work-process__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* foother */
@media screen and (max-width: 768px) {
    .footer {
        padding: 0px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contacts__wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .foother_button {
        margin-top: 30px
    }

    .contacts__title {
        margin-bottom: 20px;
    }
}