/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ed2024; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000; /* The default color of the main navmenu links */
  --nav-hover-color: #ed2024; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #469fdf;
  --contrast-color: #ffffff;
}

* {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);

  font-family: var(--default-font);
}

/* Scrollbar Thumb */
body::-webkit-scrollbar-thumb {
  background-color: #f6fafd;
}

/* Scrollbar Width */
body::-webkit-scrollbar {
  width: 3px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Contact Form Messages
------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #060606;
  border-bottom-color: #ed2024;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.blur {
  background-color: rgba(255, 255, 255, 0.5);
  filter: blur(5px);
  pointer-events: none;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 999;
  box-shadow: 5px 10px 8px rgba(0, 0, 0, 0.05);
}

.header .logo {
  line-height: 1;
}

.header img {
  width: 150px;
  margin-right: 8px;
}

.header h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .header h1 {
    font-size: 16px;
  }

  .header .btn-getstarted {
    display: none;
  }
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
}
@media (max-width: 1398px) {
  .hero-images .big{
    left: 40px !important;
  }
.bottom-images {
    position: absolute;
    bottom: 0;
    right: 345px !important;
    display: flex;
    gap: 10px;
    z-index: 1;
}
}
/* Navmenu - Mobile */
@media (max-width: 1200px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
     /* font-weight: 700; */
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    height: 50vh;
  }
}

.copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.copyright p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
    padding: 20px;
  }
  .bottom-images {
    position: absolute;
    top:460px;
    right: 275px !important;
    display: flex;
    gap: 10px;
    z-index: 1;
}
.hero-text h1{
font-size: 20px !important;
}
.hero-text p{
font-size: 15px !important;
}
.hero-images .big{
  top:55px
}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 4rem;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* .hero {
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px 0;
  overflow: hidden;
} */

/* .hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.hero .container {
  position: relative;
  z-index: 3;
  /* background-color: #03c988; */
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--heading-color);
}

.hero p {
  margin: 20px 0 0 0;
  font-size: 18px;
  line-height: 1.9;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 28px;
    line-height: 1.8;
  }

  .hero p {
    font-size: 18px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .icon-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--surface-color);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.services-heading .line {
  width: 306px;
  height: 9px;
margin-bottom: 1rem;
}

.hero .icon-box .title {
  font-weight: 700;
  margin: 15px 0;
  font-size: 18px;
}

.hero .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.hero .icon-box .description {
  font-size: 15px;
  height: 90px; /* adjust based on your longest description */
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  /* bottom: 20px; */
}

.hero .icon-box .icon i {
  position: relative;
}

.hero .icon-box .icon::after {
  position: absolute;
  content: "";
  top: 20%;
  left: 17%;
  height: 2px;
  width: 120px;
  background-color: #ed2024;
}

.arrow-wrap {
  display: inline-flex;
  margin-left: 6px;
}

.arrow {
  opacity: 1; /* Keep arrows visible initially */
  transform: translateX(0); /* Start at their original position */
  transition: opacity 1s ease, transform 1s ease; /* Slow down the transition */
  margin-left: 2px;
  display: inline-block;
  font-size: 13px; /* Maintain the same font size */
  line-height: 1; /* Ensure the height remains the same */
}

/* On hover, arrows move to the right and fade out sequentially */
.icon-box:hover .arrow-3 {
  transform: translateX(30px); /* Move the last arrow to the right */
  opacity: 0; /* Fade out */
  transition-delay: 0s; /* No delay for the last arrow */
}

.icon-box:hover .arrow-2 {
  transform: translateX(30px); /* Move the second arrow to the right */
  opacity: 0; /* Fade out */
  transition-delay: 0.2s; /* Slight delay for the second arrow */
}

.icon-box:hover .arrow-1 {
  transform: translateX(30px); /* Move the first arrow to the right */
  opacity: 0; /* Fade out */
  transition-delay: 0.4s; /* Delay for the first arrow */
}

/* Ensure arrows return to their original position when not hovered */
.icon-box:not(:hover) .arrow-1,
.icon-box:not(:hover) .arrow-2,
.icon-box:not(:hover) .arrow-3 {
  opacity: 1;
  transform: translateX(0); /* Start from original position */
}

.hero .icon-box .icon-1::after {
    position: absolute;
    content: "";
    top: 20%;
    left: 14% !important;
    height: 2px;
    width: 120px;
    background-color: #585de8;
}

@media (min-width: 1400px) {
  .hero .icon-box .icon::after {
    content: "";
    top: 20%;
    left: 16%;
    height: 2px;
    width: 110px;
  }
}

.hero .icon-box h6 {
  margin: 25px 0 0;
  color: #ed2024;
}
@media (max-width: 768px) and (min-width: 493px) {
    .hero .icon-box .icon-1::after {
        top: 24% !important;
        left: 10% !important;
        width: 120px !important;
    }
     .hero .icon-box .icon::after {
        top: 24% !important;
        left: 12% !important;
        width: 120px !important;
    }
     .hero .icon-box .icon-3::after {
        top: 24% !important;
        left: 12% !important;
        width: 120px !important;
    }
}
@media (max-width: 493px) and (min-width: 440px) {
  .hero .icon-box .icon-1::after {
        top: 22% !important;
        left: 13% !important;
        width: 120px !important;
    }
  .hero .icon-box .icon::after {
        top: 22% !important;
        left: 14% !important;
        width: 120px !important;
    }
     .hero .icon-box .icon-3::after {
        top: 22% !important;
        left: 14% !important;
        width: 120px !important;
    }
}

@media (max-width: 992px) {
  .hero .icon-box .icon::after {
    top: 22%;
    left: 17%;
    width: 120px;
  }
}



@media (max-width: 576px) and (min-width: 400px) {
  .hero .icon-box .icon::after {
    top: 20%;
    left: 16%;
    width: 110px;
  }
}

@media (max-width: 399px) and (min-width: 361px) {
  .hero .icon-box .icon::after {
    top: 20%;
    left: 17%;
    width: 120px;
  }
}

@media (max-width: 360px) {
  .hero .icon-box .icon::after {
    top: 22%;
    left: 19%;
    width: 120px;
  }

}

@media (max-width: 320px) {
  .hero .icon-box .icon::after {
    top: 22%;
    left: 20%;
    width: 120px;
  }
}

@media (max-width: 1024px) and (min-width: 991px) {
  .hero .icon-box .icon::after {
    content: "";
    top: 17%;
    left: 21%;
    height: 2px;
    width: 110px;
  }
}

.hero .icon-box .icon-1::after {
  position: absolute;
  content: "";
  top: 20%;
  left: 16%;
  height: 2px;
  width: 120px;
  background-color: #585de8;
}

@media (max-width: 1300px) and (min-width: 1200px)   {
  .hero .icon-box .icon-1::after {
    content: "";
    top: 20%;
    left: 17%;
    height: 2px;
    width: 110px;
  }
  .hero .icon-box .icon::after {
    left: 18%;
  }
   .hero .icon-box .icon-3::after {
    left: 18% !important;
  }

}
@media (max-width: 1200px) and (min-width: 1024px)   {
  .hero .icon-box .icon-1::after {
  top: 22%;
    left: 18%;
    width: 110px;
  }
  .hero .icon-box .icon::after {
  top: 22%;
    left: 20%;
    width: 110px;
  }
  .hero .icon-box .icon-3::after {
  top: 22% !important;
    left: 20% !important;
    width: 110px;
  }
}


@media (max-width: 1024px) and (min-width: 991px) {
  .hero .icon-box .icon-1::after {
    content: "";
    top: 22%;
    left: 20%;
    height: 2px;
    width: 110px;
  }
    .hero .icon-box .icon::after {
  top: 22%;
    left: 20%;
    width: 110px;
  }
  .hero .icon-box .icon-3::after {
  top: 22% !important;
    left: 20% ;
    width: 110px;
  }
}

@media (max-width: 992px) {
  .hero .icon-box .icon-1::after {
    top: 21%;
    left: 16%;
    width: 120px;
  }
}

@media (max-width: 576px) and (min-width: 400px) {
  .hero .icon-box .icon-1::after {
    top: 22%;
    left: 16%;
    width: 110px;
  }
}

@media (max-width: 399px) {
  .hero .icon-box .icon-1::after {
    top: 22%;
    left: 17%;
    width: 120px;
  }
}

@media (max-width: 320px) {
  .hero .icon-box .icon-1::after {
    top: 22%;
    left: 18%;
    width: 120px;
  }
}

.hero .icon-box-1 h6 a {
  color: #585de8;
}

.hero .icon-box .icon-1 {
  margin-bottom: 20px;
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  gap: 8.2rem;
  font-size: 20px;
  line-height: 1;
  color: #585de8;
}

.hero .icon-box .icon-3::after {
  position: absolute;
  content: "";
  top: 20%;
  left: 17%;
  height: 2px;
  width: 120px;
  background-color: #03c988;
}

@media (min-width: 1400px) {
  .hero .icon-box .icon-3::after {
    content: "";
    top: 20%;
    left: 16%;
    height: 2px;
    width: 110px;
  }
}

@media (max-width: 1024px) and (min-width: 991px) {
  .hero .icon-box .icon-3::after {
    content: "";
    top: 17%;
    left: 21%;
    height: 2px;
    width: 120px;
  }
}

@media (max-width: 992px) {
  .hero .icon-box .icon-3::after {
    top: 22%;
    left: 18%;
    width: 120px;
  }
}

@media (max-width: 576px) and (min-width: 400px) {
  .hero .icon-box .icon-3::after {
    top: 22%;
    left: 16%;
    width: 110px;
  }
}

@media (max-width: 399px) {
  .hero .icon-box .icon-3::after {
    top: 20%;
    left: 19%;
    width: 120px;
  }
}

@media (max-width: 320px) {
  .hero .icon-box .icon-3::after {
    top: 22%;
    left: 20%;
    width: 120px;
  }
}

.hero .icon-box-3 h6 a {
  color: #03c988;
}

.hero .icon-box .icon-3 {
  margin-bottom: 20px;
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  gap: 8.2rem;
  font-size: 20px;
  line-height: 1;
  color: #03c988;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  gap: 8.2rem;
  font-size: 20px;
  line-height: 1;
  color: #df1529;
}

@media (min-width: 640px) {
  .hero .icon-box:hover {
    transform: scale(1.03);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .contact-link {
  color: #444444;
}

.contact .contact-form {
  height: 100%;
}

.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form select,
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 5px;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type="text"]:focus,
.contact .contact-form input[type="email"]:focus,
.contact .contact-form select:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .contact-form input[type="text"]::placeholder,
.contact .contact-form input[type="email"]::placeholder,
.contact .contact-form select,
.contact .contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.8);
}

.contact .contact-form select:valid {
  color: #000;
}

.contact .contact-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero {
  display: flex;
  padding: 20px 20px 20px 30px;
  align-items: flex-start;
  background: linear-gradient(135deg, #eef2fa 40%, #FFFFFF 60%);
}
.zoom-img {
  transition: transform 0.3s ease;
  transform: scale(1);
  cursor: pointer;
}

.zoom-img:hover {
  transform: scale(1.008);
}
.zoom-img-1 {
  transition: transform 0.3s ease;
  transform: scale(1);
  border-top-right-radius: 52px !important;
  cursor: pointer;
}

.zoom-img-1:hover {
  transform: scale(1.008);
}


.hero-text {
  max-width: 50%;
  margin-top: 40px;

}

.hero-text span {
  font-weight: 700;
  /* position: relative; */
  /* bottom: 10px ; */

}
.hero-text h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
    line-height: 50px;
    padding-right: 60px;
}
.hero-text p {
  font-size: 0.9rem;
  color: #555;
}

.hero-images {
  position: relative;
  width: 637px;
}
.hero-images .big {
  width: 100%;
  height: 588px;
  /* object-fit: cover; */
  border-radius: 8px;
  display: block;
  position: relative;
  left: 19px;
  /* top: 50px; */
}

.bottom-images {
  position: absolute;
  bottom: 0;
  right: 425px;
  display: flex;
  gap: 10px;
  z-index: 1;

}
.bottom-images img,
.small-wrapper img {
  width: 267px;
  height: 185px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Wrapper for last image to add inverted-L background */
.small-wrapper {
  position: relative;
}
/* horizontal bar underneath */
.small-wrapper::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 100%;
  height: 10px;
  background: #ffffff;
  z-index: -1;
  /* border-radius: 50px; */
}
/* vertical bar on the right */
.small-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content h2 strong {
  display: block;
  font-weight: 800;
}

.hero-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.hero-right {
  position: relative;
  width: 637px;
  height: 588px;
  flex-shrink: 0;
}

.hero-right img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* .bottom-images {
      position: absolute;
      bottom: -40px;
      right: 0;
      display: flex;
      gap: 20px;
      z-index: 3;
    } */

/* .bottom-images img {
      width: 267px;
      height: 185px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    } */

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-images {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
  }
  .hero-images .big {
    height: auto;
  }
  .bottom-images {
    position: static;
    margin-top: 10px;
    justify-content: center;
  }
  .bottom-images img,
  .small-wrapper img {
    width: calc((100% - 20px) / 3);
    height: auto;
  }
  .small-wrapper::before,
  .small-wrapper::after {
    display: none;
  }
   .small {
   display: none !important;
  }
  .big{
    display: none !important;
  }

}

@media (max-width: 600px) {
  .hero {
    padding: 10px;
    position: relative;
    bottom: 40px;
  }
  .hero-text h1 {
    font-size: 1.7rem !important;
    text-align: start;
    line-height: 42px;
    margin-top: 100px;
  }
  .hero-text p {
    font-size: 0.9rem;
    text-align: start;
  }
  .bottom-images img,
  .small-wrapper img {
    width: 100%;
    height: auto;
  }
  .bottom-images {
    flex-direction: column;
    gap: 10px;
  }
  .small {
   display: none !important;
  }
  .big{
    display: none !important;
  }

}

@media (max-width: 480px) {
.header img{
      width: 120px;
    }

}

@media (max-width: 400px) {
  .small {
    /* height: 95px !important;
    width: 100px !important;
    position: relative;
    bottom: 550px !important;
    left: 25px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px; */
    display: none !important;
  }
    .big{
      display: none !important;
    }
    .header img{
      width: 120px;
    }

}



/* services---------------------- */

.services{
   text-align: center;
  font-size: 32px;
  font-weight: 700 !important;
  margin-bottom: 15px;
  /* padding-bottom: 4rem; */
  text-transform: uppercase;
}