@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 30px;
  box-shadow: 0 0 40px rgba(2, 2, 90, 0.2);
  z-index: 100;
}

.nav .logo {
  width: 120px;
}

.nav_menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav_menu_item a {
  text-decoration: none;
  color: #02025A;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 5px 1px;
}

.nav_menu_item a:hover {
  border-bottom: 2px solid #EF0000;
  color: #EF0000;
}

.menu-btn {
  position: absolute;
}

@media (max-width: 650px) {
  .nav_menu {
    flex-direction: column;
    box-shadow: 0 0 20px rgba(2, 2, 90, 0.2);
    background-color: #fff;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    padding: 20px 30px;
    transform: translateX(15rem);
    transition: transform .5s ease-in;
  }
  .nav_menu.open {
    transform: translateX(0);
  }
  .menu-btn {
    position: absolute;
    z-index: 1;
    right: 2rem;
    top: 2rem;
    height: 20px;
    width: 28px;
    cursor: pointer;
    transition: all .7s ease-in-out;
  }
  .menu-btn-burger {
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 28px;
    height: 3px;
    background-color: #02025A;
    transition: all .7s ease-in-out;
  }
  .menu-btn-burger::before {
    content: "";
    position: absolute;
    right: 0;
    top: -8px;
    width: 28px;
    height: 3px;
    background-color: #02025A;
    transition: all .7s ease-in-out;
  }
  .menu-btn-burger::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 20px;
    height: 3px;
    margin-right: 8px;
    background-color: #02025A;
    transition: all .7s ease-in-out;
  }
  .menu-btn-burger.open {
    transform: rotate(720deg);
    background: transparent;
  }
  .menu-btn-burger.open::before {
    transform: rotate(45deg) translate(5px, 8px);
  }
  .menu-btn-burger.open::after {
    width: 28px;
    margin-right: 0;
    transform: rotate(-45deg) translate(3px, -7px);
  }
}

.header {
  margin-top: 7%;
  height: 100vh;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("https://media.istockphoto.com/photos/white-semitrailer-truck-heading-down-a-fourlane-highway-at-dusk-picture-id1289928297?b=1&k=20&m=1289928297&s=170667a&w=0&h=J873qv9Zwpb8qkXlkgjjxljAdFEafPveNs-nbL3ZiXw=") no-repeat center;
  background-size: cover;
  position: relative;
  filter: contrast(125%);
}

.header::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #02025A;
  position: absolute;
  top: 0;
  opacity: .75;
  z-index: 1;
  filter: contrast(125%);
}

.header_content {
  z-index: 2;
  color: #fff;
  width: 60%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header_content_title {
  font-size: 3rem;
}

.header_content_subtitle {
  font-size: 1rem;
  opacity: .75;
  margin-bottom: 50px;
}

.header_content_cta_button {
  background-color: rgba(255, 255, 255, 0.6);
  color: #1C1D1D;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background 200ms ease-in;
}

.header_content_cta_button:hover {
  background-color: rgba(189, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

.header_content_cta_button.one {
  background-color: rgba(189, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

.header_content_cta_button.one:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #1C1D1D;
}

@media (max-width: 920px) {
  .header_content {
    width: 75%;
  }
}

@media (max-width: 700px) {
  .header_content {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .header_content {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .header_content_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}

main {
  padding: 0 30px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section_title {
  color: #02025A;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.section_title::after {
  content: "";
  background-color: #BD0000;
  height: 5px;
  width: 7%;
}

.section_subtitle {
  color: #454648;
  margin-bottom: 20px;
}

.section_subsections {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.section_subsections_subsection {
  display: flex;
  flex-direction: column;
  width: 500px;
  border: 1px solid #454648;
  border-radius: 5px;
  padding: 20px 30px;
}

.section_subsections_subsection_title {
  color: #02025A;
}

.section_subsections_subsection_subtitle {
  color: #454648;
}

.section_cta {
  align-self: center;
  background-color: #BD0000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background 200ms ease-in;
}

.section_cta:hover {
  background-color: #02025A;
}

.section_cards {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.section_cards .card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #02025A;
  width: 300px;
  border-radius: 5px;
  padding: 20px 30px;
}

.section_cards .card_title {
  color: #BD0000;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.section_cards .card_title::after {
  content: "";
  background-color: #BD0000;
  height: 5px;
  width: 15%;
}

.section_cards .card_content {
  color: #02025A;
  margin-bottom: 20px;
}

.services_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.services_cards .service_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 20px rgba(69, 70, 72, 0.4);
  border-radius: 5px;
  position: relative;
  width: 500px;
}

.services_cards .service_card_img {
  width: 500px;
  height: 300px;
  object-fit: cover;
}

.services_cards .service_card_title {
  position: absolute;
  bottom: 0;
  background-color: #02025A;
  color: #fff;
  padding: 10px 20px;
  letter-spacing: 1.2px;
}

@media (max-width: 1079px) {
  .section_subsections_subsection {
    width: 100%;
  }
}

@media (max-width: 579px) {
  .section_cards .card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .service_card .service_card_img {
    width: 100%;
  }
  .service_card .service_card_title {
    width: 100%;
  }
}

footer {
  background-color: #02025A;
  color: #fff;
}

footer .contact_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px;
}

footer .contact_section_info {
  border: 2px solid #fff;
  padding: 10px 40px;
  margin-top: 10px;
}

footer .contact_section_info p {
  margin-bottom: 7px;
}

footer .copyright {
  text-align: center;
  padding: 10px 0;
  background-color: rgba(0, 0, 59, 0.39);
  color: rgba(255, 255, 255, 0.6);
}
/*# sourceMappingURL=styles.css.map */