@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;
  display: flex;
  flex-direction: column;
}

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

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

h3 {
  font-size: 24px !important;
}

a {
  text-decoration: none !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  -------- */

/* background */

.services-rectangle {
  height: 47vw;
  width: 100%;
  background-color: #76b9f0;
}

.image-services-container {
  background-image: url(../images/WebsiteElements/Services/1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: calc((100vw * (9 / 16)) - (80px + 20vw));
}

.service-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20vw;
}

/* service-boxes */
.service-box-1,
.service-box-2,
.service-box-3 {
  width: 19vw;
  height: 21vw;
  background-color: #025492;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 1.3vw;
}

.service-box-1-img,
.service-box-2-img,
.service-box-3-img {
  background-color: none;
  background-image: url(../images/WebsiteElements/Services/icons.png);
  background-size: 18vw; /* or 'cover' depending on your needs */
  background-repeat: no-repeat;
  width: 6vw;
  height: 6vw;
}

.service-box-1-img {
  background-position: 0.66vw 0vw;
}
.service-box-2-img {
  background-position: -5.2vw 0vw;
}
.service-box-3-img {
  background-position: -11.6vw 0vw;
}

.service-title {
  color: white;
  font-size: 1.1vw;
  text-align: center;
}

.service-box-1-button button,
.service-box-2-button button,
.service-box-3-button button {
  width: 8vw;
  height: 2.5vw;
  border-radius: 50px;
  color: #d6e7fc;
  background-color: #025492;
  box-shadow: none;
  border: none;
  font-size: 1vw;
}

.service-box-1-button button:hover,
.service-box-2-button button:hover,
.service-box-3-button button:hover {
  background-color: #d6e7fc;
  color: #025492;
}

.main-services a {
  text-decoration: none;
  color: white;
}

/* service-boxes */

/* --------  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  -------- */

/* --------  JAVASCRIPT CSS  -------- */

#tel-1 {
  display: none;
}

#tel-2 {
  display: none;
}

#tel-3 {
  display: none;
}

#tel-4 {
  display: none;
}

/* --------  JAVASCRIPT CSS END  -------- */

/* --------  TEL SERVICE END  -------- */

/* --------  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  -------- */
