:root {
  --bg: #ffffff;
  --bg-dark: #081B30;
  --bg-light: #354457;
  --color-main: #000000;
  --color-brand: #F59C00;
  --color-light: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: var(--bg);
  color: var(--color-main);

  @media (min-width: 1200px) {
    font-size: 18px;
  }

}

a {
  color: var(--color-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


p {
  line-height: 1.5;
}

ul {
  line-height: 1.5;
  margin: 0;
}

h1 {
  font-size: 40px;
  font-weight: 300;
  margin-block: 16px;

  @media (min-width: 1200px) {
    font-size: 64px;
    font-weight: 300;
    margin-block: 8px;
  }
}

h2 {
  color: #081B30;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
  margin-block: 16px 24px;

  @media (min-width: 1200px) {
    font-size: 56px;
    font-weight: 300;
    line-height: 61px;
    margin-block:0 24px;
  }
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 12px;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

section {
  margin-block: 128px;

  @media (min-width: 768px) {
    margin-block: 152px;
  }
}

.content-text {
  .underline {
    text-decoration: underline;
  }
  > p:last-of-type {
    margin-bottom: 0;
  }
}


/* --- Header --- */
.header {
  .header-logo {
    padding-block: 22px;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  color: var(--color-light);
  margin-top: 48px;

  @media (min-width: 1200px) {
    height: 600px;
    margin-top: 0;
  }

  .hero-bg-small {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0B1A30;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
    width: calc(100vw - 8px);
    max-width: 9999px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 48px;
    top: -48px;

    @media (min-width: 1200px) {
      display: none;
    }
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0B1A30;
    width: calc(100vw - 8px);
    max-width: 9999px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    @media (min-width: 1200px) {
      background: linear-gradient(90deg, #0B1A30 56.73%, #F59C00 100%);
      clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    }
  }

  .hero-content {
    padding-block: 48px 32px;

    @media (min-width: 1200px) {
      max-width: 65%;
    }
  }

  .hero-content-pre {
    color: var(--color-brand);
    font-weight: 700;
    line-height: 110%;

    @media (min-width: 1200px) {
      font-size: 24px;
    }
  }

  .hero-content-sub {
    font-weight: 800;
    line-height: 1.5;
  }

  .hero-content-text {
    align-self: stretch;
    font-weight: 400;
    line-height: 1.5;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }
}

.unified-cloud {
  display: flex;
  flex-direction: column;

  @media (min-width: 1200px) {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .unified-cloud-image {
    height: 80px;
    margin-block: 20px;

    @media (min-width: 1200px) {
      height: 100%;
      margin-top: 85px;
    }
  }

  .content-text {
    @media (min-width: 1200px) {
      max-width: 50%;
    }
  }
}

.security {
  .content-text {
    @media (min-width: 1200px) {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;

      p {
        max-width: 700px;
        margin-inline: auto;
      }
    }
  }
  .security-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;

    @media (min-width: 1200px) {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .security-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--color-light);
      background-color: var(--bg-dark);
      height: 194px;
      border-radius: 16px;
      font-size: 28px;
      font-weight: 700;
      line-height: normal;
      text-align: center;
      padding-inline: 8px;

      @media (min-width: 1200px) {
        height: 287px;
        width: 287px;
      }
    }
  }
}

.footer {
  color: var(--color-light);
  font-size: 16px;

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-block: 48px;
    background-color: var(--bg-dark);

    .footer-top-wrapper {
      display: flex;
      flex-direction: column;
      gap: 24px;

      @media (min-width: 768px) {
        gap: 0;
      }

      .img-row {
        display: flex;
        flex-direction: column;
        gap: 42px;

        @media (min-width: 768px) {
          flex-direction: row-reverse;
          justify-content: space-between;
        }

        .contact-text {
          font-size: 18px;
          font-weight: 500;
          line-height: 20px;

          @media (min-width: 768px) {
            font-size: 20px;
            line-height: normal;
          }
        }
      }

      .footer-logo {
        height: 40px;
        width: 270px;
      }

      .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 42px;



        .contact-wrapper-address {
          display: flex;
          flex-direction: column;
          gap: 42px;

          @media (min-width: 768px) {
            flex-direction: row;
          }

          .address {
            display: flex;
            flex-direction: column;
            font-weight: 300;
            line-height: 24px;

            @media (min-width: 768px) {
              line-height: normal;
            }
          }
        }

        .contact-wrapper-links {
          display: flex;
          flex-direction: column;
          gap: 16px;
          font-size: 16px;
          font-weight: 700;
          line-height: normal;

          .links {
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 12px;
            color: var(--color-brand);
          }
        }
      }
    }
  }
  .footer-bottom {
    padding-block: 24px;
    background-color: var(--bg-light);
    font-weight: 300;

    .link-wrapper {
      display: flex;
      flex-direction: column;
      gap: 12px;

      @media (min-width: 768px) {
        flex-direction: row;
      }
    }
  }
}


