.arrow {
  cursor: pointer;

  svg {
    width: 62px;
    height: 60px;

    path,
    circle {
      transition: .2s all linear;
    }

    &:hover {
      circle {
        fill: #fff;
        stroke: var(--primary-blue);
        stroke-width: 1px;
      }

      path {
        stroke: #161616;
      }
    }
  }
}

.arrow-right {
  transform: scaleX(-1);
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.25vw, 24px);
  line-height: 100%;
  background-color: var(--primary-blue);
  border: 2px var(--primary-blue) solid;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0px 4px 4px 0px #00000040;
  transition: .4s all;

  &:hover {
    background-color: #fff !important;
    border: 2px var(--primary-blue) solid;
    color: #000;
    transition: .4s all;

    * {
      color: #000 !important;
    }

    svg {
      path {
        fill: black;
        transition: .2s all linear;
      }
    }
  }
}

.title,
.title>span {
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 64px);
  line-height: clamp(32px, 4vw, 76px);

  span {
    color: var(--primary-blue);
  }
}

.text-content {
  font-weight: 400;
  font-size: clamp(12px, 2vw, 24px);
  line-height: clamp(12px, 2.2vw, 32px);
}

h3 {
  font-family: Unbounded, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}



header {
  position: relative;
  margin-bottom: 80px !important;
  background-color: #fff;
  z-index: 9999;

  @media (max-width: 1440px) {
    margin-bottom: 30px !important;
  }

  .container {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo-wrapper {
      max-width: 480px;
      max-height: 88px;
      width: 28%;
      cursor: pointer;
    }
  }

  nav {
    ul {
      display: flex;
      gap: clamp(20px, 4vw, 70px);

      li {
        a {
          position: relative;
          font-weight: 400;
          font-size: clamp(10px, 1.3vw, 24px);
          line-height: 100%;
          letter-spacing: 0;
          transition: .2s linear;

          &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 1px;
            background-color: var(--primary-gray);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
          }
        }

        a:hover {
          color: var(--primary-gray);
          transition: .2s linear;

          &::after {
            transform: scaleX(1);
          }
        }

        a:active {
          color: var(--primary-blue);
          transition: .2s linear;

          &::after {
            background-color: var(--primary-blue);
          }
        }

        &.active {
          a {
            color: var(--primary-blue);
            border-bottom: 1px var(--primary-blue) solid;
          }
        }
      }
    }
  }

  .button {
    padding: clamp(10px, 1.5vw, 18px) clamp(15px, 2vw, 33px);
  }
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--opacity-gray);
  border: 2px solid #FFFFFF;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0px 4px 4px 0px #00000040;

  .content-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    .picture-wrapper {
      position: relative;
      width: 293px;
      height: 290px;
      overflow: hidden;

      img {
        position: absolute;
        width: 115%;
        height: 115%;
        object-fit: contain;
      }
    }
  }
}

.stages {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stage-wrapper {
  position: relative;
  background: url(../images/graph-heart.png) no-repeat center;
  max-width: 1720px;
  max-height: 841px;
  width: 100%;
  height: 58vw;

  .stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    max-width: 415px;
    width: 26%;
    max-height: 200px;
    height: 15vw;
    background-color: var(--opacity-gray);
    border: 2px #FFFFFF4D solid;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 20px;
    padding: 30px;

    &.blue {
      background-color: var(--opacity-blue);

      span,
      h3 {
        color: #fff;
      }

      h3 {
        border-bottom: 2px #fff solid;
      }
    }

    &.left {
      left: 137px;
      top: 84px;
    }

    &.left-bottom {
      left: -7px;
      bottom: 144px;

      @media (max-width: 1240px) {
        bottom: 240px;
        left: 20px;
      }
    }

    &.right-bottom {
      right: 24px;
      bottom: 218px;

      @media (max-width: 1240px) {
        bottom: 290px;
      }
    }

    &.right {
      right: 163px;
      top: -10px;

      @media (max-width: 1240px) {
        right: 133px;
        top: 14px;
      }
    }

    h3 {
      font-family: Unbounded, sans-serif;
      font-weight: 600;
      font-size: clamp(8px, 1.5vw, 24px);
      line-height: 100%;
      letter-spacing: 0;
      padding-bottom: 10px;
      margin-bottom: 10px;
      border-bottom: 2px #000 solid;
    }

    span {
      font-weight: 400;
      font-family: Manrope, sans-serif;
      font-size: clamp(6px, 1.25vw, 20px);
      line-height: clamp(6px, 1.5vw, 26px);
      letter-spacing: 0;
    }
  }
}

.contact {
  .container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }

  .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 50%;

    .contact-information {
      display: flex;
      flex-direction: column;
      gap: clamp(24px, 3vw, 50px);

      .data-wrapper {
        display: flex;
        align-items: center;
        gap: clamp(12px, 3vw, 35px);
        cursor: pointer;

        span,
        address {
          font-weight: 400;
          font-size: clamp(24px, 2vw, 40px);
          line-height: clamp(24px, 3vw, 56px);
          text-decoration: underline;
          transition: .2s all ease;
          cursor: pointer;
        }

        address {
          cursor: auto;
        }
      }

      .data-wrapper-hover {
        &:hover {
          span {
            color: var(--primary-gray);
            transition: .2s all ease;
          }

          svg {
            path {
              transition: .2s all linear;
              fill: var(--primary-gray)
            }
          }
        }

        &:active {
          span {
            color: var(--primary-blue);
            transition: .2s all ease;
          }

          svg {
            path {
              transition: .2s all linear;
              fill: var(--primary-blue)
            }
          }
        }

        svg {
          path {
            transition: .2s all linear;
          }
        }
      }
    }
  }

  .effects-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    .anim {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;

      .link-wrapper {
        justify-content: space-between;
        position: absolute;
        z-index: 2;
        left: -100px;
        width: clamp(120px, 25vw, 270px);
        padding: clamp(6px, 1vw, 14px) clamp(24px, 2.5vw, 48px);

        &.whatsapp {
          top: 280px;

          @media (max-width: 1440px) {
            top: 230px;
          }
        }

        &.telegram {
          top: 170px;

          @media (max-width: 1440px) {
            top: 150px;
          }
        }

        span {
          color: #fff;
        }

        svg {
          path {
            transition: .2s all linear;
          }
        }
      }

      .picture-wrapper {
        position: relative;
        max-width: 640px;
        width: 100%;
        height: auto;
        pointer-events: none;
        overflow: visible;

        .bubble-wrapper {
          position: absolute;
          display: flex;
          flex-direction: column;
          gap: 5px;
          width: 320px;
          top: -335px;
          right: 160px;

          .bubble {
            position: absolute;
            background-color: var(--primary-blue);
            width: 180px;
            height: 80px;
            border-radius: 20px 20px 20px 0px;
            animation: message 6s linear infinite;
            opacity: 0;

            &.b2 {
              top: 600px;
              right: 0;
              animation-delay: 3s;
            }

            &.b3 {
              top: 600px;
              left: 0;
              animation-delay: 2s;
            }

            &.b4 {
              top: 600px;
              right: 0;
              animation-delay: 0.5s;
            }

            &.b5 {
              top: 540px;
              left: 0;
              animation-delay: 0s;
            }

            &:nth-child(odd) {
              border-radius: 20px 20px 0px 20px;
              background-color: var(--primary-gray);
            }
          }
        }
      }
    }
  }
}

.footer-section {
  .main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 20vw, 310px);
    margin-bottom: 185px;

    .logo-wrapper {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 415px;
      max-height: 400px;
      width: 24%;
      height: auto;
      padding: clamp(30px, 4vw, 80px);
      box-shadow: 0px 4px 4px 0px #00000040;

      img {
        width: 100%;
        height: auto;
      }
    }

    nav {
      display: flex;
      gap: 20px;

      ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 415px;
        width: 30vw;

        li {
          * {
            font-weight: 400;
            font-size: clamp(12px, 2vw, 24px);
            line-height: 100%;
          }

          &.title-list {
            a {
              font-family: Unbounded, sans-serif;
              font-weight: 500;
              font-size: 24px;
              line-height: 100%;
            }
          }

          &.link-wrapper {
            display: flex;
            gap: 20px;

            svg {
              cursor: pointer;
            }
          }
        }
      }
    }
  }

  .rights-reserved {
    display: flex;
    justify-content: space-between;
    border-top: 1px #000 solid;
    padding-top: clamp(24px, 2vw, 50px);

    span {
      font-weight: 400;
      font-size: clamp(12px, 1.5vw, 24px);
      line-height: 100%;
    }
  }
}