/************************/
/* HEADER */
/************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #dcf2f1;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;

  position: relative;
}

/************************/
/* NAVIGATION */
/************************/

/* LOGO */

.main-logo {
  list-style: none;
  text-decoration: none;
}

.main-logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  color: #0f1035;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited,
.main-nav-list span {
  display: inline-block;
  text-decoration: none;
  color: #0f1035;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #4a6592;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #365486;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #4a6592;
}

/* MOBILE */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;

  background-color: rgba(255, 255, 255, 0.97);
  z-index: 9999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/************************/
/* HERO SECTION */
/************************/

.section-hero {
  background-color: #dcf2f1;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 3.2rem;
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  letter-spacing: -0.75px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: left;
}

.hero--phone-icon {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.phone-icon {
  width: 2.4rem;
  height: 2.4rem;
  /* z-index: -1; */
}

.hero-img {
  width: 100%;
}

/************************/
/* SERVICES SECTION */
/************************/

.services {
  display: flex;
  flex-direction: column;

  gap: 3.2rem;

  align-items: center;
  justify-content: center;

  /* background-color: #0f1035; */
}

.services-images {
  display: flex;
  gap: 2.4rem;
}

.services-box {
  display: flex;
  flex-direction: column;
  gap: 3rem;

  padding: 0 3.2rem;

  align-items: center;
  justify-content: center;

  /* background-color: #dcf2f1; */
}

.services-img {
  width: 20rem;
  height: 20rem;
}

.services-description {
  font-size: 2rem;
  color: black;
}

.services-more-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 2rem;
}

.service-detailed {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  /* border-top: 1px solid #0f1035; */
  padding-top: 9.6rem;

  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  background-color: #f1f3f5;
  padding: 2rem;
  border-radius: 1rem;
}

.service-title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
  font-weight: 500;
}

.service-desc {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
}

.show-more,
.show-less {
  background-color: #0f1035;
  color: #fff;
}

.show-less {
  display: none;
}

.service-detailed.show {
  display: grid;
  max-height: 1000px;
}

/************************/
/* ABOUT US SECTION */
/************************/

.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 2.4rem;

  /* background-color: #f99244; */
  background-color: #dcf2f1;
  border-radius: 5rem;
}

.about-us-info {
  /* background-color: #777; */
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

.about-us-info .heading-primary {
  color: #222;
}

.about-information {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: -0.75px;
}

.about-us-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-img {
  width: 45rem;
  height: 45rem;
}

/************************/
/* LOCATIONS SECTION */
/************************/

.locations {
  /* background-color: #0f1035; */
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.locations-info .heading-primary {
  color: #365486;
}

.locations-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-img {
  width: auto;
  height: 55rem;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-attributes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-attributes ion-icon {
  width: 3rem;
  height: 3rem;
}

.location-attribute {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.6rem;

  padding: 1rem;

  border-radius: 8px;

  color: #365486;
  /* background-color: #365486; */
}

.location-small-info {
  font-size: 1.4rem;
  line-height: 1.4;
}

/************************/
/* STEPS SECTION */
/************************/

.section-steps {
  background-color: #ed1c24;
}

.steps {
  display: flex;
  flex-direction: column;
  padding: 3rem 0rem 3rem 0rem;
}

.steps-title {
  /* background-color: #0f1035; */

  display: flex;
  justify-content: left;
  align-items: center;
}

.steps-title .heading-primary {
  color: #fff;
}

.steps-items {
  display: flex;

  gap: 3.2rem;
}

.step {
  display: flex;

  align-items: start;
  justify-content: center;

  gap: 3rem;
  /* background-color: #222; */

  /* padding: 1.2rem 3rem 1.2rem 3rem; */
}

.step-number {
  /* background-color: black; */

  font-size: 3rem;
  font-weight: 700;
  color: #e2c675;

  padding: 1rem 2rem 1rem 2rem;

  border: 4px solid #e2c675;
  /* box-shadow: inset 0 0 0 px #e2c675; */

  border-radius: 5rem;
}

.step-desc {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;

  line-height: 1.2;
}

.step-short-desc {
  font-size: 1.6rem;
  color: white;
  font-style: italic;
  line-height: 1.2;
}

/************************/
/* GALLERY SECTION */
/************************/

.gallery-info {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 5rem;
  width: 5rem;
  color: #fff;
  border: none;
  outline: none;
  background-color: #000;
  font-size: 2.8rem;
  cursor: pointer;
  border-radius: 50%;

  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background-color: #333;
}

.slider-wrapper .slide-button#prev-slide {
  left: -20px;
}

.slider-wrapper .slide-button#next-slide {
  right: -20px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 1.8rem;

  margin-bottom: 3rem;

  font-size: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.gallery .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  height: 3px;
  width: 100%;
  background-color: #ccc;
  position: relative;
  border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 5px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #000;
  border-radius: inherit;
  cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/************************/
/* TESTIMONIALS SECTION */
/************************/

.testimonial-info {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
}

.testimonials-slider {
  display: flex;
  gap: 4rem;
  overflow: hidden;
}

.testimonials-slide,
.testimonials-slide-2,
.testimonials-slide-3 {
  position: relative;
}

.testimonial-img,
.testimonial-img-2,
.testimonial-img-3 {
  width: 100%;

  transition: all 0.3s ease;
  object-fit: cover;

  border-radius: 1.5rem;
}

.testimonial-img:hover,
.testimonial-img-2:hover,
.testimonial-img-3:hover {
  transform: scale(1);
  filter: blur(0);

  /* border-radius: 10rem; */
}

.testimonial-text {
  width: 80%;
  font-size: 1.6rem;
  text-align: left;
  color: #fff;

  line-height: 1.2;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  opacity: 0;

  transition: all 0.3s ease;
}

.testimonial-text span,
.testimonial-text-2 span,
.testimonial-text-3 span {
  font-weight: 700;
}

.testimonial-text-2 {
  width: 80%;
  font-size: 1.6rem;
  text-align: left;
  color: #fff;

  line-height: 1.2;
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  opacity: 0;

  transition: all 0.3s ease;
}

.testimonial-text-3 {
  width: 80%;
  font-size: 1.6rem;
  text-align: left;
  color: #fff;

  line-height: 1.2;
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  opacity: 0;

  transition: all 0.3s ease;
}

/************************/
/* CONTACT SECTION */
/************************/

.section-form {
  background-color: #dcf2f1;
  padding: 3.2rem 0;
}

.form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.form-text {
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.2;
  letter-spacing: -0.75px;
  padding-bottom: 1rem;
}

.contact form {
  /* width: 60rem; */
  text-align: center;
}

.input-box .input-field {
  width: 48.5%;
}

form .input-box {
  display: flex;
  justify-content: space-between;
  /* gap: 2rem; */
  padding: 1rem 0;
}

.field .form-item {
  width: 100%;
  padding: 1.8rem;
  background: transparent;
  border: 2px solid #4a6592;
  outline: none;
  font-size: 1.6rem;
  border-radius: 6px;
  color: #222;
  letter-spacing: -0.75px;
}

.field.error .form-item {
  border-color: #ed1c24;
}

.field .form-item::placeholder {
  color: #0f1035;
}

.field .error-txt {
  font-size: 1.2rem;
  color: #ed1c24;
  text-align: left;
  margin: 3px 0 10px;
  display: none;
}

.field.error .error-txt {
  display: block;
}

form .textarea-field .error-txt {
  margin-bottom: -10px;
}

form .textarea-field .form-item {
  resize: none;
}

form button {
  padding: 1.2rem 3.2rem;
  background-color: #0f1035;
  border: none;
  outline: none;

  border-radius: 6px;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;

  transition: 0.3s ease;
}

form button:hover {
  background: transparent;
  color: #0f1035;
  box-shadow: inset 0 0 0 3px #0f1035;
}

.form-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-img {
  width: 60rem;
}

/************************/
/* FOOTER */
/************************/

.footer {
  padding: 9.6rem 0;
  /* border-top: 1px solid #eee; */
}

.grid--footer {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts,
.hours {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.whatsapp {
  color: #25d366;
}

.facebook {
  color: #365486;
}
