/* headings */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  margin-top: 0;
}

/* end headings */
/* home body */
body.home .header {
  /*position: absolute */
  width: 100%;
  background: white;
}
body.home .header__wrapper, body.home .header__top {
  background: white;
}
body.home header.sticky + main {
  /*padding-top: 0 */
}
/* homeslider */
.homeslider__wrapper {
  /*padding-top: 125px // 50px of header top and 75px of header bottom */
  background: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: 1;
  position: relative;
}

.homeslider__item {
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  cursor: pointer;
  transition: 1s ease;
}
.homeslider__item:before {
  content: "";
  background: #02354B;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 1s ease;
}
.homeslider__item.active::before {
  opacity: 20%;
}
.homeslider__item.active .homeslider__content {
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.7s;
}

.homeslider__content {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  color: white;
  text-align: left;
  padding: 40px;
  position: absolute;
  z-index: 1;
  gap: 20px;
  opacity: 0;
  transition: 0.1s ease;
  transition-delay: 0s;
  width: 100%;
}
.homeslider__content .icon__text {
  padding: 20px 25px;
}
.homeslider__content .h1, .homeslider__content h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
  margin-bottom: 0;
  color: white;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}
.homeslider__content p {
  color: white;
  font-size: clamp(12px, 4vw, 18px);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}

.homeslider {
  height: 100%;
  overflow: hidden;
  min-height: 600px;
}
.homeslider .slick-list {
  border-radius: 36px;
}
.homeslider .slick-slide {
  border-radius: 36px;
  overflow: visible;
}

.homeslider__links {
  display: inline-flex;
  gap: 40px;
  align-items: start;
}
.homeslider__links a:not(.btn) {
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.homeslider__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  border-radius: 36px;
}

.homeslider .slick-prev {
  display: none !important;
}

/* end homeslider *//*# sourceMappingURL=home.css.map */