@import url('about.css');
@import url('services.css');
@import url('cases.css');

.top-full-banner,
.top-full-banner-mobile {
  width: 100%;
}
.top-full-banner {
  height: 100vh;
  background: url('../img/home/casa-gb.jpg') center center;
  background-size: cover;
}
.top-full-banner .banner,
.top-full-banner .banner-image,
.top-full-banner-mobile .banner,
.top-full-banner-mobile .banner .banner-image {
  width: 100%;
  position: relative;
}
.top-full-banner .banner .banner-text,
.top-full-banner-mobile .banner .banner-text {
  width: fit-content;
  background-color: var(--color-white);
  padding: 24px 80px;
  font-size: 20px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-transform: uppercase;
}
.top-full-banner-mobile.slick-slider {
  display: none;
}

.about {
  width: 100%;
}

.content-header {
  width: 100%;
  max-height: 600px;
  height: 50%;
  background-color: var(--color-primary);
  background: url('../img/about/about-header.jpg') center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.content-header .lettering {
  background-color: rgba(0,0,0,0.4);
  width: fit-content;
  height: auto;
  padding: 32px 48px;
  font-size: 28px;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
}

/* Proccess */
.our-proccess {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 24px;
  padding: 5% 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-proccess .steps-content {
  width: 40%;
}
.our-proccess .steps-content .proccess-steps {
  margin: 40px 0 0;
}
.our-proccess .steps-content .proccess-steps .step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
}
.our-proccess .steps-content .proccess-steps .step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-proccess .steps-image {
    width: 50%;
}

@media (max-width: 900px) {
  .top-full-banner.slick-slider {
    display: none;
  }

  .top-full-banner {
    background: url('../img/home/casa-gb-m.jpg') center center;
    background-size: cover;
    height: 100vh;
  }
  .top-full-banner-mobile {
    display: block;
  }

  .top-full-banner-mobile .banner .banner-text {
    display: none;
    width: 100%;
    padding: 24px 80px;
    font-size: 20px;
    position: relative;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    text-align: center;
  }

  .our-proccess {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 5% 10% 40px;
  }
  .our-proccess .steps-content {
    width: 100%;
  }
  .our-proccess .steps-image {
    width: 100%;
    margin: -80px 0;
  }
}