/* 
- Font sizes: (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

/*******************/
/******HEADER*******/
/*******************/
.overview-header {
  /* background-image: linear-gradient(
      rgba(39, 55, 77, 0.17),
      rgba(39, 55, 77, 0.17)
    ),
    url('../img/hero-bg/bg1-cp.JPG'); */
  background-size: cover;
  transition: background-image 1s;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.hero {
  background-color: rgba(39, 55, 77, 0.8);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  max-width: 40%;
}

.hero-header {
  margin-top: 8rem;
}

.hero--text-box {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 5.2rem;
}

.hero-text {
  margin-top: 3.2rem;
  font-size: 2.4rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 2.4rem;
  margin-top: 5.2rem;
  justify-content: flex-end;
  padding-right: 5.2rem;
}

.btn {
  transition: all 0.3s;
}

.hero-btns .btn:hover {
  background-color: #141c27;
}

.btn-realization {
  background-color: #526d82;
  padding: 1.6rem 2.4rem;
}

.btn-offert {
  background-color: #27374d;
  padding: 1.6rem 4.4rem;
}

/*************************/
/******TESTIMONIALS*******/
/*************************/
.section-testimonials {
  margin-top: 4.4rem;
}

.trusted-us {
  text-align: center;
  font-size: 1.6rem;
  color: #a0a0a0;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.75px;
}

.clients-logo {
  margin-top: 4.4rem;
  display: flex;
  gap: 4.4rem;
  height: 8rem;
  justify-content: space-around;
}

.client-logo {
  filter: saturate(0);
  opacity: 60%;
}

/*********************/
/******COMPANY*******/
/********************/
.section-company {
  margin-top: 3.2rem;
  padding-top: 9.4rem;
}

.company-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.2rem;
  width: 90%;
  margin: 7.4rem auto 0 auto;
  z-index: 5;
}

.info-detail {
  background-color: #dde6ed;
  color: #27374d;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 6.4rem 4.4rem 9.6rem 4.4rem;
  border-radius: 3px;
  box-shadow: 0 0 7px 5px rgba(3, 3, 3, 0.2);
}

.info-icon {
  font-size: 9.6rem;
}

.info-name {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2.4rem;
}

.info-description {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}

/*************************/
/******REALIZATIONS*******/
/*************************/
.section-realizations {
  margin-top: 7.2rem;
  padding-top: 9.4rem;
  position: relative;
}
.realizations-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 4.4rem;
  row-gap: 12.8rem;
  margin-top: 4.4rem;
}

.realization-img {
  width: 100%;
  box-shadow: 0 0 7px 5px rgba(3, 3, 3, 0.2);
  border-radius: 3px;
}

.realization-img {
  grid-column: span 4;
}

.realization-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 4.4rem;
}

.realization-desc .third-header {
  margin-bottom: 2.4rem;
}

.realization-desc {
  grid-column: span 2;
}

.btn--see-realization {
  background-color: #526d82;
  padding: 1.6rem 2.4rem;
  display: block;
  width: 50%;
  text-align: center;
  margin: 3.2rem auto;
  transition: all 0.3s;
}

.btn--see-morerealizations {
  background-color: #526d82;
  padding: 1.6rem 2.4rem;
  margin: 9.6rem auto 0 auto;
  display: block;
  text-align: center;
  width: 35rem;
  transition: all 0.3s;
}

.section-realizations .btn:hover {
  background-color: #141c27;
}

/********************/
/******OFFERT*******/
/*******************/
.section-offert {
  margin-top: 7.2rem;
  padding-top: 9.4rem;
}

.offert-details {
  font-size: 2.4rem;
  text-transform: none;
  padding: 2.4rem;
}
/********************/
/******CONTACT*******/
/********************/
.section-contact {
  margin-top: 7.2rem;
  padding-top: 9.4rem;
  position: relative;
  padding-bottom: 15.8rem;
}

.contact-panel {
  width: 85%;
  box-shadow: 0 0 7px 5px rgba(3, 3, 3, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  margin: 4.4rem auto 0 auto;
}

.contact--left-col {
  padding: 3.2rem;
  background-color: rgba(157, 178, 191, 0.25);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20rem auto;
  justify-items: center;
}

#full-name {
  display: none;
}

.contact--right-col {
  padding: 3.2rem;
  background-color: rgba(157, 178, 191, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20rem auto;
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-contact {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9db2bf;
  color: #9db2bf;
  font-size: 2.4rem;
  padding: 1.2rem 0.6rem;
}

.input-contact::placeholder {
  color: #526d82;
  opacity: 1; /* Firefox */
}

.textarea-contact {
  display: block;
  width: 100%;
  height: 20rem;
  color: #526d82;
  font-size: 2.4rem;
  background-color: #dde6ed;
  border: none;
  padding: 1.2rem 0.6rem;
  margin-top: 1.6rem;
}

.textarea-contact::placeholder {
  color: #526d82;
  opacity: 1; /* Firefox */
}

.input-submit {
  background-color: #526d82;
  color: #dde6ed;
  border: none;
  width: 100%;
  font-size: 2.4rem;
  padding: 1.6rem;
  cursor: pointer;
  transition: all 0.3s;
}

.input-submit:hover {
  background-color: #27374d;
}

.contact-header {
  font-size: 4.4rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #dde6ed;
  margin-bottom: 2rem;
  align-self: end;
}

.contact-logo {
  filter: brightness(100%);
  opacity: 70%;
  height: 17.8rem;
  margin-bottom: 2rem;
}

.contact-box {
  width: 100%;
}

.contact-element {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  position: relative;
  padding-bottom: 0.4rem;
  padding-left: 5.2rem;
  margin-top: 1.6rem;
}

.icon-contact {
  color: #9db2bf;
  font-size: 3.2rem;
  position: absolute;
  left: 0;
  bottom: 0.4rem;
}

.ph-clock {
  top: 25px !important;
}

.contact--sub-info {
  color: #9db2bf;
  font-size: 1.6rem;
}

.contact--main-info,
.contact--main-info:link,
.contact--main-info:visited {
  font-size: 2.4rem;
  color: #dde6ed;
  text-decoration: none;
}

.last-contact {
  display: flex;
  flex-direction: column;
}

.openhours {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
  flex: 0;
  color: #dde6ed;
  width: 100%;
}

.crane-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -10;
  opacity: 20%;
}

.construction-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 20%;
  object-fit: cover;
}

/* MAPA */
#map {
  height: 30rem;
  position: relative;
}

.make-route {
  position: absolute;
  z-index: 10000;
  font-size: 4.4rem;
  width: 100%;
  height: 100%;
}

.make-route a:link,
.make-route a:visited {
  background-color: rgba(39, 55, 77, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #dde6ed;
  flex-direction: column;
  gap: 0;
}

.make-route a span {
  display: flex;
  align-items: flex-end;
}

/******************/
/******LOGIN*******/
/******************/
.primary--header-auth {
  font-size: 4.4rem;
  color: #9db2bf;
  margin-bottom: 4.4rem;
  text-align: center;
}

.login-form,
.new--password-form,
.forgot--password-form {
  margin: 12.8rem auto;
  display: flex;
  flex-direction: column;
  width: 50rem;
  padding: 9.6rem 4.4rem;
  background-color: #141c27;
  box-shadow: 0 0 13px 5px rgba(3, 3, 3, 0.2);
}

.label {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}

.input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9db2bf;
  color: #9db2bf;
  font-size: 2.4rem;
  padding: 1.2rem 0.6rem;
}

.input--submit-auth {
  margin-top: 3.2rem;
  font-size: 2.4rem;
  background-color: #526d82;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 2rem 2.4rem;
}

.input--submit-auth:hover {
  background-color: #27374d;
}

.forgot--password-btn:link,
.forgot--password-btn:visited {
  font-size: 1.6rem;
  margin-top: 2.4rem;
  text-align: right;
  color: #9db2bf;
}

/******************/
/******ERROR*******/
/******************/
.error-box {
  max-width: 60rem;
  background-color: #141c27;
  margin: 12.8rem auto;
  padding: 3.2rem;
}

.error-text {
  margin: 0 auto;
  width: 100%;
}

.error--login-btn:link,
.error--login-btn:visited {
  padding: 1.2rem;
  background-color: #27374d;
  text-align: center;
  margin: 3.2rem auto 0 auto;
  display: block;
}

.error--login-btn:hover,
.error--login-btn:active {
  background-color: #526d82;
}

.error-box .text {
  text-align: center;
}
