* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

/* FUNCTIONS */

/* Shine */
.shine figure {
    position: relative;
}

.shine figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.shine figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* GROW */

.grow img {
    transition: 0.2s ease;
}

.grow img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.3s ease;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: hsla(210, 4%, 9%, 1);
}

::-webkit-scrollbar-thumb {
    background: #e3c38c;
    border-radius: 10px;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 40px;
    width: 100%;
    font-family: 'Forum';
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    /* background-color: rgb(21, 22, 22); */
    font-weight: 100;
    border-bottom: 0.5px solid #e3c38c;
    z-index: 1000;
}

.headerimgs {
    height: 20px;
    width: 20px;
}

.header>.addressheader,
.timeheader,
.callheader,
.emailheader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.addressheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

.timeheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

.callheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

.emailheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

@media screen and (max-width: 1200px) {
    .header {
        display: none;
    }
}

/* NAVBAR */

.nav {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    /* background-color: rgb(21, 22, 22); */
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar-position-left {
    width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-position-middle {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.navbar-position-right {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 30px 0 0;
}

.navlogo {
    height: 100px;
    padding: 10px 30px;
    cursor: pointer;
}

.navul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navli {
    margin: 0 20px;
}

.navli>a {
    padding: 6px 0px;
    color: #fff;
    font-family: 'DM Sans';
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
}

.navli>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #e3c38c;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navli>a:hover {
    color: #e3c38c;
}

.navli>a:hover::after {
    width: 100%;
    left: 0;
}

.nav-button {
    /* background-color: rgb(21, 22, 22); */
    background-color: rgb(189 188 188 / 10%);
    backdrop-filter: blur(25px);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 15px 32px;
    margin: 0 20px 0 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 12rem;
}

.nav-button:hover {
    background-color: #e3c38c;
    color: #000000;
}

.toggle-btn {
    background-color: rgb(189 188 188 / 10%);
    backdrop-filter: blur(25px);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 10px 20px;
    margin: 0 20px 0 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-btn:hover {
    background-color: #e3c38c;
    color: #000000;
}

.navbar-toggle {
    display: none;
}

.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.hamburger {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .nav {
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(25px);
        border-bottom: #e3c38c 1px solid;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .navul {
        display: none;
    }

    .navbar-toggle {
        display: block;
        transition: all 0.8s ease-in-out;
    }

    .navbar-overlay.active {
        display: block;
        transition: all 0.8s ease-in-out;
    }

    .navul.active {
        display: block;
        position: absolute;
        background-color: #333;
        top: 100px;
        left: 0;
        width: 100%;
        padding: 10px;
        transition: all 0.8s ease-in-out;
    }

    .navul.active li {
        margin-bottom: 10px;
        transition: all 0.8s ease-in-out;
    }


    .navbar-toggle {
        margin-right: 20px;
    }

    .navbar-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: block;
    }

    .navlogo {
        display: none;
    }

    .nav-button {
        background-color: rgb(189 188 188 / 10%);
        backdrop-filter: blur(25px);
        border: 1px solid #e3c38c;
        color: #e3c38c;
        width: 100px;
        padding: 13px 0px;
        margin: 0 0px 0 0;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 13px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .nav-button:hover {
        background-color: #e3c38c;
        color: #000000;
    }

    .navbar-position-right {
        width: auto;
        margin-right: 10vw;
    }

    .hamburger {
        display: block;
    }
}

/* 1ST PART */

.firstpart {
    background-image: url(resources/images/1st\ part\ background.png);
    width: 100%;
    height: 1000px;
    background-size: cover;
}

.firstpart>h1 {
    font-family: 'Forum';
    color: #fff;
    font-size: 120px;
    font-weight: 100;
    text-align: center;
    padding-top: 335px;
}

.firstpart>h2 {
    font-family: 'DM Sans';
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    padding-top: 20px;
}

@media screen and (max-width: 1200px) {
    .firstpart>h1 {
        font-size: 45px;
        font-weight: 100;
    }

    .firstpart>h2 {
        font-size: 10px;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .firstpart {
        height: 700px;
    }
}

/* 2ND PART */

.secondpart-container {
    background-image: url(resources/images/2nd\ part\ backgroun\ d\ image.png);
    width: 100%;
    height: 350px;
    background: cover;
}

.secondpart-toppart {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 85px 0 85px 0;
}

.specialunderline {
    margin: 10px 0 10px 0;
}

.specialunderline>img {
    height: 18px;
    width: 100px;
}

.smallheading {
    color: #e3c38c;
    font-family: 'DM Sans';
    font-size: 10px;
    font-weight: bolder;
    letter-spacing: 0.4em;
}

.bigheading {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}

.bigheading>h1 {
    font-family: 'Forum';
    font-weight: 100;
    font-size: 90px;
    color: #fff;
}

.bigheading>p {
    font-size: 25px;
    font-family: 'DM Sans';
    text-align: center;
    color: #fff;
}

.secondpart-bottompart-style {
    display: flex;
    flex-direction: column;
}

.secondpart-bottompart-style>h1:hover {
    color: #e3c38c;
    transition: 0.3s;
}

.secondpart-bottompart-style>img {
    height: 401px;
}

.secondpart-bottompart-style>h1 {
    text-align: center;
    margin: 20px 0 0 0;
    color: #fff;
    font-family: 'Forum';
    font-weight: 100;
    font-size: 40px;
    cursor: pointer;
}

.secondpart-bottompart {
    height: 730px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secondpart-bottompart-left {
    width: 37.5%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 50px 260px 0;
}

.secondpart-bottompart-left>img {
    height: 401px;
}

.secondpart-bottompart-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
    margin-bottom: 40px;
}

.secondpart-bottompart-middle>img {
    height: 401px;
}

.secondpart-bottompart-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 37.5%;
    height: 100%;
    padding: 0 0 260px 50px;
}

.secondpart-bottompart-right>img {
    height: 401px;
}

@media screen and (max-width: 1200px) {
    .secondpart-toppart .smallheading {
        font-size: 10px;
        font-weight: bolder;
        letter-spacing: 0.4em;
    }

    .secondpart-toppart .bigheading>h1 {
        font-size: 45px;
    }

    .secondpart-toppart .bigheading>p {
        font-size: 14px;
        font-weight: 200;
    }

    .secondpart-container {
        height: auto;
    }

    .secondpart-bottompart {
        height: fit-content;
        flex-direction: column;
    }

    .secondpart-bottompart-left,
    .secondpart-bottompart-middle,
    .secondpart-bottompart-right {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .secondpart-bottompart-left,
    .secondpart-bottompart-right {
        padding: 0;
        margin-bottom: 20px;
    }

    .secondpart-bottompart-left>img,
    .secondpart-bottompart-middle>img,
    .secondpart-bottompart-right>img {
        height: auto;
        width: 80%;
    }
}


/* 3RD PART */

.third {
    height: 120vh;
    width: 100%;
    background-color: rgb(14, 13, 12);

}

.third-left {
    height: 120vh;
    width: 50%;
    float: left;
    display: flex;
}

.third-left img {
    height: 120vh;
    width: 100%;
}

.third-right {
    height: 120vh;
    width: 50%;
    float: right;
    display: flex;

}

.badgepic {
    width: 60px;
    margin-top: 30vh;
    margin-left: 5vw;
}

.badgepic img {
    height: 40px;
    width: 30px;

}

.right-box {
    background-color: rgb(14, 13, 12);
    margin: 30vh 0;
    width: 30vw;
}

.right-box p {
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 0.4em;
    font-family: 'DM Sans';
    color: #e3c38c;
}

.right-box img {
    margin-top: 12px;
}

.right-box h3 {
    font-family: Forum;
    font-size: 8vh;
    margin-top: 3vh;
    margin-right: 1.5vh;
    color: white;
    font-weight: 300;
}

.right-box h4 {
    color: white;
    font-family: 'DM Sans';
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    margin-top: 3vh;
    line-height: 2em;
}

.price {
    margin-top: 4vh;
}

.price h5 {
    font-family: 'DM Sans';
    color: #e3c38c;
    font-size: larger;

    font-weight: 300;
    color: rgb(89, 87, 84);
}

.price h2 {
    font-family: 'DM Sans';
    color: #e3c38c;
    font-weight: 300;
}

.button-new {
    background-color: rgb(14, 13, 12);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 54px 2px 0 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-new:hover {
    background-color: #e3c38c;
    color: #000000;
}

@media screen and (max-width: 1200px) {
    .third {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: fit-content;
    }

    .third-left {
        width: 100%;
        height: fit-content;
    }

    .third-left>img {
        max-width: 100%;
        height: auto;
    }

    .badgepic {
        display: none;
    }

    .third-right {
        width: 100%;
        height: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .right-box {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .right-container>p {
        font-size: 10px;
        text-align: center;
    }

    .right-container>h3 {
        font-size: 45px;
        text-align: center;
    }

    .right-container>h4 {
        font-size: 14px;
        text-align: center;
    }

    .price>h5 {
        text-align: center;
    }
}


/* 4TH PART */

.fourthpart {
    height: 970px;
    width: 100%;
    background-image: url(resources/images/5th\ part\ background\ image.png);
    background-size: cover;
    padding-top: 150px;
}

.fourthpart-container {
    height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 0 7.8125vw;
}

.about-text {
    height: 800px;
    width: 30vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about-text h5 {
    color: #e3c38c;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 0.4em;
    font-family: 'DM Sans';
}

.about-text-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.about-text h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Forum';
    font-size: 58.4px;
    margin-top: 4vh;
    margin-right: 1.5vh;
    color: white;
    font-weight: 300;
}

.about-text p {
    color: white;
    font-family: 'DM Sans';
    font-size: 16px;
    font-weight: 300;
    margin-top: 15px;
    line-height: 2em;
}

.about-text h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: bolder;
    font-family: 'DM Sans';
    margin-top: 28px;
}

.about-text h3 {
    font-size: 24px;
    color: #e3c38c;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 300;
    font-family: 'DM Sans';
}

.about-text-btn {
    margin-top: 28px;
}

.about-banner-button {
    background-color: hsla(210, 4%, 9%, 1);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 54px 2px 0 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-banner-button:hover {
    background-color: #e3c38c;
    color: #000000;
}

.about-banner>img {
    width: 700px;
}

.about-banner {
    height: 700px;
}

@media screen and (max-width: 1200px) {
    .fourthpart {
        height: fit-content;
        padding: 0 0 0 0;
    }

    .fourthpart-container {
        margin: 0 0 0 0;
        padding: 0px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: fit-content;
        gap: 0;
    }

    .about-text {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .about-banner {
        width: 100%;
        height: fit-content;
    }

    .about-banner>img {
        max-width: 100%;
        height: auto;
        padding: 20px;
    }

    .about-text>h5 {
        font-size: 10px;
        text-align: center;
    }

    .about-text>h2 {
        font-size: 45px;
        text-align: center;
    }

    .about-text>p {
        font-size: 14px;
        text-align: center;
    }

}


/* 5TH PART */

.fifthpart {
    height: 969px;
    width: 100%;
    background-image: url(resources/images/5th\ part\ background\ image.png);
    background-size: cover;
    padding: 10vh 0 0 0;
}

.fifthpart-container {
    height: 863px;
    width: 80%;
    padding-inline: 20px;
    margin: 0 10vw;

}

.fifthpart-container p {
    color: #e3c38c;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 0.4em;
    font-family: 'DM Sans';
}

.fifthpart-container-img {
    margin-top: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.fifthpart-container h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Forum';
    font-size: 58.4px;
    margin-top: 3vh;
    color: white;
    font-weight: 300;
}

.grid-part {
    height: 500px;
    gap: 5vw;

    display: flex;

}

.grid-part-left {

    height: 500px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.grid-part-right {

    height: 500px;
    width: 50%;
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
}

.grid-part-card {
    height: 111px;
    width: 100%;

    display: flex;
}

.grid-part-img {
    width: 23%;
    height: 111px;
    justify-content: center;
    display: flex;

}

.grid-part-content {
    width: 75%;
    height: 111px;
}

.grid-part-content>h6 {
    font-family: 'DM Sans';
    padding: 0 0 0 5px;
}

.content-part {
    display: flex;
    height: 50%;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 5px;
}

.content-text {
    font-family: 'Forum';
    font-size: 24px;
}

.content-prize {
    font-family: 'Forum';
    font-size: 24px;
    color: #e3c38c;
}

.grid-part-content h6 {
    font-size: 14px;
    font-weight: 300;
    height: 50%;
    color: rgb(123, 115, 115);
}

.fifthpart-container h3 {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans';
    margin-top: 40px;
    font-weight: 400;
}

.fifthpart-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fifthpart-button {
    background-color: rgb(22, 23, 24);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 54px 2px 0 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fifthpart-button:hover {
    background-color: #e3c38c;
    color: #000000;
}

@media screen and (max-width: 1200px) {
    .fifthpart {
        height: 1600px;
    }

    .fifthpart-container {
        height: auto;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .fifthpart-container>p {
        font-size: 10px;
        text-align: center;
    }

    .fifthpart-container>h2 {
        font-size: 45px;
        text-align: center;
    }

    .grid-part {
        height: auto;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
        gap: 70px;
    }

    .grid-part-left {
        width: 100%;
    }

    .grid-part-right {
        width: 100%;
    }

    .grid-part-img {
        margin: 15px;
    }
}

/* 6TH PART */

.sixthpart-container {
    background-image: url(resources/images/2nd\ part\ backgroun\ d\ image.png);
    width: 100%;
    height: 1080px;
    background-size: cover;
}

.sixthpart-toppart {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specialunderline {
    margin: 10px 0 10px 0;
}

.specialunderline>img {
    height: 18px;
    width: 100px;
}

.smallheading {
    color: #e3c38c;
    font-family: 'DM Sans';
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 0.4em;
}

.bigheading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}

.bigheading>h1 {
    font-family: 'Forum';
    font-weight: 100;
    font-size: 90px;
    color: #fff;
}

.bigheading>p {
    font-size: 25px;
    font-family: 'DM Sans';
    text-align: center;
    color: #fff;
}

.sixthpart-bottompart-style>img {
    height: 500px;
    width: 390.2px;
}

.sixthpart-bottompart {
    height: 730px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sixthpart-bottompart-left {
    width: 37.5%;
    height: 100%;
    width: 32.4vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 150px;
}

.sixthpart-bottompart-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100%;
    width: 28.4vw;
    margin-bottom: 150px;
    flex-direction: column;
    margin-top: 105px;
}

.sixthpart-bottompart-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 37.5%;
    width: 32.4vw;
    height: 100%;
    margin-bottom: 150px;
}

.sixthpart-button {
    background-color: rgb(33, 31, 29);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 54px 2px 0 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sixthpart-button:hover {
    background-color: #e3c38c;
    color: #000000;
}

@media screen and (max-width: 1200px) {
    .smallheading {
        font-size: 10px;
    }

    .bigheading>h1 {
        font-size: 45px;
    }

    .sixthpart-container {
        height: 1300px;
    }

    .sixthpart-toppart {
        height: 200px;
    }

    .sixthpart-bottompart {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 1000px;
        margin: 0;
        padding: 0;
    }

    .sixthpart-bottompart-left {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .sixthpart-bottompart-middle {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .sixthpart-bottompart-right {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .sixthpart-bottompart-style {
        padding: 0;
        margin: 0;
    }

    .sixthpart-bottompart-style>img {
        /* display: flex;
        justify-content: center;
        align-items: center; */
        padding: 0;
        margin: 0;
        height: 300px;
        width: 230px;
    }

    .sixthpart-bottompart-style {
        padding: 0;
        margin: 0;
    }

    .sixthpart-button {
        display: none;
    }
}

/* 7TH-PART */

.seventhpart-container {
    width: 100%;
    height: 1600px;
    background-image: url(resources/images/5th\ part\ background\ image.png);
    background-size: cover;
}

.seventhpart-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 0 0 0;
}

.seventhpart-heading>h1 {
    font-family: 'Forum';
    font-size: 70px;
    font-weight: 100;
    color: #fff;
    text-align: center;
    padding: 20px 0 70px 0;
}

.seventhpart-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 10px 0 10px 0;
}

.grid-item>img {
    width: 350px;
    height: 350px;
}

@media screen and (max-width: 1200px) {
    .seventhpart-heading {
        padding-top: 70px;
    }

    .seventhpart-heading>p {
        font-size: 10px;
    }

    .seventhpart-heading>h1 {
        font-size: 45px;
    }

    .seventhpart-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 10px 0 0 0;
        flex-wrap: wrap;
    }

    .grid-item {
        flex-grow: 1;
        max-width: calc((100% - 50px) / 3);
    }

    .grid-item img {
        width: 100%;
        height: auto;
    }

    .seventhpart-container {
        height: auto;
        padding: 0 20px 80px 20px;
    }
}

/* FOOTER */

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background-color: rgb(37, 37, 37);
    font-family: 'DM Sans';
    color: #fff;
}

.footer-left,
.footer-right {
    flex: 1;
    max-width: 20%;
    text-align: center;
    padding: 0 15px;
}

.footer-middle {
    flex: 1;
    max-width: 60%;
    text-align: start;
    padding: 0 15px;
}

.footer-middle ul {
    list-style-type: none;
}

.footer-left img {
    height: 4.8vw;
}

.footer-left p {
    color: #929292;
    padding: 10px 0 0 0;
    margin-top: 10px;
    border-top: #929292 1px solid;
}

.footer-right {
    text-align: start;
}

.footer-right>ul {
    list-style-type: none;
    padding: 0;
}

.footer-right>ul>li {
    margin-bottom: 5px;
}

.footer-right>ul>li>a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.footer-right>ul>li>a:hover {
    color: #e3c38c;
    transition: 0.2s ease-in-out;
}

.footer-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    display: block;
    padding: 5px 0;
}

.footer-nav li a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: block;
}

.footer-middle h2,
.footer-right h2 {
    border-bottom: #e3c38c 5px double;
    width: auto;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
    }

    .footer-left,
    .footer-right,
    .footer-middle {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-left img {
        height: 70px;
    }

    .social-icons {
        display: none;
    }

    .checkout-logo {
        display: none;
    }

    .checkout-section>h1 {
        font-size: 30px;
    }

    .cart-section>h2 {
        font-size: 30px;
    }

    .navbar {
        justify-content: center;
        padding-right: 80px;
    }

    .footer-left {
        text-align: left;
    }
}

/* SCROLL TO TOP BUTTON */

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    background-color: #e3c38c;
    color: #000000;
    border: #e3c38c 1px solid;
    font-size: xx-large;
    transform: rotate(45deg);
    border-radius: 3px;
    transition: 0.3s ease-in-out;
    height: 50px;
    width: 50px;
}

#scrollToTopBtn>p {
    transform: rotate(-45deg);
}

#scrollToTopBtn:hover {
    background-color: #000000;
    color: #e3c38c;
    transition: 0.3s ease-in-out;
}

/* LOGIN/SIGNUP PAGE */

.container {
    max-width: 400px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.login-heading {
    text-align: center;
}

.mainform {
    margin-top: 20px;
}

.label-style {
    display: block;
    margin-bottom: 10px;
    margin-top: 5px;
}

.login-submit-button {
    width: 100%;
    background-color: #e3c38c;
    color: rgb(36, 36, 38);
    padding: 10px 10px;
    border: 1px solid #e3c38c;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.login-submit-button:hover {
    background-color: rgb(36, 36, 38);
    color: #e3c38c;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: #e3c38c;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.nodisplay {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: rgb(37, 37, 37);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 58rem;
    color: #fff;
}

.logo-login {
    margin-bottom: 10px;
    padding: 0 0 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-login>img {
    height: 110px;
}

.popup>h2 {
    font-family: 'Forum';
    font-weight: 100;
    font-size: 40px;
    border-bottom: #e3c38c 5px double;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
}

.login-heading {
    margin-bottom: 20px;
}

.mainform {
    display: flex;
    flex-direction: column;
}

.form-textbox {
    width: 100%;
    padding: 5px;
    margin-bottom: 20px;
    background-color: rgb(40, 40, 41);
    outline: none;
    border: 1px solid #e3c38c;
    color: #fff;
    border-radius: 0px;
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 15px;
}

.login-link>p {
    font-family: 'DM Sans';
}
