@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

.home-banner {
  position: relative;
  width: 100%;
  height: 80vh;
}

@media screen and (min-width: 1200px) {
  .home-banner {
    height: 100vh;
  }
}

.home-banner .hero {
  width: 100%;
  height: 100%;
}

.home-banner .hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-banner .hero-text {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 50px;
}

@media screen and (min-width: 992px) {
  .home-banner .hero-text {
    bottom: 90px;
  }
}

.home-banner .hero-text .banner-title {
  color: #fff;
  width: 100%;
  margin: 0;
  font-weight: 600;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.home-banner .hero-text .banner-title.animate {
  font-family: "IBM Plex Sans", serif;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (min-width: 1200px) {
  .home-banner .hero-text .banner-title {
    max-width: 900px;
  }
}

@media screen and (min-width: 1600px) {
  .home-banner .hero-text .banner-title {
    max-width: 918px;
  }
}

.home-banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(51.72%, rgba(0, 0, 0, 0)),
      to(rgba(3, 18, 33, 0.18))
    ),
    -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 51.72%,
      rgba(3, 18, 33, 0.88) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  bottom: 0;
}

.home-about {
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  background-image: url(../../images/Vector.webp);
  background-repeat: no-repeat;
}

@media screen and (min-width: 1200px) {
  .home-about {
    padding-top: 70px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1600px) {
  .home-about {
    padding-top: 100px;
  }
}

.home-about::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 155px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#54b1c9),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(0deg, #54b1c9 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.44;
  z-index: 1;
}

.home-about .about-image {
  width: 100%;
  max-width: 300px;
  position: relative;
  z-index: 2;
  margin: auto;
}

@media screen and (min-width: 992px) {
  .home-about .about-image {
    max-width: 350px;
  }
}

@media screen and (min-width: 1200px) {
  .home-about .about-image {
    margin-right: 0;
    max-width: 350px;
    margin-left: 50px;
  }
}

@media screen and (min-width: 1600px) {
  .home-about .about-image {
    max-width: 440px;
    margin-left: 50px;
    margin-right: 0;
  }
}

.home-about .about-image .figure {
  padding-top: calc(632 / 443 * 100%);
  position: relative;
}

.home-about .about-image .figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
}

.home-about .content {
  width: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .home-about .content {
    text-align: center;
  }
}

@media screen and (min-width: 1200px) {
  .home-about .content {
    margin-left: 30px;
    max-width: 90%;
    text-align: left;
  }
  .home-about .content .title {
    max-width: 90%;
  }
}

@media screen and (min-width: 1600px) {
  .home-about .content {
    max-width: 93%;
    margin-left: 30px;
  }
  .home-about .content .title {
    max-width: 96%;
  }
}

.home-about .content .title {
  color: #3c97ae;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  font-family: "IBM Plex Sans", serif;
}

@media screen and (min-width: 1600px) {
  .home-about .content .title {
    margin-bottom: 1.25rem;
  }
}

.home-about .content .title span {
  color: #000;
}

.btn-primary-outline span {
  font-family: "IBM Plex Sans", serif;
}

.home-about .content p {
  color: #555555;
  font-family: "IBM Plex Sans", serif;

  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1.875rem;
}

.btn-primary-outline span {
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}

@media screen and (min-width: 1200px) {
  .home-about .content p {
    margin-bottom: 2.1875rem;
    font-size: 14px;
  }
}

@media screen and (min-width: 1600px) {
  .home-about .content p {
    margin-bottom: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .home-about .content a {
    margin: auto;
  }
}

@media screen and (min-width: 1200px) {
  .home-about .content a {
    margin-left: 0;
  }
  /* :global(body.rtl) .home-about .content a{
    margin-right: 0;
    background-color: #025D78 !important;
  } */
}

.home-about .content .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 50px;
}

@media screen and (min-width: 992px) {
  .home-about .content .counter {
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .home-about .content .counter {
    margin-top: 60px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    gap: 40px;
  }
}

@media screen and (min-width: 1600px) {
  .home-about .content .counter {
    margin-top: 90px;
    gap: 60px;
  }
}

.home-about .content .counter .item {
  text-align: center;
  width: 44%;
}

@media screen and (min-width: 992px) {
  .home-about .content .counter .item {
    text-align: left;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.home-about .content .counter .item p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  opacity: 70%;
}

@media screen and (min-width: 1200px) {
  .home-about .content .counter .item p {
    font-size: 16px;
  }
}

.home-about .content .counter .count {
  font-size: 35px;
  font-weight: 300;
  color: #025d78;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .home-about .content .counter .count {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .home-about .content .counter .count {
    font-size: 40px;
    font-weight: 300;
  }
}

@media screen and (min-width: 1600px) {
  .home-about .content .counter .count {
    font-size: 64px;
    font-weight: 400;
  }
}

.home-about .content .counter .count .odometer {
  margin-right: 10px;
  white-space: nowrap;
}

.home-about .content .counter .increment {
  display: inline-block;
  letter-spacing: 1px;
}

.home-services {
  padding: 50px 0;
  border-bottom: 0.7px solid rgba(190, 204, 207, 0.3);
}

@media screen and (min-width: 1200px) {
  .home-services {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1600px) {
  .home-services {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

.home-services .title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
}

.home-services .slider {
  position: relative;
  margin-top: 30px;
}

@media screen and (min-width: 1200px) {
  .home-services .slider {
    padding: 0 75px;
    margin-top: 65px;
  }
}

@media screen and (min-width: 1600px) {
  .home-services .slider {
    padding: 0 90px;
  }
}

.home-services .slider .card {
  position: relative;

  border-radius: 5px;
  height: 100%;
}

.home-services .slider .card .image {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .home-services .slider .card .image {
    width: 380px;
  }
}
@media screen and (min-width: 1400px) {
  .home-services .slider .card .image {
    width: 419px;
  }
}

@media screen and (min-width: 1600px) {
  .home-services .slider .card .image {
    width: 503px;
  }
}

.home-services .slider .card .image .figure {
  padding-top: calc(341 / 473 * 100%);
  position: relative;
}

.home-services .slider .card .image .figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
}

.home-services .slider .card .image .figure img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.home-services .slider .card .sidebar {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 0;
  top: 0;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#025d78),
    to(#02233a)
  );
  background: linear-gradient(180deg, #025d78 0%, #02233a 100%);
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .home-services .slider .card .sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home-services .slider .card .sidebar p {
  margin: 0;
  white-space: nowrap;
  color: #fff;
  will-change: transform;
}

.home-services .slider .card .full-text {
  position: relative;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#025d78),
    to(#02233a)
  );
  background: linear-gradient(180deg, #025d78 0%, #02233a 100%);
  padding: 20px 20px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-services .slider .card .full-text {
    padding: 30px 15px;
    max-width: 42%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@media screen and (min-width: 1600px) {
  .home-services .slider .card .full-text {
    padding: 45px 30px;
    max-width: 40%;
  }
}

.home-services .slider .card .full-text .title {
  color: #fff;
  font-weight: 500;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 20px;
  margin-left: 0;
  font-size: 22px;
}

@media screen and (max-width: 576px) {
  .home-services .slider .card .full-text .title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .home-services .slider .card .full-text .title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1600px) {
  .home-services .slider .card .full-text .title {
    margin-bottom: 35px;
    font-size: 30px;
  }
}

.home-services .slider .card .full-text .title::before {
  position: absolute;
  content: "";
  left: 0;
  width: 30%;
  height: 1px;
  background-color: #fff;
  bottom: -10px;
}

@media screen and (min-width: 1200px) {
  .home-services .slider .card .full-text .title::before {
    bottom: -10px;
    display: block;
  }
}

@media screen and (min-width: 1600px) {
  .home-services .slider .card .full-text .title::before {
    bottom: -15px;
  }
}

.home-services .slider .card .full-text p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}

@media screen and (min-width: 1200px) {
  .home-services .slider .card .full-text p {
    font-size: 11px;
  }
}

.home-services .slider .swiper {
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .home-services .slider .swiper {
    padding: 35px 0;
  }
}

.home-services .slider .swiper-slide {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  will-change: transform;
  height: auto;
}

.home-services .slider .swiper-slide-prev {
  z-index: 1;
}

.home-services .slider .swiper-slide-prev .card {
  padding-left: 77px;
}

.home-services .slider .swiper-slide-prev .card .sidebar {
  left: 0;
  max-width: 81px;
}

.home-services .slider .swiper-slide-prev .card .sidebar p {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.home-services .slider .swiper-slide-next {
  z-index: 1;
}

.home-services .slider .swiper-slide-next .card {
  padding-right: 75px;
}

.home-services .slider .swiper-slide-next .card .sidebar {
  right: 0;
  max-width: 81px;
}

.home-services .slider .swiper-slide-next .card .sidebar p {
  display: inline-block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.home-services .slider .swiper-slide-active {
  z-index: 2;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-services .slider .swiper-slide-active {
    /* -webkit-transform: scale(1.2) translateY(0);
    transform: scale(1.2) translateY(0); */
    -webkit-transform: scale(1.23) translateY(0);
    transform: scale(1.32) translateY(0);
  }
}

.home-services .slider .swiper-slide-active .card .figure img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

@media screen and (min-width: 1200px) {
  .home-services .slider .swiper-slide-active .card .full-text {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    max-width: 40%;
    right: 9px;
  }
}
@media screen and (min-width: 1600px) {
  .home-services .slider .swiper-slide-active .card .full-text {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    max-width: 44%;
    right: -20px;
  }
}

.home-services .slider .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  border: 1px solid #025d78;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-services .slider .swiper-button-prev:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (min-width: 1200px) {
  .home-services .slider .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.flex-wrap-rev {
  flex-wrap: wrap-reverse;
}

.home-services .slider .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}

.home-services .slider .swiper-button-prev span {
  font-size: 20px;
  display: block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.home-services .slider .swiper-button-prev::after {
  display: none;
}

.home-services .slider .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  border: 1px solid #025d78;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-services .slider .swiper-button-next:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (min-width: 1200px) {
  .home-services .slider .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home-services .slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}

.home-services .slider .swiper-button-next span {
  font-size: 20px;
  display: block;
}

.home-services .slider .swiper-button-next::after {
  display: none;
}

.home-registration {
  padding: 50px 0;
  padding-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .home-registration {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1200px) {
  .home-registration {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1600px) {
  .home-registration {
    padding: 100px 0;
  }
}

.home-registration .tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  gap: 20px;
  overflow: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
}
.home-registration .tab-container::-webkit-scrollbar {
  display: none;
}

.home-registration .tab-container .tab {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  opacity: 65%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: default;
  width: 100%;
  white-space: nowrap;
  padding: 0 5px;
}

@media screen and (min-width: 768px) {
  .home-registration .tab-container .tab {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .home-registration .tab-container .tab:hover {
    color: #3c97ae;
  }
}

.home-registration .tab-container .tab:nth-child(2) {
  font-size: 24px;
  font-weight: 600;
  opacity: 100%;
  pointer-events: none;
}

@media screen and (min-width: 1200px) {
  .home-registration .tab-container .tab:nth-child(2) {
    font-size: 48px;
  }
}

@media screen and (min-width: 992px) {
  .home-registration .tab-container {
    padding: 0 100px;
  }
}

.home-registration .registration-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* margin-top: 35px; */
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0 30px;
    gap: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .home-registration .registration-box {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0 60px;
    gap: 15px;
  }
}

.home-registration .registration-box .item {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item {
    min-height: 450px;
    max-height: 800px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1;
    flex: 0 1;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#025d78),
      to(#022036)
    );
    background: linear-gradient(180deg, #025d78 0%, #022036 100%);
  }
}

@media screen and (min-width: 1600px) {
  .home-registration .registration-box .item {
    min-height: 550px;
    max-height: 850px;
  }
}

.home-registration .registration-box .item .sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#025d78),
    to(#022036)
  );
  background: linear-gradient(180deg, #025d78 0%, #022036 100%);
  padding: 20px 0;
  will-change: transform;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .sidebar {
    width: auto;
    min-width: 126px;
    max-height: 800px;
    padding-bottom: 66px;
  }
}

@media screen and (min-width: 1600px) {
  .home-registration .registration-box .item .sidebar {
    /* min-width: 176px; */
    min-width: 188px;
    max-height: 850px;
    min-height: 850px;
  }
}

.home-registration .registration-box .item .sidebar p {
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  color: #fff;
  will-change: transform;
  text-align: left;
  font-size: 18px;
  /* height: 100%; */
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .sidebar p {
    font-size: 28px;
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    -webkit-transform: scale(-1);
    transform: scale(-1);
  }
  .home-registration .registration-box .item .sidebar p {
    height: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .home-registration .registration-box .item .sidebar p {
    font-size: 33px;
  }
}

.home-registration .registration-box .item .content {
  width: 100%;
  position: relative;
  overflow: hidden;
  will-change: transform;
  border-radius: 5px;
  overflow: hidden;
  height: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .content {
    position: absolute;
    height: 100%;
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.home-registration .registration-box .item .content .figure {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .content .figure {
    min-width: 831px;
  }
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .content .figure {
    min-width: 907px;
  }
}

.home-registration .registration-box .item .content .figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-registration .registration-box .item .content .info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 20px;
  padding-bottom: 15px;
  max-width: 515px;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  width: 98%;
}

@media screen and (min-width: 768px) {
  .home-registration .registration-box .item .content .info {
    padding-left: 25px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .content .info {
    padding-left: 50px;
    padding-bottom: 35px;
  }
}

.home-registration .registration-box .item .content .info .title {
  color: #7cdbf3;
  margin-bottom: 15px;
}

.home-registration .registration-box .item .content .info p {
  color: #fff;
  font-weight: 300;
  margin: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20.45px;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item .content .info p {
    font-size: 16px;
  }
}

.home-registration .registration-box .item.active {
  cursor: default;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item.active {
    -webkit-box-flex: 5;
    -ms-flex: 5 1;
    flex: 5 1;
  }
}

.home-registration .registration-box .item.active .content {
  width: 100%;
  height: 100%;
  margin-top: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item.active .content {
    height: 100%;
    margin-top: 0;
    opacity: 1;
  }
}

.home-registration .registration-box .item.active .content .info {
  opacity: 1;
}

@media screen and (min-width: 1200px) {
  .home-registration .registration-box .item.active .sidebar {
    opacity: 0;
    visibility: hidden;
  }
}

.home-clients {
  padding: 50px 0;
}

@media screen and (min-width: 992px) {
  .home-clients {
    padding: 70px 0;
  }
}

@media screen and (min-width: 1600px) {
  .home-clients {
    padding: 100px 0;
  }
}

.home-clients .Marquees {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.home-clients .Marquees .title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 30px auto;
  color: #025d78;
}

@media screen and (min-width: 1200px) {
  .home-clients .Marquees .title {
    margin: 50px auto;
  }
}

.home-clients .slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.home-clients .slide-track-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* -webkit-animation: marquee-to-right 20s linear infinite; */
  -webkit-animation: marquee-to-right 50s linear infinite reverse;
  /* animation: marquee-to-right 20s linear infinite; */
  animation: marquee-to-right 50s linear infinite reverse;
}

.home-clients .slide-track-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* animation: marquee-to-right 20s linear infinite reverse; */
  animation: marquee-to-right 50s linear infinite;
}

.home-clients .slide figure {
  width: 140px;
  height: 90px;
}

.pb_zero {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 992px) {
  .home-clients .slide figure {
    width: 180px;
    height: 120px;
  }
}

@media screen and (min-width: 1600px) {
  .home-clients .slide figure {
    width: 210px;
    height: 135px;
	display:flex;
	align-items:center;
	  justify-content:center;
	  border:1px solid #e0e0e0;
	  border-radius:25px;
  }
}

.home-clients .slide figure img {
  width: 100%;
  height: 100%;
	object-fit:contain;
}

@-webkit-keyframes marquee-to-right {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee-to-right {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.home-testimonial {
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .home-testimonial {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .home-testimonial {
    padding-bottom: 0;
    padding-top: 70px;
  }
}

.home-testimonial .title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 20px;
}

.home-testimonial .title {
  margin: auto;
}

.home-testimonial p {
  max-width: 840px;
  margin: auto;
  color: #454545;
  font-weight: 300;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-testimonial p {
    text-align: center;
  }
}

@media screen and (max-width: 1199px) {
  .home-services .slider .swiper-slide-prev .card,
  .home-services .slider .swiper-slide-next .card {
    padding-left: 0;
    padding-right: 0;
  }

  .home-registration .registration-box .item.active .sidebar {
    display: none;
  }

  .home-about {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .pb_0 {
    padding-bottom: 0px !important;
  }

  .home-testimonial .title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .home-about .content p br {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .home-testimonial p {
    text-align: center;
    margin-bottom: 60px;
    font-size: 16px;
    color: #454545;
    margin-top: 10px;
    line-height: 30px;
  }
}

.home-testimonial .slider .card {
  border: 1px solid #abcad3;

  overflow: hidden;
  position: relative;
  border-radius: 8px;
  height: 100%;
  min-height: 170px;
  text-align: left;
  padding: 20px;
}
.home-testimonial .slider .card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(82, 175, 199, 1) 100%
  );
  opacity: 0.2;
  z-index: 1;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card {
    padding: 60px 30px;
  }
}

@media screen and (min-width: 1600px) {
  .home-testimonial .slider .card {
    padding: 100px 60px;
  }
}

.home-testimonial .slider .card .figure {
  position: absolute;
  right: 0;
  width: 100%;
  bottom: -10px;
  max-width: 80px;
  height: 80px;
  display: none;
}

.home-testimonial .slider .card .figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card .figure {
    max-width: 260px;
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -12px;
    right: -10px;
  }
}

@media screen and (min-width: 1600px) {
  .home-testimonial .slider .card .figure {
    max-width: 340px;
    height: 312px;
  }
}

.home-testimonial .slider .card .figure img {
  margin-left: auto;
}

.home-testimonial .slider .card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-testimonial .slider .card .content .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.home-testimonial .slider .card .content .head .figure1 {
  position: relative;
  width: 70px;
  height: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 100%;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card .content .head .figure1 {
    display: none;
  }
}

.home-testimonial .slider .card .content .head .figure1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}

.home-testimonial .slider .card .content .title {
  font-size: 1.5rem;
  color: #025d78;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card .content .title {
    font-size: 1.625rem;
  }
}

.home-testimonial .slider .card .content p {
  color: #585858;
  /* color: #596c75; */

  font-size: 14px;
  font-weight: 400;
  max-width: 295px;
  margin: 0;
  text-align: left;
  line-height: 21px;
}

@media screen and (min-width: 768px) {
  .home-testimonial .slider .card .content p {
    max-width: 345px;
  }
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card .content p {
    max-width: 295px;
  }
}

@media screen and (min-width: 1600px) {
  .home-testimonial .slider .card .content p {
    font-size: 14px;
    line-height: 21px;
  }
}

.home-testimonial .slider .card .content img {
  width: 50px;
  height: 30px;
  margin-left: 10px;
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card .content img {
    width: 80px;
    height: 70px;
    margin-top: 0;
  }
}

@media screen and (min-width: 1600px) {
  .home-testimonial .slider .card .content img {
    width: 143px;
    height: 126px;
  }
}

.home-testimonial .slider .swiper {
  overflow: visible;
}

.home-testimonial .slider .swiper-slide {
  height: auto;
}

.home-awards {
  overflow: hidden;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(-29.4%, #1186a0),
    to(#021227)
  );
  background: linear-gradient(180deg, #1186a0 -29.4%, #021227 100%);
  padding: 50px 0;
}

@media screen and (min-width: 1025px) {
  .home-awards {
    margin-top: 80px;
    padding: 60px 0;
  }
}

@media screen and (min-width: 1200px) {
  .home-awards {
    margin-top: 100px;
    padding: 80px 0;
  }
}

@media screen and (min-width: 1600px) {
  .home-awards {
    padding: 100px 0;
  }
}

.home-awards::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-image: url(../../images/awards.png);*/ 
  background-image: url(../../images/awards1.png);	 
  background-size: cover;
  background-repeat: no-repeat;
}


.home-awards .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media screen and (min-width: 1200px) {
  .home-awards .head {
    margin-bottom: 90px;
  }
}

@media screen and (min-width: 1600px) {
  .home-awards .head {
    margin-bottom: 130px;
  }
}

.home-awards .head .title {
  color: #fff;
  position: relative;
  font-weight: 500;
}

.home-awards .head .controls {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .home-awards .head .controls {
    gap: 20px;
  }
}

.home-awards .head .swiper-button-prev,
.home-awards .head .swiper-button-next {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 100%;
}

.home-awards .head .swiper-button-prev::before,
.home-awards .head .swiper-button-next::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 50;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-awards .head .swiper-button-prev:hover:before,
.home-awards .head .swiper-button-next:hover:before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media screen and (min-width: 1200px) {
  .home-awards .head .swiper-button-prev,
  .home-awards .head .swiper-button-next {
    width: 47px;
    height: 47px;
  }
}

@media screen and (min-width: 1600px) {
  .home-awards .head .swiper-button-prev,
  .home-awards .head .swiper-button-next {
    width: 52px;
    height: 52px;
  }
}

.home-awards .head .swiper-button-prev:after,
.home-awards .head .swiper-button-next:after {
  display: none;
}

.home-awards .head .swiper-button-prev .icon-arrow,
.home-awards .head .swiper-button-next .icon-arrow {
  font-size: 20px;
}

.home-awards .head .swiper-button-prev .icon-arrow::before,
.home-awards .head .swiper-button-next .icon-arrow::before {
  color: #fff;
}

.home-awards .head .swiper-button-prev {
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-awards .head .swiper-button-prev span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* .home-awards .head .swiper-button-prev:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
} */

.home-awards .head .swiper-button-next {
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* .home-awards .head .swiper-button-next:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
} */

.home-awards .card strong {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .home-awards .card strong {
    font-size: 35px;
  }
}

.home-awards .card span {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  display: block;
}

.home-awards .card .dot {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #fff;
  margin-top: 21px;
  margin-bottom: 19px;
}

.home-awards .card p {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

@media screen and (min-width: 1600px) {
  .home-awards .card p {
    font-size: 14px;
    font-weight: 400;
  }
}

.home-awards .slider {
  position: relative;
}

.home-awards .slider .slider_container {
  position: relative;
}

/* .home-awards .slider::before { */
.home-awards .slider .slider_container::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  /* top: 36%; */
  top: 90px;
  width: 150%;
  height: 1px;
  background-color: #fff;
  opacity: 13%;
}

@media screen and (max-width: 1199px) {
  .home-awards .slider .slider_container::before {
    top: 85px;
  }
}

@media screen and (min-width: 992px) {
  .home-awards .slider::before {
    top: 39%;
  }
}

@media screen and (min-width: 1200px) {
  .home-awards .slider::before {
    top: 38%;
  }
}

@media screen and (min-width: 1400px) {
  .home-awards .slider::before {
    top: 41%;
  }
}

@media screen and (min-width: 1600px) {
  .home-awards .slider::before {
    top: 35%;
  }
}

.home-awards .slider .swiper {
  overflow: visible;
  position: relative;
}

.home-awards .slider .swiper-slide {
  position: relative;
}

.home-media {
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .home-media {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1200px) {
  .home-media {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1600px) {
  .home-media {
    padding-top: 150px;
    padding-bottom: 115px;
  }
}

.home-media .title {
  margin-bottom: 30px;
}

@media screen and (min-width: 1200px) {
  .home-media .title {
    margin-bottom: 50px;
  }
}

.home-media .slider .card {
  position: relative;
}

.home-media .slider .card .img {
  width: 100%;
  max-width: 658px;
}

.home-media .slider .card .img .figure {
  padding-top: calc(340 / 658 * 100%);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.home-media .slider .card .img .figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
}

.home-media .slider .card .img .figure img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}

.home-media .slider .card-footer {
  padding-top: 15px;
}

@media screen and (min-width: 1200px) {
  .home-media .slider .card-footer {
    padding-top: 20px;
  }
}

.home-media .slider .card-footer .title {
  font-weight: 400;
  margin-bottom: 15px;
}

@media screen and (min-width: 1200px) {
  .home-media .slider .card-footer .title {
    margin-bottom: 20px;
  }
}

.home-media .slider .card-footer a {
  color: #025d78;
}

.home-media .slider .card-footer a .icon-arrow::before {
  color: #025d78;
}

.home-media .slider .swiper-slide:hover .figure img {
  -webkit-transform: scale(1.13);
  transform: scale(1.13);
}
.home-media .slider .swiper-slide:hover .card-footer .btn-arrow .icon-arrow {
  transform: translateX(10px);
}
.home-media .slider .swiper {
  overflow: visible;
}

.page_404 {
  padding: 150px 0;
}

.page_404 h1 {
  font-size: 45px;
  margin: 30px 0;
}

.page_404 h3 {
  margin: 25px 0;
  font-size: 30px;
}

.page_404 h4 {
  margin: 20px 0;
  font-size: 25px;
}

.page_404 ul li {
  margin-bottom: 10px;
}

.page_404 .btn-primary {
  margin-top: 30px;
}

.page_404 .btn-primary::before {
  z-index: -2;
}

.error-image img {
  filter: invert(1);
}

@media screen and (max-width: 1440px) {
  .page_404 h1 {
    font-size: 35px;
  }

  .page_404 h3 {
    margin: 20px 0;
    font-size: 25px;
  }

  .page_404 h4 {
    margin: 15px 0;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page_404 h1 {
    font-size: 25px;
  }

  .page_404 h3 {
    font-size: 20px;
  }

  .page_404 h4 {
    font-size: 18px;
  }

  .page_404 ul li {
    font-size: 14px;
  }
	
}
@media screen and (max-width: 480px){
	.home-registration .tab-container{
		gap:10px;
	}
	.home-registration .tab-container .tab{
		font-size:15px;
	}
	.home-registration .tab-container .tab:nth-child(2){
		font-size:16px;
	}
	.home-registration .registration-box{
		margin-top:30px;
	}
	.home-registration .registration-box .item .sidebar p{
		font-size:14px;
	}
}
