body{
    gap: 0;
}

nav{
    padding-bottom: 120px;
}

.hero{
  display: flex;
  flex-direction: column;
  padding: 0px 120px 120px 120px;
}

h1{
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 160px;
  color: #FAF8F3;
}

.tariffs-intro-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-color: #2C3E50;
  padding-top: 80px;
}

.tariffs-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #7A9E7E;
}

.tariffs-cube {
  position: absolute;
  top: 0;
  left: 5%;
  width: clamp(120px, 15vw, 200px);
  aspect-ratio: 1 / 1;
  background-image: url('../assets/images/cube-basic.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  transform: rotateX(180deg);
}

.tariffs-text-block {
  position: absolute;
  top: 19%;
  right: 0;
  width: 40%;
  max-width: 500px;
  background-color: #7A9E7E;
  padding: clamp(32px, 4vw, 64px);
  z-index: 2;
  margin: 0;
}

.tariffs-text-block p {
  color: #FAF8F3;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  margin: 0;
}

.tariffs-text-block::before {
  content: '';
  position: absolute;
  width: clamp(40px, 5vw, 80px);
  height: 60px;
  background-color: #7A9E7E;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.tariffs-text-block::after {
  content: '';
  position: absolute;
  width: clamp(40px, 5vw, 80px);
  height: 50%;
  background-color: #7A9E7E;
  bottom: -23%;
  left: 30%;
  transform: translateX(-50%);
}

.tariffs-section {
  position: relative;
  width: 100%;
  background-color: #2C3E50;
  padding: 120px 0;
  margin-top: -22%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.tariffs-header {
  width: 100%;
}

.tariffs-header-top {
  padding: clamp(32px, 4vw, 64px) clamp(60px, 8vw, 120px);
}

.tariffs-header-top h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 600;
  color: #FAF8F3;
  margin: 0;
}

.tariffs-header p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  color: #FAF8F3;
  margin: 0;
}

.tariffs-header-middle {
  background-color: #2C3E50;
  padding: 0 clamp(60px, 8vw, 120px);
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;
}

.tariffs-horse img {
  margin-right: 40px;
  height: 96%;
  transform: rotateY(180deg);
}

.tariffs-header-line.right {
  flex: 1;
  height: 100%;
  max-width: 80px;
  background-color: #9E2A3E;
  margin-left: auto;
}

.tariffs-header-line.left{
    flex: 1;
    height: 100%;
    max-width: 80px;
    background-color: #7A9E7E;
    margin-left: 72%;
}

.tariffs-header-bottom {
  /* margin-left: clamp(86px, 5vw, 200px); */
  padding: clamp(24px, 3vw, 40px) clamp(96px, 3vw, 200px);
}

.tariffs-header-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  color: #FAF8F3;
  margin: 0;
}

.tariffs-header-top.green, .tariffs-header-bottom.green{
    background-color: #7A9E7E;
}
.tariffs-header-bottom.green{margin-right: clamp(86px, 5vw, 200px);}

.tariffs-header-top.red, .tariffs-header-bottom.red{
    background-color: #9E2A3E;   
}
.tariffs-header-bottom.red{margin-left: clamp(86px, 5vw, 200px);}

.tariffs-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 120px;
}

.tariffs-cards a {
  position: relative;
  display: inline-block;
  /* z-index: 1; */

  &::before{
    content: '';
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 88px;
    z-index: 0;
    }
    &:hover {
    transform: translateY(+10px);
  }
}

.tariffs-cards.green a{ &::before{background-color: #7A9E7E;} }
.tariffs-cards.red a{ &::before{background-color: #9E2A3E;} }

.tariff-card-image {
  max-width: 320px;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}


.tariff-card-image:hover{
    transform: none;
}



@media (max-width: 1280px) {
    .hero h1{
        font-size: 96px;
    }
    .tariffs-text-block {
        right: 5%;
        width: 45%;
    }
    .tariffs-section {
        margin-top: -379px;
    }
    .tariffs-text-block::after {
    bottom: -50%;
    }
    .tariffs-cards a:nth-last-child(1)::before{
        top: -128%;
        height: 128%;
    }
}


@media (max-width: 480px) {
    .hero h1{
        font-size: 48px;
    }
  .tariffs-intro-section {
    padding-top: 40px;
  }
  
  .tariffs-text-block {
    padding: 24px;
  }
  
  .tariffs-text-block p {
    font-size: 14px;
  }

  .tariffs-cards a::before {
    top: -47%;
    height: 50%;
    width: 5%;
  }
  .tariffs-cards a:nth-last-child(1)::before {
    top: -47%;  
    height: 50%;
    width: 5%;
  }
}