* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  box-sizing: border-box;
  font-family: Montserrat;
  color: white;
  text-decoration: none;
}

body {
  overflow: hidden;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

.container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.imgBackground {
  width: 110%;
  height: 110%;
  transform: translate(-5%, -5%);
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  filter: blur(4px);
}

.imgOverlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.65;
  z-index: -1;
}

.mainContainer {
  z-index: 0;
  width: 1216px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;

  .logo {
    height: 136px;
    margin: 80px 0;
  }

  h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4.8px;
  }

  .h1En {
    font-weight: 400;
    font-style: italic;
    margin-top: 24px;
  }

  .bottomContainer {
    display: grid;
    grid-template-columns: repeat(12, 72px);
    column-gap: 32px;
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);

    .leftColumn {
      grid-column-start: 1;
      grid-column-end: 8;
      display: flex;
      flex-direction: column;
      gap: 40px;

      h2 {
        font-size: 21px;
        font-weight: 600;
        line-height: 32px;
      }

      .h2En {
        font-weight: 400;
        font-style: italic;
      }
    }

    .rightColumn {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      grid-column-start: 9;
      grid-column-end: 13;

      .contactsContainer {
        display: flex;
        flex-direction: column;
        gap: 24px;

        .contactLine {
          display: flex;
          flex-direction: row;
          gap: 24px;
          align-items: flex-start;

          .ph-light {
            font-size: 24px;
          }

          a {
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;

            &:hover {
              font-weight: 600;
            }
          }

          .linksLine {
            display: flex;
            flex-direction: row;
            gap: 12px;
          }
        }
      }

      .socialContainer {
        display: flex;
        flex-direction: row;
        gap: 16px;

        img {
          width: 24px;
        }

        a {
          padding: 8px;
          background-color: white;
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }
    }
  }
}

@media only screen and (max-width: 1024px) {
  .container {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  body {
    overflow: hidden;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  .imgBackground {
    width: 110%;
    height: 110%;
    transform: translate(-5%, -5%);
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    filter: blur(4px);
  }

  .imgOverlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.65;
    z-index: -1;
  }

  .mainContainer {
    z-index: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .logo {
      height: 120px;
      margin: 48px 0 56px;
    }

    .titleContainer {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
    }

    h1 {
      font-size: 32px;
      line-height: 32px;
      font-weight: 600;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 4.8px;
    }

    .h1En {
      font-weight: 400;
      font-style: italic;
      margin-top: 0;
    }

    .bottomContainer {
      display: flex;
      flex-direction: column;
      width: 100%;
      bottom: 80px;

      .leftColumn {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
        width: 100%;
        margin-bottom: 120px;

        h2 {
          font-weight: 600;
        }

        .h2En {
          font-weight: 400;
          font-style: italic;
        }
      }

      .rightColumn {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding: 0 72px;

        .contactsContainer {
          display: flex;
          flex-direction: column;
          gap: 24px;

          .contactLine {
            display: flex;
            flex-direction: row;
            gap: 24px;
            align-items: flex-start;

            .ph-light {
              font-size: 24px;
            }

            a {
              font-size: 16px;
              line-height: 24px;
              font-weight: 500;

              &:hover {
                font-weight: 600;
              }
            }

            .linksLine {
              display: flex;
              flex-direction: row;
              gap: 12px;
            }
          }
        }

        .socialContainer {
          display: flex;
          flex-direction: row;
          gap: 16px;

          img {
            width: 24px;
          }

          a {
            padding: 8px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }
  }
}

@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  body {
    overflow-y: scroll;
  }

  .imgBackground {
    width: 105%;
    height: 105%;
    transform: translate(-2.5%, -2.5%);
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    filter: blur(4px);
  }

  .imgOverlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.65;
    z-index: -1;
  }

  .mainContainer {
    z-index: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .logo {
      height: 104px;
      margin: 40px 0 64px;
    }

    .titleContainer {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
    }

    h1 {
      font-size: 28px;
      line-height: 36px;
      font-weight: 600;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 4.8px;
    }

    .h1En {
      font-weight: 400;
      font-style: italic;
      margin-top: 0;
    }

    .bottomContainer {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 0;
      bottom: unset;
      top: 56px;
      position: relative;

      .leftColumn {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 0 16px;
        width: 100%;
        margin-bottom: 40px;

        h2 {
          font-size: 16px;
          line-height: 24px;
          font-weight: 600;
        }

        .h2En {
          font-weight: 400;
          font-style: italic;
        }
      }

      .rightColumn {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 48px;
        padding: 0 0 64px;

        .contactsContainer {
          display: flex;
          flex-direction: column;
          gap: 32px;

          .contactLine {
            display: flex;
            flex-direction: column;
            gap: 0;
            align-items: center;

            .ph-light {
              font-size: 24px;
              margin-bottom: 8px;
            }

            a {
              font-size: 16px;
              line-height: 24px;
              font-weight: 500;
              text-align: center;

              &:hover {
                font-weight: 600;
              }
            }

            .linksLine {
              display: flex;
              flex-direction: column;
              gap: 8px;
            }
          }
        }

        .socialContainer {
          display: flex;
          flex-direction: row;
          gap: 24px;

          img {
            width: 20px;
          }

          a {
            padding: 12px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }
  }
}
