@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



.logo img {
    width: 200px !important;
}

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 100%;
    color: #000;

}

/* primary button */
.primary-button {
    margin-top: 10px;
    padding: 13px 25px;
    font-size: 18px;
    background: #42aa93f0;
    border: 0;
    border-radius: 2px;
    color: white;
    font-weight: 600;
    transition: all .3s ease-in;
}

.primary-button:hover {
    background: #000;
    color: #fff;
}

.title {
    color: #42aa93f0;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-title {
    color: #42aa93f0;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.card-title {
    color: #42aa93f0;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

p {
    font-size: 18px;
}

/*service Card 3*/
.service-card-3 {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    height: 368px;
    border: none;

}

.service-card-3 .background-block {
    float: left;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #42aa93f0;
}

.service-card-3 .background-block .background {
    width: 100%;
    vertical-align: top;
    opacity: 0.9;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
    -webkit-transform: scale(1.8);
    transform: scale(2.8);
}

.service-card-3 .card-content {
    width: 100%;
    padding: 5px;
    float: left;
    background: #efefef;
    height: 320px;
    position: relative;
    z-index: 99;
}

.service-card-3 .card-content::before {
    content: '';
    background: #efefef;
    width: 120%;
    height: 320px;
    left: 11px;
    bottom: 51px;
    position: absolute;
    z-index: -1;
    transform: rotate(-13deg);
}

.service {
    border-radius: 50%;
    position: absolute;
    bottom: 70%;
    left: 50%;
    width: 80px;
    height: 80px;
    padding: 10px;
    margin: auto;
    background: #fff;
    font-size: 35px;
    opacity: 1;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.341);
    border: 2px solid rgba(255, 255, 255, 1);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 999;
    transition: all 0.4s ease-in;
}

.service img {
    width: 50px;
}

.card-content h2 {
    font-size: 25px;
    font-weight: 700;
    color: #42aa93f0;
    margin-bottom: 20px;
}

.service-card-3:hover .service {
    background-color: #42aa93f0;
    color: #fff;
    text-decoration: none;
}

/* choose-card-row */
.choose-card-row {
    height: 240px;
    margin: auto;
    overflow: hidden;
}

.choose-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #42aa93f0;
    margin-bottom: 20px;

}

.choose-card-text {
    font-size: 16px;
}


/* footer */


.footer-menu a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}



.footer-para {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.footer-menu {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}


.footer-menu a:hover {
    color: #42aa93f0;
}



/* For desktops */
@media only screen and (min-width: 769px) {}

/* For tablets */
@media only screen and (min-width: 561px) and (max-width: 768px) {
    .title {
        font-size: 40px;
    }

    .about-title {
        font-size: 26px;
    }

    .logo img {
        width: 150px !important;
    }

    .card-title {
        font-size: 30px;
        line-height: 1.5;
        margin-top: 10px;

    }

    .card-text {
        font-size: 16px;
    }


    /* services */
    .service-card-3 .card-content::before {
        height: 220px;
    }

    .service-card-3 .card-content {
        height: 220px;
    }

    .service {
        bottom: 65%;
    }

    /* choose-card-row */
    .choose-card-row {
        height: 200px;
    }

    .choose-card-title {
        font-size: 18px;
    }

    .choose-card-text {
        font-size: 12px;
    }


}

/* For mobile phones */
@media only screen and (max-width: 560px) {

    .title {
        font-size: 35px;
    }

    .logo img {
        width: 120px !important;
    }

    .about-title {
        font-size: 28px;
    }

    .card-title {
        font-size: 25px;
        line-height: 1.5;
        margin-top: 20px;
    }

    .card-text {
        font-size: 16px;
    }

    /* services */
    .service-card-3 .card-content::before {
        height: 220px;
    }

    .service-card-3 .card-content {
        height: 220px;
    }

    .service {
        bottom: 60%;
    }

    /* plan card */

    /* choose-card-row */
    .choose-card-row {
        height: 450px;
    }

    /* footer */
    .footer-header {
        font-size: 14px;
    }

    .footer-menu a,
    .footer-para {
        font-size: 12px;
    }






}