*{
    margin: 0;
    padding: 0;
}
#frontpage-wrapper{
	background-color: white;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 999;
}
#About_section1{
    background-image: url('../Images/top-image.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
}

#About_section1 h1{
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    height: 45vh;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 50px;
}

#About_section2{
    padding: 5rem 10%;
}

#About_section2 div h2{
    text-align: center;
    padding: 2rem 0;
    font-size: 35px;
    text-transform: uppercase;
}

#About_section2 div  p{
    text-align: center;
    padding: 1.5rem 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #e18b2a;
}

#About_section2_text{
    text-align: justify;
}


#About_section3{
    display: flex;
    justify-content: center;
    align-items: center;
}

#About_section3_container{
    padding: 2rem 10%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 350px;
}

#About_section3_container img{
    width:280px;
    border-radius: 20px;
}

#About_section3_container div h3{
    font-size: 40px;
    border-bottom: 2px double black;
}

#About_section3_container div b{
    font-size: 30px;
    text-transform: uppercase;
}

#About_section3_container div p{
    text-align: justify;
}

#About_section4{
    display: flex;
    justify-content:center;
    align-items:center;
    flex-wrap: wrap;
    gap:3rem;
    padding:2rem 0;
}

.About_section4_images{
    width:250px;
    height:250px;
    border-radius:20px;
}

h4{
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}

@media only screen and (max-width: 992px){
    #About_section1 h1{
        text-align: center;
        font-size:32px;
    }
    #About_section2{
        padding: 3rem 2%;
    }

    #About_section3{
        display: block;
    }
    #About_section3_container{
        width: auto;
        display: block;
    }

    #About_section3_container img{
        width:90%;
        border-radius: 20px;
        margin-bottom:2rem ;
    }
}