@media (max-width: 1208px) {
  :root {
    --container-size: 0.5em 2em;
  }
  .navbar {
    .menu {
      height: auto;
      position: absolute;
      right: 80px;
    }
    .burger-menu {
      display: flex;
      outline: none !important;
      border: none;
      background: transparent !important;
      min-width: auto;
      &:hover {
        opacity: 0.8;
      }
    }
    .menu-web {
      display: none !important;
    }

    .menu-web.active {
      display: flex !important;
      flex-direction: column;
      z-index: 10;
      animation: menu-in 0.2s forwards;
      pointer-events: auto;
      background-color: rgb(0, 0, 0, 0.8);
      position: fixed;
      top: 70px;
      width: 100%;
      outline: 1px solid var(--primary-color);
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      transform-origin: top center;
      border-radius: 0;
      left: 0;
      gap: 0;
      height: auto;
      align-items: center;
      li {
        font-weight: 600;
        font-size: 1.2rem;
        padding: 1em 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #5e5e5e;
        a {
          color: white;
        }
      }
    }
    .menu-web.removing {
      animation: menu-out 0.2s forwards !important;
    }
  }
  .home {
    flex-direction: column-reverse;
    .text {
      .slogan {
        img {
          width: 17rem;
        }
      }
      text-align: center;
    }
  }

  .divider-home {
    display: none;
  }

  .who-are {
    .info {
      .logo {
        img {
          width: 11rem;
        }
      }
    }
    .guarantees {
      width: auto;
      li {
        flex: 100%;
        padding: 1em 1em;
      }
    }
  }

  .teams {
    background-image: none;
    align-items: center;
    justify-content: center;
    background-color: var(--black-bg-color);
    &::before {
      display: none;
      background-color: transparent;
    }
    .team-members {
      width: 50%;
      justify-content: center;
      align-items: center;
      li {
        flex: 50%;
        width: 50%;
        max-width: none;
      }
    }
  }

  .services {
    .list-services {
      li {
        flex: 100%;
        width: 100%;
        max-width: none;
      }
    }
  }

  .timeline-web {
    display: none;
  }

  .timeline-mobile {
    display: block;
    .events {
      display: flex;
      flex-direction: row;
      gap: 1em;
      .line {
        width: 2px;
        background-color: var(--primary-color);
        height: auto;
        display: block;
        &.tertiary {
          background-color: var(--tertiary-color);
        }
        &.secondary {
          background-color: #f3a60a;
        }
        &.green {
          background-color: #24d083;
        }
      }
      ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        li {
          min-width: 150px;
          width: auto;
          padding: 0.5em 1em;
          color: white;
          border-radius: 50px;
          box-shadow: 0px 4px 4px #aec2d3;
          margin: 1em 0;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          gap: 1em;
          align-items: center;
          text-align: left;
          position: relative;
          padding-left: 3px;
          cursor: pointer;
          &::before {
            content: "";
            position: absolute;
            background-color: white;
            width: 26px;
            border-radius: 50%;
            height: 70%;
          }
          &::after {
            content: "";
            position: absolute;
            left: -22px;
            width: 12px;
            z-index: 4;
            height: 12px;
            background-color: var(--tertiary-color);
            border-radius: 1000%;
          }
          &.second {
            margin-left: 3em;
          }
          &.third {
            margin-left: 6em;
          }
          i {
            z-index: 4;
            color: black;
            min-width: 26px;
            text-align: center;
            font-weight: bold;
            font-style: normal;
          }
          h2 {
            font-size: 0.9rem;
          }
          &.tertiary {
            background-color: var(--tertiary-color);
            i {
              color: var(--tertiary-color);
            }
          }
          &.primary {
            background-color: var(--primary-color);
            i {
              color: var(--primary-color);
            }
            &::after {
              background-color: var(--primary-color);
            }
          }
          &.secondary {
            background-color: #f3a60a;
            i {
              color: #f3a60a;
            }
            &::after {
              background-color: #f3a60a;
            }
          }
          &.green {
            background-color: #24d083;
            i {
              color: #24d083;
            }
            &::after {
              background-color: #24d083;
            }
          }
        }
      }
    }
  }

  .benefits {
    display: flex;
    flex-direction: column;
    .info {
      padding: 1em;
      h2 {
        width: 100%;
      }
      h3 {
        text-align: center;
      }
    }
  }

  .contact {
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    .form {
      form {
        border-radius: 0px;
        box-shadow: none;
      }
    }
    .media {
      text-align: center;
      padding: var(--container-size);
      img {
        display: none;
      }
    }
  }
  .modal.show .modal-content {
    transform: scale(0.8);
  }

  .modal-content {
    background-color: var(--background-color);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: scale(0.8);
    transition: none;
    gap: 1em;
    width: 100%;
    height: 100%;
    #extra-container{
      .note{
        font-size: 9px;
      }
    }
  }

  .btn-contact-mobile {
    display: flex;
    position: fixed;
    width: auto;
    height: auto;
    bottom: 40px;
    z-index: 50;
    cursor: pointer;
    padding: 1em;
    font-weight: 600;
    right: 40px;
    background: linear-gradient(
      90deg,
      rgba(11, 201, 205, 1) 0%,
      rgba(66, 158, 166, 1) 100%
    );
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #060a16;
    i {
      font-size: 2.5rem;
    }
  }
  footer {
    flex-direction: column !important;
    .social-medias {
      top: 0 !important;
    }
    .company-medals {
      width: 100%;
      li {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: baseline;
        img {
          &.fourty-hours-ayg {
            width: 60px;
          }
        }
      }
    }
    p {
      position: initial;
      top: 0;
    }
  }
}
