*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;

}
.container{
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url(img5.jpg);
    background-size: cover;
    background-center: cover;
    display: flex;
    justify-content: center;
    align-items: center;

}
.container .box{
    height: 86vh;
    width: 75%;
    padding: 0 20px;
    background-color:rgba(255, 255, 255,0.1);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255,0.7);
    border-radius: 20px;
    display: flex;
    backdrop-filter: blur(25px);
    box-shadow: -15px 17px 17px rgba(10, 10, 10,0.15);   
}
.container nav{
    height: 7%;
    width: 95%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px auto;
    padding: 20px;
}
.container .logo{
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    margin-left: 30px;
}
.container .logo::first-letter{
    color: maroon;
    font-size: 35px;   
}
.container nav ul li{
    display: inline-block;
    padding: 0 20px;

}
.container nav ul li a{
    text-decoration: none;
    font-size: 18px;
    color: #000;
    transition: 0.3s;
}
.container nav ul li a:hover{
    color: maroon;
}
.content{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top:8%;
    padding-left: 80px;
}
.container .section-1{
    position: relative;
    width: 40%;    
}
.content .section-1 h1{
    margin-bottom: 15px;
    font-size: 50px;
    font-weight: 700;
    color:#000;
}
.content .section-1 h3{
    font-size: 24px;
    color: rgb(143, 1, 1);
    margin-bottom: 10px;
}
.content .section-1 p{
    font-size: 15px;
    color: #000;
    margin-bottom: 50px;  
}
.content .btn{
    padding:15px 20px;
    border-radius: 5px;
    background-color: maroon;
    border: 3px solid maroon;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    color:#fff;
}
.content .btn:hover{
    background-color: transparent;
    color: maroon;
}
.content .section-2{
    width: 60%;
    position: relative;
}
.content .section-2::after{
    content: ' ';
    position: relative;
    background-color: maroon;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    z-index: -1;
    top: 20%;
    left: 20%;

}
.content .section-2 img{
    width: 50%;
    margin-left: 100px;
}
.content .social{
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    left: 10px;
    top: 30%;
}
.content .social a i{
    font-size: 25px;
    color: rgb(110, 3, 3);
    transition: 0.3s;
}
.content .social a i::hover{
    color: #7c8bd1;

}