
         @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

/* html {
    scroll-behavior: smooth;
} */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

}
a{
    color: #2AB7AB;
    text-decoration: none;
}
a:hover{
 
    color: #7AC470;

}
.container {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 40px;
}

/* all navigation css */

.bg-color{
  /* background-color: #2bb8ac; */
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-bar {
    padding: 0px 60px 0px 60px;
    display: flex;
    /* align-items: center; */
    align-items:baseline;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.logo a img {
    margin-top: 20px;
    width: 210px;
    height: 120px;
    width: 100%;
}

.toggle-btn {
    display: none;
}

.links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.links li {
    padding-right: 55px;
    
}

.links li a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    
}

.links a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 30px;
    top: 26px;
    background-color: rgba(109, 11, 13, 0.95);
    transition: all 0.5s ease-in-out;
}

.links a:hover::before {
    width: 80%;
}

/* ends */


/* main content start */
.content {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex-flow: column;
    padding: 0px 20px;
}

.content-heading {
    margin-top: 68px;
    height: 160px;
    width: 1130px;
    /* background-color: rgba(109, 11, 13, 0.92); */
    background: linear-gradient(90deg,
    #2AB7AB, 
    #3BB8E5,  
    #7AC470   
);
    border-radius: 0px 45px 0px 45px;
    box-shadow: 4px 4px 25px rgba(121, 31, 32, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -102px;
    z-index: 2;
}

.heading {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    padding: 2px 0px 0px 110px;

}

.text-logo {
    font-size: 36px;
    font-weight: 800;
    padding: 2px 50px 0px 0px;
    color: #fff;
}

.text-logo span {
    color: #000;
}

.content-text {
    margin-top: -65px;
    width: 1140px;
    height: auto;
    background-color: #fff;
    box-shadow: 6px 6px 15px 14px rgba(0, 0, 0, 0.25);
    border-radius: 0px 45px 0px 45px;
    padding: 120px 0px 30px 70px;
    margin-bottom: 30px;
}

.content-text span {
    color: #2ab7ab;
    font-size: 21px;
    font-weight: 800;

}

.content-text p {
    line-height: 30px;
    width: 940px;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
   padding-left: 40px;
   text-align: justify;
   padding: 0px 20px;
}

.content-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: #2ab7ab;
    padding-bottom: 10px;
    padding-top:10px;
}
.content-text h3 {
    font-size: 18px;
    font-weight: 500;
    color: #2ab7ab;
    padding: 10px 0;
}

.points {
    padding-left: 40px;
    padding-right: 150px;
    padding-bottom: 20px;
}
.points ul li{
    line-height: 30px;
    font-size: 16px;
    padding: 0px 20px;
    text-align: justify;
}
/* ends */

/* footer start */
footer {
    font-family: 'Poppins', sans-serif;
    padding: 0px 60px 0px 60px;
    width: 100%;
    height: 200px;
    /* background-color: rgba(119, 11, 13, 0.95); */
    background-color: rgba(6, 63, 81);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#second-logo {
    padding-top: 50px;
}

.bottom-logo img {
    width: 100%;
    height: 80px;
}

.follow {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.follow h2 {
    color: #fff;
    font-weight: 400;
    padding-bottom: 8px;
}

.follow a {
    padding: 6px 0px 4px 0px;
}

.products {
    display: flex;
    align-items: left;
    flex-direction: column;
}

.products h2 {
    color: #fff;
    font-weight: 400;
    padding-bottom: 8px;
}

.products ul {
    list-style: none;
}

.products ul li {
    padding: 5.5px 0px 4px 0px;
}

.products a {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}

.quick-links {
    margin-top: -37px;
    display: flex;
    align-items: left;
    flex-direction: column;
}

.quick-links h2 {
    color: #fff;
    font-weight: 400;
    padding-bottom: 8px;
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    padding: 6px 0px 4px 0px;
        line-height: 0.9;
}

.quick-links a {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}

.resources {
    margin-top: -37px;
    display: flex;
    align-items: left;
    flex-direction: column;
}

.resources h2 {
    color: #fff;
    font-weight: 400;
    padding-bottom: 8px;
}

.resources ul {
    list-style: none;
}

.resources ul li {
    padding: 6px 0px 4px 0px;
}

.resources a {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}

.map {
    padding-top: 20px;
}

.map iframe {
    border-radius: 15px;
}

/* footer 1st ends here  */






/* footer 2nd start  */
.footer-2 {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 90px;
    background-color: rgba(119, 11, 13, 0.95);
}

.line {
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
}

.copyright {
    text-align: center;
}

.copyright p {
    padding-top: 30px;
    font-size: 20px;
    color: #fff;
}

.copyright p a {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
}


/* 2nd footer ends  */





/* respnsive start here  */





/* tab view start here  */



@media only screen and (max-width:1245px) {
    .content-heading {
        margin-left: -90px;
        width: 1080px;

    }

    .content-text {
        width: 1080px;

    }

    footer {
        margin-top: 20px;
        padding: 0px 30px 0px 30px;
    }

    .bottom-logo img {
        width: 150px;
        height: 50px;
    }

    #second-logo {
        padding-top: 15px;
    }
}

@media only screen and (max-width:1202px) {
    .content-heading {
        margin-left: -70px;
    }
}

@media only screen and (max-width:1173px) {
    .content-heading {
        margin-left: -60px;
        width: 980px;
    }

    .heading {
        padding: 2px 0px 0px 60px;
    }

    .content-text {
        width: 980px;
        padding: 110px 0px 20px 30px;
    }

    .footer-2 {
        height: 75px;
    }
}

@media only screen and (max-width:1054px) {
    .notification a {
        font-size: 15px;
    }

    .toggle-btn {
        height: 60px;
        width: 60px;
        display: block;
    }

    .toggle-btn img {
        width: 100%;
    }

    .links ul {
        display: none;
    }

    .content-heading {
        margin-left: -40px;
        width: 950px;
    }

    .heading {
        font-size: 32px;
        padding: 2px 0px 0px 50px;
    }

    .text-logo {
        font-size: 33px;
    }

    .content-text {
        width: 950px;
        padding: 110px 0px 20px 30px;

    }

    .content-text span {
        font-size: 18px;
    }

    .content-text p {
        font-size: 15px;
        width: 930px;
        padding-right: 20px;
    }

    footer {
        height: 500px;
        display: grid;
        grid-template-columns: repeat(3, 0.1fr);
        padding: 0px 30px 0px 30px;
        row-gap: 0px;
    }

    .follow,
    .products,
    .quick-links,
    .resources,
    h2 {
        font-size: 20px;

    }

    .map iframe {
        width: 220px;
        height: 160px;
    }
}

@media only screen and (max-width:1000px) {
    .content-heading {
        margin-left: 0px;
        border-radius: 45px 45px 0px 0px;
        width: 830px;
    }

    .heading {
        font-size: 28px;
        padding: 2px 0px 0px 30px;
    }

    .text-logo {
        font-size: 30px;
    }

    .content-text {
        width: 830px;
        border-radius: 0px 0px 45px 45px;
    }

    .content-text span {
        font-size: 16px;
    }

    .content-text p {
        font-size: 14px;
        width: 800px;
        padding-right: 20px;
    }

    .copyright p {
        padding-top: 20px;
        font-size: 17px;
        color: #fff;
    }

    .copyright p a {
        text-decoration: none;
        font-size: 17px;
        color: #fff;
    }

    .resources a {
        font-size: 18px;

    }

    .quick-links a {
        font-size: 12px;

    }

    .products a {
        font-size: 17px;
    }


}

@media only screen and (max-width:845px) {
    .notification a {
        font-size: 13px;
    }

    .toggle-btn {
        height: 54px;
        width: 54px;
    }

    .content-heading {
        border-radius: 30px 30px 0px 0px;
        width: 720px;
    }

    .heading {
        font-size: 25px;
        padding: 2px 0px 0px 21px;
    }

    .text-logo {
        font-size: 27px;
    }

    .content-text {
        padding: 110px 0px 20px 20px;
        border-radius: 0px 0px 30px 30px;
        width: 720px;
    }

    .content-text p {
        width: 710px;
    }
}

@media only screen and (max-width:743px) {
    .content-heading {
        width: 640px;
    }
     .bottom-logo .second-logo img {
        width: 100%;
        height: 50px;
    }

    .heading {
        font-size: 22px;
        padding: 2px 0px 0px 18px;
    }

    .text-logo {
        font-size: 25px;
    }

    .content-text {
        padding: 110px 0px 20px 15px;
        border-radius: 0px 0px 30px 30px;
        width: 640px;
    }

    .content-text p {
        width: 630px;
    }
}

@media only screen and (max-width:614px) {
    .follow {
        align-items: flex-start;
    }

    footer {
        height: 650px;
        grid-template-columns: repeat(2, 0.1fr);
        row-gap: 20px;
    }
}

@media only screen and (max-width:665px) {
    .content-heading {
        width: 540px;
    }

    .heading {
        font-size: 20px;
    }

    .content-text {
        width: 540px;
    }

    .content-text p {
        width: 530px;
    }
}

/* tab view ends here  */







/* mobile view start here  */

@media only screen and (max-width:551px) {
    .notification {
        padding: 0px 70px 0px 70px;
    }

    .notification a {
        font-size: 11px;
    }

    .nav-bar {
        padding: 0px 30px 0px 30px;
    }

    .content-heading {
        height: 130px;
        width: 450px;
    }

    .heading {
        font-size: 16.5px;
    }

    .content-text {
        width: 450px;
    }

    .content-text h2 {
        font-size: 20px;
    }

    .content-text span {
        font-size: 15px;
    }

    .content-text p {
        width: 440px;
        font-size: 13px;
    }

    footer {
        height: 220px;
    }
}

@media only screen and (max-width:464px) {
    .notification {
        padding: 0px 30px 0px 30px;
    }

    .notification a {
        padding-left: 7px;
    }

    .nav-bar {
        height: 80px;
        padding: 0px 15px 0px 15px;
    }

    .logo a img {
        height: 105px;
        width: 200px;
    }

    .toggle-btn {
        height: 47px;
        width: 47px;
    }

    .content-heading {
        border-radius: 20px 20px 0px 0px;
        margin-top: 45px;
        height: 100px;
        width: 350px;
    }

    .heading {
        font-size: 13px;
    }

    .text-logo {
        font-size: 18px;
    }

    .content-text {
        border-radius: 0px 0px 20px 20px;
        width: 350px;
    }

    .content-text span {
        font-size: 13px;
    }

    .content-text h2 {
        font-size: 18px;
    }

    .content-text p {
        font-size: 12px;
        width: 340px;
    }

    .points ul li {
        font-size: 12.3px;
        width: 300px;
    }

    .follow {
        align-items: center;
        justify-content: center;
    }

    .quick-links {
        align-items: center;
        justify-content: center;
    }

    .map iframe {
        height: 150px;
        width: 170px;
    }

    .copyright p {
        font-size: 15px;
    }

    .copyright p a {
        font-size: 15px;
    }

    .footer-2 {
        margin-bottom: 0px;
    }
}
@media only screen and (max-width:366px) {
    .notification {
        height: 40px;
        padding: 0px 10px 0px 10px;
    }

    .notification a {
        padding-left: 3px;
    }

    .nav-bar {
        height: 70px;
        padding: 0px 8px 0px 8px;
    }

    .logo a img {
        height: 90px;
        width: 140px;
    }

    .toggle-btn {
        height: 37px;
        width: 37px;
    }

    .content-heading {
        border-radius: 15px 15px 0px 0px;
        margin-top: 36px;
        height: 100px;
        width: 300px;
        padding: 0px ;
    }

    .heading {
        padding: 1px 0px 0px 10px;
        font-size: 12px;
    }

    .text-logo {
        padding: 1px 10px 0px 0px;
        font-size: 15px;
    }

    .content-text {
        margin-top: 0px;
        padding-top: 20px;
        border-radius: 0px 0px 15px 15px;
        width: 300px;
    }

    .content-text span {
        font-size: 12px;
    }

    .content-text h2 {
        font-size: 14px;
    }

    .content-text p {
        font-size: 10px;
        width: 290px;
    }
    .second-logo img{
        display: none;
    }

    .points ul li {
        margin-left: -20px;
        font-size: 11.3px;
        width: 250px;
    }

        footer {
            margin: 10px 0px 0px 0px;
            /* height: 850px; */
            grid-template-columns: repeat(1, 1fr);
        }
    
        #second-logo img {
            display: none;
        }
    
        .bottom-logo {
            display: none;
        }
    
        .follow {
            padding-top: 40px;
            align-items: center;
            justify-content: center;
        }
    
        .products {
            align-items: center;
            justify-content: center;
        }
    
        .products ul {
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
        }
    
        .quick-links {
            margin-top: 0.1px;
            align-items: center;
            justify-content: center;
        }
    
        .quick-links ul {
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
        }
    
        .resources {
            margin-top: 0.1px;
            align-items: center;
            justify-content: center;
        }
    
        .map iframe {
            display: none;
        }
    
    
        .copyright p {
            padding-top: 15px;
            font-size: 14px;
        }
    
        .copyright p a {
            font-size: 14px;
        }
}


.top-height{
    margin-top:10px;
}
.list li{
   list-style-type: square;
    color:white
}




/*responsive code*/
@media (max-width: 480px) {
  .cmn {
    font-size: 26px !important;
  }

  .button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .nav-bar .logo img {
    height: 50px;
  }
}

@media (max-width: 768px) {

    /* NAVBAR STACK */
    .nav-bar {
        flex-direction: column;
        /* height: auto; */
        padding: 15px 20px;
    }

    .logo a img {
        width: 160px;
        height: auto;
        margin-top: 10px;
    }

    .links ul {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .links li {
        padding-right: 0;
    }

    /* HEAD BOX */
    .content-heading {
        width: 100%;
        flex-direction: column;
        padding: 25px 20px;
        margin-top: 40px;
    }

    .heading {
        font-size: 26px;
        padding: 0;
        text-align: center;
    }

    .text-logo {
        font-size: 26px;
        padding: 10px 0 0 0;
    }

    /* WHITE CONTENT BOX */
    .content-text {
        width: 100%;
        margin-top: -30px;
        padding: 40px 20px;
        border-radius: 0px 25px 0px 25px;
    }

    .content-text p {
        padding: 0;
        font-size: 16px;
        line-height: 26px;
    }

    .points {
        padding: 0 10px;
    }

    /* FOOTER */
    footer {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 30px;
    }

    footer h2 {
        font-size: 20px;
    }

    .quick-links,
    .products,
    .resources {
        text-align: center;
        margin-top: 0;
    }

    .quick-links a,
    .products a,
    .resources a {
        font-size: 18px;
        line-height: 1.5;
    }

    .map iframe {
        width: 100%;
        height: 200px;
    }

    .footer-2 {
        height: auto;
        padding: 20px 10px;
    }

    .copyright p {
        padding: 10px 0;
        font-size: 16px;
    }
}

/* ---------- Small Mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {

    .nav-bar {
        padding: 10px 15px;
    }

    .links ul li a {
        font-size: 16px;
    }

    .heading,
    .text-logo {
        font-size: 22px;
    }

    .content-text h2 {
        font-size: 20px;
    }

    .content-text p {
        font-size: 15px;
    }

    .content-text {
        padding: 30px 15px;
    }

    .points ul li {
        font-size: 14px;
        padding: 0 10px;
    }

    footer img {
        width: 130px;
    }
}

/* =============================
   RESPONSIVE CONTACT SECTION
   ============================= */

/* ---------- Large Tablets (max-width: 992px) ---------- */
/* =======================
   RESPONSIVE FIXES
========================= */

/* Large Tablets and Below (max-width: 992px) */
@media (max-width: 992px) {

    .contact_field {
        padding: 50px 50px 60px 50px; /* reduce big left-right padding */
    }

    .contact_info_sec {
        top: auto;
        right: auto;
        position: relative;
        height: auto;
        width: 100%;
        margin-top: 20px;
        border-radius: 20px;
        padding: 25px;
    }

    .contact_inner {
        padding-bottom: 30px;
    }

    .right_conatct_social_icon {
        justify-content: center;
        padding: 20px 0;
    }

    .socil_item_inner li a {
        font-size: 20px;
    }
}

/* Tablets & Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .contact_field {
        padding: 40px 30px !important;
    }

    .contact_field h3 {
        font-size: 30px;
    }

    .contact_inner {
        box-shadow: none;
        border-radius: 15px;
    }

    .col-md-10, .col-md-2 {
        width: 100%;
        flex: 100%;
        max-width: 100%;
        text-align: center;
    }

    .right_conatct_social_icon {
        height: auto;
        margin-top: 20px;
    }

    .contact_info_sec {
        border-radius: 15px;
        text-align: center;
    }
}

/* Mobile Small (max-width: 576px) */
@media (max-width: 576px) {

    .contact_field {
        padding: 30px 20px !important;
    }

    .contact_field h3 {
        font-size: 26px;
    }

    .contact_field p {
        font-size: 12px;
    }

    button.contact_form_submit {
        font-size: 13px;
        padding: 10px;
    }

    .socil_item_inner {
        gap: 15px;
        justify-content: center;
    }
}


