/* 
==========
Hero
========== 
*/

.services-hero{
    background:var(--silver-color);
    padding:30px 20px;
    text-align:center;
}

.services-hero__container{
    max-width:900px;
    margin:auto;
}

.services-hero__title{
    font-size:42px;
    margin-bottom:20px;
    color: var(--lightskyblue-color);
}

.services-hero__text{
    font-size:18px;
    color:var(--black-color);
}

.services-hero__logo{
    width: 100px;
    display: block;
    margin: 0 auto 20px auto;
}

.services-hero__animate {
    opacity: 0;
    transform: translateY(-50px); 
    transition: all 1s ease;
}

.services-hero__animate--visible {
    opacity: 1;
    transform: translateY(0); 
}

/* 
==========
Styles for services.
==========
*/

.service__image {
    width: 600px;
    height: auto;
}

.container__service__selected{
    width: 100%;
    height: auto;
}

.service{
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
}

.service__container{
    max-width:1100px;
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items:center;
}

.service--reverse .service__container{
    direction:rtl;
}

.service__content{
    width: 500px;
    height: auto;
}

.service__image img{
    width:100%;
    border-radius:5px;
}

.service__title{
    font-size:32px;
    margin-bottom:15px;
    color: var(--lightskyblue-color);
}

.service__text{
    margin-bottom:20px;
    color: var(--black-color);
}

.more__information{
    width: 100%;
    height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
}

.reveal,
.reveal-left,
.reveal-right{
opacity:0;
transition:all .9s ease;
}

.reveal{
transform:translateY(60px);
}

.reveal-left{
transform:translateX(-60px);
}

.reveal-right{
transform:translateX(60px);
}

.active{
opacity:1;
transform:translate(0);
}

.service__selected{
    width: 100%;
    height: auto;
}

/*
==========
Styles for form budget.
==========
*/

.contact{
    background: var(--white-color);
    padding:80px 20px;
}

.contact__container{
    max-width:1100px;
    margin:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap:1em;
}

.contact__info{
    width: 100%;
    height: auto;
}

.contact__title{
    font-size:36px;
    margin-bottom:15px;
    color: var(--lightskyblue-color);
    text-align: center;
}

.contact__text{
    margin-bottom:20px;
    text-align: center;
}

.contact__list li{
    margin-bottom:10px;
    list-style: none;
    display: flex;
    gap: 1em;
}

.contact__list li i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
}

.contact__list li i svg{
    width: 100%;
    height: 100%;
    fill: var(--lightskyblue-color);
}

/* 
==========
Form
==========
*/

.contact__form-box {
    width: 100%;
    max-width: 500px;
    background: var(--silver-color);
    padding: 30px;
    border-radius: 5px;
    margin: auto;
}

.form__group{
    margin-bottom:15px;
}

.container__photo__budgets{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container__photo__budgets img{
    width: 170px;
    height: auto;
}

.form__group input,
.form__group textarea{
    width:100%;
    padding:12px;
    border:1px solid var(--grey-color);
    border-radius:5px;
}

.service__button {
    width: 100%;
    padding: .5em;
    background: var(--lightskyblue-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.indicator__date{
    margin-bottom: 5px;
}

.service__button:hover {
    opacity: 0.8;
}

.container__input__file{
    width: max-content;
    border: none;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out .3s;
    cursor: pointer;
    padding: 1em;
}

.container__input__file:hover{
    opacity: .5;
    transition: all ease-in-out .3s;
}

.container__input__file .input__image{
    display: none;
}

.container__input__file label .icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.container__input__file label .icon svg{
    width: 100%;
    height: 100%;
    fill: var(--lightskyblue-color);
}

.select__image__label {
    display: inline-flex;
    color: var(--black-color);
    cursor: pointer;
}

.select__image__label span {
    margin-left: 10px;
}

/*
==========
Styles for workflow
==========
*/

.workflow {
  width: 100%;
  padding-top: 3em;
  padding-bottom: 7em;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--silver-color);
}

.workflow__container {
  max-width: 1200px;
  margin: 0 auto;
}

.workflow__title {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--lightskyblue-color);
  text-align: center;
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.workflow__step {
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px var(--black-color-transparent);
  transition: all 0.4s ease;
  cursor: pointer;
}

.workflow__number {
  width: 65px;
  height: 65px;
  background: var(--lightskyblue-color);
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.workflow__step-title {
  margin: 10px 0;
  font-size: 25px;
  transition: color 0.3s ease;
  color: var(--black-color);
}

.workflow__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black-color);
  transition: color 0.3s ease;
}

.workflow__step:hover {
  background: var(--lightskyblue-color);
}

.workflow__step:hover .workflow__step-title,
.workflow__step:hover .workflow__text {
  color: var(--white-color);
}

.workflow__step:hover .workflow__number {
  background: var(--white-color);
  color: var(--lightskyblue-color);
}

/*
==========
Animations
==========
*/

.workflow__animate {
  opacity: 0;
  transition: all 0.8s ease;
}

.workflow__animate--left {
  transform: translateX(-60px);
}

.workflow__animate--right {
  transform: translateX(60px);
}

.workflow__animate--visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .workflow__animate--left,
  .workflow__animate--right {
    transform: translateY(40px);
  }

  .workflow__animate--visible {
    transform: translateY(0);
  }

  .workflow__steps {
    grid-template-columns: 1fr;
  }
}
