* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Hind", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  width: 720px;
  margin: 45px auto;
}

.wrapper h1 {
  font-size: 280%;
  text-align: center;
  text-transform: uppercase;
}

.wrapper p {
  font-size: 150%;
  text-align: center;
  text-transform: uppercase;
}

.wrapper .btn-groups {
  width: 640px;
  margin: 0 auto;
}

.btn-red-tr {
  min-width: 130px;
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  padding: 15px;
  margin: 30px 25px;
  font-size: 140%;
  font-weight: 600;
  color: #ecf0f1;
  transition: 0.5s;
}

.btn-red-tr {
  background-color: #1a428a;
}

.btn-red-tr:before {
  position: absolute;
  content: "";
  border-top: 5px solid #1a428a;
  border-left: 5px solid #1a428a;
  border-right: 5px solid #1a428a;
  border-bottom: 5px solid #1a428a;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transition: 0.5s;
}

.btn-red-tr:hover {
  box-shadow: 7px 7px #abd72f, -7px -7px #abd72f;
  cursor: pointer;
}
.btn-red-tr:hover::before {
  border: 0px;
}

.btn-red-qa,
.btn-green-qa,
.btn-blue-qa {
  min-width: 120px;
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 15px;
  margin: 30px 25px;
  font-size: 140%;
  font-weight: 600;
  transition: 0.5s;
}

.btn-red-qa {
  border: 5px solid #e74c3c;
  color: #e74c3c;
}

.btn-green-qa {
  border: 5px solid #2ecc71;
  color: #2ecc71;
}

.btn-blue-qa {
  border: 5px solid #3498db;
  color: #3498db;
}

.btn-red-qa:hover {
  cursor: pointer;
}
.btn-red-qa:hover::before {
  border: 0px;
}

.btn-green-qa:hover {
  cursor: pointer;
}
.btn-green-qa:hover::before {
  border: 0px;
}

.btn-blue-qa:hover {
  background-color: #258cd1;
  border: 5px solid #4aa3df;
  color: #ecf0f1;
  cursor: pointer;
}

.btn-red-qa:hover {
  background-color: #e43725;
  border: 5px solid #ea6153;
  color: #ecf0f1;
  cursor: pointer;
}

.btn-green-qa:hover {
  background-color: #29b765;
  border: 5px solid #40d47e;
  color: #ecf0f1;
  cursor: pointer;
}

.big-image {
  height: 100vh;
  width: 100vw;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #f5f5fa;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #f5f5fa 80%, #3a416f 20%);
  color: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.navbar {
  background: linear-gradient(#fff, #f5f5fa);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.25);
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}

#navbar__logo {
  color: #1a428a;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 3rem;
  font-weight: 700;
  padding-top: 10px;
  margin-left: 30px;
  width: 120px;
  height: 90px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #1a428a;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 2rem;
  height: 100%;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  background: #1a428a;
  color: #f5f5fa;
}

.button:hover {
  background: #fbc638;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #848ab8;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__links {
    color: #fff;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #131313;
  }

  .navbar__menu.active {
    background: #3a416f;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: black;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #navbar__logo {
    width: 120px;
    height: 70px;
  }
}

@media screen and (max-width: 768px) {
  #mobile-menu {
    top: 30%;
  }
}

@media screen and (max-width: 480px) {
  #mobile-menu {
    position: absolute;
    top: 25%;
    padding-right: 5%;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    position: absolute;
    opacity: 1;
    transition: all 1s ease-in-out;
    z-index: -1;
  }

  .navbar__menu.active {
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    height: auto;
    font-size: 1.6rem;
  }

  #navbar__logo {
    margin-left: 5px;
    width: 120px;
    height: 70px;
  }
}

/* Main Content CSS */
.main {
  background-color: #fff;
}

.main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 100vh;
  background-color: #fff;
  z-index: 1;
  max-width: 1300px;
  padding-right: 50px;
  padding-left: 50px;
}

.main__content {
  color: #1a428a;
  width: 100%;
}

.main__content h1 {
  font-size: 56px;
  padding-bottom: 15px;
  padding-top: 100px;
  padding-left: 30px;
  line-height: 60px;
}

.main__content p {
  color: #848ab8;
  font-size: 24px;
  width: 100%;
  padding: 0 30px;
  line-height: 25px;
}

.main__img--container {
  text-align: center;
}

#main__img {
  height: 450px;
  width: 700px;
  padding-top: 50px;
}

.main .btn-red-tr {
  padding-left: 50px;
  font-size: 24px;
  font-weight: 800;
  background-color: #1a428a;
  padding: 14px 32px;
  border: none;
  color: #f4f3f3;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.btn-red-tr a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.btn-red-tr:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.35s;
  color: #131313;
}

.btn-red-tr:hover {
  color: #fff;
}

.btn-red-tr:hover:after {
  width: 100%;
}

.main__img--container {
  text-align: center;
  padding-top: 2rem;
}

#SignalLeft,
#SignalRight,
CellTop {
  height: 80%;
  width: 80%;
}

#SignalLeft {
  animation: signalleft 2.5s ease-in-out infinite;
  transform-origin: top;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}

@keyframes signalleft {
  from {
    transform: translateX(0%);
    opacity: 0;
  }
  to {
    transform: translateX(-4%);
    opacity: 1;
  }
}

#SignalRight {
  animation: signalright 2.5s ease-in-out infinite;
  transform-origin: top;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}

@keyframes signalright {
  from {
    transform: translateX(0%);
    opacity: 0;
  }
  to {
    transform: translateX(4%);
    opacity: 1;
  }
}

#CellTop {
  animation: ball 2.5s ease-in-out infinite;
  transform-origin: top;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}

@keyframes ball {
  from {
    opacity: 0.65;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .main__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 80vh;
  }

  .main__content {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 30px;
  }

  .main__content h1 {
    font-size: 4rem;
    margin-top: 2rem;
  }

  .main__content h2 {
    font-size: 3rem;
  }

  .main__content p {
    margin-top: 1rem;
    font-size: 1.8rem;
    line-height: 35px;
    padding: 0 60px;
  }

  .main__img--container {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .main__container {
    height: 100vh;
  }

  .main__content {
    padding: 0 0px;
  }

  .main__content h1 {
    font-size: 2.8rem;
    margin-top: 3rem;
    padding-top: 80px;
    padding-left: 0;
  }

  .main__content h2 {
    font-size: 2rem;
    padding: 0;
  }

  .main__content p {
    margin-top: 2rem;
    font-size: 1.5rem;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .btn-red-tr {
    padding: 6px 20px;
    margin: 2.5rem 0;
  }

  .main__img--container {
    display: none;
  }
}

/* Values Section */
.values {
  background: #3a416f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  padding-top: 6rem;
  height: auto;
}

.values h1 {
  color: #f5f5fa;
  margin-bottom: 2rem;
  font-size: 5rem;
  font-weight: bolder;
}

.values__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.values__card {
  height: 100%;
  width: 300px;
  margin: 20px 30px;
  background-size: cover;
  position: relative;
  color: #fff;
  text-align: center;
}

.values__card p {
  padding-top: 20px;
}

#integrityIcon {
  width: 300px;
  height: 100px;
  padding-bottom: 20px;
}

.values__card button {
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 410px;
  left: 200px;
  font-size: 3rem;
}

.values__card button:hover {
  cursor: pointer;
  transform: scale(1.075);
  transition: 0.2s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .values__container {
    display: grid;
  }

  .values {
    padding-top: 3em;
  }

  .values h1 {
    font-size: 3rem;
    margin-top: 4rem;
  }
}

@media screen and (max-width: 480px) {
  .values {
    height: auto;
    width: 100%;
  }

  .values h1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }
}

/* Services Section */
.services {
  background: #f5f5fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  padding-top: 6rem;
  height: 100vh;
}

.services h1 {
  color: #3a416f;
  margin-bottom: 5rem;
  font-size: 5rem;
  font-weight: bolder;
}

.services__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.services__card {
  height: 300px;
  width: 300px;
  background-size: cover;
  position: relative;
  color: #fff;
  text-align: center;
}

#servicesIcon {
  margin-top: 30px;
  width: 300px;
  height: 100px;
  padding: 20px 20px;
}

.services__card:before {
  opacity: 0.2;
}

.services__card:nth-child(1) {
  background-color: #294c8b;
}

.services__card:nth-child(2) {
  background-color: #1a428a;
}

.services__card:nth-child(3) {
  background-color: #294c8b;
}

.services__card:nth-child(4) {
  background-color: #1a428a;
}

.services__card h2 {
  padding: 0 10px;
}

.services__card p {
  padding: 20px 20px;
}

.btn-red-tr {
  font-size: 1.5rem;
  font-weight: 800;
  background-color: #1a428a;
  padding: 14px 32px;
  border: none;
  color: #fbc638;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.services__card:nth-child(1) button,
.services__card:nth-child(3) button {
  color: #fbc638;
}

.services__card:nth-child(2) button,
.services__card:nth-child(4) button {
  color: #fbc638;
}

.btn-red-tr a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.services__card button:hover {
  cursor: pointer;
  transform: scale(1.075);
  transition: 0.2s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .services {
    padding-top: 2em;
  }

  .services h1 {
    font-size: 3rem;
    margin-top: 4rem;
  }
}

@media screen and (max-width: 480px) {
  .services {
    height: auto;
  }

  .services h1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }

  .services__card {
    width: 300px;
  }
}

/* About Us CSS */
.aboutUs {
  background: #3a416f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0rem;
  height: auto;
}

.aboutUs-Container {
  padding-top: 1rem;
}

.aboutUs h1 {
  color: #f5f5fa;
  font-size: 4.5rem;
  margin-top: 4rem;
}

.about-us-container {
  display: flex;
  justify-content: center;
  color: white;
  text-align: center;
  width: 100%;
  padding: 20px 30px;
}

.aboutUs-card {
  height: 215px;
  width: 400px;
  background-size: cover;
  position: relative;
  color: #fff;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
}

.aboutUs-card h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.aboutUs-card p {
  margin-top: 0;
}

.aboutUs-card:nth-child(1) {
  background-color: #294c8b;
}

.aboutUs-card:nth-child(2) {
  background-color: #1a428a;
}

.aboutUs-card:nth-child(3) {
  background-color: #294c8b;
}

.aboutUs-card:nth-child(4) {
  background-color: #1a428a;
}

@media screen and (max-width: 960px) {
  .about-us-container {
    flex-wrap: wrap;
  }
  .aboutUs {
    padding-top: 2em;
  }

  .aboutUs h1 {
    font-size: 3rem;
    margin-top: 4rem;
  }

  .aboutUs-card {
    height: 300px;
    width: 50%;
    background-size: cover;
    position: relative;
    text-align: center;
  }

  .aboutUs-card:nth-child(1) {
    background-color: #1a428a;
  }

  .aboutUs-card:nth-child(2) {
    background-color: #294c8b;
  }

  .aboutUs-card:nth-child(3) {
    background-color: #294c8b;
  }

  .aboutUs-card:nth-child(4) {
    background-color: #1a428a;
  }
}

@media screen and (max-width: 480px) {
  .aboutUs {
    height: auto;
  }

  .aboutUs-Container {
    padding: 0;
  }

  .about-us-container {
    flex-wrap: wrap;
  }

  .aboutUs h1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }

  .aboutUs-card {
    height: 350px;
    width: 300px;
    padding: 0 20px;
  }

  .aboutUs-card h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .aboutUs-card p {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .aboutUs-card:nth-child(1) {
    background-color: #294c8b;
  }

  .aboutUs-card:nth-child(2) {
    background-color: #1a428a;
  }

  .aboutUs-card:nth-child(3) {
    background-color: #294c8b;
  }

  .aboutUs-card:nth-child(4) {
    background-color: #1a428a;
  }
}

/* Contact Us CSS */

.contactUs {
  background: #f5f5fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  padding-top: 6rem;
  height: 100vh;
}

.contactUs h1 {
  color: #1a428a;
  margin-bottom: 5rem;
  font-size: 5rem;
  font-weight: bolder;
}

.contactUs__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contactUs__card {
  height: 300px;
  width: 350px;
  margin: 0 30px;
  background-size: cover;
  position: relative;
  color: #848ab8;
  text-align: center;
}

.contactUs__card h2 {
  color: #1a428a;
}

.contactUs__card p {
  padding-top: 40px;
  font-weight: 500;
  font-size: 20px;
}

#integrityIcon {
  width: 300px;
  height: 100px;
  padding-bottom: 20px;
}

.contactUs__card button:hover {
  cursor: pointer;
  transform: scale(1.075);
  transition: 0.2s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .contactUs {
    padding-top: 2em;
  }

  .contactUs h1 {
    font-size: 3rem;
    margin-top: 4rem;
  }
}

@media screen and (max-width: 480px) {
  .contactUs {
    height: auto;
    width: 100%;
  }

  .contactUs h1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }
}

/* Footer CSS */
.footer__container {
  background-color: #3a416f;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  color: #1a428a;
  cursor: pointer;
  text-decoration: none;
  font-size: 3rem;
  font-weight: 700;
  margin-left: 70px;
  width: 170px;
  height: 130px;
  padding-bottom: 20px;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer__link--wrapper {
  display: flex;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__link--items h2 {
  margin-bottom: 16px;
}

.footer__link--items > h2 {
  color: #fff;
}

.footer__link--items a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer__link--items a:hover {
  color: #e9e9e9;
  transition: 0.3s ease-out;
}

/* Social Icons */
.social__icon--link {
  color: #fff;
  font-size: 50px;
  margin-right: 110px;
}

.social__media {
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*width: 240px;*/ /* if need more icons, put it back to 240px */
}

.social__logo {
  color: #fff;
  justify-self: start;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.website__rights {
  color: #fff;
  font-size: 22px;
}

@media screen and (max-width: 820px) {
  .footer__links {
    padding-top: 2rem;
  }

  #footer__logo {
    margin-bottom: 2rem;
  }

  .website__rights {
    margin-bottom: 2rem;
  }

  .footer__link--wrapper {
    flex-direction: column;
  }

  .social__media--wrap {
    flex-direction: column;
  }

  #footer__logo {
    color: #1a428a;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 10px;
    margin-left: 0px;
    width: 160px;
    height: 120px;
  }

  .social__icon--link {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .footer__link--items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }

  #footer__logo {
    width: 140px;
    height: 120px;
  }
}
