@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@100;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;600;700;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Hebrew";
    overflow: hidden;
}

body {
    background-color: black;
    color: white;
    direction: rtl;
    padding: 3% 5%;
    background-image: url('/src/assets/aboutPage/shapes.svg');
    background-size: 120%;
    background-size: cover;
    background-position: calc(0% - 500px);
    background-repeat: no-repeat;
    height: 100vh;
}

h1 {
    font-size: 6rem;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.3rem;
    width: 66vw;
}

a {
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
}

#back-arrow {
    float: left;
}

/* first-section */

#first-section {
    margin-bottom: 5cqb;
}

#first-section h3 {
    font-weight: 500;
    width: 60vw;
}

/* second-section */

#second-section {

    width: 900px;
    border-radius: 25px;
    margin-bottom: 30px;
}

#second-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#second-section .card {
    padding: 5% 3%;
    background-color: #9b0958;
    width: fit-content;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#second-section .card .text-content {
    width: 30vw;
}

#second-section .card h4 {
    font-size: 3rem;
    margin-bottom: 10px;
}

#second-section .card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#second-section .links {
    display: flex;
    gap: 20px;
}

#second-section .links a {
    text-align: center;
}

#second-section .links a:nth-child(1) {
    color: #24a4f2;
}

#second-section .links a:nth-child(2) {
    color: #bababa;
}

#second-section .links a:nth-child(3) {
    color: #000000;
}

#second-section .card .image-content img {
    width: 150px;
    border-radius: 50%;
    aspect-ratio: 1;
}

/* third-section */

#third-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#third-section .contant-card {
    display: flex;
    padding: 1% 2%;
    width: 800px;
    background-color: rgb(63, 63, 63);
    font-size: 1.5rem;
    font-weight: 800;
    justify-content: center;
    border-radius: 50px;

}

@media screen and (max-width: 936px) {
    #first-section {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    #first-section h3 {
        width: 80vw;
    }

    h1 {
        font-size: 3rem;
    }

    h3 {
        font-size: 1rem;
        width: 60vw;
    }

    #second-section .card {
        flex-direction: column;
        /* float: right; */
        width: fit-content;
        justify-content: center;
        align-items: center;
    }

    #second-section .card .image-content img {
        margin-top: 20px;
        width: 30vw;
        border-radius: 50%;
        aspect-ratio: 1;
    }

    #third-section .contant-card {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        font-size: 1.2rem;
        padding: 10px 40px;
    }

    #second-section .card h4 {
        font-size: 2rem;
    }

    #second-section .card p {
        text-align: center;
        align-self: center;
        font-size: 1rem;
    }

    #second-section .card .text-content {
        width: 50vw;
    }

    #second-section .card .text-content .links {
        flex-direction: column;
    }

    #back-arrow {
        position: absolute;
        left: 5vw;
        width: 10vw;
    }
}