@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caramel&family=The+Nautigal&display=swap');
:root {
  --white: #ffffff;
  --green: #14743a;
  --blue-dark: #092f3e;
  --light-green: #59bb57;
  --black: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
  }
  
  * {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }
 

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  /*
    5. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /*
    6. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    7. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /*
    8. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }
  .nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .nav,
  .nav .nav-links {
    display: flex;
    align-items: center;
  }
  .nav {
    justify-content: space-between;
  }
  a {
    color: var(--black);
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
  }
  .nav .logo img {
    width: 150px;
  }
  .nav .nav-links {
    column-gap: 20px;
    list-style: none;
  }
  .nav .nav-links a {
    transition: all 0.2s linear;
  }
  .nav .nav-links a:hover {
    color: var(--light-green);
  }
  .nav.openSearch .nav-links a {
    opacity: 0;
    pointer-events: none;
  }


.nav .nav-links li:hover .js-arrow{
  transform: rotate(180deg);
  }
  .nav .nav-links li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 10px;
  }

.nav .nav-links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 22px;
  text-align: center;
  display: inline-block;
  color: var(--black);
  transition: all 0.3s ease;
}
.nav .nav-links li .sub-menu{
  position: absolute;
  top: 20px;
  left: 0; 
  line-height: 40px;
  background: var(--blue-dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
.nav .nav-links li:hover .js-sub-menu{
  display: block;
}
.nav .nav-links li .sub-menu li{
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav .nav-links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.nav .nav-links li .sub-menu .more-arrow{
  line-height: 40px;

 
}
.nav .nav-links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.nav-links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
  .nav .search-icon {
    color: var(--light-green);
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    position: absolute;
    right: 250px;
    height: 45px;
    max-width: 555px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s linear;
  }
  .nav.openSearch .search-box {
    opacity: 1;
    pointer-events: auto;
  }
  .search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    left: 15px;
    color: var(--light-green);
    transform: translateY(-50%);
  }
  .search-box input {
    color: var(--white);
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 6px;
    background-color: var(--black);
    padding: 0 15px 0 45px;
  }
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: none;
  }
  .active {
    color: var(--light-green);
  }
  .header-bar hr {
    background-color: var(--light-green);
    padding: 17px;
  }
  /* responsive */
  @media screen and (max-width: 1160px) {
    .nav {
      padding: 15px 3%;
    }
    .nav .search-box {
      right: 150px;
    }
  }
  @media screen and (max-width: 950px) {
    .nav {
      padding: 15px 2%;
    }
    .nav .search-box {
      right: 100px;
      max-width: 400px;
    }
  }
  @media screen and (max-width: 992px) {
    .nav .navOpenBtn,
    .nav .navCloseBtn {
      display: block;
    }
    .nav {
      padding: 15px 20px;
    }
    .nav .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100%;
      max-width: 280px;
      width: 100%;
      padding-top: 100px;
      row-gap: 30px;
      flex-direction: column;
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      z-index: 100;
    }
    .nav a {
      color: var(--black);
    }
    .nav.openNav .nav-links {
      left: 0;
    }
    .nav .navOpenBtn {
      color: var(--black);
      font-size: 20px;
      cursor: pointer;
    }
    .nav .navCloseBtn {
      position: absolute;
      top: 20px;
      right: 20px;
      color: var(--black);
      font-size: 20px;
      cursor: pointer;
    }
    .nav .search-box {
      top: calc(100% + 10px);
      max-width: calc(100% - 20px);
      right: 50%;
      transform: translateX(50%);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
  }
  .container {
    margin: 0 auto;
    padding: 10px 5%;
  }


  /* hero-section starts here */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 110vh;
    background-image: url('images/Homepage.png');
    background-repeat: no-repeat;
    background-size: cover;  
    background-position: center;
  }
  .hero-content {
    margin-bottom: 10px;
  }
  .hero-text{
    width: 55%;
    float: left;
  }
  @keyframes flyInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
  .hero-image {
    position: absolute;
    bottom: 0; 
    right: 0; 
    width: 45%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: flyInFromRight 1s ease-out forwards;
}

  .hero-content:after {
    content: "";
    display: table;
    clear: both;
  }
      /* Fly in Property*/
  @keyframes flyInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
  .hero-text h1 {
    font-weight: 800;
    font-size: 57px;
    letter-spacing: 1.5px;
    padding: 80px 10px 0 10px;
    animation: flyInFromLeft 1s ease-out forwards;
  }
  .hero-text p {
    font-size: 32px;
    font-weight: 500;
    padding: 2px 10px 0 10px;
    animation: flyInFromLeft 2s ease-out forwards;
  }
  .hero-icons-container {
    width: 100%;
    margin-bottom: 140px;
  }
  .hero-icons span.icon {
    margin: 0 5px;
    display: inline-block;
    text-align: center;
    animation: flyInFromLeft 2s ease-out forwards;
  }
  .hero-icons span.icon i {
    background-color: var(--light-green);
    border-radius: 50%;
    width: 80px;
    line-height: 80px;
    text-align: center;
  }
  .hero-icons span p {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
  }
  @media only screen and (max-width: 864px) {

    .hero-section {
      position: relative;
      width: 100%;
      min-height: 90vh;
      background-image: url('images/Homepage.png');
      background-repeat: no-repeat;
      background-size: cover;  
      background-position: center;
    }

    .hero-image{
    float: center;
    width: 45%;
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: bottom center;
    background-position: center;
    animation: flyInFromRight 1s ease-out forwards;
  }
    .hero-section .container {
      margin: 0 auto;
      padding: 10px 2%;
    }
    .hero-text {
      width: 100%;
      margin-bottom: 30px;
    }
    .hero-text h1 {
      font-weight: 800;
      font-size: 48px;
      letter-spacing: 1.5px;
      padding: 30px 10px 0 10px;
      text-align: center;
      animation: flyInFromLeft 1s ease-out forwards;
    }
    .hero-text p {
      font-size: 24px;
      font-weight: 500;
      padding: 2px 10px 0 10px;
      text-align: center;
      animation: flyInFromLeft 2s ease-out forwards;
    }
    .hero-image {
      width: 100%;
    }
    .hero-image img {
      width: 100%;
    }
    
    .hero-icons-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-icons span.icon i {
      background-color: var(--light-green);
      border-radius: 50%;
      width: 80px;
      line-height: 80px;
      text-align: center;
    }
    .hero-icons span p {
      text-align: center;
      font-size: 17px;
      font-weight: 500;
    }
  }

  @media only screen and (max-width: 480px) {
    .hero-image{
      float: center;
      width: 45%;
      background-repeat: no-repeat;
      background-size: contain; 
      background-position: bottom center;
      background-position: center;
      animation: flyInFromRight 1s ease-out forwards;
    }

    .hero-section .container {
      margin: 0 auto;
      padding: 10px 2%;
    }
    .hero-text {
      width: 100%;
      margin-bottom: 30px;
    }
    .hero-text h1 {
      font-weight: 800;
      font-size: 42px;
      letter-spacing: 1.5px;
      padding: 30px 10px 0 10px;
      text-align: center;
      animation: flyInFromLeft 1s ease-out forwards;
    }
    .hero-text p {
      font-size: 24px;
      font-weight: 500;
      padding: 2px 10px 0 10px;
      text-align: center;
      animation: flyInFromLeft 2s ease-out forwards;
    }
    .hero-image {
      width: 100%;
    }
    .hero-image img {
      width: 100%;
    }
    .hero-icons-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 30px;
    }
    .hero-icons span.icon {
      margin: 0 2px;
      display: inline-block;
      text-align: center;
      animation: flyInFromLeft 2s ease-out forwards;
    }
    .hero-icons span.icon i {
      background-color: var(--light-green);
      border-radius: 50%;
      width: 80px;
      line-height: 80px;
      text-align: center;
    }
    .hero-icons span p {
      text-align: center;
      font-size: 17px;
      font-weight: 500;
    }
  }

  /* about-section starts */
  .about-content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }
  .about-image {
    /* float: left; */
    width: 45%;
  }
  .about-image img {
    min-width: 100%;
    min-height: 100%;
    /* object-fit: cover; */
    animation: flyInFromLeft 1s ease-out forwards;
  }
  .about-text {
    /* float: right; */
    width: 55%;
    padding: 10px;
  }
  .about-text h2 {
    color: var(--light-green);
    font-weight: 300;
    font-size: 32px;
  }
  .about-text p {
    padding: 10px 0;
    font-weight: 400;
    font-size: 17px;
  }
  .about-text hr {
    padding: 1px;
    background-color: var(--blue-dark);
  }
  .vision-mission {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin: 10px 0;
  }
  .vision {
    max-width: 50%;
    height: 200px;
    background-color: var(--blue-dark);
    color: var(--white);
    padding: 5px 5px;
  }
  .vision h4 {
    padding: 5px;
  }
  .vision p {
    font-weight: 200;
    font-size: 16px;
    padding: 5px;
  }
  .mission {
    max-width: 50%;
    height: 200px;
    background-color: var(--green);
    color: var(--white);
    padding: 10px 5px;
    overflow: hidden;
  }
  .mission h4 {
    padding: 5px;
  }
  .mission p {
    font-weight: 200;
    font-size: 16px;
    padding: 5px;
  }
  @media only screen and (max-width: 600px) {
    .vision-mission {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .vision {
      min-width: 100%;
      height: 200px;
      background-color: var(--blue-dark);
      color: var(--white);
      padding: 5px 5px;
    }
    .vision h4 {
      padding: 5px;
      text-align: center;
    }
    .vision p {
      font-weight: 200;
      font-size: 17px;
      padding: 5px;
    }
    .mission {
      min-width: 100%;
      height: 200px;
      background-color: var(--green);
      color: var(--white);
      padding: 10px 5px;
      overflow: hidden;
    }
    .mission h4 {
      text-align: center;
      padding: 5px;
    }
    .mission p {
      font-weight: 200;
      font-size: 17px;
      padding: 5px;
    }
  }
  @media only screen and (max-width: 991px) {
    .container {
      margin: 0 auto;
      padding: 10px 2%;
    }
    .about-content {
      display: flex;
      flex-direction: column;
    }
    .about-image {
      width: 100%;
    }
    .about-text {
      width: 100%;
    }
    .about-text h2 {
      color: var(--light-green);
      font-weight: 300;
      font-size: 24px;
      text-align: center;
    }
  }

  .sponsors-container {
    display: flex;  
    align-items: center; 
    overflow-x: auto;  
    white-space: nowrap;
    background-color: white;  
    margin-top: 0px;
    margin-bottom: 0px;
}

.sponsors-text {
    flex: 0 0 auto;  
    margin-left: 5px;  
    font-family: 'Caramel', cursive;
    font-size: 42px; 
}

.sponsors-icons {
    display: flex;  
    align-items: center;  
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

.sponsors-icons span {
    margin-right: 0px; 
    margin-left: 20px;
}

.sponsors-icons img {
    height: auto;  
    width: auto;  
}  

  /* services section starts */
  .services-bg-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    width: 100%;
    height: 480px;
  }
  .services-bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Ensures the background is behind the content */
    background-image: url(images/20.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    filter: blur(5px);
}
  .services-bg-image h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    opacity: 1;
    color: rgb(0, 0, 0);
  }
  .services-content {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .services-section-title h2 {
    text-align: center;
    color: var(--light-green);
    font-weight: 300;
    font-size: 32px;
  }
  .core-values {
    width: 30%;
    margin: 0 10px;
  }
  .core-content {
    background-color: #00264d;
    color: var(--white);
  }
  .core-content h3 {
    padding: 10px;
  }
  .core-content ul {
    padding: 10px;
  }
  .services-list {
    width: 70%;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 10px;
  }
  .services-list ul {
    padding: 10px;
    margin: 10px;
  }
  .services-section hr {
    background-color: var(--light-green);
    padding: 0.5px;
    margin-top: 8px;
  }
  @media only screen and (max-width: 600px) {
    .services-content {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .services-section-title h2 {
      text-align: center;
      color: var(--light-green);
      font-weight: 300;
      font-size: 24px;
      padding: 10px;
    }
    .core-values {
      width: 100%;
      margin: 8px auto;
    }
    .core-content {
      background-color: #00264d;
      color: var(--white);
    }
    .core-content h3 {
      text-align: center;
      padding: 10px;
    }
    .core-content ul {
      padding: 10px;
    }
    .services-list {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 0 auto;
    }
    .services-list ul {
      padding: 0 10px;
      margin: 0 10px;
    }
    .sponsors-container {
      display: flex;
      flex-direction: column;
    }
    .sponsors-text {
      flex: 0 0 auto;  
      margin: 0 auto;  
      font-family: 'Caramel', cursive;
      font-size: 32px; 
  }
  }

  /* Patient_hub-section start */
  .patient_hub-section {
    width: 100%;
    height: 100vh;
  }
  .patient_hub-bg-image {
    background-image: url(images/16.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
    height: 480px;
  }
  .patient_hub-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
  }
  .find-doctor {
    width: 20%;
    display: flex;
    justify-content: center;
  }
  .find-doctor-icon {
    background-color: var(--green);
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .find-doctor-icon span.icon {
    display: block;
    text-align: center;
    padding: 8px;
  }
  .find-doctor-icon span.icon i {
    background-color: var(--light-green);
    border-radius: 50%;
    width: 100px;
    line-height: 100px;
    text-align: center;
  }
  .find-doctor-icon span p {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    margin-top: 5px;
  }
  .doctorProfile-container {
    width: 80%;
  }
  .doctorProfile img {
    float: left;
    width: 200px;
    height: 200px;
    margin: 10px;
    object-fit: cover;
  }
  .doctor-details p {
    padding: 0 5px;
  }
  #doctor-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 10px 0 10px;
    color: var(--light-green);
  }
  .dot {
    height: 15px;
    width: 15px;
    margin: 3px 5PX;
    background-color: #bbb;
    border-radius: 50%;
    display: block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: var(--light-green);
  }
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  #book-btn {
    background-color: var(--blue-dark);
    color: var(--white);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 10px;
    float: right;
    margin: 10px;
  }
 
  @media only screen and (max-width: 1300px) {
    .find-doctor-icon {
        background-color: var(--green);
        width: 200px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 60px;
      }
      .doctorProfile img {
        float: left;
        height: 180px;
        margin: 15px  10px 0 10px;
        width: 180px;
        object-fit: cover;
      }
    
    }
  @media only screen and (max-width: 1100px) {
      .container {
        padding: 15px 3%;
      }
  }
  @media only screen and (max-width: 768px) {
    .patient_hub-content {
      display: flex;
      flex-direction: column;
    }
    .find-doctor {
      width: 100%;
    }
    .doctorProfile-container {
      width: 100%;
    }
    .doctorProfile {
      display: block;
    
    }
    .doctorProfile img {
      width: 100%;
      margin: 5px auto;
    }
    .doctor-details #doctor-title {
      text-align: center;
    }
    .dot {
      height: 15px;
      width: 15px;
      /* margin: 3px 0; */
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }
    .active {
      background-color: var(--light-green);
    }
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }
    
    @keyframes fade {
      from {opacity: .4} 
      to {opacity: 1}
    }
    #book-btn {
      background-color: var(--blue-dark);
      color: var(--white);
      text-decoration: none;
      padding: 5px 10px;
      border-radius: 10px;
      float: left;
      margin: 10px;
      text-align: center;
      display: block;
    }
  }


  /* contact-section starts */
  .contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--blue-dark);
  }
  .contact-content {
    display: flex;
    justify-content: center;
    /* align-items: ; */
    gap: 16px;
  }
  .contact-map {
    width: 40%;
    /* padding: 10px; */
  }
  .contact-map img {
    width: 100%;
    object-fit: cover;
    height: 300px;
  }
  .map {
    width: 100%;
    height: 300px;
  }
  .address {
    padding: 10px;
  }
  .address-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--light-green);
    margin-bottom: 10px;
  }
  .email {
    margin-top: 5px;
  }
  .address_form {
    width: 60%;
    padding: 0 10px;
    background-color: var(--white);
  }
  .address_form hr {
    background-color: var(--light-green);
    width: 100%;
  }
  .contact-form {
    width: 100%;
    padding: 10px;
  }
  .contact-form form {
    width: 420px;
  }
  .contact-form form input, select, textarea {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 5px;
  }
  .contact-form form input, select {
    height: 32px;
  }
  .contact-form form button {
    background-color: var(--light-green);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
  }
  @media only screen and (max-width: 864px) {
    .container {
      padding: 10px 2%;
    }
    .contact-content {
      display: flex;
      flex-direction: column-reverse;
      /* align-items: ; */
      /* gap: 16px; */
    }
    .contact-form form {
      width: 100%;
      margin: 0 auto;
    }
    .contact-map {
      width: 100%;
      /* padding: 10px; */
    }
    .contact-map img {
      width: 100%;
      object-fit: cover;
      height: 300px;
    }
    .map {
      width: 100%;
      height: 280px;
    }
    .address {
      padding: 10px;
    }
    .address-title {
      text-align: center;
      font-size: 17px;
      font-weight: 500;
      color: var(--light-green);
      margin-bottom: 10px;
    }
    .address p, h5 {
      text-align: center;
    }
    .email {
      text-align: center;
      margin-top: 5px;
    }
    .address_form {
      width: 100%;
      padding: 0 10px;
      background-color: var(--white);
    }
  } 

  /* Refer page starts */
  .refer-section {
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .refer-form-wrapper {
    border: 2px solid black;
    padding: 40px;
    border-radius: 10px;
  }
  .refer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
  }
  .refer-logo img {
    width: 100px;
  }
  .refer-form-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
  }
  .refer-form-wrapper form {
    width: 400px;
  }
  .input-controls {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .refer-form-wrapper form label, input {
    display: block;
    width: 100%;
  }
  .refer-form-wrapper form label {
    font-weight: 500;
    font-size: 17px;
  }
  .refer-form-wrapper form button {
    background-color: var(--green);
    color: var(--white);
    cursor: pointer;
    padding: 3px 8px;
    border: none;
    outline: none;
    border-radius: 3px;
    margin: 10px 0;
  }
  @media only screen and (max-width: 600px) {
   
    .refer-section {
      width: 100%;
      min-height: 70vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .refer-form-wrapper {
      border: 2px solid black;
      padding: 10px;
      border-radius: 10px;
    }
    .refer-form-wrapper form {
      width: 300px;
    }
  }
  

  /* tour page starts */
  div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  .responsive {
    padding: 10px 6px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  /* footer starts  */
  footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 120px; /* adjust as needed */
    background-color: var(--blue-dark);
    color: #fff;
    padding: 20px 0;
  }
  .footer-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px;
  }
  .footer-icons .uil {
    color: white;
    font-size: 24px;
    padding: 2px;
    cursor: pointer;
    transition: all 0.2s linear;
  }
  .footer-icons .uil:hover {
    color: var(--light-green);
  }
  .footer-content hr {
    margin-top: auto;
  }
  .footer-content {
    width: 100%;
    padding: 0 0 0 5%;
  }
  .footer-content p {
    padding: 8px 0;
  }
  html, body {
    height: 100%;
    margin: 0;
} 
  /*Style the Content Wrapper*/
  .content-wrapper {
    min-height: 120%;
    margin-bottom: -170px;
}
.footer-spacer {
  height: 120px; 
}
/* ===================================== Our Blog CSS ================================== */
.our-blog {
  background-color: #FDFDFD;
  box-sizing: 100px;
  padding: 40px; }
  @media screen and (max-width: 200px) {
    .our-blog {
      padding: 30px 0px; } }
  .our-blog .single-blog {
    margin-bottom: 20px;
    margin-right: 5px;
    background-color: #FFF;
    box-shadow: 0 2px 6px 0 rgba(218, 218, 253, 0.65), 0 2px 6px 0 rgba(206, 206, 238, 0.54); }
    .our-blog .single-blog figure {
      margin-bottom: 5px; 

    }
    .our-blog .single-blog .blog-detail {
      padding: 5px;
    }
    .our-blog .single-blog small {
      color: #FFFFFF;
      font-size: 12px; 

    }
    .our-blog .single-blog h4 {
      font-size: 1.2rem;
      margin-bottom: 10px; }
    .our-blog .single-blog p {
      text-align: justify;
      text-indent: 20px; }
    .our-blog .single-blog .link a {
      font-size: 12px;
      color: #FFFFFF; }
    .our-blog .single-blog .link i {
      padding-top: 6px;
      margin-left: 5px;
      color: #FFFFFF; }
    .single-blog{
      max-width: 500px;
      padding-left: 0px;
      float: left;
      padding-right: 0px;
      margin-left: 20px;
    
    }
    .email{
    
    }

