/* General styles */
body {
  overflow-x: unset;
}

.home section>.container {
  position: relative;
  width: 1168px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

/* .cover section */
.home section.cover {
  position: relative;
  height: calc(300vh - 76px);
  background-color: #000202;
  color: var(--tether-white);
}

.home section.cover .sticky-container {
  position: sticky;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  z-index: 1;
}

.home section.cover .sticky-container::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 90px 84px;
  border-color: transparent transparent var(--tether-black) transparent;
  content: '';
}

.home section.cover .video-background {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home section.cover .video-background::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 20%,
    rgba(0, 0, 0, 0.25) 30%,
    rgba(0, 0, 0, 0.125) 40%,
    rgba(0, 0, 0, 0) 50%
  );
  content: '';
}

.home section.cover .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home section.cover .video-background .vjs-loading-spinner {
  display: none !important;
}

.home section.cover .carousel__container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1168px;
  height: 100%;
  max-width: calc(100% - 64px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home section.cover .carousel__slide {
  padding-bottom: 30px;
}

.home section.cover .carousel__slide:not(.active) {
  display: none;
}

.home section.cover .carousel__slide h1 {
  margin: 0;
}

.home section.cover .carousel__slide h2 {
  margin: 0;
}

.home section.cover .carousel__slide h1 b {
  position: relative;
}

.home section.cover .carousel__slide h1 b:last-child:after {
  position: absolute;
  bottom: 14px;
  right: -30px;
  width: 23px;
  height: 19px;
  background: url('../assets/images/icon-tether.svg');
  content: '';
}

.home section.cover .carousel__slide p {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.26px;
  margin: 0;
  margin-top: 42px;
  transform: translateX(100px);
  width: 464px;
  max-width: 100%;
}

.home section.cover .carousel__slide .cover__cta {
  display: inline-flex;
  margin-top: 35px;
  transform: translateX(100px);
}

.home section.cover .carousel__slide .cover__cta a {
  padding: 12.5px 18px;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.215, .61, .355, 1);
}

.home section.cover .carousel__slide .cover__cta a:hover {
  opacity: 0.5;
}

.home section.cover .to-bottom__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px - 70px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.home section.cover .to-bottom {
  display: flex;
  width: 8px;
  cursor: pointer;
  pointer-events: all;
}

/* .services section */
.home section.services {
  padding: 82px 0 161px;
  background-color: var(--tether-black);
  color: var(--tether-white);
}

.home section.services h2 {
  margin: 0;
  width: 622px;
  max-width: 100%;
}

.home section.services p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.54px;
  margin: 0;
  margin-top: 36px;
  transform: translateX(94px);
  width: 490px;
  max-width: 100%;
}

.home section.services .services__cta {
  display: inline-flex;
  gap: 15px;
  margin-top: 42px;
  transform: translateX(94px);
}

.home section.services .services__cta a {
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.2px;
  padding: 13.5px 18.5px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--tether-white);
  background-color: transparent;
  color: var(--tether-white);
  text-transform: lowercase;
  transition: all 0.4s cubic-bezier(.215, .61, .355, 1);
}

.home section.services .services__cta a:hover {
  background-color: var(--tether-white);
  color: var(--tether-black);
}

.home section.services .to-bottom {
  position: absolute;
  display: flex;
  left: 0;
  bottom: -90.5px;
  cursor: pointer;
}

/* .services-carousel section */
.home section.services-carousel {
  background-color: var(--tether-black);
  color: var(--tether-white);
}

.home section.services-carousel .video-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home section.services-carousel .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home section.services-carousel .video-background .vjs-loading-spinner {
  display: none !important;
}

.home section.services-carousel.four-pillars {
  height: 500vh;
}

.home section.services-carousel.five-pillars {
  height: 600vh;
}

.home section.services-carousel .carousel__container {
  position: sticky;
  top: 76px;
}

.home section.services-carousel .carousel__slides {
  position: relative;
}

.home section.services-carousel .carousel__slides::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 90px 84px;
  border-color: transparent transparent var(--tether-white) transparent;
  content: '';
}

.home section.services-carousel .to-bottom {
  position: absolute;
  left: 50%;
  bottom: 63.5px;
  transform: translateX(-50%);
  width: 1168px;
  max-width: calc(100% - 64px);
  display: flex;
}

.home section.services-carousel .carousel__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 76px);
}

.home section.services-carousel .carousel__slide:not(.active) {
  visibility: hidden;
  height: 0;
}

.home section.services-carousel .carousel__slide .carousel__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home section.services-carousel .carousel__slide .carousel__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    rgba(0, 0, 0, 1) 0%, 
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.2) 60%, 
    rgba(0, 0, 0, 0) 100%);
  content: '';
}

.home section.services-carousel .carousel__slide .carousel__image .image-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.home section.services-carousel .carousel__slide .carousel__image .image-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home section.services-carousel .carousel__slide .carousel__image .image-background img:nth-child(2) {
  display: none !important;
}

.home section.services-carousel .carousel__slide .carousel__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 1168px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
  padding-bottom: 45px;
}

.home section.services-carousel .carousel__slide .carousel__label {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.home section.services-carousel .carousel__slide .carousel__icon {
  display: flex;
  margin-bottom: 15px;
}

.home section.services-carousel .carousel__slide .carousel__link a {
  padding: 12.5px 18px;
  transform: translateX(100px);
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.215, .61, .355, 1);
}

.home section.services-carousel .carousel__slide .carousel__link a:hover {
  opacity: 0.5;
}

.home section.services-carousel .carousel__slide h2 {
  width: 522px;
  max-width: 100%;
  margin: 0;
}

.home section.services-carousel .carousel__slide:nth-child(3) h2 {
  width: 552px;
}

.home section.services-carousel .carousel__slide p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.54px;
  width: 541px;
  max-width: 100%;
  transform: translateX(100px);
  margin-top: 16px;
  margin-bottom: 19px;
}

.home section.services-carousel .carousel__slide p a {
  color: var(--tether-white);
}

.home section.services-carousel .carousel__slide .slide-dots {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home section.services-carousel .carousel__slide:nth-child(1) .slide-dot:nth-child(1) svg,
.home section.services-carousel .carousel__slide:nth-child(2) .slide-dot:nth-child(2) svg,
.home section.services-carousel .carousel__slide:nth-child(3) .slide-dot:nth-child(3) svg,
.home section.services-carousel .carousel__slide:nth-child(4) .slide-dot:nth-child(4) svg,
.home section.services-carousel .carousel__slide:nth-child(5) .slide-dot:nth-child(5) svg {
  fill: var(--tether-white);
}

.home section.services-carousel .carousel__slide .slide-dot {
  display: flex;
  cursor: pointer;
}

/* .statistic section */
.home section.statistic {
  background: linear-gradient(to top, var(--tether-grey) 0px, var(--tether-grey) 428px, transparent 428px, transparent 100%);
}

.home section.statistic .statistic__content {
  padding: 85px 0 160px;
}

.home section.statistic .statistic__content h2 {
  font-size: 70px;
  line-height: 78px;
  letter-spacing: 0.7px;
  width: 693px;
  max-width: 100%;
  margin: 0;
}

.home section.statistic .statistic__items {
  display: flex;
  gap: 10px;
  margin-top: 75px;
}

.home section.statistic .statistic__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 0px;
  background: var(--tether-black);
  color: var(--tether-white);
  padding: 86px 21px 70px;
  gap: 60px;
}

.home section.statistic .statistic__item::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 37.5px 0;
  border-color: transparent var(--tether-white) transparent transparent;
  content: '';
}

.home section.statistic .statistic__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: 110px;
}

.home section.statistic .statistic__label {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.96px;
}

.home section.statistic .statistic__value {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.26px;
}

.home section.statistic .statistic__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.26px;
}

.home section.statistic .statistic__link a {
  padding: 12.5px 17.5px;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.215, .61, .355, 1);
}

.home section.statistic .statistic__link a:hover {
  opacity: 0.5;
}

.home section.statistic .to-top {
  position: absolute;
  left: 0;
  bottom: 45.5px;
  display: flex;
  cursor: pointer;
}

/* .news section */
.home section.news {
  padding: 39px 0 47px;
}

.home section.news h2 {
  margin-top: 0;
}

@media (min-width: 1400px) {
  /* .services-carousel section */
  .home section.services-carousel .carousel__slide .slide-dots {
    right: -50px;
  }
}

@media (min-width: 992px) and (max-width: 1232px) {
  /* .statistic section */
  .home section.statistic .statistic__items {
    margin-left: -16px;
    margin-right: -16px;
  }

  .home section.statistic .statistic__item {
    padding: 86px 10px 70px;
  }
}

@media (max-width: 991.98px) {
  /* General styles */
  .home section > .container {
    max-width: calc(100% - 32px);
  }

  /* .cover section */
  .home section.cover {
    background-color: var(--tether-black);
    height: calc(300vh - 68px);
    height: calc(300svh - 68px);
  }


  .home section.cover .video-background::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    background-image: linear-gradient(to bottom, var(--tether-black) 45%, transparent 55%);
    background-repeat: no-repeat;
  }

  .home section.cover .video-background::after {
    background: linear-gradient(to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.5) 10%,
      rgba(0, 0, 0, 0) 20%
    );
  }

  .home section.cover>.container {
    justify-content: flex-start;
    padding-top: 48px;
    height: calc(100% - 48px);
  }

  .home section.cover .sticky-container {
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
  }

  .home section.cover .sticky-container::after {
    border-width: 0 0 73px 70px;
  }

  .home section.cover .video-background {
    align-items: flex-end;
    height: calc(100vh - 68px);
  }

  .home section.cover .video-background video {
    width: 100%;
    height: 55%;
  }

  .home section.cover .carousel__container {
    max-width: calc(100% - 32px);
    justify-content: flex-start;
  }

  .home section.cover .carousel__slide {
    margin-top: 45px;
    padding-bottom: 0;
  }

  .home section.cover .carousel__slide:nth-child(2) {
    margin-top: 22.5px;
  }

  .home section.cover .carousel__slide h1 b:last-child:after {
    background-size: cover;
    width: 14px;
    height: 12px;
    right: -18px;
    bottom: 10px;
  }

  .home section.cover .carousel__slide h2 {
    width: 377px;
    max-width: 100%;
    letter-spacing: 0.52px;
  }

  .home section.cover .carousel__slide p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.22px;
    margin-top: 20px;
    transform: unset;
  }

  .home section.cover .carousel__slide .cover__cta {
    margin-top: 28px;
    transform: unset;
  }

  .home section.cover .to-bottom__container {
    height: calc(100svh - 68px - 41.5px);
  }

  /* .services section */
  .home section.services {
    padding: 70px 0 137px;
  }

  .home section.services h2 {
    letter-spacing: 0.52px;
  }

  .home section.services p {
    transform: unset;
    margin-top: 20px;
  }

  .home section.services .services__cta {
    transform: unset;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .home section.services .services__cta a {
    padding: 12.5px 18px;
  }

  /* .services-carousel section */
  .home section.services-carousel .video-background {
    display: none;
  }

  .home section.services-carousel .carousel__slide .carousel__image .image-background {
    display: block;
  }

  .home section.services-carousel .carousel__container {
    top: 68px;
  }

  .home section.services-carousel .carousel__slide {
    height: calc(100vh - 68px);
  }

  .home section.services-carousel .carousel__slides::after {
    border-width: 0 0 73px 70px;
  }

  .home section.services-carousel .carousel__slide .carousel__content {
    max-width: calc(100% - 32px);
  }

  .home section.services-carousel .carousel__slide h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.96px;
  }

  .home section.services-carousel .carousel__slide h2 {
    width: 354px !important;
  }

  .home section.services-carousel .carousel__slide p {
    line-height: 28px;
    transform: none;
  }

  .home section.services-carousel .carousel__slide .carousel__content {
    padding-bottom: 36px;
  }

  .home section.services-carousel .carousel__slide .carousel__link a {
    transform: none;
  }

  .home section.services-carousel .carousel__slide .slide-dots {
    flex-direction: row;
    top: unset;
    left: 0;
    bottom: 50px;
    transform: none;
  }

  .home section.services-carousel .to-bottom {
    display: none;
  }

  /* .statistic section */
  .home section.statistic {
    background: linear-gradient(to top, var(--tether-grey) 0px, var(--tether-grey) 986px, transparent 986px, transparent 100%);
  }

  .home section.statistic .statistic__content {
    padding: 44px 0 137px;
  }

  .home section.statistic .statistic__content h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
    width: 330px;
  }

  .home section.statistic .statistic__items {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
  }

  .home section.statistic .statistic__item {
    width: 225px;
    max-width: 100%;
    gap: 36px;
    padding: 44px 21px 33px;
  }

  .home section.statistic .statistic__item:nth-last-child(-n+2)::after {
    border-color: transparent var(--tether-grey) transparent transparent;
  }

  .home section.statistic .statistic__label {
    max-width: 183px;
  }
}

@media (max-width: 575.98px) {
  /* .services-carousel section */
  .home section.services-carousel .carousel__slide .carousel__image .image-background img:nth-child(1) {
    display: none !important;
  }

  .home section.services-carousel .carousel__slide .carousel__image .image-background img:nth-child(2) {
    display: block !important;
  }
}

@media (max-width: 392.98px) {
  .home section.cover .cover__content p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.2px;
  }

  /* .services-carousel section */
  .home section.services-carousel .carousel__slide h2 {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.26px;
  }

  .home section.services-carousel .carousel__slide p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.45px;
  }
}

@media only screen and (max-width: 375px) and (max-height: 667px) {
  /* .cover section */
  .home section.cover .to-bottom__container {
    display: none;
  }

  /* .services-carousel section */
  .home section.services-carousel .carousel__slide p {
    font-size: 12px;
    line-height: 22px;
  }

  .home section.services-carousel .carousel__slide:nth-child(3) .carousel__content {
    padding-bottom: 72px;
  }
}

@media screen and (max-height: 967.98px) {
  /* .services-carousel section */
  .home section.services-carousel .carousel__slide p {
    width: 668px;
  }

  .home section.services-carousel .carousel__slide:nth-child(1) h2 {
    width: 768px;
  }

  .home section.services-carousel .carousel__slide:nth-child(3) h2 {
    width: 800px;
  }
}
