@import url("./pages-styles/default.css");

.main,
.about,
.services,
.contacts {
  width: 100%;
  display: flex;
}

.main {
  height: 100vh;
  min-height: 500px;

  background: no-repeat right url("./images/bulker-main.jpg");
  background-size: cover;
  background-attachment: fixed;
}

/* ABOUT */
.about {
  height: fit-content;
  margin-top: 50px;
  margin-bottom: 120px;
  padding: 30px 20px;

  flex-direction: column;
  align-items: center;
}

.about * {
  max-width: 1200px;
}

.about_text {
  margin: 30px 0;
}

.about p {
  text-align: center;
  margin: 0 20px;

  line-height: 1.5;
  font-size: 26px;
  color: #616161;
}

.about a {
  text-decoration: none;
  color: #016cbc;
  font-weight: 600;
}
.about a:hover {
  opacity: 0.6;
}

.about p .JB_name {
  color: #016cbc;
  font-weight: 600;
}

.about h2 {
  text-align: center;
  margin: 20px 0 10px;
}

.about_icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 50px;
  /* padding: 0 20px; */
  justify-content: space-between;
}

.about_icon_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  margin: 20px auto 0 auto;
}

.about_icon_item .icon {
  width: 120px;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
}

.about_icon_item .text {
  text-align: center;
  padding: 0 10px;
}

.about_icon_item .text span {
  color: #016cbc;
  font-weight: 700;
}

/* SERVICES --> */
.services {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  margin: 30px auto 100px auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services .swiper {
  width: 100%;
  /* max-width: 1400px; */
  max-width: 2000px;
  height: 650px;
  cursor: -webkit-grabbing;
  cursor: grabbing;
  padding-bottom: 50px;
}

.services .swiper .swiper-slide {
  height: 90%;
  background-color: rgba(166, 208, 233, 0.1);
  border-radius: 15px;
}

.services .swiper .swiper-slide .services_img {
  width: 100%;
  height: 65%;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.services .swiper .swiper-slide .services_img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.services .swiper .swiper-slide .services_img a {
  padding: 0;
}

.services .swiper .swiper-slide .services_img:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  opacity: 0.5;
}

.services .swiper .swiper-slide h6 {
  color: #0d5697;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding-left: 30px;
  margin-bottom: 15px;
}

.services .swiper .swiper-slide h1 {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding-left: 30px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.services .swiper .swiper-slide p {
  color: #969696;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: normal;
  padding-left: 30px;
  padding-right: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.services .swiper .swiper-slide a {
  text-decoration: none;
  padding-left: 30px;
  color: #016cbc;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.services .swiper .swiper-slide a:hover {
  font-size: 15px;
  font-weight: 700;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  --swiper-pagination-bullet-horizontal-gap: 20px;
}

/* <-- SERVICES */

/* MEDIA */
@media (max-width: 650px) {
  .about .about_text p {
    font-size: 20px;
    text-align: justify;
  }
}

@media (max-width: 420px) {
  .about .about_text p {
    font-size: 16px;
    margin: 0 10px;
  }

  .services .swiper .swiper-slide h1 {
    font-size: 20px;
    padding-left: 20px;
  }

  .services .swiper .swiper-slide p {
    font-size: 14px;
    padding-left: 20px;
  }

  .services .swiper .swiper-slide a {
    padding-left: 20px;
  }
}

@media (max-width: 300px) {
  .services .swiper .swiper-slide p {
    margin-bottom: 10px;
    padding-right: 10px;
  }
}
