/*
COLOR PALETTE  

Light/Accents Blue: #27a9e1 - rgb(39,169,225)
Light/Accents :Hovers: #3a79b7 - rgb(58,121,183)
Medium Blue: #0f579e - rgb(15,87,158)
Dark/Banners Blue: #03416B - rgb(3,65,107)
Green Buttons: #9ad123 - rgb(154,209,35)
Border/Background Color: #eff4f9
*/

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  font-family: "Roboto";
  scroll-behavior: smooth;
}
body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#page-wrapper {
  max-width: 100vw;
  min-height: 100vh;
  background: url("./images/banner1920.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#user-login {
  max-width: 100vw;
  height: 6rem;
  padding: 0 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 15rem;
  height: 4rem;
  background: #336699;
  color: #fff;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}
.login-btn:hover {
  color: #27a9e1;
  cursor: pointer;
}

/* ----------------------------- HEADER ------------------------------------ */
#header-wrapper {
  max-width: 100vw;
  height: calc(100vh - 8rem);
}
.center-logo {
  width: 100%;
  height: calc(100vh - 20rem);
  padding: 0 1rem;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center;
  object-position: center;
}

#mainTitle {
  display: block;
  font-size: 3rem;
  color: #0f579e;
  text-decoration: none;
  font-family: "Roboto";
  font-weight: 800;
  text-align: center;
}

#scrollDown-icon {
  width: 5rem;
  height: 5rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 4rem;
}

#scrollDown-icon .icon {
  width: 5rem;
  height: 5rem;
  fill: #0f579e;
  cursor: pointer;
}

.main-btn {
  width: 20rem;
  height: 5rem;
  background: #336699;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 2rem;
  font-weight: 900;
  border: none;
  outline: none;
}
.main-btn:hover {
  color: #27a9e1;
  cursor: pointer;
}

/* -------------------------  Video Section  -------------------------- */
.video-section {
  max-width: 100vw;
  height: 60rem;
  background-image: -webkit-gradient(
    linear,
    left bottom, right top,
    from(#27a9e1),
    color-stop(#2ba0da),
    color-stop(#2f97d2),
    color-stop(#338eca),
    color-stop(#3685c2),
    color-stop(#337cb8),
    color-stop(#3173ad),
    color-stop(#2e6aa3),
    color-stop(#245f95),
    color-stop(#1a5586),
    color-stop(#104b79),
    to(#03416b)
  );
  background-image: linear-gradient(
    to right top,
    #27a9e1,
    #2ba0da,
    #2f97d2,
    #338eca,
    #3685c2,
    #337cb8,
    #3173ad,
    #2e6aa3,
    #245f95,
    #1a5586,
    #104b79,
    #03416b
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-title {
  font-size: 2.5rem;
  color: #eee;
  text-align: center;
  margin-bottom: 1rem;
}
.iframe-wrapper {
  max-width: 100vw;
  height: 36rem;
}
.iframe {
  width: 64rem;
  height: 36rem;
}
/* -----------------------------  LEARN MORE SECTION  ------------------------------------ */
.learn-more {
  max-width: 100vw;
  height: 40rem;
  background: #eff4f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.learn-more-text {
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

.biz-info-wrapper {
  width: 100%;
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.biz-info {
  font-size: 1.5rem;
  color: #3a79b7;
  font-weight: 600;
  text-decoration: none;
  -webkit-text-emphasis: wrap;
  text-emphasis: wrap;
  text-align: center;
}
.biz-info > b {
  color: #111;
}
.biz-address {
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-text-emphasis: wrap;
  text-emphasis: wrap;
  text-align: center;
}

/* ----------------------Main Services Section---------------------- */
.main-content {
  margin-top: 3rem;
  max-width: 100vw;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.services-item {
  width: 30rem;
  height: 40rem;
  border-radius: 1rem;
  -webkit-box-shadow: 4px 3px 24px -8px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 3px 24px -8px rgba(0, 0, 0, 0.75);
}
.services-item-top {
  width: 100%;
  height: 40%;
  border-radius: 1rem 1rem 0 0;
  background: #0f579e;
}
.services-item-top .icon {
  width: 5rem;
  height: 5rem;
  display: block;
  margin: 0 auto;
  padding-top: 2rem;
  fill: #9ad123;
  margin-bottom: 2rem;
}
.services-item-top__title {
  font-size: 2rem;
  text-align: center;
  color: #eee;
}
/* ---------------------- Media Queries -------------------- */

@media screen and (max-width: 730px) {
  #mainTitle {
    font-size: 1.7rem;
  }
  #scrollDown-icon,
  #scrollDown-icon .icon {
    width: 3rem;
    height: 3rem;
  }
  .iframe-wrapper,
  .iframe {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
}
@media screen and (max-width: 630px) {
  .iframe {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .biz-info,
  .biz-address {
    font-size: 1.2rem;
  }
}
