
:root {
    --color-white: #FFFFFF;
    --color-black-sub: #0C0C0E;
    --color-black: #000000;
    --color-beige: #BB945F;
    --color-gray: #8E8E8E;
    --color-apricot-White: #F5EFD8;
}

* {
    box-sizing: border-box;
    margin: 0;
}
@media screen {
    html,
    body {
      scroll-behavior: smooth;
    }
}

html, body {
    scroll-behavior: smooth;
    height: 100%;
}

/* body {
    overflow-y: hidden;
} это при js полосу прокрутки нужно добавить и убрать при открытии и закрытии меню */

.body_container-desktop {
    min-height: 100vh;
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    background-color: var(--color-gray);
}

.header-wrapper_flex-row,
.h1_flex-row,
.header-ul_flex-row,
.section-welcome_flex-row,
.section-about_flex-row,
.section-about-container-pagination_flex-row,
.section-favorites-wrapper-seasons_flex-row,
.wrapper-books-card_flex-row,
.wrapper-menu_flex-row,
.contacts-wrapper_flex-row,
.wrapper-digital-cards_flex-row,
/* delete later*/
.flex-wrapper_row {
    display: flex;
    flex-direction: row;
}

.section-about_flex-column,
.section-favorites_flex-column,
.section-coffee-shop_flex-column,
.section-contacts_flex-column,
.section-digital-cards_flex-column,
.footer-wrapper_flex-column,
/* delete later*/
.flex-wrapper_column {
    display: flex;
    flex-direction: column;
}

.header-wrapper_space-between,
.section-about_flex-space-between,
.wrapper-books-card_flex-space-between,
.wrapper-menu_flex-space-between,
.contacts-wrapper_flex-space-between,
.wrapper-digital-cards_flex-space-between,
/* delete later*/
.flex-wrapper_space-between {
    display: flex;
    justify-content: space-between;
}

.flex-wrapper_space-evenly {
    justify-content: space-evenly;
}

.section-welcome_flex-center,
.flex-wrapper_center {
    justify-content: center;
}

.header-wrapper_flex-align-items,
.section-welcome_flex-align-items-center,
.section-about_flex-align-items-center,
/* delete */
.flex-wrapper_align-items {
    display: flex;
    align-items: center;
}

.header-wrapper_padding,
.section-about_flex-padding,
.section-favorites_flex-padding,
.section-coffee-shop_flex-padding,
.section-contacts_flex-padding,
.section-digital-cards_flex-padding,
.footer-wrapper_flex-padding,
/* delete */
.flex-wrapper_padding {
    padding-left: 20px;
    padding-right: 20px;
}


/* HEADER */
.header-wrapper {
    height: 90px;
    background-color: var(--color-black-sub);
}

.header__h1_text {
    width: 300px;
    height: 50px;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: 'Forum';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    /* line-height: 50px; */
    letter-spacing: 0.016em;
    color: var(--color-white);
}

.header-nav_margin {
    display: flex;
    margin-left: 375px;
}

.header-ul {
    margin: 0;
    padding: 0;
}

.header-li {
    padding-left: 30px;
    list-style-type: none;
}

.header-li__a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 50px;
    letter-spacing: 0;
    color: var(--color-white);
    text-decoration: none;
    transition: 1s;
}

.header-li__a:hover {
    cursor: pointer;
    color: var(--color-beige);
    transition: 1s;
}

.header__icon-profile {
    z-index: 9;
    height: 28px;
    width: 28px;
    /* margin-right: 40px; */
    align-self: center;
}

.header__icon-profile:hover {
    cursor: pointer;
    background-color: var(--color-beige);
    border-radius: 50%;
    transition: 1s;
}

.humburger-menu {
    display: none;
}

/* WELCOME */
.section-welcome {
    height: 600px;
    /* background-image: url('./assets/img/Welcome.png'); */
    background-image: url(./assets/img/Welcome.png);
    /* background-size: auto; */
}

.overlay {
    height: 300px;
    background: linear-gradient(180deg, #0C0C0E 0%, #0C0C0E 0.01%, rgba(18, 18, 21, 0.10) 100%);
}

.section-welcome__wrapper {
    height: 220px;
    width: 600px;
    margin-top: -80px;
    margin-bottom: 160px;
}

.section-welcome__background {
    background-color: var(--color-black-sub);
}

.section-welcome__h3 {
    text-align: center;
    font-family: 'Forum';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 3px;
    color: var(--color-white);
}


/* ABOUT */
.section-about {
    min-height: 837px;
    background-color: var(--color-white);
}

.section__h2 {
    align-self: center;
    margin-top: 20px;
    margin-bottom: 17px;
    font-family: 'Forum';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--color-black-sub);  
}

.section__hr {
    align-self: center;
    width: 50px;
    height: 1px;
    background-color: var(--color-black-sub);
}

.section-about__p {
    margin-top: 38px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0;
    color: var(--color-black);
}

.section-about-container-img {
    gap: 25px;
    margin-bottom: 35px;
}

.about__arrow-left,
.about__arrow-right {
    display: none;
}

.display-none {
    display: none;
}

.about-img {
    max-width: 100%;
}

.section-about-box-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 26px;
}

.box-pagination-4-5 {
    display: none;
}

.btn-round-1,
.btn-round-2,
.btn-round-3 {
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    border: 1px solid var(--color-beige);
    background: var(--color-beige);
    color: var(--color-beige)
}

.btn-round-2,
.btn-round-3 {
    border: 1px solid var(--color-black-sub);
    background: var(--color-black-sub);
    color: var(--color-black-sub)
}


.section-about__box-pagination:hover {
    cursor: pointer;
}

.section-about-box-pagination:hover .btn-round-1,
.section-about-box-pagination:hover .btn-round-2,
.section-about-box-pagination:hover .btn-round-3 {
    cursor: pointer;
    box-shadow: 0px 0px 5px 2px rgba(187, 148, 95, 1);
}


/* FAVORITES */
.section-favorites {
    min-height: 1440px;
    background-color: var(--color-white);
}

.section-favorites__h3 {
    margin-top: 40px;
    margin-bottom: 0;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-favorites-wrapper-seasons {
    margin-top: 38px;
    gap: 173px;
}
/* 
.input-box {
    width: 120px;
} */

.summer {
    margin-left: -10px;
}

.autumn {
    margin-left: 6px;
}

.season-input-wrapper {
    display: flex;
    flex-direction: row;
    padding: 5px 0;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.season-input-wrapper:hover {
    cursor: pointer;
}

.radio_season {
    align-self: center;
    width: 15px;
    height: 15px;
    accent-color: var(--color-black);
    margin: 0;
    cursor: pointer;
    transition: 1s;
}

.label_season {
    align-self: center;
    margin-left: 20px;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 1s;
    cursor: pointer;
}
/* !!!!! */

.season-input-wrapper:hover .label_season {
    cursor: pointer;
    color: var(--color-gray);
    transition: 1s;
}

.radio_season:checked + .label_season {
    cursor: pointer;
    font-weight: 700;
    transition: 1s;
}

.container-books-card {
    width: 550px;
    height: 555px;
    border: 1px solid var(--color-black);
    background: var(--color-white);
    margin-right: 40px;
    margin-top: 40px;
}

.books-card_description {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 20px;
    width: 358px;
}

.box_books-card_h3 {
    color: var(--color-black);
    font-family: "Forum";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.box_books-card__hr {
    width: 60px;
    height: 1px;
    background-color: var(--color-beige);
}

.box_books-card_h4 {
    margin-top: 20px;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.box_books-card_p {
    color: var(--color-black);
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.box_books-card_p-text {
    margin-top: 20px;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 266.667% */
    letter-spacing: 2px;
    text-transform: capitalize;
}

.box_books-card_button {
    margin-top: auto;
    margin-bottom: 0;
    width: 75px;
    height: 30px;
    border: 1px solid var(--color-black-sub);
    border-radius: 2px;
    background-color: var(--color-white);
    color: var(--color-black-sub);
    text-align: center;
    font-family: "Inter";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    transition: 1s;
}

.box_books-card_button:hover {
    cursor: pointer;
    border: 1px solid var(--color-beige);
    background-color: var(--color-beige);
    transition: 1s;
}

.box_books-card_button-own {
    margin-top: auto;
    margin-bottom: 0;
    width: 75px;
    height: 30px;
    border: 1px solid var(--color-beige);
    border-radius: 2px;
    background-color: var(--color-white);
    color: var(--color-beige);
    text-align: center;
    font-family: "Inter";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.box_books-card__img {
    margin-top: 255px;
    margin-bottom: 0;
    margin-right: -40px;
    margin-left: 10px;
    width: 200px;
    height: 300px;
}


/* COFFEE-SHOP */
.section-coffee-shop {
    min-height: 841px;
    background-color: var(--color-white);
}

.section-coffee-shop__p-text {
    margin-top: 40px;
    text-align: center;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 2px;
}

.wrapper-menu {
    margin-top: 40px;
}

.wrapper-menu-box {
    gap: 40px;
}

.wrapper-menu-box-right {
    align-items: end;
}

.wrapper-menu-item {
    justify-content: space-between;
}

.menu-box__h3 {
    color: var(--color-beige);
    font-family: "Forum";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 100% */
    letter-spacing: 2px;
    text-transform: capitalize;
}

.menu-item-name-p {
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-transform: capitalize;
}

.menu_hr {
    margin: auto 60px;
    align-self: center;
    width: 100px;
    height: 1px;
    background-color: var(--color-beige);
}

.menu-item-price-p {
    color: var(--color-black);
    font-family: "Forum";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-transform: capitalize;
}

.wrapper-menu-box-left {
    width: 441px;
}


/* CONTACTS */
.section-contacts {
    min-height: 575px;
    background-color: var(--color-white);
}

.contacts-wrapper-text {
    text-align: left;
}

.contacts-wrapper {
    margin-top: 36px;
}

.contacts-wrapper-map {
    margin-right: 0;
    max-width: 696px;
    max-height: 414px;
}

.contacts__p-text-bold-post {
    margin-bottom: 20px;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-transform: capitalize;
    text-decoration: none;
}

.contacts__p-text-bold {
    margin-bottom: 20px;
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-transform: capitalize;
    text-decoration: none;
    transition: 1s;
}

.contacts__p-text-bold:hover {
    cursor: pointer;
    color: var(--color-beige);
    transition: 1s;
}

.contacts__p-text {
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-transform: capitalize;
    text-decoration: none;
}

.contacts__p-text-tel {
    color: var(--color-black);
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-transform: capitalize;
    text-decoration: none;
    transition: 1s;
}

.contacts__p-text-tel:hover {
    cursor: pointer;
    color: var(--color-beige);
    transition: 1s;
}

.wrapper-tel {
    margin-top: 40px;
    gap: 20px;
    margin-bottom: 40px;
}


/* DIGITAL-CARDS */
.section-digital-cards {
    min-height: 614px;
    background-color: var(--color-white);
}

.wrapper-digital-cards {
    margin-top: 37px;
}

.wrapper-check-card {
    display: flex;
    max-width: 600px;
    justify-content: center;
    text-align: center;
}

.check-card__p {
    color: var(--color-black);
    font-family: "Inter";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
}

.conteiner-check-card {
    margin-top: 30px;
    padding: 20px;
    width: 600px;
    height: 386px;
    border: 3px solid var(--color-beige);
    background: var(--color-white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.box-check-card {
    width: 560px;
    height: 272px;
    background: var(--color-beige);
    padding: 20px 20px 25px;
    text-align: left;
}

.box-check-card__p {
    color: var(--color-black);
    font-family: "Forum";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 166.667% */
    letter-spacing: 0.6px;
}

.box-check__form {
    display: flex;
    margin-top: 20px;
    width: 520px;
    height: 66px;
    border-radius: 10px;
    background: var(--color-white);
}

label {
    cursor: default;
}

.box-check__form-input {
    display: flex;
    align-self: center;
    margin-left: 20px;
    width: 250px;
    height: 50px;
    border-style: none;
    background: none;
    color: var(--color-beige);
    font-family: "Forum";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 166.667% */
    letter-spacing: 0.6px;
}

.box-check__form-input::placeholder {
    color: var(--color-gray);
}

.box-check-card__button {
    margin-top: 20px;
    width: 242px;
    height: 44px;
    border-radius: 2px;
    border: 1px solid var(--color-black-sub);
    padding: 10px 35px;
    color: var(--color-black-sub);
    background-color: var(--color-white);
    text-align: center;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    transition: 1s;
}

.box-check-card__button:hover {
    cursor: pointer;
    border: 1px solid var(--color-beige);
    background-color: var(--color-beige);
    transition: 1s;
}

.wrapper-login-card {
    display: flex;
    max-width: 614px;
    justify-content: right;
    text-align: right;
}

.box-login-card__p {
    color: var(--color-black);
    font-family: "Forum";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 50px; */
    letter-spacing: 0.6px;
}

.login-card__p-text {
    align-self: flex-end;
    margin-top: 36px;
    max-width: 460px;
    height: 120px;
    color: var(--color-black);
    text-align: right;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 0.4px;
}

.wrapper-button {
    margin-top: 36px;
    align-self: flex-end;
    gap: 20px;
}

.login-card__button {
    display: flex;
    width: 75px;
    height: 30px;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    border: 1px solid var(--color-black-sub);
    background-color: var(--color-white);
    color: var(--color-black-sub);
    text-align: center;
    font-family: "Inter";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    transition: 1s;
}

.login-card__button:hover {
    cursor: pointer;
    border: 1px solid var(--color-beige);
    background-color: var(--color-beige);
    transition: 1s;
}


/* FOOTER */
.footer-wrapper {
    height: 250px;
    background-color: var(--color-black-sub);
}

.footer-adress {
    margin-top: 20px;
    width: 230px;
    height: 40px;
    text-decoration: none;
}

.footer-adress__time {
    color: var(--color-white);
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-adress__p {
    color: var(--color-white);
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    transition: 1s;
}

.footer-adress__p:hover {
    cursor: pointer;
    color: var(--color-beige);
    transition: 1s;
} 

.footer-social {
    padding-left: 0;
    margin-top: 18px;
}

.footer-social__img {
    margin-right: 15px;
    color: #F5EFDB;
    transition: 1s;
}

.footer-social__li {
    list-style-type: none;
}

.footer-social__img:hover {
    cursor: pointer;
    transition: 1s;
    background-color: var(--color-beige);
    border-radius: 5px;
}

.footer-time {
    text-align: right;
}

.footer-wrapper-right {
    margin-top: 20px;
    gap: 10px;
}

.footer-hr {
    max-width: 1400px;
    height: 1px;
    background-color: var(--color-white);
    margin-top: 30px;
}

.footer-links__year {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-decoration: none;
}

.footer-links__text {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
    text-decoration: none;
    transition: 1s;
}

.footer-links__text:hover {
    cursor: pointer;
    color: var(--color-beige);
    transition: 1s;
}

.footer-margin-rss{
    margin-left: 110px;
}

.wrapper-part2 {
    margin-top: 33px;
}

@media screen and (min-width: 639px) and (max-width: 780px) {
    /* WELCOME */
    .section-welcome {
        background-image: url(./assets/img/Welcome768.png);
    }
}

@media screen and (min-width: 639px) and (max-width: 740px) {
    .section-favorites-wrapper-seasons {
        gap: 120px;
    }
    .contacts-wrapper-map {
        margin-right: 0;
        width: 95%;
        height: 95%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1439px) {
    .header-nav_margin {
        margin-left: 0;
    }
    /* ABOUT */
    .section-about {
        min-height: 837px;
    }

    .section-about_flex-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .wrapper-books-card_flex-row {
        flex-direction: column;
        align-items: center;
    }

    .section-about-container-img {
        max-width: 1400px;
    }

    .about-img {
        max-width: 100%;
    }
}

/* !!! */

@media screen and (min-width: 639px) and (max-width: 1040px) {
    .body_container-desktop {
        min-height: 100vh;
        margin: 0 auto;
        padding: 0;
        flex-direction: column;
        justify-content: space-between;
        max-width: 1024px;
        width: 100%;
        background-color: var(--color-gray);
    }

    /* HEADER */
    .header__icon-profile {
        /* z-index: 15; */
        margin-right: 40px;   
    }

    /* NAVIGATION */
    .header__h1_text {
        margin-right: auto;
        margin-left: 0;
    }

    .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--color-black-sub);
        width: 332px;
        height: 570px;
        margin-left: 0;
        padding-top: 100px;
        padding-bottom: 100px;
        /* transform: translateX(100%); */
        transition: right 0.7s;
    }

    .nav-menu.open {
        /* transform: translateX(0); */
        right: 0;
    }

    .header-ul {
        justify-content: space-between;
        /* margin-top: 10px; */
        height: 370px;
        align-items: center;
        /* gap: 30px; */
    }

    .header-ul_flex-row {
        flex-direction: column;
    }
    
    .header-li {
        padding-left: 0;
    }

    .humburger-menu {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 45px;
        height: 20px;
        cursor: pointer;
        z-index: 2;
        margin-right: 0;
    }

    .hidden {
        overflow: hidden;
    }

    .humburger-span {
        width: 100%;
        height: 2px;
        /* box-shadow: 0 0 0 1px rgb(255 255 255); */
        background: var(--color-white);
        margin: -1px 0;
        z-index: 15;
        transition: all 0.6s ease-in-out;
        /* !!!! */
    }
    
    .humburger-menu.active .span-1 {
        transform: rotate(-45deg) translate(-16px, 5px);
        margin-left: 20px;
        margin-right: -10px;
    }
    .humburger-menu.active .span-2 {
        opacity: 0;
    }
    .humburger-menu.active .span-3 {
        transform: rotate(45deg) translate(-6px, 0px);
        margin-left: 20px;
        margin-right: -10px;
    }
    

    /* ABOUT */
    .section-about_flex-row {
        flex-direction: column;
    }

    .section-about-container-img {
        margin-bottom: 20px;
    }
    
    .box-pagination-4-5 {
        display: flex;
    }

    /* FAVORITES */
    .section-favorites {
        padding-top: 20px;
    }
    .section__hr_margin-left {
        margin-left: 20px;
        margin-top: 4px;
    }
    .wrapper-books-card_flex-row {
        flex-direction: column;
    }
    .container-books-card {
        align-self: center;
    }

    /* COFFEE-SHOP */
    .section-coffee-shop {
        padding-top: 40px;
    }
    .section-coffee-shop_flex-padding {
        padding-left: 19px;
        padding-right: 19px;
    }

    .wrapper-menu_flex-row {
        flex-direction: column;
        gap: 40px;
    }

    /* CONTACTS */
    .section-contacts {
        padding-top: 40px;
    }
    .contacts-wrapper_flex-row {
        flex-direction: column;
    }
    .contacts-wrapper {
        margin-top: 40px;
    }
    .contacts-wrapper-map {
        margin-top: 100px;
        align-self: center;
    }

    /* DIGITAL-CARDS */
    .section-digital-cards {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .wrapper-digital-cards_flex-row {
        flex-direction: column;
    }
    .wrapper-check-card {
        align-self: center;
    }
    .wrapper-login-card {
        margin-top: 25px;
        align-self: center;
        justify-content: center;
        text-align: center;
    }
    .login-card__p-text {
        align-self: center;
        text-align: center;
        margin-top: 36px;
        max-width: 560px;
        height: 120px;
    }
    
    .wrapper-button {
        margin-top: 0;
        align-self: center;
        gap: 20px;
    }

    /* FOOTER */
    .footer-margin-rss {
        margin-left: 55px;
    }
}

@media screen and (min-width: 639px) and (max-width: 770px) {
    .section-about-container-img {
        width: 614px;
    }
    
    .section-about_flex-space-between {
        justify-content: space-between;
    }

    .section-about_flex-row {
        flex-direction: row;
    }

    .about-img-2-3 {
        display: none;
    }
    
    .about__arrow-left,
    .about__arrow-right {
        display: block;
        margin-top: 43px;
    }
}

@media screen and (min-width: 639px) and (max-width: 800px) {
    .about-img-2-3 {
        display: none;
    }
}