.hero {
  background-image: url("/assets/images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(5, 1, 0, 0.7);
  z-index: 0;
}
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 520px;
  position: relative;
  z-index: 10;
  color: var(--clr-white);
}
.hero .badge {
  background-color: rgba(35, 51, 75, 0.6);
  text-transform: uppercase;
  color: var(--clr-white);
  position: relative;
  padding: 0.5rem 1.2rem;
}
.hero .badge::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 7px;
  background-color: var(--clr-primary);
}
.hero-title {
  font-size: 32px;
}
.hero-description {
  max-width: 520px;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .hero-container {
    min-height: calc(100vh - 160px);
  }
  .hero-title {
    font-size: 54px;
  }
}

.about {
  padding: 3rem 0;
  overflow: hidden;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-content .imgs {
  position: relative;
  height: 250px;
  display: flex;
}
.about-content .imgs img {
  border-radius: 12px;
}
.about-content .imgs img:first-child {
  width: 100%;
  height: 85%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-content .imgs img:last-child {
  width: 150px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: -50px;
  bottom: 0;
  padding: 0.7rem;
  background-color: var(--clr-white);
}
.about-content .text span,
.about-content .text h3 {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: 500;
}
.about-content .text span {
  color: var(--clr-primary);
  display: inline-block;
  margin-bottom: 0.25rem;
}
.about-content .text h3 {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 24px;
}
.about-content .text p {
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 5rem 0;
  }
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .about-content .imgs {
    flex: 1.2;
    height: 450px;
  }
  .about-content .imgs img:last-child {
    width: 300px;
    height: 220px;
    padding: 1rem;
  }
  .about-content .text {
    flex: 1;
  }
}

.services {
  padding: 4rem 0;
  background-color: var(--clr-gray-dark);
}
.services-content {
  display: grid;
  gap: 0.5rem;
}
.services-content .group:first-child, .services-content .group:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services-content .group:nth-child(2) {
  display: none;
  align-items: center;
  justify-content: center;
}
.services-content .service {
  padding: 2rem;
  border-radius: 20px;
  min-height: 150px;
}
.services-content .service-img {
  display: inline-flex;
  margin-bottom: 0.5rem;
}
.services-content .service-img svg {
  width: 35px;
  height: 35px;
  fill: var(--clr-text);
}
.services-content .service-title {
  font-weight: 500;
  font-size: 20px;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.services-content .service p {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .services {
    padding: 5rem 0;
  }
  .services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .services-content .group:first-child, .services-content .group:last-child {
    gap: 2rem;
  }
  .services-content .group:nth-child(2) {
    display: flex;
  }
  .services-content .group:nth-child(2) img {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none;
  }
  .services-content .service {
    min-height: 250px;
  }
  .services-content .service-title {
    font-size: 18px;
  }
}

.news {
  padding: 3rem 0;
  background-color: var(--clr-gray-dark);
}
.news-content {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.news-content .new {
  background-color: var(--clr-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.news-content .new-img {
  height: 250px;
  background-color: var(--clr-gray-dark);
  display: flex;
}
.news-content .new-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-content .new .content {
  padding: 1.2rem;
}
.news-content .new-title {
  display: inline-block;
  font-size: 20px;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
}
.news-content .new-title:hover {
  color: var(--clr-text);
  text-decoration: underline;
}
.news-content .new-description {
  line-height: 1.4;
}
.news .more {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 5rem 0;
  }
  .news-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.head {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}
.head div {
  color: var(--clr-primary);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.head h3 {
  font-size: 24px;
}

.contact {
  background-image: url("../images/country-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: 3rem 0;
}
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-content h3 {
  margin-bottom: 1rem;
  font-size: 26px;
}
.contact-content p {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 5rem 0;
  }
  .contact-content h3 {
    font-size: 32px;
  }
}/*# sourceMappingURL=home.css.map */