/* General Styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Playfair Display', serif;
}

body{
    background-color: #eaeef2;
    overflow-x: hidden;
}
h5 {
    font-weight: bold;
}
a,
a:active,
a:hover
{
    text-decoration: none;
}

.main-logo{
    height: 80px;
}
.slider-item{
    height: 300px;
    width: 300px !important;
    padding: 10px;
    padding-left: 0;

}
.slider-item div{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.slider-item div::before{
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 26, 0.3);
    border-radius: 10px;
}
.slider-item p{
    position: absolute;
    color: #fff;
    bottom: 25px;
    left: 35px;
    font-size: 25px;
    font-weight: 600;
    z-index: 2;
}
.slider-item img {
    position: absolute;
    color: #fff;
    bottom: 81px;
    left: 19px;
    width: 75px;
    height: 75px;
    z-index: 2;
    object-fit: contain;
    background-color: #fff;
}
.about-section {
    margin-top: 150px;
    background-color: #fff;
    color:#00ccbb;
}
.about-section .second{
    background-color: #00ccbb;
    display: grid;
    justify-content: center;
    align-items: center;
    background-image: url(/images/banner1.jpeg);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: relative;
}
.about-section .second::before{
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 26, 0.3);

}
.about-section .second p{
    z-index: 1;
}
.about-section .first{
    padding: 50px;
}

.contact-section {
    background-color: #eaeef2;
    color:#00ccbb;
}

.contact-section .first{
    background-color: #00ccbb;
    display: grid;
    justify-content: center;
    align-items: center;
    background-image: url(/images/banner2.jpeg);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: relative;
}
.contact-section .first::before{
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 26, 0.3);
}
.contact-section .first p{
    z-index: 1;
}
.contact-section .second{
    padding: 50px; 
    color: #000;   
}
.contact-section .second a{
    color:#00ccbb; 
    font-size: 22px;  
    font-weight: 500;
}
.contact-section .second a i{
    color: #00ccbb; 
}

.footer{
    background-color: #00ccbb; 
    padding: 10px 0;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .slider-item{
        height: 250px;
        /* width: 100% !important; */
    }
    .slider-item p{
        font-size: 18px;
    }
    .slider-item a{
        font-size: 13px;
    }
}

