:root {
    --main-color: #000000;
    --secondary-color: #b30127;
    --forth-color: #F5F5F5;
    font-family: "Righteous", sans-serif;
    font-style: normal;
    --fifth-color: #d2d696e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    width: 100vw;
    height: 100vh;
    /* scrollbar-width: none; */
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
}

/* ============ header section ============ */

header {
    width: 100%;
    height: 10%;
}

.header-container {
    width: 100%;
    background-color: #ffffff;
}

/* ============ top-header ============ */

.top-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1.3px rgba(105, 105, 105, 0.524) solid;
    padding: 2.6px;
    padding-left: 30px;
    padding-right: 30px;
}

.left-header-list,
.right-header-list {
    color: dimgray;
    font-weight: 100;
    font-size: small;
}

.social {
    color: var(--main-color);

}

.social:hover {
    transform: rotateY(180deg);
    color: #b30127;
    cursor: pointer;
}

.left-header-list,
.right-header-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.left-header-list {
    margin-left: 70px;
}

.right-header-list {
    margin-right: 70px;
}

.left-header-list>li::before,
.right-header-list>li::before {
    content: "";
    width: 2px;
    height: 13px;
    background-color: #b30127;
    display: inline-block;
    margin-right: 3px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease-in-out;
}

.left-header-list:hover,
.right-header-list:hover {
    cursor: pointer;
}

.left-header-list li:hover::before,
.right-header-list li:hover::before {
    transform: scaleY(1);
}

.left-header-list>li::after,
.right-header-list>li::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 13px;
    background-color: #b30127;
    margin-left: 3px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease-in-out;
}

.left-header-list li:hover::after,
.right-header-list li:hover::after {
    transform: scaleY(1);
}

/* ============ top-header ============ */



/* ============ nav ============ */

nav {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.logo-partition {
    display: flex;
    gap: 10px;
}

.logo-partition i {
    color: #bb0327;
}

.logo-partition h3 span {
    color: #0000009c;
}

.logo-partition h3 {
    word-spacing: 2px;
    letter-spacing: 1px;
}

.nav-list>ul,
.right-nav-list-icons>ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
}

/* ========== To repeat and To Learn ========== */
.nav-list>ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list>ul>li {
    position: relative;
}

.nav-list>ul>li>a.main-nav-list {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    color: var(--main-color);
    text-decoration: none;
    font-size: small;
}


.nav-list>ul>li>a.main-nav-list::before,
.nav-list>ul>li>a.main-nav-list::after,
.nav-list>ul>li::before,
.nav-list>ul>li::after {

    content: "";
    position: absolute;
    background-color: #b30127;
    transition: transform 0.5s ease-in-out;
    z-index: 1;
}


.nav-list li::before {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
}

.nav-list li::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    /* or bottom */
}


.nav-list li a.main-nav-list::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
}

.nav-list li a.main-nav-list::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    /* or right*/
}


.nav-list li:hover::before,
.nav-list li:hover::after {
    transform: scaleY(1);
}

.nav-list li:hover a.main-nav-list::before,
.nav-list li:hover a.main-nav-list::after {
    transform: scaleX(1);
}


/* ========== dropdown list of Services in nav ========== */

div.dropdown-list {
    /* display: none; */
    visibility: hidden;
    position: absolute;
    top: 38px;
    left: -40px;
    width: 0px;
    height: 0px;
    background-color: var(--forth-color);
    z-index: 2;
    border: .4px solid #c7c7c7;
    border-radius: 12px;
    font-size: small;
}

.dropdown:hover div.dropdown-list {
    display: flex;
    visibility: visible;
    opacity: 1;
    transition: transform 1s ease-in-out;
    position: absolute;
    width: 250px;
    height: auto;

    animation-name: dropdown;
    animation-duration: 1.7s;
}

@keyframes dropdown {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        width: 250px;
        height: auto;
        transition: transform 1s ease-in-out;
        transform: scaleZ(1);
    }
}

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

.dropdown-list>ul {
    margin: 15px;
}

.dropdown-list>ul>li {
    padding: 5px 0;
}

.dropdown-list>ul>li>div.line1 {
    width: 50px;
}

.dropdown-list>ul>li>div.line2 {
    width: 63px;
}

.dropdown-list>ul>li>div.line1,
.dropdown-list>ul>li>div.line2 {
    height: .5px;
    background-color: gray;
    margin-top: 4px;
}

.dropdown-list>ul>li:hover {
    color: #b30127;
    transform: scale(1.2);
}

.dropdown-list>ul :first-child {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    color: gray;
}

/* ========== dropdown list of Services in nav ========== */


.main-logo-icons {
    font-size: x-large;
}

.right-nav-list-icons li {
    position: relative;
}

.item-count-cart {
    position: absolute;
    background-color: #b30127;
    color: #ffffff;
    width: 90%;
    height: 90%;
    transform: translate(2px, -32px);
    border-radius: 50%;
    text-align: center;
    font-size: medium;
}

.right-nav-list-icons ul li:hover {
    color: #bb0327;
    cursor: pointer;
}

.cart:hover .item-count-cart {
    cursor: pointer;
    transform: translate(2px, -36px);
}

/* ============ nav ============ */

/* ============ bottom-header banner ============ */

.bottom-header {
    background-color: var(--forth-color);
    text-align: center;
    padding: 5px;
    position: absolute;
    top: 10px;
    width: 100%;
    font-size: small;
    word-spacing: 2px;
}

.bottom-header p a {
    text-decoration: underline;
    color: #bb0327;
}

.bottom-header p a:hover {
    letter-spacing: 1px;
    transition: .5s;
}

/* ============ bottom-header banner ============ */
/* ============ header section ============ */



/* ============ main section ============ */

main {
    width: 100%;
    height: 91%;
    position: relative;
    background-color: #fcf3ef45;
    /* background-image: url(../img/theBest.jpg);
    background-size: cover;
    background-position: 70% 10%;
    background-attachment: fixed;
    opacity: .9; */
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.content {
    width: 500px;
    text-align: center;
    position: relative;
    top: 100px;
    left: 170px;
    transform: translate(40px, 10px);
}

.content h2 {
    transform: translate(0, -50px);
    font-family: "Playwrite US Modern", cursive;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    color: #f4202d;

}

.content h1 {
    transform: translate(0, -20px);
    font-family: "Righteous", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.content p {
    font-family: "Righteous", sans-serif;
    font-weight: 100;
    font-size: small;
    font-style: normal;
    /* color: dimgray; */
    opacity: 0.5;
}

.img-section {
    width: 45%;
    height: 100%;
}

.img-section img {
    height: 100%;
    width: 90%;
    background-size: cover;
    filter: drop-shadow(-110px -1.9px 4px rgba(128, 128, 128, 0.445));
    transform: translate(120px, 50px);
}

.content button {
    padding: 20px 25px;
    margin: 30px;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    border: none;
    color: white;
    font-size: medium;
    cursor: pointer;
    transition: 0.3s ease;
}

.content button:hover {
    background-color: #f0eeee;
    color: var(--secondary-color);
    border: .3px solid var(--main-color);
}

/* ============ main section ============ */



/* ============ gym areas section ============ */

.gym-areas {
    background-color: var(--main-color);
    background-color: var(--forth-color);
}

.gym-areas-container {
    width: 90%;
    height: 490px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* background-color: #587bdd; */
}

.room-showcase {
    width: 550px;
    height: 400px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}


.room-showcase>img {
    width: 100%;
    height: 100%;
}

.room-showcase:hover>img {
    transform: scale(1.1, 1.1);
    transition: 1.3s;
    position: absolute;
}

.room-showcase:hover>.room-overlay {
    transform: translate(0, -70px);
    transition: 1.3s ease-in-out;
}

.room-showcase:hover>.room-overlay>.gym-areas-Details {
    display: block;
    transition: 0.3s ease-in-out;
}

.room-overlay>.gym-areas-title {
    color: var(--forth-color);
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.room-overlay-gradient {
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    /* background-color: #b30127; */
    background: -webkit-linear-gradient(top,
            rgba(179, 1, 39, 0.01),
            rgba(179, 1, 39, 0.05),
            rgba(179, 1, 39, 0.15),
            rgba(179, 1, 39, 0.25),
            rgba(179, 1, 39, 0.5),
            rgba(179, 1, 39, 0.7),
            rgba(179, 1, 39, 0.8),
            rgba(179, 1, 39, 0.9));
}

.room-overlay {
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: -70px;
    text-align: center;
}

.gym-areas-Details {
    /* display: none; */
    color: var(--fifth-color);
    font-weight: 100;
}

.gym-areas-Details:hover {
    /* letter-spacing: 1px; */
    transform: scale(1.09, 1.09);
    transition: 0.3s;
    cursor: pointer;
}

.underline-on-gym-details {
    height: 1px;
    background-color: var(--fifth-color);
    margin-top: 4px;
    margin-left: 40%;
    margin-right: 40%;
}

/* ============ gym areas section ============ */


/* ============ offer this month section ============ */

.offer-this-month {
    background-color: var(--main-color);
    color: var(--forth-color);
    height: 700px;
}

.offer-this-month-container {
    width: 90%;
    height: 100%;
    margin: auto;
    position: relative;
}

.offer-this-month-container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding-top: 70px;
}

.offer-this-month-container-nav>h3 {
    letter-spacing: 3px;
}

.offer-ulList {
    width: 20%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

#second-child-of-ulList {
    color: var(--secondary-color);
    position: relative;
}

#second-child-of-ulList::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 50px;
    height: 3.2px;
    background-color: #b30127;
}

.line {
    width: 100%;
    height: 1px;
    background-color: rgb(199, 199, 199);
    margin-top: 25px;
}

.offer-this-month-secondary-container {
    width: 100%;
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card-container {
    width: 27%;
    height: 500px;
    position: relative;
}

.card-container:hover .title-offer-card,
.card-container:hover>span {
    color: var(--secondary-color);
}

.card-container:hover>span>del {
    color: var(--forth-color);
}

.card {
    width: 100%;
    height: 450px;
    position: absolute;
    cursor: pointer;
    perspective: 700px;
}

.c1 {
    background-image: url(../img/Spa\ &\ Massage-min.png);
    background-size: cover;
    background-position: center 40%;
    opacity: .7;
}

.c4 {
    background-image: url(../img/emsTraining-min.jpg);
    background-size: cover;
    background-position: center 40%;
    opacity: .7;
}

.c2 {
    background-image: url(../img/zumba3-min.jpg);
    background-size: cover;
    background-position: 20% center;
    opacity: .7;
}

.c3 {
    background-image: url(../img/Yoga\ Class\ -min.png);
    background-size: cover;
    background-position: center 40%;
    opacity: .7;
}

.chevron-left {
    position: absolute;
    top: 55%;
    left: -17px;
    font-size: x-large;
    cursor: pointer;
}

.chevron-right {
    position: absolute;
    top: 55%;
    right: -17px;
    font-size: x-large;
    cursor: pointer;
}

.hoverImg2,
.hoverImg4 {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../img/withoutSmile-min.png);
    background-size: cover;
    visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(90deg);
}

.hoverImg1,
.hoverImg3 {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../img/girl_hanteln_mobil-min.png);
    background-size: cover;
    visibility: hidden;
    transform: rotateY(90deg);
    transform-style: preserve-3d;
}

.title-offer-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 50%);
    letter-spacing: 3px;
}

.card-container>span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 50%);
    font-size: small;
}

.card-container>span>del {
    text-decoration: line-through;
    color: #b301289c;
    padding: 5px;
}

.card-container:hover .hoverImg-offer-card {
    visibility: visible;
    transform: rotateY(0deg);
    transition: 0.7s;
    cursor: pointer;
}

.card-icons-container {
    width: 150px;
    height: 40px;
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translate(-50%, 50%);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.7s ease,
        transform 0.7s;
}

.img1,
.img3 {
    background-color: var(--main-color);
}

.img2,
.img4 {
    background-color: #e4d9dabe;
}


.card-container:hover .card-icons-container {
    cursor: pointer;
    opacity: 1;
    transform: translate(-50%, 0%);
    pointer-events: auto;
}

.icon1,
.icon2,
.icon3 {
    width: 50px;
    height: 40px;
    padding-top: 10px;
    text-align: center;
}

.icon1:hover,
.icon2:hover,
.icon3:hover {
    cursor: pointer;
    background-color: #973a3fbe;
    transition: 0.7s;
    color: var(--main-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* ============ offer this month section ============ */



/* ============ User reviews section ============ */

.user-reviews {
    height: 400px;
    background-color: var(--forth-color);
    border-top: 2px solid var(--forth-color);
    border-bottom: 2px solid var(--forth-color);
}

.user-reviews-container {
    width: 70%;
    height: 100%;
    margin: auto;
    padding-top: 20px;
    position: relative;
    color: var(--main-color);
    /* background-color: #b30127; */

}

.user-reviews-content {
    width: 70%;
    height: 300px;
    margin: auto;
    text-align: center;
}

.user-reviews-content>h2 {
    margin: 50px 0;
    font-weight: bolder;
    letter-spacing: 3px;
}

.user-reviews-content>p,
#user-profession {
    font-weight: 100;
    line-height: 20px;
    color: #1a05096c;
}

.user-reviws-user {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
}

.user-details>h5 {
    margin-left: -25px;
}

.user-details {
    margin-left: 10px;
}

.user-reviws-user>img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* ============ User reviews section ============ */


/* ============ Nutrition-Wellnes section ============ */


.Nutrition-Wellnes {
    /* background-color: var(--main-color); */
    color: var(--forth-color);
    height: 800px;
    position: relative;
    display: flex;
    justify-content: center;
}

.Nutrition-Wellnes video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background-size: cover;
    /* opacity: .7; */
}

.vid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.788);
    z-index: -1;
}

.Nutrition-Wellnes>h2 {
    text-align: center;
    padding-top: 98px;
    word-spacing: 10px;
    letter-spacing: 7px;
}

.Nutrition-Wellnes>h2>span {
    color: var(--secondary-color);
}

.Nutrition-Wellnes-container {
    width: 90%;
    height: 100%;
    margin: auto;
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.Nutrition-Wellnes-secondary-container {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card-container {
    width: 27%;
    height: 500px;
    position: relative;
}

.Nutrition-Wellnes>.card-container:hover .title-offer-card,
.card-container:hover>span {
    color: var(--secondary-color);
}

.Nutrition-Wellnes>.card-container:hover>span>del {
    color: var(--forth-color);
}

.card-nw {
    width: 100%;
    height: 450px;
    position: absolute;
    cursor: pointer;
    perspective: 700px;
    overflow: hidden;
}

.n-w-c1 {
    background-image: url(../img/supplements-min.jpg);
    background-size: cover;
    background-position: center 40%;
    opacity: 0.8;
}

.n-w-c2 {
    background-image: url(../img/Nutrition-min.jpg);
    background-size: cover;
    background-position: center 40%;
    opacity: 0.8;
}

.n-w-c3 {
    background-image: url(../img/TrainingPlans-min.png);
    background-size: cover;
    background-position: center 40%;
    opacity: 0.8;
}

.n-w-c4 {
    background-image: url(../img/Drinks-min.jpg);
    background-size: cover;
    background-position: 20% center;
    opacity: 0.8;
}


.Nutrition-Wellnes-chevron-left {
    position: absolute;
    top: 50%;
    left: -17px;
    font-size: x-large;
    cursor: pointer;
}

.Nutrition-Wellnes-chevron-right {
    position: absolute;
    top: 50%;
    right: -17px;
    font-size: x-large;
    cursor: pointer;
}

.Nutrition-Wellnes-hoverImg1,
.Nutrition-Wellnes-hoverImg3 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background-image: url(../img/hover3sec1-min.jpg);
    background-size: cover;
    background-position: center center;
    visibility: hidden;
    transform-style: preserve-3d;
    transform: translateY(-450px);
}

.Nutrition-Wellnes-hoverImg4,
.Nutrition-Wellnes-hoverImg2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background-image: url(../img/hover3sec-min.jpg);
    background-size: cover;
    background-position: center center;
    visibility: hidden;
    transform-style: preserve-3d;
    transform: translateY(-450px);
}

/* ============ Nutrition-Wellnes section ============ */



/* ============ News section ============ */

.news {
    height: 750px;
    background-color: var(--forth-color);
    border-top: 2px solid var(--forth-color);
    border-bottom: 2px solid var(--forth-color);
}

.news-container {
    width: 90%;
    height: 90%;
    margin: auto;
    padding-top: 20px;
    position: relative;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: end;
}

.news-container:hover {
    cursor: pointer;
}

.news-title {
    text-align: center;
    font-weight: bolder;
    letter-spacing: 3px;
    padding: 37px 0;
}

.content-card-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: absolute;
}

.news-card {
    width: 30%;
    height: 90%;
    position: relative;
}

.news-img-container {
    width: 100%;
    height: 70%;
    position: relative;
    overflow: hidden;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.438);
    z-index: 1;
}

.img-container {
    width: 100%;
    height: 100%;
}

.news-img-container:hover {
    transform: scale(1.06, 1.06);
    transition: 0.3s;
}

.news-img-container>img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.n1 {
    background-image: url(../img/kickboxing-min.jpg);
    background-size: cover;
    background-position: center center;
}

.n2 {
    background-image: url(../img/kidsTraining-min.jpg);
    background-size: cover;
    background-position: center 70%;

}

.n3 {
    background-image: url(../img/outsideTraining-min.jpg);
    background-size: cover;
    background-position: center center;
}

.small-text {
    font-size: x-small;
    margin-top: 25px;
    color: rgb(146, 144, 144);
    font-weight: 100;
}

.news-card-title {
    margin: 10px 0;
    font-weight: 100;
}

.news-card:hover h3 {
    cursor: pointer;
    color: var(--secondary-color);
}

.news-card-content {
    margin: 10px 0;
    font-size: small;
    font-weight: 100;
    color: rgb(146, 144, 144);
}

.news-card-link {
    margin: 15px 0;
    font-weight: 100;
    text-decoration: underline;
}

.news-card-link:hover {
    cursor: pointer;
    transform: scale(1.06, 1.06);
    transition: 1s;
}

/* ============ News section ============ */


/* ============ service-highlights section ============ */
.service-highlights {
    height: 300px;
    /* background-color: var(--main-color); */
    background-image: url(../img/MainPic0.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--main-color);
    border-top: 1px solid var(--forth-color);
    border-bottom: 1px solid var(--forth-color);
    color: var(--forth-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.822);
    z-index: 1;
}

.benefits-bar {
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    line-height: 30px;
    font-weight: 100;
}

.icon-container {
    perspective: 700px;
    z-index: 2;
}

.delivery-icons {
    position: relative;
}

.benefits-bar i {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}

.benefits-bar h3 {
    color: var(--secondary-color);
}


.icon-container:hover i,
.icon-container>i:hover {
    cursor: pointer;
    transform-style: preserve-3d;
    transform: translateY(-20px);
    transition: 0.1s;
    opacity: 0;
}

.icon-copy {
    transform: translate(-40px, 35px);
    color: var(--secondary-color);
    visibility: hidden;
    opacity: 1;
}

.icon-container:hover .icon-copy {
    transform: translate(-40px, -4px);
    visibility: visible;
    opacity: 1;
    transition: 0.1s;
}

.serv-icon-container {
    transform: translateX(17px);
}

/* ============ service-highlights section ============ */


/* ============ footer section ============ */

footer {
    width: 100%;
    height: 500px;
    /* background-color: var(--forth-color); */
    background-color: white;
}

.footer-container {
    width: 90%;
    height: 100%;
    margin: auto;
}

.head-footer {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: space-between;
}

.head-footer>#newsletter-subscribe {
    width: 35%;
    position: relative;
}

#newsletter-subscribe>h3,
#newsletter-subscribe>p {
    position: absolute;
}

#newsletter-subscribe>h3 {
    top: 40%;
}

#newsletter-subscribe>p {
    top: 65%;
}

#newsletter-subscribe>p>span {
    color: var(--secondary-color);
}

.head-footer>#email-inp {
    width: 60%;
    position: relative;
}

#email-inp>input {
    width: 65%;
    height: 45px;
    position: absolute;
    left: 10%;
    top: 40%;
    padding-left: 15px;
    box-shadow: 0.5px 0.5px 5px rgba(56, 56, 56, 0.582) inset;
    border: none;
}

#email-inp>button {
    width: 20%;
    height: 45px;
    position: absolute;
    top: 40%;
    left: 76%;
    background-color: #e00434;
    color: var(--forth-color);
    border: none;
    cursor: pointer;
}

#email-inp>button:hover {
    transform: scale(1.09, 1.09);
    transition: 0.6s;
}

.footer-ul-list {
    display: flex;
    width: 15%;
    align-items: center;
    font-size: large;
    margin-top: 25px;
}

.footer-ul-list>ul {
    display: flex;
    margin-left: auto;
    gap: 10px;
}

.footer-social:hover {
    font-size: x-large;
    color: var(--secondary-color);
    transition: 0.7s;
    cursor: pointer;
}

.main-footer {
    width: 100%;
    height: 60%;
    /* background-color: var(--main-color); */
    background-color: var(--forth-color);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color); */
}

.fc1,
.fc2,
.fc3,
.fc4,
.fc5 {
    margin-top: 60px;
}

.fc1>.logo-partition {
    font-size: large;
    font-weight: bold;
}

.fc-content>ul>li {
    font-size: small;
    font-weight: 100;
    color: #0000009c;
}

.fc-content>ul>li:hover {
    text-decoration: underline;
    transform: scale(1.02, 1.02);
    transition: 0.3s;
    cursor: pointer;
}


.fc-content>ul:first-child {
    font-size: medium;
    font-weight: 500;
    margin-bottom: 20px;

    /* color: var(--secondary-color); */
    color: var(--main-color);
}

.fc-content>ul {
    line-height: 30px;
}


.foot-footer {
    width: 100%;
    height: 15%;
    text-align: center;
}

.foot-footer>p {
    margin-top: 25px;
}

.foot-footer>p>i {
    color: var(--secondary-color);
    opacity: 0;

    animation-name: loopHeart;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}


@keyframes loopHeart {
    0% {
        opacity: 0.2s;
    }

    100% {
        opacity: 1;
        transform: scale(1.4, 1.4);
        transition: 0.3s;
        color: #ff053b;
    }
}


#copyright>span {
    color: var(--secondary-color);
}

#copyright>span:hover {
    cursor: pointer;
    text-decoration: underline;
    letter-spacing: 1.3px;

}

/* ============ footer section ============ */