/* CSS Document */

/*# sourceMappingURL=front-page.css.map */

#hero {
    position: relative;
    height: 900px;
    margin-top: -113px;
    z-index: 0;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.background img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin: auto;

    background: rgba(126, 100, 83, .4);
}

.hero-title {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 113px;
    color: white;
    font-family: var(--font);
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    max-width: 1500px;
}

.hero-services {
    display: flex;
    width: 100%;
    max-width: 1500px;
}

.hero-services a {
    background: rgba(126, 100, 83, .75);
    margin: 0px 20px;
    width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    transition: .5s;
    transform-origin: bottom;
}

.hero-services:hover a {
    transform: scale(.9);
    transform-origin: bottom;
    transition: .5s;
}

.hero-services a:hover {
    background: rgba(126, 100, 83, 1);
    transform-origin: bottom;
    transform: scale(1.1);
    transition: .5s;
}

.hero-services img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.hero-service-title {
    color: white;
    font-family: var(--font);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}



/* ITA */

#ita {
    background: var(--light-gray);
    padding: 100px 20px;
}

#ita .wrap {
    display: flex;
    max-width: 2000px;
}

.ita-left {
    width: 50%;
}

.ita-left {
    padding-right: 50px;
}

.ita-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ita-right {
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ita-title {
    color: var(--gray);
    font-family: var(--font);
    font-weight: bold;
    font-size: 40px;
}

.ita-right ul li {
    list-style-type: disc;
    margin: 30px;
    margin-left: 30px;
    font-family: var(--font);
    color: var(--gray);
    font-size: 25px;
}

.ita-link {
    background: var(--mid-brown);
    width: fit-content;
    /* margin: 0px auto; */
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: .5s;
    text-align: center;
}

.ita-link:hover {
    color: white;
    background: var(--brown);
    transition: .5s;
}




/* BUCKETS */

#buckets {
  position: relative;
  overflow: hidden;
  background: black;
  border-top: 50px solid white;
}

#buckets .background {
  background-image: url('/wp-content/uploads/2023/10/services-background.png');

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#buckets .background img {
  display: none;
}

.services-title {
    color: white;
    font-family: var(--font);
    font-weight: bold;
    font-size: 40px;
}

.services-intro {
  color: white;
  font-family: var(--font);
  font-size: 20px;
}

.buckets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  position: relative;
}

#buckets .wrap {
    max-width: 1500px;
}

.cover {
  padding: 30px 20px;
  background: rgba(126, 100, 83, .6);
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 5000000;
  margin: 0px;
}

.bucket-item {
    /* position: relative; */
    padding: 50px 20px;
    width: calc(33%);
    border-radius: 24px;   
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  transition: .3s;
}

.bucket-item:hover {
  background: rgba(126, 100, 83, .75);
}

.bucket-item img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.bucket-title {
    color: white;
    font-family: var(--font);
    font-weight: bold;
    text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}

.modal-content-titles {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.modal-content-titles .bucket-title {
  position: initial;
  background: initial;
  color: var(--blue);
  font-weight: bold;
  text-align: left;
  margin: 0px;
  padding-left: 20px;
}

.modal {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* transform: translatey(110%); */
  transform: scale(0);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.active {
  transform: scale(1);
  opacity: 1;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 50000;
}

.modal-content {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 20px;
  border-radius: 22px 22px 22px 22px;
  background: white;
  box-shadow: -1px 15px 30px -12px black;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-content {
    position: relative;
    /* background: rgba(255,255,255, .7); */
    font-size: 22px;
    letter-spacing: .68px;
    line-height: 40px;
    padding: 20px;
    border-radius: 24px;
    height: 100%;
    width: 100%;
    font-family: var(--font);
  overflow: auto;
}

.close {
    float: right;
    border-radius: 24px;
  margin: 10px;
    background: var(--mid-brown);
    /* position: absolute; */
  right: 10px;
  top: 10px;
}

.close:hover {
background: var(--brown);
}

.bucket-link {
  border-radius: 50px;
  padding: 10px 40px;
  background: var(--mid-brown);
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  transition: .5s;
  width: fit-content;
  margin: auto;
  text-align: center;
  margin-top: 10px;
}

.bucket-link:hover {
  color: white;
  background: var(--brown);
  transition: .5s;
}

/* TRANSFORM ORIGINS */

.bucket-item:nth-child(1) .active, .bucket-item:nth-child(1) .modal {
  transform-origin: top left;
}

.bucket-item:nth-child(2) .active, .bucket-item:nth-child(2) .modal {
  transform-origin: top;
}

.bucket-item:nth-child(3) .active, .bucket-item:nth-child(3) .modal {
  transform-origin: top right;
}

.bucket-item:nth-child(4) .active, .bucket-item:nth-child(4) .modal {
  transform-origin: center left;
}

.bucket-item:nth-child(6) .active, .bucket-item:nth-child(6) .modal {
  transform-origin: center right;
}

.bucket-item:nth-child(7) .active, .bucket-item:nth-child(7) .modal {
  transform-origin: bottom left;
}

.bucket-item:nth-child(8) .active, .bucket-item:nth-child(8) .modal {
  transform-origin: bottom center;
}

.bucket-item:nth-child(9) .active, .bucket-item:nth-child(9) .modal {
  transform-origin: bottom right;
}




/* STEPS */

#steps {
  padding: 0px 20px;
  border-bottom: 50px solid var(--light-gray);
}

#steps .wrap {
  max-width: 1500px;
}

.step {
  display: flex;
  position: relative;
  margin: 100px 0px;
  justify-content: center;
  align-items: center;
}

.steps-title {
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  color: var(--mid-brown);
  font-weight: bold;
  text-align: center;
  font-size: 35px;
  margin-right: 20px;
  margin-bottom: 0px;
}

.step-num {
  color: var(--brown);
  font-size: 200px;
  font-weight: bold;
  margin-right: 40px;
}

.step p {
  font-size: 25px;
  color: var(--brown);
  margin: 0px;
  line-height: 47px;
}




/* CTA */


#cta {
  padding: 40px 20px;
}

#cta .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
}

#cta .ita-link {
  margin: initial;
}

#cta .wrap::before, #cta .wrap::after {
  content: none;
}

.cta-title {
  color: var(--brown);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  margin: 0px;
  padding-right: 50px;
}




/* CLIENTS */

#clients {
  background: var(--light-gray);
  padding: 50px 20px;
}

.client-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 50px;
  text-align: center;
}

#clients p {
  text-align: center;
}





/* CONTACT US */

#contact {
  padding: 50px 20px;
}

#contact .wrap {
  display: flex;
}

.contact-left {
  width: 60%;
  position: relative;
}

#contact iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}

.contact-right {
  width: 40%;
  padding: 50px;
}

.contact-title {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--brown);
}

.contact-right a[href^="tel:"]::before {
  content: "\f525";
  font-family: 'Dashicons';
  margin-right: 20px;
}

.contact-right a[href^="mailto:"]::before {
 content: "\f465";
  font-family: 'Dashicons';
  margin-right: 20px;
}

.contact-right ul {
  padding-bottom: 20px;
}

.contact-right li {
  margin: 20px 0px;
}

.contact-right li a {
  color: var(--brown);
  font-size: 20px;
}


/* ================================================================= */
/* MEDIA QUERIES =================================================== */

@media(max-width: 1300px) {
    #hero {
        margin-top: -216.6px;
    }

    .hero-title {
        margin-top: 216.6px;
    }

    .ita-left, .ita-right {
      width: 50%;
    }

    .step p {
      font-size: 25px;
    }

    .cta-title {
      font-size: 30px;
    }

    .contact-title {
      font-size: 40px;
    }

    .contact-left, .contact-right {
      width: 50%;
    }
}

@media(max-width: 1024px) {
    #hero {
        height: 700px;
        margin-top: -228px;
    }

    .hero-title {
        margin-top: 228px;
    }

    .hero-title {
        font-size: 50px;
    }

  .ita-title {
    font-size: 35px;
  }

  .ita-right ul li {
    font-size: 25px;
  }

  .ita-link {
    font-size: 20px;
  }

  #cta .wrap {
    flex-direction: column;
  }

  .cta-title {
    padding: 0px;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media(max-width: 960px) {

    .hero-title {
        font-size: 40px;
    }

    .hero-services {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .hero-services a {
        width: calc(50% - 40px);
        margin: 20px;
    }

    .hero-services img {
        height: 50px;
        width: 50px;
    }
    
    .hero-services a:nth-child(odd) {
        margin-left: 0px;
        transform-origin: left;
    }

     .hero-services a:nth-child(even) {
        margin-right: 0px;
         transform-origin: right;
    }

  #ita .wrap {
    flex-direction: column;
  }

  .ita-left, .ita-right {
    width: 100%;
    padding: 0px;
  }

  .ita-right {
    padding-top: 30px;
  }

  #buckets {
    overflow: hidden;
    border-top: 20px solid white;
  }

  #buckets .background {
    background-image: none;
  }

  #buckets .background img {
    display: block;
  }

  .bucket-link {
    font-size: 16px;
  }

  .modal, .active {
    transform-origin: bottom center!important;
  }

    .modal {
    position: fixed;
      transform: translatey(100%);
  }

  .active {
    transform: translatey(0%);
  }

  .modal-content {
    height: auto;
    margin: 0px 20px;
    border-radius: 24px 24px 0px 0px;
  }

  .content-content {
    max-height: 350px;
  }

  .modal-content p {
    font-size: 18px;
    line-height: initial;
  }

  .services-title {
    font-size: 35px;
  }

  .services-intro {
    font-size: 18px;
  }

  .bucket-title {
    font-size: 18px;
  }

  .bucket-item {
    padding: 30px 20px;
  }

  .step {
    margin: 50px 0px;
  }

  .step-num {
    font-size: 100px;
    margin-right: 20px;
  }

  .steps-title {
    font-size: 25px;
  }
  
  .step p {
    font-size: 20px;
    line-height: initial;
  }

  .client-title {
    font-size: 35px;
  }

  #contact .wrap {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
  }

  .contact-left {
    height: 300px;
  }

  .contact-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}

@media(max-width: 650px) {
    #hero {
        margin-top: 0px;
        height: auto;
    }

    .hero-title {
        margin: 60px 20px;
        font-size: 30px;
    }
    
    .hero-services a {
        margin: 0px;
        width: 50%;
    }

    .hero-services:hover a {
        transform: none;
    }

    .hero-services a:hover {
        transform: none;
    }

    .hero-services a:nth-child(2), .hero-services a:nth-child(3) {
        background: rgba(200, 196, 193, .7);
    }

    .hero-services a:nth-child(2):hover, .hero-services a:nth-child(3):hover {
        background: rgba(200, 196, 193, 1);
    }
}

@media(max-width: 500px) {

    .hero-title {
        font-size: 25px;
    }
    
    .hero-services a {
        width: 100%;
    }

    .hero-services a:nth-child(odd) {
        background: rgba(200, 196, 193, .7);
    }

    .hero-services a:nth-child(odd):hover {
        background: rgba(200, 196, 193, 1);
    }

    .hero-services a:nth-child(even) {
        background: rgba(126, 100, 83, .7);
    }

    .hero-services a:nth-child(even):hover {
        background: rgba(126, 100, 83, 1);
    }

  .ita-title {
    font-size: 25px;
  }

  .ita-right ul li {
    margin: 20px;
    font-size: 18px;
  }

  .ita-link {
    font-size: 16px;
  }

  #ita {
    padding: 20px;
  }

  .bucket-item {
    width: calc(50% - 0px);
  }

  .bucket-item img {
    height: 50px;
  }

  .steps-title {
    margin-right: 10px;
  }

  .step-num {
    font-size: 80px;
    margin-right: 10px;
  }
  
  .step p {
    font-size: 16px;
  }
  
  .cta-title {
    font-size: 25px;
  }

  .client-title {
    font-size: 25px;
  }

  .contact-title {
    font-size: 25px;
  }

  .contact-right li a {
    font-size: 20px;
  }

}