p {
  margin: 0;
}

.line {
  background-color: #c9c9c9;
  height: 2px;
  width: 100%;
}

.header {
  height: 420px !important;
  padding-bottom: 50px;

  .header_content {
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 1200px) {
  main {
    .content {
      max-width: unset !important;
      width: 100%;
      padding: 20px;
    }
  }
}

.content {
  .contact_container {
    height: fit-content;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(242, 242, 242, 1) 63%, rgba(208, 230, 255, 0) 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;

    .wa_container {
      .wa_close {
        display: none;
      }
    }

    @media screen and (max-width: 768px) {
      flex-direction: column;

      .wa_container {
        width: 100%;
      }
    }

    .contact_item {
      padding: 50px 30px;
      width: 50%;
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;

      @media screen and (max-width: 768px) {
        width: 100%;
        padding: 20px 30px;
      }

      &:nth-child(1) {
        background: linear-gradient(180deg, rgba(250, 250, 250, 1) 63%, rgba(208, 230, 255, 0) 100%);
      }

      .item {
        display: flex;
        justify-content: center;
        gap: 20px;

        p {
          font-family: "Raleway";
          font-weight: 600;
          color: #545454;

          @media screen and (max-width: 768px) {
            font-size: 15px;
          }

          @media screen and (max-width: 480px) {
            font-size: 13px;
          }
        }

        .icons {
          display: flex;
          gap: 10px;

          a {
            color: #b41f1c;

            &:hover {
              color: #f42d2d;
            }
          }
        }

        a {
          text-decoration: none;
          color: #000;
          font-family: "Oak Sans";
          font-weight: 700;
          font-size: 19px;

          @media screen and (max-width: 768px) {
            font-size: 16.5px;
          }

          @media screen and (max-width: 480px) {
            font-size: 15px;
          }

          &:hover {
            color: #b41f1c;
          }
        }

        .icon {
          min-width: 50px;
          height: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 10px;
          color: #fff;
          background-color: #b41f1c;
        }

        &:nth-child(5) {
          span {
            font-size: 20px;
          }
        }

        &:nth-child(7) {
          gap: 10px;
          flex-direction: column;
        }

        span {
          font-size: 30px;
        }
      }
    }
  }
}

.map_container {
  width: 100%;
  height: 400px;
  margin: 0;
  position: relative;
  bottom: -60px;

  iframe {
    width: 100%;
    height: 100%;
  }

  .overlay_qr {
    position: absolute;
    bottom: 50px;
    left: 200px;
    height: fit-content;
    width: 120px;

    @media screen and (max-width: 768px) {
      left: 100px;
    }

    @media screen and (max-width: 480px) {
      display: none;
    }

    img {
      width: 100%;
      height: auto;
    }
  }
}