@charset "UTF-8";
.sliders-container {
  height: 400px;
  overflow: hidden;
  gap: 220px;
  justify-content: center;
  align-items: start;
}
@media screen and (min-width: 1000px) {
  .sliders-container {
    justify-content: unset;
    align-items: unset;
    padding-left: 25px;
  }
}

.slider-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  transform: rotate(45deg);
}

.slider-track {
  display: flex;
  gap: 80px;
  will-change: transform;
}

.slider-item {
  width: 300px;
  height: 300px;
  flex: 0 0 100px;
  display: block;
  transform: rotate(-90deg);
}

.slider-item img {
  width: 300px;
  height: 300px;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo-block > div:nth-child(1) {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .logo-block > div:nth-child(1) {
    width: 60%;
  }
}
.logo-block > div:nth-child(2) {
  display: none;
}
@media screen and (min-width: 1000px) {
  .logo-block > div:nth-child(2) {
    width: 40%;
    display: flex;
  }
}

.dashed-section-wrapper {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.dashed-section-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 5s ease-in-out;
}
.dashed-section-wrapper .custom-pattern {
  background-image: url("../images/dashed-lines.svg");
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: calc(100% - 280px);
}
.dashed-section-wrapper .dashed-section-grid {
  position: relative;
  z-index: 3;
  padding: 15px;
}
@media screen and (min-width: 750px) {
  .dashed-section-wrapper .dashed-section-grid {
    padding: 60px 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .dashed-section-wrapper .dashed-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .dashed-section-wrapper .dashed-section-grid {
    gap: 35px;
  }
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column {
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .dashed-section-wrapper .dashed-section-grid .dashed-section-column {
    height: 400px;
    margin-bottom: unset;
  }
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column .dashed-section-column-inner {
  border-radius: 8px;
  padding: 20px 20px 150px 20px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column .dashed-section-column-inner p {
  color: #828282;
  font-weight: 500;
  font-size: 16px;
  margin-top: 25px;
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column h3 {
  padding-left: 60px;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #003B47;
  font-size: 24px;
  font-weight: 700;
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column h3:before {
  position: absolute;
  content: "";
  top: 0;
  width: 48px;
  height: 48px;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(1) .dashed-section-column-inner {
  background-color: #E4F6FE;
  background-image: url("../images/icon-number-1.svg");
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(1) .dashed-section-column-inner h3:before {
  background-image: url("../images/iccon-search-tm.svg");
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(2) .dashed-section-column-inner {
  background-color: #E4FDF4;
  background-image: url("../images/icon-number-2.svg");
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(2) .dashed-section-column-inner h3:before {
  background-image: url("../images/icon-notes.svg");
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(3) .dashed-section-column-inner {
  background-color: #FEF4CC;
  background-image: url("../images/icon-number-3.svg");
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(3) .dashed-section-column-inner h3:before {
  background-image: url("../images/icon-stars.svg");
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(4) .dashed-section-column-inner {
  background-color: #FFF3EE;
  background-image: url("../images/icon-number-4.svg");
  box-shadow: 0 0 16px 0 rgba(244, 94, 41, 0.25);
  border: 1px solid #F45E29;
}
.dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(4) .dashed-section-column-inner h3:before {
  background-image: url("../images/icon-check-circle.svg");
}
@media screen and (min-width: 1000px) {
  .dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(odd) {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .dashed-section-wrapper .dashed-section-grid .dashed-section-column:nth-child(even) {
    padding-top: 60px;
  }
}

.logo-section {
  position: relative;
}
.logo-section:after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  width: 100%;
  height: 130px;
  background-size: cover;
  z-index: 2;
}

.sliding-bulb-section {
  position: relative;
  background: #F3FBFC;
  overflow-x: hidden;
  padding-block: 120px;
  padding-top: 120px;
  padding-bottom: 50px;
  /* THE SLIDING BAR */
}
.sliding-bulb-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  top: -2px;
  left: 0;
  right: 0;
  background-image: url("../images/white-separator-top.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .container {
    display: flex;
    gap: 20px;
  }
}
.sliding-bulb-section .left-col {
  flex: 1;
  position: relative;
  z-index: 2;
  min-height: 600px;
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .left-col {
    min-height: unset;
  }
}
.sliding-bulb-section .right-col {
  flex: 0 0 70%;
  z-index: 2;
}
.sliding-bulb-section .right-col .services-grid {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .sliding-bulb-section .right-col .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.sliding-bulb-section .right-col .services-grid > div {
  position: relative;
  padding-top: 89px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .right-col .services-grid > div {
    margin-bottom: unset;
    padding-left: 89px;
    padding-top: unset;
  }
}
.sliding-bulb-section .right-col .services-grid > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 73px;
  height: 73px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .right-col .services-grid > div:before {
    top: unset;
  }
}
.sliding-bulb-section .right-col .services-grid > div:nth-child(1):before {
  background-image: url("../images/services-icon-1.svg");
}
.sliding-bulb-section .right-col .services-grid > div:nth-child(2):before {
  background-image: url("../images/services-icon-2.svg");
}
.sliding-bulb-section .right-col .services-grid > div:nth-child(3):before {
  background-image: url("../images/services-icon-3.svg");
}
.sliding-bulb-section .right-col .services-grid > div:nth-child(4):before {
  background-image: url("../images/services-icon-4.svg");
}
.sliding-bulb-section .right-col .services-grid > div:nth-child(5):before {
  background-image: url("../images/services-icon-5.svg");
}
.sliding-bulb-section .right-col .services-grid > div:nth-child(6):before {
  background-image: url("../images/services-icon-6.svg");
}
.sliding-bulb-section .right-col .services-grid > div h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #003B47;
  font-size: 16px;
  font-weight: 700;
}
.sliding-bulb-section .right-col .services-grid > div h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .right-col .services-grid > div h2 {
    font-size: 42px;
  }
}
.sliding-bulb-section .right-col .services-grid > div p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #828282;
  font-size: 16px;
  font-weight: 500;
}
.sliding-bulb-section .sliding-el {
  position: absolute;
  top: 5%;
  left: 0;
  height: 30%;
  background-image: url("../images/octagon-element.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  display: flex;
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .sliding-el {
    top: 25%;
    width: 0;
    will-change: transform, width;
    transform: translateX(-100vw) translateY(-50%);
    transition: transform 700ms cubic-bezier(0.22, 0.9, 0.31, 1), width 200ms ease;
  }
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section .sliding-el {
    top: 50%;
    left: 0;
    height: 70%;
  }
}
@media screen and (min-width: 1000px) {
  .sliding-bulb-section.in-view .sliding-el {
    transform: translateX(0) translateY(-50%);
  }
}

.bulb-wrapper {
  position: relative;
  width: 80%;
  top: 14%;
}
.bulb-wrapper img {
  display: block;
  height: auto;
}
.bulb-wrapper .bulb-off {
  position: relative;
  z-index: 1;
}
.bulb-wrapper .bulb-on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  animation: blinkAndShine 2s ease infinite;
  animation-delay: 1s;
}

@keyframes blinkAndShine {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  34% {
    opacity: 0;
  }
  35% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.front-page-heading {
  position: relative;
  border-radius: 0 0 60px 60px;
  min-height: 600px;
  height: auto;
  background-image: url("../images/about-us-bckg-element.svg"), url("../images/front-page-element-right.svg"), radial-gradient(80.14% 57.12% at 69.06% 103.93%, rgba(0, 222, 230, 0.83) 0%, #007E9E 100%);
  background-position: top 10% left -40%, bottom right, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 75%, 150%, cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .front-page-heading {
    background-position: top 10% left -40%, bottom right, center;
    background-size: 50%, 50%, cover;
  }
}
.front-page-heading .heading-text {
  margin: auto;
}
.front-page-heading .heading-text h1, .front-page-heading .heading-text p {
  color: #ffffff;
}
.front-page-heading .heading-text h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  max-width: 900px;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 67px;
}
@media screen and (min-width: 1000px) {
  .front-page-heading .heading-text h1 {
    font-size: 4rem;
  }
}
.front-page-heading .heading-text p {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}
.front-page-heading .search-wrapper {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  z-index: 5;
}
.front-page-heading .search-wrapper form {
  position: relative;
  margin: 0 20px;
}
.front-page-heading .search-wrapper form:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 30%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url("../images/icon-search.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 460px) {
  .front-page-heading .search-wrapper form:before {
    top: 50%;
  }
}
.front-page-heading .search-wrapper form input[type=search] {
  border-radius: 50px;
  width: 100%;
  padding: 15px 10px 15px 60px;
  height: 80px;
  border: 1px solid #067E96;
}
.front-page-heading .search-wrapper form input[type=search]:focus, .front-page-heading .search-wrapper form input[type=search]:focus-visible {
  outline: none;
  border: 1px solid #F87C51;
}
@media screen and (min-width: 460px) {
  .front-page-heading .search-wrapper form input[type=search] {
    padding: 15px 200px 15px 60px;
  }
}
.front-page-heading .search-wrapper form .search-submit {
  background-color: #F87C51;
  border-radius: 50px;
  padding: 18px 24px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  border: 2px solid #F87C51;
  margin-top: 10px;
}
@media screen and (min-width: 460px) {
  .front-page-heading .search-wrapper form .search-submit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: -moz-max-content;
    width: max-content;
    margin-top: 0;
  }
}

.hero-with-bg {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.logo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.logo-bg .sliders-container {
  display: flex;
  gap: 60px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.slider-wrapper {
  width: 120px;
  height: 500px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  flex-direction: column;
  gap: 84px;
  will-change: transform;
}

.slider-item {
  width: 100px;
  height: 100px;
  background: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 68px;
}

.dots-bg {
  position: relative;
  z-index: 2;
}

.logo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sliders-container {
  display: flex;
  gap: 48px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* VIEWPORT */
.slider-wrapper {
  width: 560px;
  height: 520px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%), linear-gradient(to bottom, transparent 0%, black 20%), linear-gradient(to left, transparent 0%, black 20%), linear-gradient(to right, transparent 0%, black 20%);
  -webkit-mask-composite: intersect;
  mask-image: linear-gradient(to top, transparent 0%, black 20%), linear-gradient(to bottom, transparent 0%, black 20%), linear-gradient(to left, transparent 0%, black 20%), linear-gradient(to right, transparent 0%, black 20%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}

.slider-track {
  display: flex;
  flex-direction: column;
  gap: 160px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 767px) {
  .slider-track {
    gap: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .slider-track {
    gap: 240px;
  }
}

.slider-wrapper[data-dir=down] .slider-track {
  animation: scroll-down 32s linear infinite;
}

.slider-wrapper[data-dir=up] .slider-track {
  animation: scroll-up 32s linear infinite;
}

.slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px; /* <= wrapper height */
}

.slider-item img {
  width: 300px; /* ГОЛЯМО */
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
}

/* LOOP */
@keyframes scroll-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes scroll-up {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}/*# sourceMappingURL=logo-slider.css.map */