@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=Tajawal:wght@300;500&display=swap');

body{
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.4)), url("assests/IMG_4240.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    overflow-x: hidden;
    margin: 0;
}

.main{
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-attachment: fixed;
}

.container{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 45px calc(4% + 37px);
    align-items: center;
    box-sizing: border-box;
}

/* .layer{
    position: fixed;
    background-image: url('./assests/gold_layer.png');
    width: 100vw;
    height: 100vh;
    z-index: 2;
    bottom: 0;
    opacity: 1;
    background-attachment: fixed;
} */

.container h1{
    color: #fff;
    z-index: 3;
    font-weight: 400;
    font-size: 30px;
    font-family: Arapey,Tajawal;
    font-style: italic;
    padding-top: 50px;
    padding-left: 4.5em;
}

.arrow{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 25px;
    text-align: center;
}

.arrow img{
    height: 35px;
    width: auto;
}

.text{
    padding-bottom: 50px;
    z-index: 3;
}

.text_one{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: center;
    padding-top: 80px;
}

.text_one_container{
    width: 60%;
    display: inline-block;
    color: #5d5d5d;
    font-size: 17px;
    line-height: 20px;
    background-color: rgba(255, 255, 255, 0.85);
}

.text_one_body{
    padding: 70px 60px;
}

p{
    font-weight: 400;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.quote{
    text-align: center;
    padding-top: 80px;
    transition: all .5s ease .5s;
}

.quote-content{
    width: 41%;
    display: inline-block;
    color: #fff;
    text-align: left;
}

.content{
    font-size: 30px;
    width: auto;
    display: inline-block;
    vertical-align: top;
    font-family: Tajawal;
}

.content::before{
    content: open-quote;
    display: block;
    font-family: ArapeyItalic;
    font-size: 95px;
    color: #c1a661;
    height: 70px;
    display: inline-block;
    margin-bottom: 15px;
    margin-left: -31px;
}

.content::after{
    display: block;
    color: #c1a661;
    font-family: Arapey;
    font-style: italic;
    font-size: 95px;
    content: close-quote;
    text-align: right;
    height: 41px;
}

@media only screen and (max-width: 600px){
    .container h1{
        padding-top: 20px;
        padding-left: 20px;
    }

    .text_one_container{
        width: 90%;
    }

    .text_one_body{
        padding: 70px 30px;
    }

    .quote-content{
        width: 70%;
    }
}