@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bungee+Outline&family=Montserrat:wght@400;700&display=swap');

/* General styles */

body {
    background-color: #A03333;
    background-image: url(../images/rectangle-background-1.png), url(../images/rectangle-background-2.png), url(../images/rectangle-background-3.png);
    background-repeat: no-repeat;
    height: 756px;
    background-size: contain;
    background-position: right;
}

/* Header styles */

.header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
    padding: 1.5rem 8rem;
}

.quick-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-family: 'Bebas Neue', sans-serif;
}

.quick-navigation li {
    position: relative;
}

.quick-navigation li::before {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.quick-navigation li:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.quick-navigation li::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background: #222222;
    z-index: -1;
    transition: transform .3s ease
}

.quick-navigation li:last-child::before {
    background: transparent;
}

.quick-navigation .btn {
    background: #222222;
    text-align: center;
    padding: 0.8rem 3rem;
    clip-path: polygon(80% 0%, 100% 40%, 100% 100%, 0 100%, 0 0);
}

.quick-navigation .btn:hover {
    opacity: 50%;
}

/* Main styles */

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.introduction {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8rem;
}

.introduction .title {
    font-family: 'Bungee Outline', cursive;
    color: #fff;
    font-size: clamp(5rem,4vw,8.2rem);
    font-weight: 400;
    line-height: 12rem;
}

.introduction .title span {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem,4vw,12rem);
}

.introduction .text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3.6rem;
}

.introduction .start-btn {
    background-color: #222222;
    clip-path: polygon(80% 0%, 100% 40%, 100% 100%, 0 100%, 0 0);
    width: 600px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    text-transform: uppercase;
    text-align: center;
    padding: 0.8rem;
}

.introduction .start-btn:hover {
    opacity: 90%;
}

.introduction .start-btn::after {
    content: url(../images/Arrow.svg);
    margin-left: 1.5rem;
}

.introduction .image-area {
    display: flex;
    margin-right: 12rem;
}

/*  Message bar */

.pass-through-bar {
    background-color: #222;
    height: 5.6rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-container {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    animation: moveTheText 10s infinite linear;
}

.text-container p {
    margin-right: 13.5rem;
    display: inline-block;
    font-size: 3.2rem;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
}

.pass-through-bar p:not(:last-child)::after {
    content: url(../images/gym-icon.png);
    position: absolute;
    margin-left: 4.5rem;
    bottom: -1rem;
}

@keyframes moveTheText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Services Section */

.services-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #A03333;
}

.services-area h1 {
    font-family: 'Bungee Outline', cursive;
    font-weight: 400;
    font-size: 6.2rem;
    color: #fff;
    padding-top: 18rem;
    padding-bottom: 11.6rem;
}

.services-area h1 span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8.2rem;
}

.services-area .services {
    display: flex;
    padding-bottom: 15rem;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 320px;
    height: 346px;
    padding: 2.4rem;
}

.service:hover {
    background-color: #222;
    transition: 0.3s ease-in-out;
}

.service img {
    width: 7.7rem;
    padding-bottom: 1rem;
}

.service .title-service {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    padding-bottom: 1.1rem;
    color: #fff;
}

.service .about {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    padding-bottom: 2.7rem;
    color: #fff;
}

.service .btn-service {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    clip-path: polygon(80% 0%, 100% 40%, 100% 100%, 0 100%, 0 0);
    width: 187px;
    height: 54px;
    background-color: #222222;
    position: relative;
}

.btn-service.one {
    padding: 0.8rem 1.5rem;
}

.btn-service.two {
    padding: 0.8rem 8.7rem 0.8rem 1.5rem;
}

.btn-service.three {
    padding: 1.6rem 7.7rem 1.6rem 1rem;
    font-size: 1.8rem;
}

.btn-service.four {
    padding: 0.8rem 10.2rem 0.8rem 1.5rem;
}

.btn-service::after {
    position: absolute;
    content: url(../images/Arrow.svg);
    left: 12rem;
    bottom: 1rem;
}

.service .btn-service:hover {
    transition: 0.3s ease-in-out;
    background-image: url(../images/rectangle.svg);
}

/* Plans section */

.plans-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 10rem;
    background-color: #222;
}

.plans-area h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8.2rem;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding-bottom: 10rem;
}

.plans-area .plans {
    display: flex;
    gap: 4.1rem;
}

.plans-area .plan {
    width: 39.9rem;
    background-color: #000;
    height: 32.2rem;
    position: relative;
}

.plans-area .plan.user-recommendation {
    background-color: #FF0202;
}

.plan .plan-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.2rem;
    color: #fff;
    padding: 1rem 2rem;
}

.plan .price {
    padding: 1.5rem 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #B4B4B4;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    color: #787878;
}

.plan .price span {
    font-weight: 700;
    color: #fff;
}

.plan .price .btn {
    text-transform: uppercase;
    color: #787878;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    border: 1px solid #787878;
    padding: 1.4rem 0.7rem;
    background: rgba(217, 217, 217, 0.00);
    transition: 0.3s;
}

.plan .price .btn:hover {
    color: #FF0202;
    border-color: #FF0202;
}

.user-recommendation-label {
    position: absolute;
    width: 100%;
    top: -4rem;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #FF0202;
    height: 4rem;
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Section */

.more-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-image: url(../images/rectangle-background-4.png), url(../images/rectangle-background-5.png), url(../images/rectangle-background-6.png);
    background-repeat: no-repeat;
    background-size: contain;
    gap: 3.2rem;
}

.more-about .image {
    padding-top: 7.6rem;
    padding-left: 8rem;
    height: 658px;
}

.more-about .text .title {
    font-size: 6.2rem;
    font-family: 'Bungee Outline', cursive;
    font-weight: 400;
    color: #fff;
}

.more-about .text .title span {
    display: flex;
    flex-direction: column;
    font-size: 8.2rem;
    font-family: 'Bebas Neue', sans-serif;
}

.more-about .text .description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #fff;
}

.more-about .gym-numbers {
    display: flex;
    justify-content: left;
    padding-top: 7rem;
    gap: 5rem;
}

.more-about .gym-numbers .numbers {
    font-size: 6.2rem;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
}

.more-about .gym-numbers .about {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #fff;
}

/* Contact Section */

.contact-area {
    width: 100%;
    padding-left: 8rem;
    height: 467px;
    background-color: #1E1E1E;
    position: relative;
}

.contact-area .text {
    padding-top: 7rem;
}

.contact-area .text p:first-child {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8.2rem;
    color: #fff;
}

.contact-area .text p:last-child {
    font-size: 2.4rem;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.contact-area .form-area {
    display: flex;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.contact-area .form-area input {
    border: 1px solid #FFFFFF;
    background-color: transparent;
    clip-path: polygon(80% 0%, 100% 40%, 100% 100%, 0 100%,);
    width: 234px;
    height: 42px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 1rem 1.8rem;
}

.contact-area .form-area input::placeholder {
    font-size: 18px;
    color: #fff;
}

.contact-area .contact-btn {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    border: none;
    background-image: url(../images/rectangle-22.png);
    width: 234px;
    height: 42px;
}

.contact-area .contact-btn:hover {
    opacity: 90%;
}

.contact-area img {
    position: absolute;
    left: 80rem;
    top: -15rem;
}

/* footer section */

footer {
    height: 150px;
}