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

body {
    margin: 0 auto;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

.btn {
    border-radius: 500px;
    padding: 0.9rem 2rem;
}

.btn img {
    margin-left: 0.5rem;
}

.btn-primary {
    background: #30A467;
    border: 1px solid #30A467;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-tertiary {
    background: #ffffff;
    border: 1px solid #30A467;
}

h1 {
    font-size: 3.4rem;
    font-weight: 600;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.8rem;
}

.text-primary {
    color: #3E5876 !important;
}

.text-secondary {
    color: #7c7c7c !important;
}

.text-highlight {
    color: rgba(48, 164, 103, 0.8);
}

.header {
    background: #ffffff;
}

.card {
    border-radius: 8px;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .image {
    border-radius: 8px 8px 0 0;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card.services .image {
    border-radius: 8px 8px 0 0;
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.bg-linear {
    background-image: linear-gradient(to bottom, #fefffe, #C6FADF);
}

footer {
    background: #F2F2F2;
}

.footer-bottom {
    font-size: 0.9rem;
    color: #3E5876;
}

footer .footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    color: #3E5876;
}

footer .footer-title::before {
    content: '';
    position: absolute;
    border: 1px solid #3E5876;
    /*height: 2px;*/
    /*background: #3E5876;*/
    width: 100%;
    left: 0;
    bottom: -0.3rem;
}

.img-1 {
    height: 240px;
    border-radius: 12px;
}

.img-2 {
    height: 140px;
    border-radius: 12px;
}

.img-3 {
    height: 140px;
    border-radius: 12px;
}

.img-4 {
    height: 240px;
    border-radius: 12px;
}

.price .border-bottom {
    border-color: #30A467 !important;
}

.image-overlay {
    position: relative;
}

.image-overlay::before {
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000000);
    inset: 0;
}

/*.prev,.next{*/
/*    height: 40px;*/
/*    width: 40px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border:1px solid #d9d9d9;*/
/*    border-radius: 100%;*/
/*    color: #30A467;*/
/*}*/

.slick-prev:before {
    content: "<";
    color: #1a202c !important;
    font-size: 12px;
}

.slick-next:before {
    content: ">";
    color: #1a202c !important;
    font-size: 12px;
}
.nav-link.active{
    color: #30A467 !important;
}
.hamburger div {
    width: 30px;
    height: 3px;
    background: #7b7c7c;
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
.navbar-toggler,.navbar-toggler:focus{
    border:0 !important;
    box-shadow: none !important;
}
@media screen and (max-width: 540px) {
    h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    h2 {
        font-size: 1.8rem;
        font-weight: 600;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.8rem;
    }
    .img-2,.img-3 {
        height: 240px;
        border-radius: 12px;
    }

}
