@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900|Raleway:300,400,500,600,700,800|Work+Sans:500,700,800,900&display=swap');


*{
    font-size: 15px;
    line-height: 24px;
    font-family: 'Raleway', sans-serif;
    /* color: #232323; */
    /* background: #fff; */
    
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: Arial, Helvetica, sans-serif; */
}


.hr-1 {
    border-color: #d4d4d4;
}


/* Heading Styles Starts */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.page-heading1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #0f4c73;
}

.main-heading1 {
    color: #323232;
}

.main-heading2 {
    color: #0f4c73;
}

.main-heading3 {
    margin-bottom: 20px;
    color: #0f4c73;
}

.sub-heading1 {
    margin-bottom: 20px;
    color: #121212;
}

.lite {
    font-weight: 300;
}

.side-heading1 {
    margin-top: 50px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    color: #0f4c73;
    border-bottom: 1px solid #0f4c73;
}

.side-heading2 {
    margin-bottom: 16px;
    color: #121212;
}


/* Standard Styles Starts */

a {
    color: #0f4c73;
}

a:hover,
a:focus {
    color: #057cad;
}

/* Header Start HERE */

header{
    background-color: #0f4c73;
    color: #fff;
    width: 100%;
    position: relative;
    z-index: 1000;
    display: block;
}

@media screen and (max-width: 1155px) {
    .header {
        display: none;
    }
}

/* 
footer{
    position: relative;
    bottom: 0;
    text-align: center;
    font-size: 22PX;
} */

header h2{
font-size: 15px;
padding: 6px;
padding-right: 250px;
padding-left: 80px;
/* font-family: 'Lato', sans-serif; */
}

header{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav ul li{
    list-style: none;
    display: inline-block;
    
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 0 15px;
    text-transform: capitalize;
} 

.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
    height: wrap;
}

nav.container{
    background-color: #05c5f0;
    
}

.container .logo {
    max-width: 300px;
    width:300px;
}

/* img{
    align-items: left;
    width: 300px;
    padding: 3px;
    padding-left: 10px; */
    
/* } */

.navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
    /* padding: 10px; */
}

#menu{
    width: 35px;
    height: wrap;
    margin: 1px 0 1px 1px;
    cursor: pointer;

}
.bar{   
    height: 5px;
    width: 100%;
    background-color: #144E87;
    display: block;
    border-radius: 5px;
    transition: 0.3s ease;
}

#bar1{
    transform: translateY(-4px);
}

#bar3{
    transform: translateY(4px);
}

.nav li a{
    color: #fff;
    text-decoration: none;
}

.nav li a:hover{
    border: 1px solid #144E87;
    padding: 10px 20px;
}

.nav li{
    list-style: none;
    padding: 16px 0;
}

.nav {
    padding: 0;
    margin: 0 20px;
    transition: 1s ease;
    display: none;
}

.icon .bar{
    background-color: #144E87;
}

.icon #bar1{
    transform: translateY(4px) rotate(-45deg);
}

.icon #bar3{
    transform: translateY(-6px) rotate(45deg);
}

.icon #bar2{
    opacity: 0;
}

.change{
    background-color: #05c5f0;
    height: fit-content;
    margin: 0;
    padding-top: 62px;
    position: absolute;
    font-size: 30px;
    top: 0;
    z-index: -100;
    width: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width:1000px){
    .change{
        width: 40%;
    }
}

@media only screen and (max-width:500px){
    .change{
        width: 0%;
    }
}

/* Sticky Button Start */

.sticky-buttons {
    position: fixed;
        padding-top: 25%;
    justify-content: center;
    /* bottom: 20px; Adjust as needed */
    right: 20px; /* Adjust as needed */
    z-index: 9999;
  }
  
  .sticky-buttons a {
    display: block;
    width: 60px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
    line-height: 60px; /* Adjust as needed */
    text-align: center;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    margin-bottom: 10px; /* Adjust as needed */
    text-decoration: none;
  } 
  
  .sticky-buttons a.fas {
    background-color: #007bff; /* Call button color */
  }
  

/* Sticky Button Close */

/* POP UP FORM Start */

.popup {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 9999;
  }
  
  .popup h2 {
    margin-top: 0;
  }
  
  .popup label {
    display: block;
    margin-bottom: 10px;
  }
  
  .popup input[type="text"],
  .popup input[type="tel"],
  .popup input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .popup button[type="submit"],
  .popup button#closePopup {
    background-color: #007bff;
    color: rgb(7, 7, 7);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .popup button#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
/* POP UP FORM Start */

/* Main Slider Start */

.slider{
    width: 1340px;
    max-width: 100vw;
    height: 450px;
    margin: auto;
    position: relative;
    overflow: hidden;
    z-index: 50;
}

.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 100px;
    top: 0;
    display: flex;
    transition: 1s;

}

.slider .list img{
    width: 100%;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    height: auto;
    /* transform: translateY(-50%); */
}

.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(3, 95, 138, 0.573);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
    font-size: 25px;
}

.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider .dots li.active{
    width: 30px;

}

@media screen and (max-width: 768px) {
    .slider .item img {
        height: auto; /* Allow the height to adjust automatically */
        
    }
    
    .slider .buttons {
        visibility: hidden;
        top: auto; /* Reset the top position */
        bottom: 10px; /* Position the buttons at the bottom */
        transform: translateY(0); /* Reset the transform */
    }
}

/* Main Slider Close */


/* Counter widget Styles Starts */

.counters-wrapper {
    padding-top: 60px;
}    
.counters-wrapper h2{
    text-align: center;
    color: #0f4c73;
    font-size: 30px;
}
.counters-wrapper p {
    text-align: center;
    padding-top: 10px;
    /* display: flex; */
    color: #0f4c73;
}

.counters-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.counters-item {
    flex: 1 1 auto;
    width:50vh;
    text-align: center;
    /* display: flex; */
    position: relative;
    padding: 15px;
    color: #0f4c73;
    margin: 15px;
    transform: scale(1);
    transition: transform .3s ease-in-out;
}

.counters-item:hover {
    transform: scale(1.1);
}


.counters-item .counter {
    font-size: 40px;
    font-weight: bold;
}


.counters-item h3 {
    font-weight: 600;
    margin-top: 10px;
    font-size: 21px;
}

.counters-item:after {
    border-radius: 5px;
    border: 1px solid #0f4c73;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    content: "";
    position: absolute;
    transform: skew(-10deg);
    z-index: -1;
}

/* widget count item end */

/* 
.apointment {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.apointment .img {
    position: relative;
}

.call {
    font-size: 21px;
    position: absolute;
    color: #fff;
    top: 45%;
    left: 29%;
    transform: translate(-50%, -50%);
    padding: 10px;
    /* z-index: 100; */
/* }

.call .applynow {
    font-size: 20px;
    font-weight: lighter;
}

.call i {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 50%;
}

.icon {
    list-style-type: none;
    display: flex;
    align-items: baseline;
    padding-top: 10px;
    gap: 10px;
}

.call .phone {
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    font-size: 30px;
}

.call .btn {
    display: flex;
    position: absolute;
    right: -220%;
    bottom: 20%;
    padding: 5px;
    background-color: #0e4c76;
    color: #fff;
    font-weight: 2px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Arial, Helvetica, sans-serif;
    
} */

/* mini slider */


.sec-padding {
    padding: 90px 0;
}

.sec-title {
    margin-bottom: 10px;
}

.sec-title h2 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
}

.sec-title p {
    font-size: 16px;
    color: #747474;
    margin: 0;
    margin-bottom: 20px;
}

.sec-title span.decor {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.sec-title span.inner {
    width: 14px;
    height: 14px;
    background: #0f4c73;
    display: block;
    margin: auto;
    margin-top: -1px;
    -webkit-transform: rotate(45deg);
}

.sec-title span.decor:before,
.sec-title span.decor:after {
    content: '';
    position: absolute;
    top: 5px;
    width: 55px;
    height: 2px;
    background: #d2d2d2;
    z-index: -1;
}

.sec-title span.decor:before {
    left: 22px;
}

.sec-title span.decor:after {
    right: 22px;
}

.sec-title.text-left span.decor {
    margin-left: 50px;
}

.sec-title.style-two span.decor {
    border-color: #186AAB;
}

.sec-title.style-two span.decor .inner {
    background: #186AAB;
}

.sec-title.style-two span.decor:after {
    right: -94px;
}

.sec-title.style-two span.decor:before,
.sec-title.style-two span.decor:after {
    background: #DCDCDC;
}

.sec-title.colored span.decor {
    border-color: #2562B3;
}

.sec-title.colored span.decor span.inner {
    background: #2562B3;
}

.sec-title.colored span.decor:before,
.sec-title.colored span.decor:after {
    background: #2562B3;
}


/* Section Title Style End */


.wrapper {
    margin: 0 auto;
    margin-top: 10px;
    /* margin-left: 25vh; */
    /* display: flex; */
    /* margin: 10px; */
    padding: 20px 35px;
    /* align-items: center; */
    /* justify-content: center; */
  /* max-width: 1100px; */
  width: 100%;
  background: #e2dede;
  position: relative

}

.sec-title {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}


.wrapper i {
    margin: 25px;
  top: 42%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}


.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
  left: -22px;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  /* background: #fff; */
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
.carousel .card .img {
  /* background: #8B53FF; */
  height: 248px;
  width: 80%;
  border-radius: 5%;
}
.card .img img {
  width: 100%;
  height: 100%;
  border-radius: 5%;
  object-fit: cover;
  border: 5px solid #fff;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0 5px;
}
.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}   

/* Footer Styles Starts */

.footer-area {
    font-weight: 100;
    text-align: justify;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 50px;
    background: #0e4c76;
}

.footer-area,
.footer-area a {
    color: #fff;
}

.footer-area a:hover {
    color: #4db1e2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.footer-area h4 {
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    color: #fff;
}

.container-box {
    display: flex;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}

.box {
    align-items: center;
    width: 33.33%;
    margin-left: 5%;
    margin-top: 0;
    /* margin-right: 8%; */
}

/* Media query for screen sizes less than or equal to 768px */
@media screen and (max-width: 768px) {
    .container-box {
        flex-direction: column; /* Change flex direction to column for smaller screens */
    }

    .box {
        width: 100%; /* Har div ko full width de, jisse vertically stack ho jaaye */
        margin-left: 0; /* Left margin ko hata de */
        margin-top: 60px; /* Top margin for each box */
    }
}

.social {
    list-style-type: none;
    display: flex;
    align-items: baseline;
    position: absolute;
    margin-top: 8px;
    gap: 10px;
}

.social li {
    display: inline-block;
    width: 30px; /* Square box ka width */
    height: 30px; /* Square box ka height */
    line-height: 30px; /* Centering vertically */
    text-align: center; /* Centering horizontally */
    margin-right: 10px; /* Gap between icons */
    border: 1px solid #ccc; /* Gray border line */
    /* border-radius: 5px; Square box ka rounded corners */
}

.social li a {
    display: block;
    font-size: 20px; /* Icon size */
    color: inherit; /* Inherit karke icon ka color use kare */
}

.footer-area h4:after {
    content: "";
    position: absolute;
    width: 69px;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #0f4c73;
}

.footer-area ul {
    margin-bottom: 0;
}

.footer-area li+li {
    margin-top: 10px;
}

.footer-area li .fa {
    margin-right: 7px;
    font-weight: bold;
}

.footer-area .address-list {
    margin-top: 15px;
    margin-bottom: 0;
}

.footer-area .address-list li {
    margin-top: 10px;
}

.footer-area .address-list li i {
    margin: 9px 20px 0 0;
    float: left;
    color: #fff;
}

.footer-area .address-list li.address .fa {
    margin: 8px 16px 20px 0;
    font-size: 18px;
}

.footer-area .tweets-list li {
    margin-top: 10px;
}

.footer-area .tweets-list li .fa {
    margin: 7px 12px 20px 0;
    color: #fff;
    font-size: 18px;
    float: left;
}

.footer-area .tweets-list li a:hover {
    text-decoration: underline;
}

.footer-area .newsletter {
    margin-top: 35px;
}

.footer-area .newsletter .form-control {
    padding: 15px 20px;
    height: 52px;
    color: #fff;
    background-color: #434343;
    border-color: #595959;
}

.footer-area .newsletter .form-control:focus {
    border-color: #777;
}

.footer-area .footer-logo {
    margin-bottom: 28px;
}

.footer-area .newsletter .btn-1 {
    margin-top: 25px;
    text-transform: uppercase;
    font-weight: 500;
}

.quick-links li {
    width: 50%;
    float: right;
}

.footer-area .quick-links li+li {
    margin-top: 0 !important;
    margin-bottom: 6px;
}

.aditya {
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: #121212;
    
    align-items: center;
    list-style: none;
}
