*{
    margin: 0;
    padding: 0;
}
.container{
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    background-position: center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
}
.navbar{
    width: 100%;
    height: 20vh;
    margin: auto;
    display: flex;
    align-items: center;
}
.logo{
    width: 180px;
    cursor: pointer;
}
nav{
    flex: 1;
    padding-left: 60px;
    padding-bottom: 0px;
    padding-top: 6px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 0px 20px;
}
nav ul li a{
    text-decoration: none;
    color:whitesmoke;
    font-size: 17px;
}
nav ul li:hover a{
    color: crimson;
}
.content h1{
    font-size: 60px;
    font-weight: 100;
    margin-top: 24px;
    margin-bottom: 15px;
    color: whitesmoke;
}
.content p{
    font-size: 20px;
    color: whitesmoke;
}
.content{
    margin-left: 10%;
    margin-top: 10%;
}
.content .btn{
    display: inline-block;
    background: linear-gradient(90deg,rgba(180, 3, 3, 0.801),black);
    border-radius: 6px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    box-shadow: 3px 8px 22px rgba(94,28,68,0.15);
}
.feature-image{
    width: 45%;
    height: 50%;
    position: absolute;
    bottom: 150px;
    right: 60px;
}
.feature-image-two{
    width: 35%;
    height: 35%;
    position: absolute;
    bottom: 120px;
    right: 170px;
}
.social-links{
    transform: rotate(-90deg);
    position: absolute;
    bottom: 80px;
    left: 14px;
}
.social-links a{
    text-decoration: none;
    color: crimson;
    padding-right: 20px;
    font-size: 16px;
}
.about-us h1{
    font-size: 40px;
    font-weight: 100;
    margin-top: 24px;
    margin-bottom: 15px;
    color: whitesmoke;
}
.about-us p{
    font-size: 20px;
    color: whitesmoke;
}
.about-us{
    margin-left: 10%;
    margin-top: 3%;
}
.about-us-two h1{
    font-size: 27px;
    font-weight: 100;
    margin-top: 24px;
    margin-bottom: 15px;
    color: whitesmoke;
}
.about-us-two p{
    font-size: 17px;
    color: whitesmoke;
}
.about-us-two{
    margin-left: 10%;
    margin-top: 3%;
}
.gallery{
    margin: 30px 120px;
}
.gallery img{
    width: 220px;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}
.gallery img:hover{
    filter: grayscale(0);
    transform: scale(1.1);
}
.gallery .card5{
    width: 220px;
    height: 125px;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}


