@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
ul{
    padding: 0;
    list-style: none;
}
a{
    color: inherit;
    text-decoration: none;
}
h1{
    font-size: 1.5rem;
}
p{
    font-size: 0.9rem;
}

h2{
    position: relative;
}
h2::before{
    content: '';
    height: 5px;
    width: 34px;
   /*left: 0;*/
    right: 50%;
    background: #0c5460;
    position: absolute;
    bottom: -0.6rem;
    border-radius: 50px;
}
img{
     border-radius: 8px;
}
.rounded{
    border-radius: 10px !important;
}
.social-media{
    font-size: 1.5rem;
}
.btn-primary{
    background: #0c5460 ;
    border: 1px solid #0c5460;
    padding: 0.9rem 1.5rem;
    transition: 0.3s;
}
.btn-primary:hover,.btn-primary:active{
    background: transparent !important;
    border: 1px solid #0c5460;
    padding: 0.9rem 1.5rem;
    color: #0c5460;
}
.navbar-nav .nav-link{
    margin: 0 0.4rem;
}
.navbar-nav .nav-link.active,.footer-menu.active{
    color: #0c5460 !important;
    border-bottom: 3px solid #0c5460;
}
.form-control{
    background-color: transparent;
    border: 1px solid #1a202c;
    padding: 0.6rem;
}
.form-control:focus{
    background-color: transparent;
}
.overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    cursor: pointer;
}
.popup{
    background: #FFFFFF;
    padding: 1rem;
    height: inherit;
    width: 35%;
    border-radius: 10px;
    margin:3rem auto 0;
}
.popup img{
    height: 100%;
    width: 100%;
}
@media screen and (max-width:768px) {

    .popup{
        background: #FFFFFF;
        padding: 1rem;
        height: inherit;
        width: 320px;
        border-radius: 10px;
        margin: auto;
    }
    .overlay{
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 3rem 1rem;
        background-color: rgba(0,0,0,0.5);
        z-index: 9999;
        cursor: pointer;
    }
}
.testimonails .card{
    display: flex;
    align-items:start;
    justify-content: center;
    height: 340px;
}
.testimonails .card img{
    height: 100%;
}
@media screen and ( max-width:740px) {
    .testimonails .card{
        display: flex;
        align-items:start;
        justify-content: center;
        height: 100%;
    }
    .testimonails .card img{
        height: 160px;
    }
    .dropdown-menu{
        border: none;
    }
}
