@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Hairline.eot");
  src: local("NuckleHairline"), local("Nuckle-Hairline"),
    url("fonts/Nuckle-Hairline.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Hairline.woff2") format("woff2"),
    url("fonts/Nuckle-Hairline.woff") format("woff"),
    url("fonts/Nuckle-Hairline.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Medium.eot");
  src: local("NuckleMedium"), local("Nuckle-Medium"),
    url("fonts/Nuckle-Medium.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Medium.woff2") format("woff2"),
    url("fonts/Nuckle-Medium.woff") format("woff"),
    url("fonts/Nuckle-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Semibold.eot");
  src: local("NuckleSemibold"), local("Nuckle-Semibold"),
    url("fonts/Nuckle-Semibold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Semibold.woff2") format("woff2"),
    url("fonts/Nuckle-Semibold.woff") format("woff"),
    url("fonts/Nuckle-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-ExtraLight.eot");
  src: local("NuckleExtraLight"), local("Nuckle-ExtraLight"),
    url("fonts/Nuckle-ExtraLight.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-ExtraLight.woff2") format("woff2"),
    url("fonts/Nuckle-ExtraLight.woff") format("woff"),
    url("fonts/Nuckle-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Bold.eot");
  src: local("NuckleBold"), local("Nuckle-Bold"),
    url("fonts/Nuckle-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Bold.woff2") format("woff2"),
    url("fonts/Nuckle-Bold.woff") format("woff"),
    url("fonts/Nuckle-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Light.eot");
  src: local("NuckleLight"), local("Nuckle-Light"),
    url("fonts/Nuckle-Light.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Light.woff2") format("woff2"),
    url("fonts/Nuckle-Light.woff") format("woff"),
    url("fonts/Nuckle-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Thin.eot");
  src: local("NuckleThin"), local("Nuckle-Thin"),
    url("fonts/Nuckle-Thin.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Thin.woff2") format("woff2"),
    url("fonts/Nuckle-Thin.woff") format("woff"),
    url("fonts/Nuckle-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Nuckle";
  src: url("fonts/Nuckle-Regular.eot");
  src: local("NuckleRegular"), local("Nuckle-Regular"),
    url("fonts/Nuckle-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/Nuckle-Regular.woff2") format("woff2"),
    url("fonts/Nuckle-Regular.woff") format("woff"),
    url("fonts/Nuckle-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

main {
  position: relative;
  height: 100vh;
  width: 100vw;
}

.primary_color {
  color: #ce2535;
}
.primary_background {
  background-color: #ce2535;
}

.background_mask {
  position: absolute;
  top: 0;
  right: 20px;
  height: 100vh;
}

.background_mask img {
  object-fit: contain;
  height: 100vh;
  width: auto;
}
header {
  margin: 32px 88px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 143px;
}

header ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

div.flip-animate {
  perspective: 1000px;
  font-family: Nuckle;
  font-weight: 600;
  font-size: 12px;
  span {
    position: relative;
    display: inline-block;
    padding: 0;
    transition: transform 0.3s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
  }

  span:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: attr(data-hover);
    transition: color 0.3s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
  }

  &:hover span,
  &:focus span {
    transform: rotateX(90deg) translateY(-22px);
  }

  &:hover span:before,
  &:focus span:before {
    color: #ce2535;
  }
}

.background_vector {
  position: absolute;
  /* bottom: 0; */
  top: 58px;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url(./images/BG.png) no-repeat;
  background-size: 108vw 50vh;
  background-position: 0rem 16rem;
  overflow: hidden;
  z-index: -1;
}

.background_vector_mask {
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-size: 108vw 50vh;
  background-position: 0rem 16rem;
  overflow: hidden;
  -webkit-animation: slide-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}

.hero-section {
  position: absolute;
  top: 176px;
  left: 88px;
  width: 459px;
  height: 162px;
  font-family: Nuckle;
  font-size: 45px;
  font-weight: 591;
  line-height: 54px;
  text-align: left;
}
.hero-section p {
  font-family: Nuckle;
  font-size: 16px;
  line-height: 0;
  color: #ce2535;
}

.hero-section p span {
  margin-right: 8px;
}

.hero_description {
  position: absolute;
  bottom: 42px;
  left: 88px;
  width: 359px;
  height: 162px;
}

.hero_description_text {
  width: 400px;
  height: 57px;
  gap: 0px;
  font-family: Nuckle;
  font-weight: 500;
  opacity: 0.6;
  font-size: 16px;
  line-height: 19.2px;
  text-align: left;
}

.hero_description_text2 {
  width: 463px;
  height: 57px;
  gap: 0px;
  font-family: Nuckle;
  font-weight: 500;
  opacity: 0.6;
  font-size: 16px;
  line-height: 19.2px;
  text-align: left;
}

.hero-section2 {
  position: absolute;
  top: 176px;
  left: 88px;
  width: 463px;
  height: 162px;
  font-family: Nuckle;
  font-size: 45px;
  font-weight: 591;
  line-height: 54px;
  text-align: left;
}
.hero-section2 p {
  font-family: Nuckle;
  font-size: 16px;
  line-height: 0;
  color: #ce2535;
}

.hero-section2 p span {
  margin-right: 8px;
}

.hero_button {
  width: 155px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  font-family: Nuckle;
  font-size: 14px;
  font-weight: 591;
  line-height: 16.8px;
  text-align: left;
  color: #ffffff;
  background-color: #ce2535;
  border: 2px solid #ce2535;
  font-weight: 500;
  border-radius: 12px;
  transition: ease 0.3s;
}

.hero_button:hover {
  background-color: #ffffff;
  color: #111111;
  border: 2px solid #ce2535;
}
.hero_button:hover span {
  background-color: #ce2535;
}
.hero_button span {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 100%;
  transition: ease 0.3s;
  overflow: hidden;
}

.hero_button span::after {
  content: url(./images/leftarrow.png); /* Frame 1 shown by default */
  position: relative;
  top: 5px;
  left: 5px;
  display: inline-block;
  transition: all 0.5s ease; /* Smooth transition */
}

.hero_button:hover span::after {
  animation: moveUpHide 0.5s forwards; /* First icon moves up and hides */
}

.hero_button:hover span::before {
  content: url("images/leftarrow2.png"); /* Second icon (Frame 2) */
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  animation: moveUpShow 0.5s 0.5s forwards; /* Second icon moves up and shows */
}

/* white button */
.hero_button2 {
  width: 155px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  font-family: Nuckle;
  font-size: 14px;
  font-weight: 591;
  line-height: 16.8px;
  text-align: left;
  color: #111111;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 500;
  border-radius: 12px;
  transition: ease 0.3s;
}

.hero_button2:hover {
  background-color: #ffffff00;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.hero_button2:hover span {
  background-color: #ffffff;
}
.hero_button2 span {
  width: 24px;
  height: 24px;
  background-color: #ce2535;
  border-radius: 100%;
  transition: ease 0.3s;
  overflow: hidden;
}

.hero_button2 span::after {
  content: url(./images/leftarrow2.png); /* Frame 1 shown by default */
  position: relative;
  top: 5px;
  left: 5px;
  display: inline-block;
  transition: all 0.5s ease; /* Smooth transition */
}

.hero_button2:hover span::after {
  animation: moveUpHide 0.5s forwards; /* First icon moves up and hides */
}

.hero_button2:hover span::before {
  content: url("images/leftarrow.png"); /* Second icon (Frame 2) */
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  animation: moveUpShow 0.5s 0.5s forwards; /* Second icon moves up and shows */
}

.hero_button2 span {
  position: relative;
}

.hero_button2 span::after {
  animation: moveBack 0.5s forwards; /* Return Frame 1 to its original position */
}
/* white button */

/* Keyframes for moving the first icon up and hiding it */
@keyframes moveUpHide {
  0% {
    opacity: 1;
    margin-left: 0rem;
  }
  100% {
    /* Move the first icon up */
    margin-left: 2rem;
    opacity: 0; /* Hide it */
  }
}

/* Keyframes for moving the second icon up and showing it */
@keyframes moveUpShow {
  0% {
    margin-left: -2rem;
    opacity: 0; /* Hidden initially */
  }
  100% {
    margin-left: 0rem;
    opacity: 1; /* Fully visible */
  }
}

/* On hover out, return the first icon to default position */
.hero_button span {
  position: relative;
}

.hero_button span::after {
  animation: moveBack 0.5s forwards; /* Return Frame 1 to its original position */
}

@keyframes moveBack {
  0% {
    margin-left: 0rem;
    opacity: 0;
  }
  100% {
    margin-left: 0rem; /* Back to original position */
    opacity: 1; /* Fully visible */
  }
}

.join-us {
  height: 100vh;
  width: 100vw;
  background-color: #ce2535;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.join-us::before {
  content: "";
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("./images/backgroundoverlay.png");
  background-size: cover;
  background-position: center;
  width: 285px;
  height: 526px;
  opacity: 0.5;
  z-index: 1;
}

.join-us-content {
  width: 55vw;
  height: 198px;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  padding-left: 80px;
  padding-top: 80px;
}

.join-us-content h1 {
  /* width: 60vw; */
  font-family: Nuckle;
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 0;
}
.join-us-content-p {
  width: 431px;
  font-family: Nuckle;
  font-size: 20px;
  font-weight: 300;
  line-height: 28.8px;
  color: #ffffff;
  position: relative;
}

.join-us-content-p2 {
  width: 613px;
  font-family: Nuckle;
  font-size: 18px;
  font-weight: 300;
  /* line-height: 28.8px; */
  color: #ffffff;
  position: relative;
}

.join-us-content-p3 {
  width: 613px;
  font-family: Nuckle;
  font-size: 18px;
  font-weight: 300;
  /* line-height: 28.8px; */
  color: #ffffff;
  position: relative;
}
.join-us-content p span {
  font-weight: 600;
}
.join-us-img {
  width: 40vw;
  height: 100vh;
}
.join-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 749px;
  height: 245px;
  position: absolute;
  bottom: 37px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: flex-start;
  z-index: 2;
}

.slider-container2 {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 976px;
  height: 245px;
  position: absolute;
  bottom: 37px;
  right: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  column-gap: 3rem;
}

.slider-container2 .mission h1 {
  font-family: Nuckle;
  font-size: 30;
  font-weight: 600;
  line-height: 0;
  color: #ce2535;
  padding-bottom: 24px;
}

.slider-container2 .mission p {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.2px;
  text-align: left;
}

.slider-container3 {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 976px;
  height: 323px;
  position: absolute;
  bottom: 37px;
  right: 277px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  column-gap: 2rem;
  flex-wrap: wrap;
}
.content {
  text-align: left;
  font-size: 18px;
  color: #333;
  padding: 20px;
  font-family: Nuckle, sans-serif;
  font-weight: 500;
}

.slider-controls {
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 20px;
  left: 85%;
  transform: translateX(-50%);
  gap: 10px;
}

.prev-btn,
.next-btn {
  background-color: #0e4c7f;
  color: white;
  border: solid 1px #0e4c7f;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-btn {
  background-color: #ffffff; /* Different style for prev button */
  color: #111111;
  border: solid 1px #111111;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #111111; /* Optional hover effect */
  color: white;
}

.counter-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1rem;
  position: relative;
}

.counter-values {
  width: 293px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-sub-containers {
  width: 890px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.counter-values .numbers {
  font-family: Nuckle;
  font-size: 88px;
  font-weight: 717;
  line-height: 105.6px;
  text-align: right;
  color: #ce2535;
}

.counter-values .text {
  font-family: Nuckle;
  font-size: 88px;
  font-weight: 653;
  line-height: 105.6px;
  text-align: left;
  color: #0e4c7f;
}

.counter-text {
  font-family: Nuckle;
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px;
  width: 549px;
}

.scroll-background {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url(/Asset/images/Vectorimg.png) no-repeat;
  background-position: 0rem 28rem;
  overflow: hidden;
  z-index: -1;
}

.scroll-background_mask {
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-size: 108vw 50vh;
  background-position: 0rem 16rem;
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.business {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-section {
  width: 1222px;
  height: 334px;
  /* background-color: #0e4c7f; */
  background-image: url("./images/Frame\ 427319150.png");
  border-radius: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 49px;
}

.business-content {
  width: 553px;
}

.business-content h1 {
  font-family: Nuckle;
  font-size: 36px;
  font-weight: 500;
  line-height: 43.2px;
  text-align: left;
  color: #ffffff;
}
.business-img {
  width: 500px;
}
.business-img img {
  position: absolute;
  top: -134px;
  left: 671px;
}

.testimonals,
.job {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.job {
  margin-bottom: 10rem;
}
.testimonals-title,
.job-title {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.testimonals-title,
.job-title h1 {
  font-family: Nuckle;
  font-size: 35px;
  font-weight: 500;
  line-height: 0px;
}
.job-title p {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
  width: 452px;
  text-align: center;
}

.job-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.testimonals-title p {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
  width: 452px;
  text-align: center;
}

.testimonals-slider {
  /* width: 100vw; */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.testimonals-slides {
  width: 580px;
  height: 324px;
  border: solid 1px #ce2535;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border-radius: 32px;
  background: #ce2535;
}

.testimonals-slides .person-image {
  position: absolute;
  top: -41px;
  width: 88px;
  /* height: 88px; */
}

.testimonals-slides .logo-image {
  position: absolute;
  top: 16px;
  right: 29px;
}

.testimonals-slides p {
  width: 446px;
  color: #ffffff;
  text-align: center;
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.2px;
  position: absolute;
}

.testimonals-slides h1 {
  font-family: Nuckle;
  font-size: 24px;
  font-weight: 717;
  line-height: 28.8px;
  text-align: center;
  color: #ffffff;
  position: absolute;
  bottom: 33px;
}

.testimonals-slides h3 {
  font-family: Nuckle;
  font-size: 14px;
  font-weight: 300;
  line-height: 26.2px;
  text-align: center;
  color: #ffffff;
  position: absolute;
  bottom: 0px;
}

.footer {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 88px;
  position: relative;
}

.footer-frame {
  height: 41px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75rem;
  margin: 0 auto;
  gap: 178px;
}

.footer-section {
  width: 445px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  row-gap: 48px;
}

.footer-country {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0;
}
.country-images1 {
  width: 72px;
}
.country-images2 {
  width: 44px;
}

.footer-country h3 {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 717;
  line-height: 0;
  text-align: left;
}

.footer-country p {
  font-family: Nuckle;
  font-size: 13px;
  font-weight: 300;
  line-height: 0;
  text-align: left;
  color: #828282;
}

.footer-phone {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 6px;
}

.footer-section2 {
  width: 488px;
}

.footer-section2 h1 {
  font-family: Nuckle;
  font-size: 28px;
  font-weight: 500;
  line-height: 33.6px;
  width: 389px;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
}

.footer-links {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.footer-links h1 {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 300;
  line-height: 0;
  text-align: left;
  margin-top: 62px;
  color: #828282;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 143px;
}

.footer-menu ul {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  list-style: none;
  margin-left: -38px;
}
.footer-bottom {
  height: 72px;
  background: #ce2535;
  width: 100vw;
  position: absolute;
  bottom: 0;
}

.footer-bottom-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75rem;
  height: 72px;
  margin: 0 auto;
}
.footer-bottom p {
  font-family: Nuckle;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  color: #ffffff;
}

.footer-bottom img {
  width: 134px;
}

.usefull-links {
  width: 313px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 48px;
}
.usefull-links h1 {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.2px;
  color: #ffffff;
}

.other_hero_button button {
  padding: 14px 16px 14px 16px;
  border-radius: 8px;
  background: #ce2535;
  font-family: Nuckle;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  border: #ce2535;
}

.choose-us {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 75rem;
  /* max-width: 1222px; */
  margin: 0 auto;
  column-gap: 74px;
}
.choose-us-title {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.choose-us-title h1 {
  font-family: Nuckle;
  font-size: 60px;
  font-weight: 653;
  line-height: 0;
  text-align: left;
}

.choose-us-title h2 {
  font-family: Nuckle;
  font-size: 60px;
  font-weight: 653;
  line-height: 0;
  text-align: left;
  width: 386px;
  color: #ce2535;
}
.choose-us-description {
  font-family: Nuckle;
  font-size: 32px;
  font-weight: 300;
  line-height: 38.4px;
}

.business2 {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business2-section {
  width: 1222px;
  height: 334px;
  /* background-color: #0e4c7f; */
  background-image: url("./images/Frame\ 427319150.png");
  border-radius: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 49px;
}

.business2-content {
  width: 553px;
}

.business2-content h1 {
  font-family: Nuckle;
  font-size: 36px;
  font-weight: 500;
  line-height: 43.2px;
  text-align: left;
  color: #ffffff;
}
.business2-img {
  width: 500px;
}
.business2-img img {
  position: absolute;
  top: -119px;
  left: 90px;
}

.offer {
  width: 100vw;
  padding: 100px 0;
  /* height: 150vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 72px;
}

.offer-title {
  width: 552px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.offer-title h1 {
  font-family: Nuckle;
  font-size: 40px;
  font-weight: 591;
  line-height: 0;
  text-align: center;
}

.offer-title p {
  font-family: Nuckle;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.2px;
  text-align: center;
  color: #828282;
}

.offer-cards-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 75rem;
  margin: 0 auto;
  gap: 30px;
}

.offer-cards {
  width: 515px;
  height: 197px;
  border: 2px solid #ce2535;
  border-radius: 16px;
  padding: 42px 32px;
  position: relative;
}

.offer-cards h1 {
  font-family: Nuckle;
  font-size: 26px;
  font-weight: 591;
  line-height: 31.2px;
  text-align: left;
}
/* .next_button {
  position: absolute;
} */

.offer-cards ol {
  margin-left: -1.6rem;
}
.offer-cards ol li {
  font-family: Nuckle;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  text-align: left;
  color: #828282;
  margin: 0;
  padding: 0;
}

.offer-cards-bg1 {
  background: url(./images/01.png);
  background-repeat: no-repeat;
  background-position: right top;
}
.offer-cards-bg2 {
  background: url(./images/02.png);
  background-repeat: no-repeat;
  background-position: right top;
}
.offer-cards-bg3 {
  background: url(./images/03.png);
  background-repeat: no-repeat;
  background-position: right top;
}
.offer-cards-bg4 {
  background: url(./images/04.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.next_button {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
}

.our-team {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 75rem;
  column-gap: 32px;
  row-gap: 40px;
}

.our-tem-content {
  width: 378px;
}

.our-tem-content img {
  height: 402px;
}

.our-tem-content h1 {
  font-family: Nuckle;
  font-size: 20px;
  font-weight: 591;
  line-height: 1rem;
  text-align: left;
  padding-top: 1rem;
}

.our-tem-content p {
  font-family: Nuckle;
  font-size: 18px;
  font-weight: 300;
  line-height: 0;
  text-align: left;
  text-transform: uppercase;
}

.business3-img {
  width: 500px;
}

.business3-img img {
  position: absolute;
  top: -187px;
  left: -53px;
}

.slider-container4 {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 976px;
  height: 302px;
  position: absolute;
  bottom: 37px;
  right: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  column-gap: 3rem;
}

.contact-form {
  width: 914px;
}

.contact-form h2 {
  font-family: Nuckle;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.61px;
  text-align: left;
}

.contact-form .input-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 0px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: Nuckle;
  font-weight: 500;
  font-size: 16px;
  color: #555;
}
.contact-form textarea {
  width: 100%;
  padding: 10px 0px 10px 10px;
  border: 0px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-family: Nuckle;
  font-weight: 500;
  color: #555;
}

.contact-form textarea {
  resize: none;
  margin-bottom: 20px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: #bbb;
  outline: none;
}

.contact-form .submit-btn {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .submit-btn span {
  font-size: 20px;
}

.contact-form .submit-btn:hover {
  background-color: #d62738;
}

@media (max-width: 768px) {
  .contact-form .input-group {
    flex-direction: column;
  }
}

.nav-link {
  text-decoration: none;
  color: #111111;
}

.nav-link2 {
  text-decoration: none;
  color: #ffffff;
}
.nav-link2:hover {
  text-decoration: none;
  color: #111111;
}

.nav-link3 {
  text-decoration: none;
  color: #111111;
}
.nav-link3:hover {
  text-decoration: none;
  color: #ffffff;
}
