* {
    padding: 0%;
    overflow-x: hidden; 
    box-sizing: border-box;     
}

/* loader */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
}



/*------------ nav 1 ------------*/

.info {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#f5fafe;
}

.mail {
    display: inline-block;
    margin-left: 20px;
}
.mail span{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-align: right;
    color: rgb(49, 49, 49);
    display: inline-block;
}

.info p {
    color: rgb(49, 49, 49);
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 20px;
}

.info img {
    width: 20px;    
}

/* Mobile Responsive */
@media screen and (max-width: 767.98px) {
    .header {
        width: 100%;
    }

    .info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mail {
        display: none;

    }
    .info img {
        width: 15px;

    }

}

/* ------------header------------ */
.hea-nav{
    /* font-family: Arial, Helvetica, sans-serif; */
    display: flex;
    width: 100%;
    height: 110px;
    /* background-color: rgb(235, 109, 109); */
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.logo img{
    width: 300px;
    height: auto;
}

.icon {
    display: flex;
    align-items: center;
    width: fit-content; /* Dynamically adjust width based on content */
    min-width: 150px; /* Ensure a minimum size */
    flex-shrink: 0; /* Prevent shrinking in flexbox */
}

.icon img {
    width: 30px;
    height: auto;
}

.icon a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.icon span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: rgb(49, 49, 49);
    flex-shrink: 0; /* Prevent text shrinking */
    white-space: nowrap; /* Prevent wrapping */
    padding-left: 5px;
}

.nav-ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.nav-ul li a{
    display: flex;
    padding-inline:20px;
    text-decoration: none;
    align-items: center;
    color: #274091;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.nav-ul .line {
    position: relative;
    cursor: pointer;
}

.nav-ul .line::after {
    content: '';
    width: 0;
    height: 2px;
    background: #274091;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    transition: 0.5s;
}

.nav-ul .line:hover::after {
    width: 100%;
}

.nav-ul li img{
    width: 200px;
    height: auto;
}

.hideOnMobile{
    display: flex;
}


/* sidebar */
.sidebar {
    background-color: rgb(247, 246, 246);
    overflow: hidden;
    max-height: 0; 
    transition: max-height 0.5s ease; 
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .sidebar li {
    margin-bottom: 15px;
    background-color: white;
    padding: 0 20px;
    border-radius: 20px;
    /* box-shadow: 0 1px 7px gray; */
  }

  .menu-but{
    margin-left: auto;
    display: none;
  }
.hie a{
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color:#274091;
  }
  


/* responsive for small phones */
  @media (max-width:575.98px){
    .menu-but{
        display: flex;
        align-items: center;
    }

    .hideOnMobile{
        display: none;
    }

    .logo{
        width: 230px;
    }
    .nav-ul{
        display: none;
    }
    .icon img {
        width: 20px;
    }
    .icon span{
        font-size: 10px;
    }
  }

/* responsive for smart phones */
  @media (min-width:576px) and (max-width:767.98px){
    .menu-but{
        display: flex;
        align-items: center;
    }
    .hideOnMobile{
        display: none;
    } 
    .nav-ul{
        display: none;
    }
    .logo{
        width: 230px;
    }
    .icon img {
        width: 20px;
    }
    .icon span{
        font-size: 10px;
    }
  }
  /* responsive for tablets */
  @media(min-width:768px) and (max-width:991.98px){
   .nav-ul li a{
        padding-inline: 10px;
        font-size: 12px;
   }

  }

  /* responsive for labtops and small desktops */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-ul li a{
        font-size: 13px;
   }
   
  }
/* responsive for larger screen */
@media (min-width:1200px){  
    .nav-ul li a{
        font-size: 15px;
    }
}

                                /*------------ Slide ------------*/

.slider {
    position: relative;
    width: 100%;
    height: auto;
    background: #f5fafe;
    /* object-fit: cover; */
    
}

.myslider {
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
    /* transition: height 0.5s ease; */
}

.dotsbox {
    position: absolute;
    bottom: 20px; /* Place at the bottom of the slider */
    left: 50%; 
    transform: translateX(-50%);
    display: flex; /* Align dots in a row */
    gap: 10px; /* Add spacing between dots */
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid rgb(160, 158, 158); /* Adjust border width */
    border-radius: 50%;
    background-color: transparent; /* Default background */
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active,
.dot:hover {
   border-color: #274091;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 0.5s;
    animation-name: fade;
    animation-duration: 0.5s;
}

.txt {
    position: absolute;
    color: black;
    letter-spacing: 1px;
    top: 20%;
    left: 15%;
    text-align: start;
    width: 100%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 100;
}

@-webkit-keyframes posi {
    from {
        left: 25%;
    }

    to {
        left: 15%;
    }
}

@keyframes posi {
    from {
        left: 25%;
    }

    to {
        left: 15%;
    }
}

.txt h1 {
    font-size: 30px;
    color: #274091;
}

.txt p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: rgb(49, 49, 49);
    width: 100%;
    height: 100%;
}

.btn {
    background-color: #274091;
    border-color: white;
    width: 160px;
    height: 55px;
    border: 6px solid rgb(216, 216, 216);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn a {
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    text-decoration: none;
}

.btn:hover{
    background-color: rgb(141, 140, 140);
    cursor: pointer;
}

.myslider img {
    -webkit-animation-name: zoomin;
    -webkit-animation-duration: 30s;
    animation-name: zoomin;
    animation-duration: 30s;
    animation-name: zoomin;
    animation-duration: 30s;
}

@-webkit-keyframes zoomin {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.1, 1.1);
    }
}

@keyframes zoomin {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.1, 1.1);
    }
}

@-webkit-keyframes fade {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}


/* mobile responsive*/
@media (max-width: 575.98px) {
    .txt h1{
        font-size: 10px;
    }
    .txt {
        top: 40%;
        left: 60%;
        transform: translate(-50%, -50%);
        text-align: justify;
        animation: none ;
    }

    .txt p {
        font-size: 5px;
    }

    .btn{
        width: 53.3px;
        height: 18.3px;
        border: 2px solid rgb(216, 216, 216);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn a{
        font-size: 6px;
    }

    .dotsbox{
        display: none;
    }
 }
/* phone */
 @media (min-width:576px) and (max-width:767.98px) {
    .txt {
        top: 40%;
        left: 60%;
        transform: translate(-50%, -50%);
        animation: none;
    }

    .txt h1{
        font-size: 15px;
    }
    
    .txt p {
        font-size: 8px;
    }

    .btn{
        width: 80px;
        height: 27.5px;
        border: 3px solid rgb(216, 216, 216);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn a{
        font-size: 10px;
    }

    .dotsbox{
        display: none;
    }

}

/* laptop and Desktop Responsive */
@media (min-width:768px) and (max-width:991.98px) {
    .txt {
        top: 40%;
        left: 60%;
        transform: translate(-50%, -50%);
        -webkit-animation-name: posilaptop;
        -webkit-animation-duration: 2s;
        animation-name: posilaptop;
        animation-duration: 2s;
    }
    .txt h1{
        font-size: 20px;
    }
    
    .txt p {
        font-size: 10px;
    }

    .btn{
        width: 100px;
        height: 37.5px;
        border: 5px solid rgb(216, 216, 216);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn a{
        font-size: 12px;
    }

    @-webkit-keyframes posilaptop {
        from {
            left: 70%;
        }
    
        to {
            left: 60%;
        }
    }
    
    @keyframes posilaptop {
        from {
            left: 70%;
        }
    
        to {
            left: 60%;
        }
    }

}

/* desktop */
@media (min-width:992px) and (max-width:1199.98px){
    .txt {
        top: 40%;
        left: 60%;
        transform: translate(-50%, -50%);
        -webkit-animation-name: posidesktop;
        -webkit-animation-duration: 2s;
        animation-name: posidesktop;
        animation-duration: 2s;
    }

    .txt h1{
        font-size: 25px;
    }
    
    .txt p {
        font-size: 14px;
    }

    .btn{
        width: 120px;
        height: 42.5px;
        border: 5px solid rgb(216, 216, 216);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn a{
        font-size: 14px;
    }

    @-webkit-keyframes posidesktop {
        from {
            left: 70%;
        }
    
        to {
            left: 60%;
        }
    }
    
    @keyframes posidesktop {
        from {
            left: 70%;
        }
    
        to {
            left: 60%;
        }
    }
}
/* extra large */
@media (min-width:1200px){
    .txt h1{
        font-size: 30px;
    }
    
    .txt p {
        font-size: 18px;
    }

    .btn{
        width: 160px;
        height: 55px;
        border: 6px solid rgb(216, 216, 216);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn a{
        font-size: 20px;
    }
}

                        /*------------ Cards Slide ------------*/

.service{
    overflow-x: auto;
}

.containerr{
    display: flex;
    justify-content: center;
    align-items: center;
}

.service h1{
    text-align: center;
    font-size: 30px;
    color: #274091;
}

.slider_wrapper{
    width: 100%;
    height: auto;
    max-width: 1200px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style:auto;
    scrollbar-width:auto;
    padding-bottom: 20px;

}

.slider_wrapper::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 4px; 
}

.slider_wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.card_article{
    flex: 0 0 calc(33% - 10px);
    width: 380px;
    height: auto;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align:center;
    flex-shrink: 0;
}
.card_article:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.card_image{
    margin-top: 20px;
}

.card_image img{
    display: flex;
    border: 1px solid #62dce0;
    border-radius: 50%;
    width: 100px;   
    height: 100px;
    margin: 0 auto;
}

.card_data{
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.card_name{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #274091;
    margin: 0 auto;
}

.card_description{
    width: 360px;
    height: 55px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color:rgb(49, 49, 49);
    margin: 0 auto;
    margin-top: 20px;
}
.button_behav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:20px 0px 20px 0px;
}

.card_button{
    padding: 10px 20px;
    border-radius: 30px;
    border: 5px solid rgb(216, 216, 216);
    background-color: #274091;  
}
.card_button:hover{
    background-color: rgb(141, 140, 140);
    cursor: pointer;
}

.card_button a{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 0.85rem;
    text-decoration: none;
}

/* spacer */
.card_spacer{ 
    height: 80px;
}

/* small phones */
@media (max-width: 575.98px){
    .service h1{
        font-size: 20px;
    }

    .slider_wrapper {
        width: 100%;
        gap: 50px;
        max-width: 575px;
        scrollbar-width: none;
        padding: 0 40px;
    }

    .card_article{
        flex: 0 0 calc(100%);
        scroll-snap-align: center; 
        width: auto;
    }
    .card_article:hover {
        transform: none;
        box-shadow: none;
        cursor: default;
    }

    .card_image img{
        width: 80px;
        height: 80px;
        border: 1px solid #62dce0;
    }

    .card_data{
        margin-top: 10px;
    }

    .card_name{
        font-size: 18px;
    }

    .card_description{
        font-size: 12px;
        width: 260px;
        height: 55px;
        margin-top: 10px;
    }

    .button_behav{
        margin: 10px 0px 10px 0px;
       
    }

    .card_button{
        padding: 7px 15px;
        border: 4px solid rgb(216, 216, 216);
    
    }

    .card_button a{
        font-size:10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }  
    .card_spacer{
        height: 30px;
    }
}

/* Tablets responsive */
@media (min-width:576px) and (max-width: 767.98px) {
    .service h1{
        font-size: 30px;
    }
    .slider_wrapper {
        width: 100%;
        max-width: 767px;
        gap: 75px;
        scrollbar-width: none;
        padding: 0 70px;
    }

    .card_article{
        flex: 0 0 calc(100%);
        scroll-snap-align: center; 
        width: auto;
    }

    .card_article:hover {
        transform: none;
        box-shadow: none;
        cursor: default;
    }
  
    .card_image img{
        width: 80px;
        height: 80px;
        border: 1px solid #62dce0;
    }

    .card_data{
        margin-top: 10px;
    }

    .card_name{
        font-size: 18px;
    }

    .card_description{
        font-size: 15px;
        width: 360px;
        height: 55px;
        margin-top: 20px;
    }

    .button_behav{
        margin: 20px 0px 20px 0px;  
    }

    .card_button{
        padding: 10px 20px;
        border: 4px solid rgb(216, 216, 216);
    
    }

    .card_button a{
        font-size:13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }  
    .card_spacer{
        height: 30px;
    }
}

/* Medium devices responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
   .service h1{
       font-size: 30px;
   }

    .slider_wrapper{
        width: 90%;
        max-width: 991px;
        gap: 20px;
        scrollbar-width: auto;
    }
    .card_article {
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
        width: auto;
    }

    .card_article:hover {
        transform: none;
        box-shadow: none;
        cursor: default;
    }

    .card_image img{
        width: 80px;
        height: 80px;
        border: 1px solid #62dce0;
    }
    .card_data{
        margin-top: 15px;
    }
    .card_name{
        font-size: 18px;
    }
    .card_description{
        font-size: 15px;
        width: 300px;
        height: 55px;
        margin-top: 15px;
    }

    .button_behav{
        margin: 15px 0px 15px 0px;
    }

    .card_button{
        padding: 10px 20px;
        border: 4px solid rgb(216, 216, 216);
        border-radius: 25px;
    }

    .card_button a{
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card_spacer{
        height: 40px;
    }

}

/* laptops responsive */
@media(min-width:992px) and (max-width:1199.98px){
     .slider_wrapper{
         width: 90%;
         max-width: 1199px;
         gap: 15px;
         scrollbar-width: auto;
     }
     .card_article {
         flex: 0 0 calc(33% - 10px);
         scroll-snap-align:center;
         width: auto;
     }
 
     .card_image img{
         width: 80px;
         height: 80px;
         border: 1px solid #62dce0;
     }
     .card_data{
         margin-top: 15px;
     }
     .card_name{
         font-size: 18px;
     }
     .card_description{
         font-size: 15px;
         width: 270px;
         height: 70px;
         margin-top: 15px;
     }
 
     .button_behav{
         margin: 15px 0px 15px 0px;
     }
 
     .card_button{
         padding: 8px 16px;
         border: 4px solid rgb(216, 216, 216);
         border-radius: 25px;
     }
 
     .card_button a{
         font-size: 13px;
         display: flex;
         align-items: center;
         justify-content: center;
     }
     .card_spacer{
        height: 50px;
     }
 

}

/* desktop responsive */
@media (min-width:1200px){
    .slider_wrapper{
        width: 100%;
        max-width: 1200px;
        gap: 20px;
        scrollbar-width: auto;
    }
    .card_article {
        flex: 0 0 calc(33% - 10px);
        scroll-snap-align:center;
        width: 360px;
    }

    .card_image img{
        width: 100px;
        height: 100px;
        border: 1px solid #62dce0;
    }
    .card_data{
        margin-top: 20px;
    }
    .card_name{
        font-size: 20px;
    }
    .card_description{
        font-size: 15px;
        width: 360px;
        height: 55px;
        margin-top: 20px;
    }

    .button_behav{
        margin: 20px 0px 20px 0px;
    }

    .card_button{
        padding: 10px 20px;
        border: 5px solid rgb(216, 216, 216);
        border-radius: 30px;
    }

    .card_button a{
        font-size: 0.85rem;
    }

    .card_spacer{
        height: 80px;
    }
}



                    /*-----home page about -------*/

.about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 0% 5%;
    flex-wrap: wrap;

}
.about_image img{
   max-width: 100%;
   width: 550px;
   height: auto;
   border: 5px solid rgb(206, 204, 204);
   border-radius: 30px;
}

.acon {
    flex: 1;
    min-width: 300px;
}

.acon h3 {
    color: #274091;
    font-size: 20px;
}

.acon h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #274091;
    font-size: 25px;
}

.acon p {
    letter-spacing: 1px;
    line-height: 30px;
    font-size: 17px;
    text-align:left;
    color: rgb(49, 49, 49);
    margin: 0;
    padding: 0;
} 

.about_button{
    display: flex;
    align-items: center;
    justify-content:left;
}

.buto {
    padding: 10px 30px;
    background-color: #274091;
    border: 4px solid rgb(216, 216, 216);
    border-radius: 30px;
    cursor: pointer;
    font-size: 17px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.buto a {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.buto:hover {
    background-color: rgb(141, 140, 140);
}

.about_spacer{
    height: 120px;
}
/* small */
@media (max-width:575.98px){
    .about {
        flex-direction: column; 
        align-items: center; 
        padding: 0% 8%;
    }

    .acon {
        text-align: center;
    }
    .acon h3{
        font-size: 15px;
    }
    .acon h1{
        font-size: 20px;
    }
    .about_image img {
        width: 100%;
        max-width: 300px;
    }
    .acon p{
        text-align:center;
        font-size: 14px;
        line-height: 25px;
    }
    .about_button{
        justify-content: center;
    }
    .buto{
       padding: 7px 21px;
        font-size: 10px;
    }
    .about_spacer{
        height: 50px;
    }
}
/* medium */
@media(min-width:576px) and (max-width: 767.98px) {
    .about {
        flex-direction: column; 
        align-items: center; 
        padding: 0% 8%;
    }

    .acon {
        text-align: center;
    }
    .acon h3{
        font-size: 15px;
    }
    .acon h1{
        font-size: 20px;
    }

    .about_image img {
        width: 100%;
        max-width: 400px;
    }
    .acon p{
        text-align:center;
        font-size: 15px;
    }

    .about_button{
        justify-content:center;
    }
    .buto{
       padding: 7px 21px;
        font-size: 10px;
    }
    .about_spacer{
        height: 60px;
    }
}

/* large */
@media(min-width:768px) and (max-width:991.98px){
    .about {
        flex-direction: column; 
        align-items: center; 
        padding: 0% 8%;
    }

    .acon {
        text-align: center;
    }

    .acon h1{
        font-size: 25px;
    }

    .about_image img {
        width: 100%;
        max-width: 600px;
    }
    .acon p{
        text-align:center;
        font-size: 17px;
    }

    .about_button{
        justify-content:center;
    }
    .buto{
       padding: 10px 30px;
        font-size: 13px;
    }
    .about_spacer{
        height: 70px;
    }
}

/* desktop */
@media(min-width:992px) and (max-width:1199.98px){
    .about {
        flex-direction: column; 
        align-items: center; 
        padding: 0% 6%;
    }

    .acon {
        text-align: center;
    }
    .acon h3{
        font-size: 20px;
    }
    .acon h1{
        font-size: 25px;
    }

    .about_image img {
        width: 100%;
        max-width: 700px;
    }
    .acon p{
        text-align:center;
        font-size: 17px;
    }

    .about_button{
        justify-content:center;
    }
    .buto{
        padding: 10px 30px;
        font-size: 15px;
    }
    .about_spacer{
        height: 80px;
    }
}

/* extra large */
@media (min-width:1200px){
    .acon h3{
        font-size: 20px;
    }
    .acon h1{
        font-size: 25px;
    }
    .acon p{
        text-align: left;
        font-size: 17px;
    }

    .buto{
       padding: 10px 30px;
        font-size: 17px;
    }

    .about_spacer{
        height: 120px;
    }
}



                        /* -----home Packages-------- */


.package{
    background: #f5fafe;
    margin: 0;
    padding: 0;
}

.pa-head{
    text-align: center;
    color: #274091;
    margin: 0;
}

.pa-head h1{
    font-size: 30px;

}
.pa-head h3{
    font-size: 20px;
}

.container{
    display: flex;
    height: auto;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-bottom: 40px;
}

.content{
    padding-inline: 20px;  
}

.card::before{
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
    background:#274091;
}

.card {
    height: 500px;
    width: 300px;
    background-color: #ffffff;
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 4px -10px 10px gray;
}

.card .card-c{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* z-index: 100; */
}
.card-c h3{
    font-size: 20px;
    color: white;
    font-family: Georgia;
    margin-top: 40px;
}

.package .card .card-c .image img{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 3px solid #e9e9e9;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 100;
}

.p_text{ 
    color: #274091;
    font-size: 12px;
    font-weight: bold;
    text-align: center;   
}

.p-li{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}
.p-li li{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #3d3d3d;
}

.p-li li i{
    color: #274091;
}

.pbn{
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    text-decoration: none;
    color: #727272;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card a:hover{
    color: #000000;
    font-weight: 300;
}

.pack_spacer{
height: 120px;
}

/* small */
@media (max-width: 575.98px) {
    .pa-head h1{
        font-size: 25px;
    }
    .pa-head h3{
        font-size: 15px;
    }
    .container {
        flex-direction: column; 
        align-items: center; 
    }

    .card {
        height: 400px; 
        width: 250px;  
        margin-bottom: 20px; 
    }

    .card-c h3 {
        margin-top: 30px; 
        font-size: 15px; 
    }

    .package .card .card-c .image img {
        height: 60px; 
        width: 60px; 
    }

    .p_text {
        font-size: 10px; 
    }

    .p-li li {
        font-size: 12px; 
    }

    .pbn {
        font-size: 13px; 
    }
    .pack_spacer{
        height: 50px;
    }
}
/* medium */
@media (min-width:576px) and (max-width:767.98px){
    .pa-head h1{
        font-size: 25px;
    }
    .pa-head h3{
        font-size: 15px;
    }
    .container {
        flex-direction: column; 
        align-items: center; 
    }

    .card {
        height: 400px; 
        width: 250px;  
        margin-bottom: 20px; 
    }

    .card-c h3 {
        margin-top: 30px;
        font-size: 15px;
    }

    .package .card .card-c .image img {
        height: 60px; 
        width: 60px; 
    }

    .p_text {
        font-size: 10px; 
    }

    .p-li li {
        font-size: 12px; 
    }

    .pbn {
        font-size: 13px; 
    }
    .pack_spacer{
        height: 50px;
    }

}

/* large */
@media(min-width:768px) and (max-width:991.98px){
    .pa-head h1{
        font-size: 30px;
    }
    .pa-head h3{
        font-size: 20px;
    }
    .container{
        display: flex;
        height: auto;
        gap: 15px;
        justify-content: center;
    }
    .card {
        height: 400px; 
        width: 250px;  
    }

    .card-c h3 {
        margin-top: 30px;
        font-size: 15px;
    }

    .package .card .card-c .image img {
        height: 60px; 
        width: 60px; 
    }

    .p_text {
        font-size: 10px; 
    }

    .p-li li {
        font-size: 12px; 
    }

    .pbn {
        font-size: 13px; 
    }
    .container .content:nth-child(2) {
        order: 1; 
    }

    .container .content:nth-child(1) {
        order: 2; 
    }

    .container .content:nth-child(3) {
        order: 3; 
    }
    .pack_spacer{
        height: 80px;
    }
}

/* desktop */
@media (min-width:992px) and (max-width:1199.98px){
    .pa-head h1{
        font-size: 30px;
    }
    .pa-head h3{
        font-size: 20px;
    }
    .container{
        display: flex;
        height: auto;
        gap: 10px;
        justify-content: center;
    }
    .card {
        height: 400px; 
        width: 250px;  
    }

    .card-c h3 {
        margin-top: 30px;
        font-size: 15px;
    }

    .package .card .card-c .image img {
        height: 70px; 
        width: 70px; 
    }
    
    .p_text {
        font-size: 10px; 
    }

    .p-li li {
        font-size: 12px; 
    }

    .pbn {
        font-size: 13px; 
    }
    .pack_spacer{
        height: 80px;
    }
}

/* extra large */
@media (min-width:1200px){
    .pa-head h1{
        font-size: 30px;
    }
    .pa-head h3{
        font-size:20px;
    }
    .container{
        display: flex;
        height: auto;
        gap: 10px;
        justify-content: center;
    }
    .card {
        height: 500px; 
        width: 300px;  
    }

    .card-c h3 {
        margin-top: 30px;
        font-size: 15px;
    }

    .package .card .card-c .image img {
        height: 80px; 
        width: 80px; 
    }
    
    .p_text {
        font-size: 12px; 
    }

    .p-li li {
        font-size: 14px; 
    }

    .pbn {
        font-size: 15px; 
    }
    .pack_spacer{
        height: 120px;
    }
}


                    /*------------ footer ------------*/

.footer {
    width: 100%;
    height: auto;
    display: flex;
    gap: 130px;
    position: relative;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    
}

.footer-col {
    margin: 20px 0;

}

.footer-col h3 {
    color: #274091;
    font-size: 25px;
}

.footer-col.em img {
    height: auto;
    width: 250px;
}

.footer-col.em p {
    font-size: 20px;
    margin: 30px 0;
    color: rgb(49, 49, 49)
}

.icons{
    display: flex;
    justify-content:flex-start;
    align-items: center;
    gap: 20px;
}

.icons img{
    max-width: 100%;
    width: 35px !important;
    height: auto;
    display: block;
    margin-top: 10px;
    transition: all .60s ease;
    /* background-color: red; */
}

.icons img:hover {
    transform: translateY(-5px);
    cursor: pointer;
}


.footer-col.me ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.me .fh {
    padding-left: 7px;
}

.footer-col.me .fm li a {
    display: block;
    color: rgb(49, 49, 49);
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    transition: all .80s ease;
    text-decoration: none;
    padding-left: 10px;
    margin-bottom: 16px;
}

.footer-col.me ul li a:hover {
    color:#274091;
    transform: translate(-2px) translate(-3px);
}

.footer-col.co ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer-col.co ul li img{
    width: 25px;
    flex-shrink: 0;
    height:auto;
}

.footer-col.co ul li{
    font-family: Arial, Helvetica, sans-serif;
    font-size:15px;
    color: rgb(49, 49, 49);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

/* small */
    @media (max-width: 575.98px) {
        .footer {
            display: flex;
            flex-direction: column;
            text-align: center; 
            gap: 15px; 
            padding: 0% 3%;
        }
    
        .hideOnMobile_em{
            display: none; 
        }

        .hideOnMobile_me{
            display: none;
        }
    
        .footer-col h3 {
            font-size: 20px; 
        }

        .footer-col.em p {
            font-size: 17px; 
            margin: 20px 0;
        }
    
        .icons {
            display: flex;
            justify-content: center; 
        }
    
        .icons a img{
            width: 30px !important;
            margin-top: 10px; 
        }

        .footer-col.co ul li img{
           display: none;
        }

        .footer-col.co ul li {
            font-size: 13px; 
            margin-bottom: 0px; 
            justify-content: center;
        }
    
        .footer-col {
            margin: 0; 
        }
    
        .footer-col ul {
            padding: 0; 
        }
    }

    /* medium */
    @media(min-width:576px) and (max-width:767.98px){
        .footer {
            display: flex;
            flex-direction: column;
            text-align: center; 
            gap: 15px; 
            padding: 0% 3%;
        }
    
        .hideOnMobile_em{
            display: none; 
        }
        .hideOnMobile_me{
            display: none;
        }
    
        .footer-col h3 {
            font-size: 20px; 
        }

        .footer-col.em p {
            font-size: 17px; 
            margin: 20px 0;
        }
    
        .icons {
            display: flex;
            justify-content: center; 
        }
    
        .icons a img{
            width: 32px !important;
            margin-top: 10px; 
        }

        .footer-col.co ul li img{
           display: none;
        }

        .footer-col.co ul li {
            font-size: 14px; 
            margin-bottom: 0px; 
            justify-content: center;
        }
    
        .footer-col {
            margin: 0; 
        }
    
        .footer-col ul {
            padding: 0; 
        }
    }

    /* large */
    @media(min-width:768px) and (max-width:991.98px){
        .footer {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 50px;
        }
        .footer-col h3{
            font-size: 20px;
        }

        .hideOnMobile_me{
            display: none;
        }
        .footer-col.em img{
            width: 200px;
            height: auto;
        }
        .icons{
            gap: 15px;
        }

        .icons img{
            width: 30px !important;
            margin-top: 8px;
        }
        .footer-col.em p{
            font-size: 17px;
            margin: 20px 0;
        }

        .footer-col.co ul li{
            font-size: 13px;
            gap: 7px;
            padding-bottom: 10px;
        }
        .footer-col.co ul li img{
            width: 20px;
            height: auto;
        }
       .fbr1{
           display: none;
       }

    }

/* desktop */
@media(min-width:992px) and (max-width:1199.98px){
    .footer {
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    .footer-col h3{
        font-size: 25px;
    }

    .footer-col.me .fm li a{
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-col.co ul li{
        font-size: 15px;
    }
    .footer-col.co ul li img{
        width: 22px;
        height: auto;
    }
}

/* extra large */
@media(min-width:1200px){
    .footer {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-col h3{
        font-size: 25px;
    }

    .footer-col.me .fm li a{
        font-size: 15px;
        margin-bottom: 16px;
    }
    .footer-col.co ul li{
        font-size: 17px;
    }
    .footer-col.co ul li img{
        width: 25px;
        height: auto;
    }
}

/* base footer */
.fco {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    padding: 10px 60px; 
    background-color: #274091;
}

.fco .fp-1,
.fco .fp_2 {
    margin: 12px 0; 
    font-size: 16px; 
    color: white; 
    font-family: Arial, Helvetica, sans-serif;
}

/* small */
@media (max-width: 575.98px) {
    .fco {
        flex-direction: column; 
        text-align: center;
    }
    .fco .fp-1,
    .fco .fp_2 {
        margin-bottom: 10px; 
        font-size: 11px;
    }
}
/* medium */
@media (min-width:576px) and (max-width:767.98px){
    .fco {
        flex-direction: column; 
        text-align: center;
    }
    .fco .fp-1,
    .fco .fp_2 {
        margin-bottom: 10px; 
        font-size: 13px;
    }
}

/* large */
@media (min-width:768px) and (max-width:991.98px){
    .fco {
        flex-direction: column; 
        text-align: center;
    }
    .fco .fp-1,
    .fco .fp_2 {
        margin-bottom: 13px; 
        font-size: 14px;
    }
}

/* desktop */
@media (min-width:992.98px){
    .fco {
        display: flex; 
        justify-content: space-between;
        align-items: center; 
    }
    
    .fco .fp-1,
    .fco .fp_2 {
        font-size: 15px; 
    }
}

/* extra */
@media(min-width:1200px){
    .fco .fp-1,
    .fco .fp_2 {
        font-size: 16px; 
    }
}



                    /* --------services---------- */


.ser {
    width: 100%;
    padding: 0 8%;
    box-sizing: border-box;
    background-color: #f5fafe;
}

.serhe {
    text-align: center;
    font-size: 30px;
    margin: 60px 0;
    color: #274091;
}

.ser_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    padding: 2% 2%;
    background-color: white;
    border-radius: 30px;
}

.ser_row.reverse {
    flex-direction: row-reverse;
}

.ser_row img {
    flex: 1;
    width: 100%;
    height: auto;
    border: 5px solid rgb(206, 204, 204);
    border-radius: 20px;
}

.ser_tt {
    flex: 1;
}

.ser_tt h1 {
    font-size: 20px;
    color: #274091;
    margin-bottom: 10px;
}

.ser_tt h4,h5{
    margin:10px 0;
    color:#274091;
}

.ser_tt p {
    font-size: 17px;
    margin-bottom: 20px;
    text-indent: 2rem;
    line-height: 30px;
    text-align: left;
    color:rgb(49, 49, 49); 
}

.ser_but{
    padding: 10px 20px;
    border: 6px solid rgb(216, 216, 216);
    background-color: #274091;
    border-radius: 50px;
    margin-bottom: 30px;
}
.ser_but a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.ser_but:hover{
    background-color: rgb(141, 140, 140);
}

/* small */
@media (max-width: 575.98px) {
    .ser_row {
        flex-direction: column;
        text-align: center;
        margin: 30px 0;
    }

    .ser_row.reverse {
        flex-direction: column; 
    }

    .ser_row img {
        max-width: 90%; 
    }

    .serhe{
        font-size: 25px;
        margin: 30px 0;
    }
    
    .ser_tt h1{
        text-align: center;
        font-size: 15px;
    }

    .ser_tt p{
        text-align: center;
        font-size: 15px;
        text-indent: 0;
        line-height: 25px;
    }
    .ser_tt.mo{
        text-align: left;
    }
    .ser_but{
        padding: 7px 17px;
    }

    .ser_but a{
        font-size: 10px;
    }
}

/* medium */
@media (min-width:576px) and (max-width:767.98px){
    .ser_row {
        flex-direction: column;
        text-align: center;
        margin: 30px 0;
    }

    .ser_row.reverse {
        flex-direction: column; 
    }

    .ser_row img {
        max-width: 90%; 
    }

    .serhe{
        font-size: 30px;
    }
    .ser_tt h1{
        text-align: center;
        font-size:20px;
    }
    .ser_tt p{
        font-size:15px;
        text-align: center;
        text-indent: 0;
    }
    .ser_but{
      padding: 8px 18px;
    }
    .ser_but a{
        font-size: 12px;
    }
}

/* large */
@media(min-width:768px) and (max-width:991.98px){
    .ser_row{
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 45px 0;
    }
    .ser_row.mo{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 45px 0;
    }
    .ser_row img {
        max-width: 100%;   
    }
    .ser_row.mo img {
        max-width: 50%;   
    }
    .serhe{
        font-size: 25px;
        margin: 45px 0;
    }
    .ser_tt h1{
        font-size: 15px;
    }
    .ser_tt p{
        font-size: 15px;
        text-indent: 1.2rem;
        line-height: 20px;
    }
    .ser_but{
        padding:8px 18px;
    }
    .ser_but a{
        font-size: 12px;
    }
}

/* desktop */
@media (min-width:992px) and (max-width:1199.98px){
    .ser_row{
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 45px 0;
    }
    .ser_row.mo{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 45px 0;
    }
    .ser_row img {
        max-width: 100%;   
    }
    .ser_row.mo img {
        max-width: 50%;   
    }
    .serhe{
        font-size: 25px;
        margin: 45px 0;
    }
    .ser_tt h1{
        font-size: 15px;
    }
    .ser_tt p{
        font-size: 17px;
        text-indent: 1.2rem;
        line-height: 25px;
    }
    .ser_but{
        padding:8px 18px;
    }
    .ser_but a{
        font-size: 12px;
    }
}
/* extra */
@media (min-width:1200px){
    .ser_row{
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 60px 0;
    }
    .ser_row img {
        max-width: 100%;   
    }
    .serhe{
        font-size: 30px;
        margin: 60px 0;
    }
    .ser_tt h1{
        font-size: 20px;
    }
    .ser_tt p{
        font-size: 17px;
        text-indent: 2rem;
        line-height: 30px;
    }
    .ser_but{
        padding:10px 20px;
    }
    .ser_but a{
        font-size: 14px;
    }
}


                            /* -----------Packages------------ */

.package1{
    background: #f5fafe;
    margin: 0;
    padding: 0;
}

.pack_he{
    font-size: 30px;
    text-align: center;
    margin: 50px 0 10px 0;
    color:#274091;
}

.pa_content h3{
    font-size: 20px;
}

.pa_container.top{
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-bottom:40px;
}
.pa_container.bot{
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-bottom:40px;
    /* background-color: white; */
}
.pa_content{
    padding-inline: 20px;  
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pa_card::before{
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
    background:#274091;
}

.pa_card {
    height: 500px;
    width: 300px;
    background-color: #ffffff;
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 4px -10px 10px gray;
}

.pa_card .pa_card-c{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    /* z-index: 100; */
}
.pa_card-c h3{
    font-size: 20px;
    color: white;
    font-family: Georgia;
    margin-top: 40px;
}

.package1 .pa_card .pa_card-c .pa_image img{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 3px solid #e9e9e9;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 100;
}

.pa_p_text{ 
    color: #274091;
    font-size: 12px;
    font-weight: bold;
    text-align: center;   
}

.pa_p-li{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}
.pa_p-li li{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #3d3d3d;
}

.pa_p-li li i{
    color: #274091;
}

/* table */

.pa-he{
    text-align: center;
    color: #274091;
    font-size: 30px;
    margin: 0;
    padding:70px 0 50px 0;
}

.patab{
    text-align: center;
   
}
.tbcon{
  position: relative;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  overflow-x: auto;  
}
.con_tb{
    overflow-x: auto;
    border-collapse: collapse;
    border-color: black;
}
.con_tb table thead tr td{
    font-size: 20px;
    font-weight: bold;
    /* background-color:#ffffff; */
}
.con_tb td{
    font-size: 15px;
    background-color: #f5fafe;
}
.tb_head{
    color: #274091;
    font-size: 15px;
}
.tb_head td{
    text-align: left;
    border: none;
    /* background-color:#ffffff; */
}

.patab p{
    font-size: 15px;
    color:#274091;
}

.tb_but {
    position: relative;
    left: 50%;
    transform: translateX(-50%); 
    text-align: center;
    padding: 30px 0 30px 0;
}

.tb_but a {
    display: inline-block;
    font-size: 20px;
    padding: 10px 50px;
    background-color: #274091;
    color: white;
    text-decoration: none;
    border: 6px solid rgb(216, 216, 216);
    border-radius: 30px;
}

.tb_but a:hover{
    background-color: rgb(141, 140, 140);
    cursor: pointer;
}
/* small */
@media (max-width: 575.98px) {
    .pack_he{
        font-size: 25px;
    }
    .pa_container {
        flex-direction: column; 
        align-items: center; 
    }

    .pa_card {
        height: 400px; 
        width: 250px;  
        margin-bottom: 20px; 
    }

    .pa_card-c h3 {
        margin-top: 30px; 
        font-size: 15px; 
    }

    .package1 .pa_card .pa_card-c .pa_image img {
        height: 60px; 
        width: 60px; 
    }

    .pa_p_text {
        font-size: 10px; 
    }

    .pa_p-li li {
        font-size: 12px; 
    }
    /* table */
    .patab{
        padding: 0 5%;
    }
    .pa-he{
        font-size: 25px;
    }
    .con_tb table thead tr td{
        font-size: 17px;  
    }
    .con_tb td{
        font-size:13px;
    }
    .patab p{
        font-size: 13px;
    }
    .tb_but{
        padding: 10px 0 10px 0;
    }
    .tb_but a{
        font-size: 10px;
        padding:5px 25px ;
        border: 3px solid rgb(216, 216, 216);
    }

}
/* medium */
@media (min-width: 576px) and (max-width:767.98px) {
    .pack_he{
        font-size: 25px;
    }
    .pa_container {
        flex-direction: column; 
        align-items: center; 
    }

    .pa_card {
        height: 400px; 
        width: 250px;  
        margin-bottom: 20px; 
    }

    .pa_card-c h3 {
        margin-top: 30px; 
        font-size: 15px; 
    }

    .package1 .pa_card .pa_card-c .pa_image img {
        height: 60px; 
        width: 60px; 
    }

    .pa_p_text {
        font-size: 10px; 
    }

    .pa_p-li li {
        font-size: 12px; 
    }
    /* table */
    .patab{
        padding: 0 5%;
    }
    .pa-he{
        font-size: 25pxpx;
    }
    .con_tb table thead tr td{
        font-size: 17px;  
    }
    .con_tb td{
        font-size:13px;
    }
    .patab p{
        font-size: 13px;
    }
    .tb_but{
        padding: 13px 0 13px 0;
    }
    .tb_but a{
        font-size: 12px;
        padding:6px 30px ;
        border: 3px solid rgb(216, 216, 216);
    }

}
/* large */
@media (min-width: 768px) and (max-width:991.98px) {
    .pack_he{
        font-size: 30px;
    }
    .pa_card {
        height: 400px; 
        width: 250px;  
        margin-bottom: 20px; 
    }

    .pa_card-c h3 {
        margin-top: 30px; 
        font-size: 15px; 
    }

    .package1 .pa_card .pa_card-c .pa_image img {
        height: 60px; 
        width: 60px; 
    }

    .pa_p_text {
        font-size: 10px; 
    }

    .pa_p-li li {
        font-size: 12px; 
    }
    /* table */
    .patab{
        padding: 0 5%;
    }
    .pa-he{
        font-size: 30px;
    }
    .con_tb table thead tr td{
        font-size: 17px;  
    }
    .con_tb td{
        font-size:13px;
    }
    .patab p{
        font-size: 14px;
    }
    .tb_but{
        padding: 17px 0 17px 0;
    }
    .tb_but a{
        font-size: 15px;
        padding:7px 45px ;
        border: 3px solid rgb(216, 216, 216);
    }

}

/* desktop */
@media (min-width:992px) and (max-width:1199.98px){
    .pack_he{
        font-size: 30px;
    }
    .pa_card {
        height: 400px; 
        width: 250px;  
        margin-bottom: 20px; 
    }

    .pa_card-c h3 {
        margin-top: 30px; 
        font-size: 15px; 
    }

    .package1 .pa_card .pa_card-c .pa_image img {
        height: 60px; 
        width: 60px; 
    }

    .pa_p_text {
        font-size: 10px; 
    }

    .pa_p-li li {
        font-size: 12px; 
    }
    /* table */
    .patab{
        padding: 0 5%;
    }
    .pa-he{
        font-size: 30px;
    }
    .con_tb table thead tr td{
        font-size: 17px;  
    }
    .con_tb td{
        font-size:13px;
    }
    .patab p{
        font-size: 14px;
    }
    .tb_but{
        padding: 17px 0 17px 0;
    }
    .tb_but a{
        font-size: 15px;
        padding:7px 45px ;
        border: 3px solid rgb(216, 216, 216);
    }

}

/* extra large */
@media (min-width:1200px){
    .pack_he{
        font-size: 30px;
    }
    .pa_card {
        height: 500px; 
        width: 300px;  
    }

    .pa_card-c h3 {
        margin-top: 40px; 
        font-size: 20px; 
    }

    .package1 .pa_card .pa_card-c .pa_image img {
        height: 80px; 
        width: 80px; 
    }

    .pa_p_text {
        font-size: 12px; 
    }

    .pa_p-li li {
        font-size: 14px; 
    }
    /* table */
    .pa-he{
        font-size: 30px;
    }
    .con_tb table thead tr td{
        font-size: 20px;  
    }
    .con_tb td{
        font-size:15px;
    }
    .patab p{
        font-size: 15px;
    }
    .tb_but{
        padding: 30px 0 30px 0;
    }
    .tb_but a{
        font-size: 20px;
        padding:10px 50px ;
        border: 6px solid rgb(216, 216, 216);
    }
}


                                    /* --------About us----------*/


.about_he{
    font-size: 40px;
    color: #274091;
    text-align: center;
    margin: 50px 0 50px 0;
}
.b_his {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0% 7%;
    flex-wrap: wrap; 
}

/* Text styling */
.his_para {
    flex: 1;
    max-width: 60%; 
}

.his_para p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    text-indent: 2rem;
}

/* Image styling */
.his_img {
    flex: 1; 
    max-width: 40%; 
    align-items: center;
}

.his_img img {
    max-width: 100%; 
    height: auto; 
    border: 5px solid  rgb(206, 204, 204);
    border-radius: 30px;
}

/* about */
.b_va{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0% 7%;
    flex-wrap: wrap; 
}

.va_img{
    flex: 1;
    max-width: 50%;
    align-items: center;
}
.va_img img{
    max-width: 100%;
    height: auto;
    border: 5px solid  rgb(206, 204, 204);
    border-radius: 30px;
}
.va_con{
    max-width: 50%;
    flex: 1;
}
.va_con ul{
    list-style: none;
}
.fis{
    font-size: 30px;
    color:black;
    line-height: 1.8;
}

.highlight {
    display: inline-block; 
    background-color: #274091; 
    color: white; 
    width: 45px; 
    height: 45px; 
    text-align: center; 
    line-height: 1.5; 
    font-weight: bold; 
    margin-right: 4px;
    border-radius: 5px;
    vertical-align:-25%;
}
/* animation */
.logos {
    overflow: hidden;
    white-space: nowrap;
}

.logos:hover .lgsl {
    animation-play-state: paused;
}

.lgsl {
    display: inline-block;
    animation: 35s slide infinite linear;
}

.lgsl img {
    width: auto;
    height: 50px;
    margin: 0 40px;
}
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/*small*/
@media (max-width: 575.98px) {
    .about_he {
        font-size: 25px;
        margin: 25px 0 25px 0;
    }

    /* "Our History" section */
    .b_his {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .his_img, .his_para {
        max-width: 100%;
    }

    .his_para p {
        text-indent: 0; 
        font-size: 17px; 
        line-height: 1.5; 
    }

    /* "Our Value" section */
    .b_va {
        flex-direction: column; 
        text-align: left;
        gap: 10px; 
    }

    .va_img, .va_con {
        max-width: 100%; 
    }

    .fis {
        font-size: 25px; 
        line-height: 1.8; 
    }

    .highlight {
        width:40px;
        height: 40px;
        line-height: 1.5; 
        margin-right: 2px; 
        vertical-align:-35%;
    }

    .lgsl img{
        height:25px;
        margin: 0 20px;
    }

}

/* medium */
@media (min-width:576px) and (max-width:767.98px){
    .about_he {
        font-size: 27px;
        margin: 30px 0 30px 0;
    }

    /* "Our History" section */
    .b_his {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .his_img{
        display: none;
    }
    .his_para {
        max-width: 100%;
    }

    .his_para p {
        text-indent: 0; 
        font-size: 17px; 
        line-height: 1.5; 
    }

    /* "Our Value" section */
    .b_va {
        gap: 20px; 
    }

    .va_img{
        max-width: 60%;
    }
    .va_con {
        max-width: 40%;
    }

    .fis {
        font-size: 17px;
        line-height: 1.7;
    }

    .highlight {
        width: 27px; 
        height: 27px;
        line-height: 1.5; 
        margin-right: 3px; 
        vertical-align:-35%;
    }

    .lgsl img{
        height:30px;
        margin: 0 25px;
    }
  
}

/* large */
@media (min-width:768px) and (max-width:991.98px){
    .about_he {
        font-size: 30px;
        margin: 30px 0 30px 0;
    }

    /* "Our History" section */
    .b_his {
        gap: 20px;
        text-align: center;
    }

    .his_img{
        display: none;
    }
    .his_para {
        max-width: 100%;
    }

    .his_para p {
        text-indent: 0; 
        font-size: 17px; 
        line-height: 1.5; 
    }

    /* "Our Value" section */
    .b_va {
        gap: 30px; 
    }

    .va_img{
        max-width: 60%;
    }
    .va_con {
        max-width: 40%;
    }

    .fis {
        font-size: 20px;
        line-height: 1.7;
    }

    .highlight {
        width: 30px; 
        height: 30px;
        line-height: 1.4; 
        margin-right: 3px; 
        vertical-align:-30%;
    }

    .lgsl img{
        height:35px;
        margin: 0 25px;
    }
}

/* desktop */
@media(min-width:992px) and (max-width:1199.98px){
    .about_he {
        font-size: 30px;
        margin: 35px 0 35px 0;
    }

    /* "Our History" section */
    .b_his {
        gap: 20px;
        text-align: center;
    }

    .his_img{
        display: none;
    }
    .his_para {
        max-width: 100%;
    }

    .his_para p {
        text-indent: 0; 
        font-size: 17px; 
        line-height: 1.5; 
    }

    /* "Our Value" section */
    .b_va {
        gap: 40px; 
    }

    .va_img{
        max-width: 60%;
    }
    .va_con {
        max-width: 40%;
    }

    .fis {
        font-size: 25px;
        line-height: 1.7;
    }

    .highlight {
        width: 35px; 
        height: 35px;
        line-height: 1.4; 
        margin-right: 4px; 
        vertical-align:-25%;
    }

    .lgsl img{
        height:40px;
        margin: 0 30px;
    }
}
/* extra */
@media(min-width:1200px){
    .about_he {
        font-size: 30px;
    }

    /* "Our History" section */
    .b_his {
        gap: 40px;
    }

    .his_img{
        max-width: 40%;
    }
    .his_para {
        max-width: 60%;
    }

    .his_para p {
        text-indent: 2rem; 
        font-size: 17px; 
        line-height: 1.5; 
    }

    /* "Our Value" section */
    .b_va {
        gap: 60px; 
    }

    .va_img{
        max-width: 50%;
    }
    .va_con {
        max-width: 50%;
    }

    .fis {
        font-size: 30px;
        line-height: 1.8;
    }

    .highlight {
        width: 45px; 
        height: 45px;
        line-height: 1.5; 
        margin-right: 4px; 
        vertical-align:-25%;
    }

    .lgsl img{
        height:50px;
        margin: 0 40px;
    }
}

 

/* -----------contact-------------- */

/* Center loca_con at the top */
.con_he{
    font-size: 30px;
    text-align: center;
    color:#274091;
    margin: 40px 0 20px 0;
}
.loca_con {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; 
    background-color: #f5fafe;
}
.loca{
    width: 100%;
    max-width: 1200px;
}
.loca iframe {
    width: 100%; 
    height: 450px;
    border: none;
}

/* Bottom Section Styling */
.con_us {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.con_row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Contact Info Column */
.con_col {
    width: 45%;
    padding-right: 20px;
}

.con_col ul {
    list-style: none;
    padding: 0;
}

.con_col li {
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(83, 83, 83);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.con_col li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Contact Form Column */
.con_form {
    width: 45%;
}

.con_form input,
.con_form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgb(182, 181, 181);
    border-radius: 5px;
}

.con_form button {
    padding: 10px 20px;
    background-color: #274091;
    font-size: 13px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.con_form button:hover {
    background-color: #4670f8;
}

.g-recaptcha{
    margin: 0 0 10px 0;
}

/* small */
@media (max-width: 575.98px) {
    .con_he{
        font-size: 25px;
    }
    .loca iframe {
        width: 100%; 
        height: 300px;
        border: none;
    }
    .con_row {
        flex-direction: column;
        align-items: center;
        padding: 0 40px;

    }

    .con_col {
        width: 100%;
        margin-bottom: 20px;
    }

    .con_form {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .con_form button {
        padding: 8px 16px;
    }
    
}

/* medium */
@media (min-width: 576px) and (max-width:767.98px) {
    .con_he{
        font-size: 25px;
    }
    .loca iframe {
        width: 100%; 
        height: 300px;
        border: none;
    }
    .con_row {
        flex-direction: column;
        align-items: center;
        padding: 0 100px;
    }

    .con_col {
        width: 100%;
        margin-bottom: 20px;
    }

    .con_form {
        width: 100%;
        text-align: center;
    }
    .con_form button {
        padding: 10px 20px;
    }
}


/* large */
@media(min-width:768px) and (max-width:991.98px){
    .con_he{
        font-size: 25px;
    }

    .loca iframe {
        width: 100%; 
        height: 300px;
    }

    .con_row{
        padding: 0 80px;
    }
    .con_col {
        width: 100%;
        margin-bottom: 20px;
    }

    .con_form {
        width: 100%;
        text-align: center;
    }
}

/* desktop */
@media(min-width:992px) and (max-width:1199.98px){
    .con_he{
        font-size: 30px;
    }

    .loca iframe {
        width: 100%; 
        height: 400px;
    }

    .con_row{
        padding: 0 80px;
    }
    .con_col {
        width: 100%;
        margin-bottom: 20px;
    }

    .con_form {
        width: 100%;
        text-align: center;
    }
}

/* extra */
@media(min-width:1200px){
    .con_he{
        font-size: 30px;
    }
    .loca iframe {
        width: 100%; 
        height: 450px;
    }
}