@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
}



.mobile-container {
    display: none;
}

/* Navbar */
.navbar {
    width: 1260px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: #1f3b64;
    text-decoration: none;
}

.logo img {
    width: 80px;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0px 20px;
    font-weight: 500;
    color: #1f3b64;
    cursor: pointer;
}

.navbar ul .home {
    position: relative;
}

.navbar ul .home .line {
    height: 3px;
    width: 60px;
    background-color: #33D1CB;
    position: absolute;
    bottom: -30px;
    left: -4px;
}

.navbar ul .home .serv-line {
    width: 80px;

}

/* hero container */
.hero-container {
    position: relative;
    background-image: url("../assets/media/images/hero-home-01.jpg");
    background-position: center;
    background-size: cover;
    height: 800px;
    display: flex;
    justify-content: center;
}

.hero-container .triangle {
    position: absolute;
    bottom: -50px;
    left: 30%;
    transform: rotate(40deg);
}

.hero-container .triangle img {
    width: 150px;
}

.hero {
    width: 1280px;
    margin-top: 120px;
}

.hero h1 {
    font-size: 54px;
    color: #1f3b64;
}

.hero h1 strong {
    color: #33D1CB;
}

.hero p {
    color: #1f3b64;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

.hero p i {
    color: #33D1CB;
    margin-right: 10px;
    font-size: 20px;
}

.hero p:hover i {
    color: #1f3b64;
}

.hero button {
    background-color: #1f3b64;
    color: #33D1CB;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 80px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.hero button:hover {
    transform: translateY(-4px);
}

.hero hr {
    display: block;
    height: 1px;
    border: 0;
    width: 80px;
    border-top: 3px solid #33D1CB;
    margin: 1em 0;
    padding: 0;
}

/* Benifit */

.benifit-container {
    background-color: #EAEEF2;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.benifit {
    display: grid;
    width: 1280px;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.benifit-grid {
    display: flex;
    gap: 40px;
}

.benifit-grid .card {
    background-color: white;
    border-radius: 20px;
    padding-bottom: 40px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.second-card {
    margin-top: 50px;
}

.benifit-grid .card h3 {
    color: #1f3b64;
    text-align: center;
    font-size: 22px;
    margin-top: 8px;
}

.benifit-grid p {
    color: #1f3b64;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.benifit-grid .card img {
    width: 280px;
    padding: 10px 0px;
    border-radius: 50px;
    margin-top: 10px;
}

.benifit-grid button {
    background: none;
    border: none;
    color: #33D1CB;
    font-weight: 600;
    margin-top: 16px;
}

.benifits-text h3 {
    color: #1f3b64;
    font-size: 16px;
}

.benifits-text h2 {
    font-size: 38px;
    color: #1f3b64;
}

.benifits-text .desc {
    font-size: 20px;
    color: #1f3b64;
    margin-top: 16px;
}

.benifits-text hr {
    display: block;
    height: 1px;
    border: 0;
    width: 40px;
    border-top: 3px solid #33D1CB;
    margin: 6px 0;
    padding: 0;
}

.benifits-text p,
.benifits-text ul {
    color: #1f3b64;
    margin-top: 16px;
}

.benifits-text ul {
    margin-left: 14px;
}

.benifits-text ul li {
    margin-top: 6px;
}

.benifits-text button {
    margin-top: 24px;
    background-color: #33D1CB;
    border: none;
    padding: 14px 14px;
    border-radius: 30px;
    font-size: 20px;
    color: white;
    font-weight: 500;
}

/* Services */
.services-container {
    background-color: #EAEEF2;
    padding: 40px 0px;
}

.services-container h4 {
    text-align: center;
    margin: 10px 0px;
    font-size: 16px;
    color: #1f3b64;
}

.services-container hr {
    height: 1px;
    border: 0;
    width: 40px;
    border-top: 3px solid #33D1CB;
    margin: auto;
    padding: 0;
}

.services-container h2 {
    text-align: center;
    margin: 10px 0px 50px 0px;
    font-size: 40px;
    color: #1f3b64;
}


.services-grid {
    display: grid;
    grid-template-columns: 25% 25% 25%;
    gap: 30px;
    justify-content: center;
}

.services-grid .card {
    background: white;
    border-radius: 20px;

}

.services-grid .card img {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

.services-grid .card h3 {
    font-size: 26px;
    margin-top: 10px;
    color: #1f3b64;
    padding: 0px 16px;
}

.services-grid .card p {
    font-size: 14px;
    margin-top: 10px;
    color: #1f3b64;
    line-height: 24px;
    font-weight: 500;
    padding: 0px 20px;
}

.services-grid .card button {
    font-size: 14px;
    color: #1f3b64;
    line-height: 24px;
    font-weight: 500;
    padding: 20px 16px;
    background: none;
    border: none;
    color: #33D1CB;
    font-weight: 600;
}


/*home sample container */
.sample-container {
    background-image: url("../assets/media/images/hero-home-02.jpg");
    background-position: center;
    background-size: cover;
    height: 800px;
    display: flex;
    justify-content: center;
}


.sample {
    width: 1280px;
    margin-top: 120px;
}

.sample h1 {
    font-size: 54px;
    color: #1f3b64;
}

.sample p {
    color: #1f3b64;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

.sample .sub {
    font-size: 16px;
    font-weight: 600;
}

.sample button {
    background-color: #1f3b64;
    color: #33D1CB;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 80px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.sample button:hover {
    transform: translateY(-4px);
}

.sample hr {
    display: block;
    height: 1px;
    border: 0;
    width: 80px;
    border-top: 3px solid #33D1CB;
    margin: 1em 0;
    padding: 0;
}

/* Serv container */
.serv-cont {
    background-color: #EAEEF2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv-grid {
    width: 1280px;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.serv-cont img {
    width: 100%;
}

.serv-grid h1 {
    font-size: 36px;
    color: #1f3b64;
}

.serv-grid p {
    color: #1f3b64;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

.serv-grid .sub {
    font-size: 16px;
    font-weight: 600;
}

.serv-grid button {
    background-color: #33D1CB;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.serv-grid button:hover {
    transform: translateY(-4px);
}

.serv-grid hr {
    display: block;
    height: 1px;
    border: 0;
    width: 40px;
    border-top: 3px solid #33D1CB;
    margin-top: 4px;
    padding: 0;
}

.serv-grid .point-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.serv-grid .point-grid .points {
    display: flex;
    margin-right: 20px;
    font-size: 17px;
    font-weight: 400;
}

.serv-grid .point-grid .points i {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-right: 4px;
    margin-top: 4px;
    color: #33D1CB;
}

/* Company container */

.comp-cont {
    display: flex;
    justify-content: center;
    margin: 40px 0px;
}

.company-grid {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* About page */
.about {
    background-image: url("../assets/media/images/hero-about-us.jpg");
    height: 500px;
}

.about h2 {
    color: white;
    font-size: 20px;
}

.about .hero h1 {
    color: white;
}

.about .hero p {
    color: white;
}

.service-page {
    background-image: url("../assets/media/images/hero-services.jpg");

}

/* Book Now */

.book-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../assets/media/images/hero-home-03.jpg");
    padding: 80px 0px;
}

.book-now {
    display: grid;
    width: 1280px;
    grid-template-columns: 48% 48%;
    gap: 20px;
}

.book-text h1 {
    font-size: 54px;
    color: #1f3b64;
}

.book-text p {
    color: #1f3b64;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

.book-text .sub {
    font-size: 16px;
    font-weight: 600;
}

.book-text hr {
    display: block;
    height: 1px;
    border: 0;
    width: 40px;
    border-top: 3px solid #33D1CB;
    margin-top: 4px;
    padding: 0;
}

.book-now-data {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.book-now-data div {
    width: 38%;
    position: relative;
}

.book-now-data i {
    font-size: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #33D1CB;
    height: 185px;
}

.book-now-data svg {
    position: absolute;
    left: 10%;
    font-size: 90px;
    color: #33D1CB;
}

.book-now-data h3 {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1f3b64;
}

.book-now-data p {
    text-align: center;
    font-size: 14px;
    margin-top: 4px;
}

.book-your-visit {
    background-color: rgba(51, 209, 203, 0.7);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.book-your-visit h2 {
    font-size: 40px;
    color: white;
}

.book-your-visit input {
    width: 100%;
    background: white;
    color: black;
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 20px;
    border: none;
}

.book-your-visit input:focus {
    border: none;
    outline: none;
}

.book-your-visit select {
    width: 100%;
    border: none;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 40px;
}

.book-your-visit select:focus {
    border: none;
}

.book-your-visit button {
    background: #1f3b64;
    color: #33D1CB;
    width: 30%;
    border-radius: 40px;
    border: none;
    padding: 16px 16px;
    font-size: 16px;
    font-weight: 700;
}

/* Health Container */
/* Services */
.health-container {
    background-color: #EAEEF2;
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.health-container h4 {
    text-align: center;
    margin: 10px 0px;
    font-size: 16px;
    color: #1f3b64;
}

.health-container hr {
    height: 1px;
    border: 0;
    width: 40px;
    border-top: 3px solid #33D1CB;
    margin: auto;
    padding: 0;
}

.health-container h2 {
    text-align: center;
    font-size: 40px;
    color: #1f3b64;
}

.health-grid {
    width: 1280px;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    margin-top: 50px;
    justify-content: center;
    gap: 40px;
}

.health-grid .middle {
    z-index: 1;
}

.health-card {
    background-color: white;
    border-radius: 20px;
    position: relative;
}

.health-card h2 {
    font-size: 70px;
    padding-top: 20px;
}

.health-card h4 {
    font-size: 24px;
    margin-top: 0px;
    text-align: center;
}


.health-card h5 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 0px;
    text-align: center;
    color: #1f3b64;
}

.pack-details {
    margin-top: 30px;
}

.pack-details .grey {
    background-color: #F2F2F2;
}

.pack-details p {
    padding: 10px 40px;
}

.pack-details p i {
    margin-right: 14px;
}

.fa-check {
    color: #33D1CB;
}

.fa-xmark {
    color: #C7C7C7;
}

.health-card .health-card-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-bottom: 30px;
}

.health-card-btn button {
    border: none;
    background: #33D1CB;
    color: white;
    font-size: 20px;
    font-weight: 500;
    border-radius: 40px;
    padding: 10px 20px;
}

.free-month {
    background: linear-gradient(10deg, #1f3b64 0%, #33d1cb 100%);
    color: white;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
    padding: 4px 0px 20px 0px;
    position: absolute;
    width: 100%;
    top: -30px;
    z-index: -1;
}

/* Map */
.map {
    position: relative;
}

.map-inner {
    width: 250px;
    position: absolute;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    top: 24%;
    left: 8%;
}

.map-inner .doctor {
    width: 100%;
}

.map-inner-det {
    padding: 8px 16px 16px 16px;
}

.map-inner-det p {
    margin: 8px 0px;
    font-size: 14px;
    color: #1f3b64;
}

.map-inner-det i {
    margin-right: 8px;
    color: #33D1CB;
}

.map-inner .logo {
    width: 50px;
    margin-left: -10px;
}

/* Footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #203B64;
    padding: 60px 0px;
}

.footer-container {
    width: 1280px;
}

.free-sample {
    background: linear-gradient(to right, #08a3cf 0%, #33d1cb 100%);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    font-size: 36px;
    color: white;
    font-weight: 700;
}

.free-sample button {
    font-size: 14px;
    background-color: #1f3b64;
    color: #33D1CB;
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    margin-top: 40px;
}

.footer-item {
    padding: 20px;
}

.footer-item img {
    width: 50px;
    margin-left: -8px;
}

.footer-item .rights {
    font-weight: 600;
    font-size: 15px;
}

.footer-item p {
    color: white;
    font-size: 14px;
    margin: 16px 0px;
}

.footer-item p a {
    text-decoration: none;
    color: white;
}

.footer-item p a:hover {
    color: #33D1CB;
}



.footer-item i {
    color: #33D1CB;
    margin-right: 10px;
    font-size: 18px;
}

.footer-item .fa-brands {
    font-size: 36px;
}

.footer-item h3 {
    color: #33D1CB;
}

.footer-item .footer-head-hr {
    display: block;
    height: 1px;
    border: 0;
    width: 40px;
    border-top: 3px solid #33D1CB;
    margin: 1.3em 0;
    padding: 0;
}

.footer-item hr {
    display: block;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .3);
    margin: 1.3em 0;
    padding: 0;
}

.footer-item .f-item {
    width: 150px;
}

.footer-item .s-item {
    width: 210px;
}

.footer-item .t-item {
    width: 210px;
}