@font-face {
  font-family: "GSK Precision";
  src: url("./fonts/GSKPrecision-Bold.ttf") format("truetype");
  /* This file is only the bold style */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2. Define the Regular variant */
@font-face {
  font-family: "GSK Precision";
  src: url("./fonts/GSKPrecision-Regular.ttf") format("truetype");
  /* This file is the regular style */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  overflow-x: hidden;
  width: 100%;
}
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  position: relative;
  min-height: 100dvh;
}

.portrait {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
}
.portrait-content {
  display: flex;
  justify-content: center;
}
.img-fluid {
  width: 50%;
}

.main {
  width: 100%;
  height: 83%;
}
.first-section {
  position: relative;
  height: auto;
}
.first-section a {
  position: absolute;
  background-color: unset;
  border: none;
  top: 3%;
  right: 6rem;
  width: 13%;
}
.first-section .background-img {
  width: 100%;
  height: auto;
}
.second-section {
  margin-top: 2vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-btn img {
  width: 100%;
}
.main-btn {
  width: 20%;
}
.main-btn img {
  width: 100%;
}
.second-section a {
  border: none;
  background-color: unset;
  display: flex;
  justify-content: center;
}

footer {
  background-color: #232222;
  height: auto;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
}
.disclaimer {
  display: flex;
  flex-direction: row;
  color: white;
  justify-content: space-around;
  padding: 8%;
  padding-top: 2% !important;
  padding-bottom: 2%;
  font-family: "GSK Precision";
  font-weight: lighter;
  font-size: 0.7rem;
}
.left-disclaimer {
  display: flex;
  align-items: center;
}
.left-disclaimer img {
  width: 100%;
}
.left-disclaimer {
  width: 10%;
}
.right-disclaimer,
.center-disclaimer {
  width: 40%;
}
.phone-section,
.map-section {
  display: flex;
  align-items: center;
}
.phone-section img,
.map-section img {
  width: 1rem;
  height: 1rem;
  margin-right: 3%;
}
a {
  color: white;
  outline: none;
  text-decoration: none;
  display: inline;
}
.bottom-disclaimer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "GSK Precision";
  font-size: 0.6rem;
  color: white;
}
.final-section {
  border-top: solid 1px orangered;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 1vh;
}

.footerPlaceHolder {
  width: 100%;
  height: 300px;
}

@media (max-width: 460px) {
  .footerPlaceHolder {
    width: 100%;
    height: 100px;
  }
  .final-section {
    font-size: 0.5rem;
  }
  footer,
  .disclaimer {
    font-size: 0.5rem !important;
  }
  .left-disclaimer {
    width: 10%;
  }
  .center-disclaimer,
  .right-disclaimer {
    width: 40%;
  }
  .phone-section img,
  .map-section img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .final-section {
    width: 90%;
    gap: 20px;
  }
  .main {
    height: 79vh;
  }
  .first-section {
    height: 90%;
  }
  .first-section .background-img {
    height: auto;
  }
}
@media (orientation:portrait){
  .message-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    
    .phone {
      height: 50px;
      width: 100px;
      border: 3px solid white;
      border-radius: 10px;
      animation: rotate 1.5s ease-in-out infinite alternate;
    }
    .message {
      color: white;
      font-size: 1em;
      margin-top: 40px;
      font-family: "Gsk precision";
    }

    @keyframes rotate {
      0% {
        transform: rotate(0deg)
      }
      50% {
        transform: rotate(-90deg)
      }
      100% {
        transform: rotate(-90deg)
      }
    }

  }

