@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #191919;
}

body {
  margin: 0;
}

h1 {
  font-size: 48px !important;
}

h2 {
  font-size: 32px !important;
}

/* --------  NAVBAR/HEADER  -------- */

#nav-logo {
  width: 4.2vw;
  height: 4.2vw;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8vw;
  background-color: #d4e9fe;
}

.nav-links a {
  text-decoration: none;
  color: #011f4b;
  margin: 0 1vw;
  font-size: 1.1vw;
  display: inline-block;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #011f4b;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-links a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

.logo a {
  text-decoration: none;
}

.logo a div {
  margin: 1.1vw 0.4vw 0;
  color: #004080;
  font-size: 1.5vw;
  font-weight: 700;
  font-style: italic;
}

/* --------  NAVBAR/HEADER  -------- */

/* --------  HOMEPAGE MAIN  -------- */

.rectangle-tagline {
  background-image: url("../images/WebsiteElements/Home/home-taglineBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: calc((100vw * (9 / 16)) - 200px);
}

.home-text {
  font-size: 3vw;
  font-weight: 700;
  font-style: bold;
  color: #011f4b;
  margin-bottom: 1.5vw;
  margin-left: 15vw;
}

.home-service {
  margin-left: 15vw;
}

.home-text-service {
  margin-right: 1vw;
}

.home-nav-links a {
  font-size: 1.2vw;
  color: #011f4b;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  color: #011f4b;
  position: relative;
}

.home-nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #011f4b;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.home-nav-links a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

/* --------  HOMEPAGE MAIN END  -------- */

/* --------  CLIENTS  -------- */

.rectangle-clients {
  height: calc((100vw * (3 / 16)));
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 7vw;
}

.clients-title {
  color: #011f4c;
  font-size: 2vw;
  font-style: bold;
  font-weight: 500;
  text-align: center;
}

.clients-btn {
  color: #0e386a;
  background-color: #0e386a !important;
  width: 2vw;
  height: 2vw;
  padding: 0vw !important;
  display: flex;
  justify-content: center;
  align-content: center;
}

.clients-arrow {
  color: #acd0ef;
  font-size: 0.8vw;
  padding: 0vw !important;
  margin: 0vw !important;
}

.card {
  border: none !important;
}

.card img {
  height: 7vw;
  width: auto;
  padding: 0.8vw;
  align-self: center;
  justify-self: center;
}

.carousel-image {
  border: none !important;
  width: 20vw;
  height: 20vw;
  align-self: center;
}

/* --------  CLIENTS END  -------- */

/* --------  EXPLORE  -------- */

.rectangle-explore {
  background-image: url("../images/WebsiteElements/Home/home-exploreBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: calc((100vw * (8 / 16)));
}

.explore-title {
  font-size: 3vw;
  font-weight: 600;
  font-style: bold;
  color: rgb(190, 239, 255);
  text-decoration: none;
  text-align: center;
  margin-bottom: 0.5vw;
}

.explore-subtitle {
  font-size: 1vw;
  font-weight: 400;
  color: white;
  text-decoration: none;
  text-align: center;
  margin-bottom: 2vw;
}

/* --------  HOMEPAGE CARDS  -------- */

.explore-card {
  background: #e9feff;
  height: 28vw;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0.5vw;
  padding: 1.5vw;
}

.explore-card-icon {
  width: 4vw;
  height: auto;
  margin: 1vw;
}

.explore-card-text {
  text-align: center;
}

.explore-card-title {
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
}

.explore-card-description {
  font-size: 0.8vw;
  text-align: center;
  margin: 1vw;
}

.more-button {
  width: 9vw;
  height: 3vw;
  border-radius: 50px;
  border: none;
  background: #03396c;
  font-size: 1vw;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-button:hover {
  background-color: #011f4b;
}

/* --------  HOMEPAGE CARDS  -------- */

/* --------  EXPLORE  -------- */

/* --------  WORK TOGETHER  -------- */

.rectangle-together {
  background-image: url("../images/WebsiteElements/Home/home-togetherBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: calc((100vw * (4 / 16)));
  display: flex;
  justify-content: center;
  align-items: center;
}

.together-text {
  margin-left: 40vw;
}

.together-desc {
  color: white;
  font-size: 1vw;
  margin-bottom: 1vw;
}

.together-nav-links a {
  text-decoration: none;
  color: white;
  font-size: 2vw;
  font-weight: 700;
  font-style: bold;
  display: inline-block;
  position: relative;
}

.together-nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.together-nav-links a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

/* --------  WORK TOGETHER  -------- */

/* --------  FOOTER  -------- */

.rectangle-footer {
  height: calc((100vw * (3 / 16)));
  background: #d6e7fc;
}

.footer-tagline {
  font-size: 1.8vw;
  font-weight: 700;
  font-style: bold;
  color: rgb(16, 62, 126);
  text-decoration: none;
  margin-right: 2.5vw;
}

.footer-services-title {
  font-size: 1.5vw;
  font-weight: 500;
  font-style: bold;
  color: #103e7e;
  text-align: left;
  padding-block: 0.5vw;
}

.footer-company {
  margin-inline: 2.5vw;
}

.footer-company-title {
  font-size: 1.5vw;
  font-weight: 500;
  font-style: bold;
  color: #103e7e;
  text-align: left;
  padding-block: 0.5vw;
}

.footer-phone-number,
.footer-email {
  font-size: 0.8vw;
  color: #103e7e;
  text-align: left;
}

.footer-nav-links a {
  font-size: 0.8vw;
  text-decoration: none;
  color: #103e7e;
  padding-block: 0.1vw;
  position: relative;
}

.footer-nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #103e7e;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.footer-nav-links a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

/* --------  FOOTER END -------- */
