body{

    }

@-webkit-keyframes snowflakes-fall {
  0% { top: -10%; }
  100% { top: 100%; }
}

@-webkit-keyframes snowflakes-shake {
  0% { -webkit-transform: translateX(0px); transform: translateX(0px); }
  50% { -webkit-transform: translateX(80px); transform: translateX(80px); }
  100% { -webkit-transform: translateX(0px); transform: translateX(0px); }
}

@keyframes snowflakes-fall {
  0% { top: -10%; }
  100% { top: 100%; }
}

@keyframes snowflakes-shake {
  0% { transform: translateX(0px); }
  50% { transform: translateX(80px); }
  100% { transform: translateX(0px); }
}

.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  color: #fff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

.snowflake:nth-of-type(0) { left: 1%; -webkit-animation-delay: 0s, 0s; animation-delay: 0s, 0s; }
.snowflake:nth-of-type(1) { left: 10%; -webkit-animation-delay: 1s, 1s; animation-delay: 1s, 1s; }
.snowflake:nth-of-type(2) { left: 20%; -webkit-animation-delay: 6s, .5s; animation-delay: 6s, .5s; }
.snowflake:nth-of-type(3) { left: 30%; -webkit-animation-delay: 4s, 2s; animation-delay: 4s, 2s; }
.snowflake:nth-of-type(4) { left: 40%; -webkit-animation-delay: 2s, 2s; animation-delay: 2s, 2s; }
.snowflake:nth-of-type(5) { left: 50%; -webkit-animation-delay: 8s, 3s; animation-delay: 8s, 3s; }
.snowflake:nth-of-type(6) { left: 60%; -webkit-animation-delay: 6s, 2s; animation-delay: 6s, 2s; }
.snowflake:nth-of-type(7) { left: 70%; -webkit-animation-delay: 2.5s, 1s; animation-delay: 2.5s, 1s; }
.snowflake:nth-of-type(8) { left: 80%; -webkit-animation-delay: 1s, 0s; animation-delay: 1s, 0s; }
.snowflake:nth-of-type(9) { left: 90%; -webkit-animation-delay: 3s, 1.5s; animation-delay: 3s, 1.5s; }

.snowflake:nth-of-type(10) { left: 5%; -webkit-animation-delay: 1s, 2s; animation-delay: 1s, 2s; }
.snowflake:nth-of-type(11) { left: 15%; -webkit-animation-delay: 4s, 1s; animation-delay: 4s, 1s; }
.snowflake:nth-of-type(12) { left: 25%; -webkit-animation-delay: 2s, 3s; animation-delay: 2s, 3s; }
.snowflake:nth-of-type(13) { left: 35%; -webkit-animation-delay: 3s, 1.5s; animation-delay: 3s, 1.5s; }
.snowflake:nth-of-type(14) { left: 45%; -webkit-animation-delay: 7s, 2.5s; animation-delay: 7s, 2.5s; }
.snowflake:nth-of-type(15) { left: 55%; -webkit-animation-delay: 3s, 1.5s; animation-delay: 3s, 1.5s; }
.snowflake:nth-of-type(16) { left: 65%; -webkit-animation-delay: 6s, 3s; animation-delay: 6s, 3s; }
.snowflake:nth-of-type(17) { left: 75%; -webkit-animation-delay: 5s, 2.5s; animation-delay: 5s, 2.5s; }
.snowflake:nth-of-type(18) { left: 85%; -webkit-animation-delay: 1s, 0s; animation-delay: 1s, 0s; }
.snowflake:nth-of-type(19) { left: 95%; -webkit-animation-delay: 2s, 1s; animation-delay: 2s, 1s; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;


}
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 80px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 60px;
}

#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;

}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #0096c7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0096c7;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0096c7;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0096c7;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


.breadcrumbs {
    padding: 140px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

  }

  .breadcrumbs:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
  }

  .breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
  }

  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
  }

  .breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    text-decoration: none;
  }

  .breadcrumbs ol a:hover {
    color: #0077ff;

  }

  .breadcrumbs ol li+li {
    padding-left: 10px;
  }

  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
  }

  section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;

}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}


/* styles.css */



.timeline {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 40px auto;
}

.belt-line {
    width: 100%;
    height:300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.milestone {
    position: relative;
    background: white;
    padding: 20px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: background 0.8s ease, color 0.8s ease, transform 0.8s ease, opacity 0.8s ease;
}

.milestone:hover {
    background: #007bff;
    color: white;
    transition: background 0.3s ease, color 0.3s ease;
}

.milestone:hover h2,
.milestone:hover p {
    color: white;
}

.milestone h2 {
    margin: 0;
    font-size: 1.5em;
    color: #007bff;
    transition: color 0.3s ease;
}

.milestone p {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
    transition: color 0.3s ease;
    text-align: justify;
}

.milestone.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #007bff;
    transform: translateX(-50%);
}

.milestone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    transform: translateX(-50%);
}





  /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


  /*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/


.alt-services .features-image {
    position: relative;
   height:450px;


  }

  .alt-services .features-image img {
     position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 5%;
  }

  .alt-services h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }

  .alt-services h3:after {
    content: "";
    background: #06a3be;
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0;
  }

  .alt-services .icon-box {
    margin-top: 50px;
  }

  .alt-services .icon-box i {
    color: #06a3be;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px color-mix(in srgb, #555, transparent 90%);
    transition: 0.3s;
  }

  .alt-services .icon-box:hover i {
    background-color: #06a3be;
    color: #ffffff;
  }

  .alt-services .icon-box h4 {

    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;

  }

  .alt-services .icon-box h4 a {
    color: #06a3be;
    transition: 0.3s;
    text-decoration: none;
  }

  .alt-services .icon-box h4 a:hover {
    color: #06a3be;
    text-decoration: none;
  }

  .alt-services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    text-align: justify;
  }

  .alt-services ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }

  .alt-services ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }

  .alt-services ul i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    line-height: 1.2;
    color: #06a3be;
  }


  .alt-services-2 .features-image {
    position: relative;
    min-height: 450px;
  }

  .alt-services-2 .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 5%;
  }

  .alt-services-2 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .alt-services-2 .icon-box {
    margin-top: 30px;
  }

  .alt-services-2 .icon-box i {
    color: #06a3be;
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
  }

  .alt-services-2 .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .alt-services-2 .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    text-align: justify;
  }


  /*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/


#leader {
  background: #fff;
  padding: 60px 0;

}

#leader .members {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#leader .members .members-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#leader .members .members-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#leader .members:hover .members-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#leader .members:hover .members-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#leader .members h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 25px;
  color: #fff;
}

#leader .members span {
  font-style: italic;
  display: block;
  font-size: 18px;
  color: #fff;
}

#leader .members .social {
  margin-top: 15px;
}

#leader .members .social a {
  transition: none;
  color: #fff;
}

#leader .members .social a:hover {
  color: #0096c7;
}

#leader .members .social i {
  font-size: 20px;
  margin: 0 2px;
}


.team .member {
    position: relative;
  }

  .team .member .member-img {
    margin: 0 80px;
    border-radius: 10%;
    overflow: hidden;
    position: relative;
  }

  @media (max-width: 1024px) {
    .team .member .member-img {
      margin: 0 60px;
    }
  }

  .team .member .member-img img {
    position: relative;
     /*filter: grayscale(100%);*/
     /* transition: filter 0.3s ease;*/
    z-index: 1;
  }

  .team .member .member-img img:hover {
    /*filter: grayscale(0%);*/
  }

  .team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .team .member .member-img .social a {
    transition: 0.3s;
    color: #ffffff;
    font-size: 20px;
    margin: 0 8px;
  }

  .team .member .member-img .social a:hover {
    color:#06a3be;
  }

  .team .member .member-info {
    margin-top: 30px;
  }

  .team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 20px;
  }

  .team .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: color-mix(in srgb, #333, transparent 20%);
    margin-bottom: 10px;
  }

  .team .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
    text-align: justify;
  }

  .team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
  }


   /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    box-shadow: 0px 2px 15px color-mix(in srgb, var(--default-color), transparent 90%);
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    position: relative;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--background-color);
    position: absolute;
    left: -45px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }

  .testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    margin: 0;
  }

  .testimonials .testimonial-item .stars {
    margin: 10px 0;
  }

  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
  }

  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }

  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
  }

  .testimonials .swiper-wrapper {
    height: auto;
  }

  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }

  @media (max-width: 767px) {
    .testimonials .testimonial-wrap {
      padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
      overflow: hidden;
    }

    .testimonials .testimonial-item {
      padding: 30px;
      margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
      position: static;
      left: auto;
    }
  }


  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0077b6;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }

  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }

  .back-to-top:hover {
    background: #0096c7;
    color: #fff;
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

  .whatsapp {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 65px;
    z-index: 996;
    background: #00bd55;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }

  .whatsapp i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }

  .whatsapp:hover {
    background: #69f19d;
    color: #fff;
  }

  .whatsapp.active {
    visibility: visible;
    opacity: 1;
  }

  .back-to-home {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 110px;
    z-index: 996;
    background: #0077b6;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }

  .back-to-home i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }

  .back-to-home:hover {
    background: #0096c7;
    color: #fff;
  }

  .back-to-home.active {
    visibility: visible;
    opacity: 1;
  }

  .hotline {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 110px;
  z-index: 996;
  background: #4A249D;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.hotline i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.hotline:hover {
  background: #B1AFFF;
  color: #fff;
}

.hotline.active {
  visibility: visible;
  opacity: 1;
}









/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #000;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
  }

  #footer .footer-top {
    background: #111;
    padding: 60px 0 30px 0;
  }

  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #0096c7;
  }

  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #eee;
  }

  #footer .footer-top .social-links a {
    display: inline-block;
    background: #333;
    color: #eee;
    line-height: 1;
    margin-right: 4px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #footer .footer-top .social-links a i {
    line-height: 0;
    font-size: 16px;
  }

  #footer .footer-top .social-links a:hover {
    background: #0096c7;
    color: #fff;
  }

  #footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
  }

  #footer .footer-top h4::before,
  #footer .footer-top h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
  }

  #footer .footer-top h4::before {
    right: 0;
    background: #555;
  }

  #footer .footer-top h4::after {
    background: #0096c7;
    width: 60px;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
  }

  #footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #333;
    padding: 10px 0;
  }

  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }

  #footer .footer-top .footer-links ul a {
    color: #eee;
  }

  #footer .footer-top .footer-links ul a:hover {
    color: #0096c7;
  }

  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }

  #footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-newsletter input[type=email] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
  }

  #footer .footer-top .footer-newsletter input[type=submit] {
    background: #0096c7;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
  }

  #footer .footer-top .footer-newsletter input[type=submit]:hover {
    background: #0096c7;
  }

  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }

  #footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
  }


.allteam {
  display: block; /* Makes the image a block element */
  margin: 50px auto 0; /* Centers the image horizontally */
  max-width: 100%; /* Ensures the image is responsive */
  height: auto; /* Maintains aspect ratio */
  width: 1200px; /* Fixed width */
  height: 450px; /* Fixed height */
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .allteam {
      width: 90%; /* Adjusts the width to fit smaller screens */
      height: auto;
      margin-top: 50px; /* Keeps aspect ratio intact */
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .allteam {
      width: 100%; /* Full width for small screens */
      height: auto;
      margin-top: 50px;/* Maintains aspect ratio */
  }
}

