*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html{
    scroll-behavior: smooth;
}
html body{
    max-width: 100%;
    overflow-x: hidden;
}
.navbar{
    background-color: #212D58;
    color: white;
}
.navbar-nav{
    margin-left: auto;
    gap: 20px;
}
.navbar-brand{
    font-size: 24px;
    font-weight: bold;
}
.hero{
    background-image: url("images/home.jpg");
    background-size: cover;
    background-position: center;
}
.overlay{
    background-color: rgba(0,0,0,0.7);
    padding-block: 160px;
    color: white;
    text-align: center;
}
.btn-1{
    background-color: #e64f5a;
    color: white;
    text-transform: uppercase;
    padding: 10px 40px;
    font-weight: 600;
    border-radius: 0;
}
.btn-1:hover{
    background-color: #212D58;
    color: white;
}
.hero-content{
    max-width: 70%;
    margin: 0 auto;
}
.provide{
    padding-block: 60px;
}
.p1-card{
    box-shadow: 0 3px 13px 4px rgba(42,42,42,0.05);
    background-color: white;
    border-radius: 10px;
    padding: 50px 20px;
    margin-top: 60px;
}
.p1-card h5{
    font-weight: bold;
    padding-top: 20px;
}
.acs{
    background-color: #F9FAFD;
    padding-block: 60px;
}
.c1-card{
    margin-top: 50px;
    background-color: white;
}
.c1-content{
    background-color: white;
    padding: 20px 12px;
}
.c1-content ul{
    list-style: none;
    padding: 0;
}
.c1-content ul li:nth-child(1){
    color: #e64f5a;
    font-weight: 600;
    padding-bottom: 5px;
}
.c1-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.contact{
    padding-block: 60px;
    max-width: 50%;
    margin: 0 auto;
}
.form{
    box-shadow: 0 3px 13px 4px rgba(42,42,42,0.05);
    background-color: white;
    border-radius: 10px;
    padding: 50px 30px;
}
.form label{
    padding-top: 15px;
    font-weight: bold;
}
.form input , .form textarea{
    border-radius: 0;
}
.footer{
    background-color: #212D58;
    color: white;
    padding-top: 26px;
    padding-bottom: 10px;
    font-weight: 600;
    text-align: center;
}
.fa-bars{
    color: white;
}
.navbar-toggler{
    box-shadow: none !important;
}
.acs-link{
    text-decoration: none;
    color: initial;
}
.about{
    padding-block: 60px;
}
.about p{
    padding-top: 15px;
}
.about img{
    border-radius: 10px;
    height: 100%;
    width: 100%;
}
.p-div{
    display: table;
    height: 100%;
}
.c-div{
    display: table-cell;
    vertical-align: middle;
}
.team{
    background-color: #F9FAFD;
    padding-block: 60px;
}
.t-card{
    background-color: white;
    margin-top: 50px;
}
.team-content{
    background-color: white;
    padding: 12px;
    text-align: center;
}
.team img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.p-content{
    padding-inline: 50px;
}
.p-content ul{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.p-content p a{
    text-decoration: none;
    color: #212D58;
    font-weight: 600;
    font-size: 22px;
}
.p-size{
    font-size: 22px;
}
.p-content p a:hover{
    color: #e64f5a;
}
.btn-2{
    background-color: #e64f5a;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 40px;
}
.btn-2:hover{
    background-color: #212D58;
    color: white;
}
.description{
    padding-block: 60px;
}
.amenities{
    background-color: #F9FAFD;
    padding-block: 60px;
    text-align: center;
    margin-top: 60px;
}
.amenities p{
    max-width: 75%;
    margin: 0 auto;
}
.amenities ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    align-items: center;
    align-content: center;
}
.amenities ul li{
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}
.amenities ul li i{
    color: #e64f5a;
}
.amenities ul li span{
    position: relative;
    top: -5px;
}
.p-banner{
    padding-block: 60px;
    max-width: 75%;
    margin: 0 auto;
    text-align: center;
}
.p-banner h2{
    font-weight: bold;
    color: #212D58;
}

/* Responsiveness */
@media screen and (max-width: 767px) {
    html{
        max-width: 100%;
        overflow-x: hidden;
    }
    .navbar-nav{
        gap: 10px;
    }
    .hero-content{
        min-width: 100%;
    }
    .overlay{
        padding-block: 80px;
    }
    .provide , .acs , .contact , .about, .description, .p-banner{
        padding-block: 40px;
    }
    .contact , .amenities p , .p-banner{
        min-width: 100%;
    }
    .p1-card , .c1-card{
        margin-top: 30px;
    }
    .or-1{
        order: 2;
    }
    .or-2{
        order: 1;
    }
    .p-content{
        padding: 20px;
    }
    .amenities ul{
        flex-wrap: wrap;
        gap: 30px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-content{
        max-width: 80%;
    }
    .overlay{
        padding-block: 80px;
    }
    .provide , .acs , .contact , .about{
        padding-block: 40px;
    }
    .p1-card h5{
        font-size: 18px;
    }
    .c1-content div{
        flex-direction: column;
    }
    .contact{
        max-width: 80%;
    }
    .p1-card , .c1-card{
        margin-top: 30px;
    }
    .p-content{
        padding-top: 20px;
    }
    .p-content p{
        font-size: 18px;
    }
    .amenities ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}