@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --golden: #DFC35E;
    --yellow: #F7EF8A;
    --black: #0A0909;
    --lightBlack: #100E0E;
    --darkGray: #121212;
    --lightGray: #CFC6C6;
    --white: #FFFFFF;
    --light: 200;
    --medium: 300;
    --regular: 400;
    --semiBold: 600;
    --bold: 800;
    --gilda: "Gilda Display", serif;
    --lato: "Lato", sans-serif;
    --satisfy: "Satisfy", cursive;
    --inter: "Inter", sans-serif;
    --poppins: "Poppins", sans-serif;
    --gradientBG: rgb(210, 172, 71);
    --gradient: linear-gradient(90deg, rgba(210, 172, 71, 1) 0%, rgba(210, 172, 71, 1) 27%, rgba(227, 203, 102, 1) 48%, rgba(247, 239, 138, 1) 72%, rgba(174, 134, 37, 1) 100%);
}

.golden {
    color: var(--golden);
}

.gold-text {
    background: -webkit-linear-gradient(90deg, rgba(210, 172, 71, 1) 0%, rgba(210, 172, 71, 1) 27%, rgba(227, 203, 102, 1) 48%, rgba(247, 239, 138, 1) 72%, rgba(174, 134, 37, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--yellow);
    font-weight: var(--semiBold);
}

.width-wrapper {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    min-width: 1000px;
    margin: auto;
}

/* GLOBAL */
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: white;
}

body {
    background-color: var(--black);
}

button {
    all: unset;
    cursor: pointer;
}

/* Header css */

header {
    width: 100%;
    height: 100px;
    background-color: var(--black);
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.header {
    height: 100%;
    max-width: 1250px;
    min-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.menu-logo>img {
    height: auto;
    width: 80%;
}

.menu {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.menu-link:not(:last-of-type) {
    font-size: 13px;
    font-family: var(--lato);
    color: var(--lightGray);
}

.menu-link::after {
    display: block;
    content: " ";
    height: 1px;
    width: 0%;
    background-color: #FFD700;
    transition: 0.3s ease-in-out;
    background: var(--gradientBG);
    background: var(--gradient);
}

.menu-link:hover:not(:last-of-type)::after {
    width: 100%;
}


.menu-link:last-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 220px;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: var(--bold);
    border-image: var(--gradient) 1;
    border-width: 2px;
    border-style: solid;
    margin-left: 15px;
    transition: 0.3s ease-in-out;
}

.menu-link:hover:last-of-type {
    background-color: var(--golden);
    color: var(--lightBlack);
}

/* Hero section */
#hero-section {
    background: var(--gradientBG);
    background-image: var(--gradient);
    height: fit-content;
    padding-top: 100px;
}

.hero-body {
    min-height: 46rem;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hero-text {
    width: 40%;
}

.hero-title {
    font-size: 100px;
    font-family: var(--poppins);
    font-weight: var(--semiBold);
    line-height: 80px;
    margin-bottom: 10px;
}

.hero-text>p {
    font-family: var(--lato);
}

.hero-text>p:first-of-type {
    font-size: 20px;
    font-weight: var(--semiBold);
}

.hero-text>p {
    width: 400px;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: var(--regular);
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.hero-button {
    width: 100%;
    height: 50px;
    border: 1px solid var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-family: var(--poppins);
    font-weight: var(--semiBold);
    transition: 0.3s ease-in-out;
}

.hero-button:first-of-type {
    color: var(--black);
}

.hero-button:last-of-type {
    color: var(--golden);
    background-color: var(--black);
}

.hero-button:last-child>img {
    height: 20px;
    width: 20px;
}

.hero-button:hover {
    color: var(--golden);
    height: 70px;
}

.hero-button:hover:first-of-type {
    background-color: black;
}

.hero-image {
    height: 520px;
    width: auto;
    box-shadow: #000000 30px 20px;
}

/* History section */

.history-wrapper {
    position: relative;
    z-index: 0;
}

#history-section {
    height: fit-content;
    padding: 150px 10px;
}

.history-body {
    height: fit-content;
    background-color: var(--lightBlack);
}

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

.history-text {
    width: 70%;
    padding: 40px;
}

.history-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 80%;
    height: 40px;
    border-radius: 50px;
    color: var(--black);
    font-size: 18px;
    font-weight: var(--semiBold);
    font-family: var(--poppins);
    background: var(--gradientBG);
    background-image: var(--gradient);
    transition: 0.3s ease-in-out;
}

.history-button:hover {
    transform: scale(1.02);
}

.history-button>img {
    height: 20px;
    width: 20px;
}

.history-title {
    font-size: 50px;
    line-height: 50px;
    font-family: var(--poppins);
    margin: 20px 0 20px 0;
}

.history-text>p {
    margin-bottom: 20px;
    font-family: var(--poppins);
    color: var(--lightGray);
    font-size: clamp(18px, 1.5vw, 20px);
}

.history-image {
    height: 800px;
    width: 550px;
}

/* Quote */

.quote-body {
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 45px;
    color: #FFFFFF;
    font-weight: var(--bold);
    font-family: var(--poppins);
    letter-spacing: 2px;
    margin-bottom: 50px;
}

/* About section */

#about {
    height: fit-content;
    padding-top: 100px;
}

.about-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    background: var(--gradientBG);
    background-image: var(--gradient);
    font-size: 50px;
    font-weight: var(--bold);
    font-family: var(--poppins);
}

.about-text>p {
    font-family: var(--poppins);
}

.about.upper {
    min-height: 50rem;
    height: fit-content;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about.upper>.about-text {
    height: 500px;
    width: 500px;
    padding: 25px;
    background-color: var(--darkGray);
}

.about.upper>.about-text>p {
    margin: 40px 0 40px 0;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}

.about-images {
    max-width: 500px;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-images>img {
    height: 300px;
    width: 450px;
    margin-bottom: 20px;
}

.about.lower {
    display: flex;
    justify-content: center;
    height: 50rem;
}


.about.lower>.about-text {
    position: relative;
    height: fit-content;
    width: 500px;
    padding: 30px;
    background-color: var(--darkGray);
    top: 100px;
    right: 50px;
}

.about.lower>.about-text>h2 {
    font-size: 38px;
    font-family: var(--poppins);
    color: white;
}

.about.lower>.about-text>p {
    font-size: 18px;
    color: #FFFFFF;
    margin: 20px 0 20px 0;
}

.about.lower>img {
    position: relative;
    height: 600px;
    width: 450px;
    left: 50px;
}

/* Cooperate banner */

#cooperate-banner {
    background: var(--gradientBG);
    background-image: var(--gradient);
    min-height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 10px;
}

#cooperate-banner>p {
    font-size: clamp(34px, 2.5vw, 45px);
    font-family: var(--poppins);
    font-weight: var(--semiBold);
    text-align: center;
}

#cooperate-banner>a {
    font-size: 50px;
    width: 200px;
    height: 40px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

#cooperate-banner>a:hover {
    padding-left: 12px;
}

#cooperate-banner>a>img {
    width: 20px;
    height: 20px;
}

/* How it works section */

#work {
    height: fit-content;
    padding: 20px;
    padding-top: 100px;
}

.work-title {
    font-size: 70px;
    font-family: var(--poppins);
    color: white;
    font-weight: var(--semiBold);
    text-align: center;
    margin: 40px 0;
}

.work-body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.work-text {
    width: 500px;
}

.work-text>p {
    font-size: 18px;
    color: white;
    font-family: var(--poppins);
    margin-bottom: 20px;
}

.work-image {
    height: auto;
    width: 400px;
}


/* Requirements section */

#requirements {
    min-height: 50rem;
    height: fit-content;
    padding-top: 150px;
}

.requirements-title {
    font-family: var(--poppins);
    padding-left: 30px;
    margin-bottom: 40px;
}

.requirements-title>p {
    font-size: 30px;

}

.requirements-title>h2 {
    color: white;
    font-size: 100px;
    line-height: 95px;
    font-weight: var(--semiBold);
}

.requirements {
    padding-top: 100px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 1;
    padding: 10px;
}

.req {
    width: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-family: var(--poppins);
}

.req>img {
    width: 70px;
    height: 70px;
}

.req>h2 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 30px;
}

.req>p {
    width: 230px;
    font-size: 20px;
    color: #FFFFFF;
}

/* Opinions section */

#opinions {
    height: fit-content;
    padding-top: 150px;
}

.opinions-title {
    font-size: 50px;
    font-family: var(--poppins);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 10px;
}

.opinions-title::after {
    display: block;
    content: '';
    width: 90%;
    height: 1px;
    background-color: #FFFFFF;
}

.opinions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 100px;
}

.opinions>button>img {
    width: 80px;
    height: 80px;
    transition: 0.3s ease-in-out;
}

.opinions>button:hover>img {
    transform: scale(1.1);
}

.opinion>img {
    height: 700px;
    width: 500px;
    position: relative;
}

.opinion>.opinion-right {
    animation: animateOpinionLoadLeft 0.5s forwards;
}

.opinion>.opinion-left {
    animation: animateOpinionLoadRight 0.5s forwards;
}

@keyframes animateOpinionLoadLeft {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animateOpinionLoadRight {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Form section */
.form {
    padding: 150px 0;
    display: flex;
    justify-content: space-around;
}

.form-text {
    width: 400px;
    padding-top: 100px;
}

.form-text>h1 {
    font-size: 96px;
    color: #FFFFFF;
    font-family: var(--poppins);
    line-height: 90px;
}

.form-text>h1>span {
    font-family: var(--satisfy);
}

.form-text>p {
    width: 300px;
    font-family: var(--poppins);
    color: #FFFFFF;
    font-size: 25px;
}

.form-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 400px;
    height: 50px;
    border: 1px solid #FFFFFF;
    margin-top: 20px;
    font-family: var(--poppins);
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.form-button:hover {
    height: 80px;
}

.form-button>img {
    width: 20px;
    height: 20px;
}

.form>img {
    height: 600px;
    width: 450px;
}

/* FOOTER */

.footer {
    height: fit-content;
    background: var(--gradientBG);
    background-image: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.socials>a {
    transition: 0.3s ease-in-out;
}

.socials>a:hover {
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

.footer>img {
    height: 200px;
}


@media screen and (max-width:1050px) {
    .width-wrapper {
        max-width: 100%;
        min-width: 100%;
    }

    .burger-menu {
        display: block;
    }

    .header {
        min-width: 0px;
        width: 100%;
        justify-content: space-between;
    }

    .menu-logo>img {
        height: auto;
        width: 80%;
    }

    .menu {
        background-color: #0a0909fa;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 0px;
        padding-right: 0px;
        left: -2000px;
        transition: 0.3s ease-in-out;
    }

    .menu-link:not(:last-of-type) {
        width: 100%;
        height: 14%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    .menu-link::after {
        display: none;
    }

    .menu-link:last-of-type {
        height: 14%;
        width: 100%;
        font-size: 20px;
        font-family: var(--lato);
        font-weight: var(--regular);
        color: var(--lightGray);
        border: none;
        margin-left: 0px;
    }

    .menu-link:hover:last-of-type {
        background-color: transparent;
        color: var(--lightGray)
    }

    /* Hero section */
    .hero-title {
        font-size: 70px;
        line-height: 65px;
    }

    .hero-text>p {
        width: 320px;
        font-size: 19px;
        margin-bottom: 5px;
    }

    .hero-button {
        font-size: 15px;
    }

    .hero-image {
        height: 450px;
        width: 300px;
        box-shadow: #000000 20px 10px;
    }

    /* History section */
    .history {
        align-items: center;
        flex-direction: column;
        padding: 20px;
    }

    .history-button {
        width: 50%;
    }


    .history-text {
        width: 100%;
        text-align: left;
    }

    .history-button {
        font-size: 15px;
        margin: auto;
    }

    .history-image {
        height: auto;
        width: 60%
    }

    /* Quote */

    .quote-body {
        height: fit-content;
        font-size: 28px;
    }

    /* About section */

    .about-title {
        font-size: 40px;
    }

    .about.upper {
        flex-direction: column;
    }

    .about.upper>.about-text {
        width: 90%;
        height: fit-content;
        text-align: center;
        background-color: transparent;
    }

    .about-images {
        min-width: 70%;
    }

    .about-images>img {
        height: 100%;
        width: 95%;
    }

    .about-images>img:last-of-type {
        display: none;
    }

    /* STOP */


    .about.lower {
        align-items: center;
        flex-direction: column-reverse;
        height: fit-content;
        padding: 150px 10px 10px 10px;
    }


    .about.lower>.about-text {
        position: inherit;
        width: 90%;
        text-align: left;
        background-color: transparent;
    }

    .about.lower>.about-text>h2 {
        font-size: 38px;
        font-family: var(--poppins);
        color: white;
    }

    .about.lower>.about-text>p {
        font-size: 18px;
        color: #FFFFFF;
        margin: 20px 0 20px 0;
    }

    .about.lower>img {
        position: inherit;
        height: auto;
        width: 80%;
        left: 50px;
        margin-bottom: 50px;
    }

    /* How it works section */
    .work-body {
        flex-direction: column;
    }

    .work-text {
        width: 80%;
    }


    .work-image {
        height: auto;
        width: 60%;
    }


    /* Requirements section */
    .requirements-title>h2 {
        font-size: 60px;
        line-height: 65px;
    }

    .opinions-title {
        justify-content: center;
    }

    /* Opinions section */
    .opinions-title::after {
        width: 70%;
    }

    .opinions {
        min-height: 700px;
        width: 80%;
        gap: 0px;
        margin: auto;
    }

    .opinions>button>img {
        width: 60px;
        height: 60px;
    }

    .opinion {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .opinion>img {
        height: auto;
        width: 80%;
    }



    /* Form section */
    .form-text {
        width: 40%;
    }

    .form-text>h1 {
        font-size: 70px;
    }

    .form-text>p {
        width: 100%;
    }

    .form-button {
        width: 100%;
    }

    .form>img {
        height: auto;
        width: 50%;
    }
}

@media screen and (max-width:700px) {

    /* .triangle{
        transform: rotate(180deg);
    } */
    /* Hero section */
    #hero-section {
        padding-top: 150px;
    }

    .hero-body {
        flex-direction: column;
        padding: 20px;
    }

    .hero-text {
        width: 80%;
        text-align: center;
    }

    .hero-title {
        font-size: 50px;
        line-height: 50px;
    }

    .hero-text>p {
        margin-bottom: 20px;
    }

    .hero-text>p {
        width: 100%;
        font-size: 17px;
        margin-bottom: 5px;
    }

    .hero-button {
        font-size: 15px;
    }

    .hero-button:hover {
        color: var(--black);
        height: 50px;
    }

    .hero-button:hover:first-of-type {
        background-color: transparent;
    }

    .hero-image {
        height: auto;
        width: 80%;
        box-shadow: none;
        margin-top: 20px;
    }

    /* History section */
    .history {
        align-items: center;
        flex-direction: column;
        padding: 10px;
    }

    .history-button {
        width: 100%;
    }

    .history-text {
        width: 100%;
        text-align: left;
    }

    .history-button {
        font-size: 13px;
        padding: 10px;
    }

    .history-image {
        height: auto;
        width: 70%
    }

    /* Quote */

    .quote-body {
        height: fit-content;
        font-size: 28px;
    }

    /* About section */

    .about-title {
        font-size: 32px;
        text-align: center;
    }

    .about.upper {
        flex-direction: column;
    }

    .about.upper>.about-text {
        width: 90%;
        height: fit-content;
        text-align: center;
        background-color: transparent;
    }

    .about-images {
        min-width: 70%;
    }

    .about-images>img {
        height: 100%;
        width: 95%;
    }

    .about-images>img:last-of-type {
        display: none;
    }

    /* STOP */


    .about.lower {
        align-items: center;
        flex-direction: column-reverse;
        height: fit-content;
        padding: 150px 10px 10px 10px;
    }


    .about.lower>.about-text {
        position: inherit;
        width: 90%;
        text-align: left;
        background-color: transparent;
    }

    .about.lower>.about-text>h2 {
        font-size: 38px;
        font-family: var(--poppins);
        color: white;
    }

    .about.lower>.about-text>p {
        font-size: 18px;
        color: #FFFFFF;
        margin: 20px 0 20px 0;
    }

    .about.lower>img {
        position: inherit;
        height: auto;
        width: 80%;
        left: 50px;
        margin-bottom: 50px;
    }

    /* How it works section */
    .work-body {
        flex-direction: column;
    }

    .work-text {
        width: 80%;
    }


    .work-image {
        height: auto;
        width: 60%;
    }


    /* Requirements section */
    .requirements-title>h2 {
        font-size: 40px;
        line-height: 65px;
    }

    .opinions-title {
        justify-content: center;
    }

    /* Opinions section */
    .opinions-title::after {
        width: 100%;
    }

    .opinions {
        min-height: 500px;
        width: 80%;
        gap: 0px;
        margin: auto;
    }

    .opinions>button>img {
        width: 60px;
        height: 60px;
    }

    .opinion {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .opinion>img {
        height: auto;
        width: 80%;
        min-height: 300px;
        min-width: 200px;
    }



    /* Form section */
    .form {
        padding: 80px 0 150px 0;
    }

    .form-text {
        padding-top: 0px;
        width: 80%;
        text-align: center;
    }

    .form-text>h1 {
        font-size: 70px;
        line-height: 70px;
    }

    .form-text>p {
        width: 100%;
    }

    .form-button {
        width: 90%;
        margin: 20px auto auto auto;
    }

    .form-button:hover {
        height: 50px;
        background-color: transparent;
    }

    .form>img {
        height: auto;
        width: 50%;
        display: none;
    }
}