/* ******************  STYLES ************** */
/*font-size*/
.text-xxs {
  font-size: 1rem;
} /*16px*/
.text-xs {
  font-size: 1.125rem;
} /*18px*/
.text-sm {
  font-size: 1.25rem;
} /*20px*/
.text-md {
  font-size: 1.5rem;
} /*24px*/
.text-lg {
  font-size: 1.75rem;
} /*28px*/
.text-xl {
  font-size: 2rem;
} /*32px*/
.text-xll {
  font-size: 3rem;
} /*48px*/
.text-xxl {
  font-size: 5.125rem;
} /*82px*/
.text-xxxl {
  font-size: 6rem;
} /*96px*/
.text-xxxxl {
  font-size: 6.875rem;
} /*110px*/
/* CUSTOM STYLES */
.z-index-plus-1 {
  z-index: 1;
}

.z-index-minus-1 {
  z-index: -1;
}

.py-20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.px-20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

/* HEADER */
header .form-search {
  padding: 0.625rem;
  max-width: 780px;
  width: 100%;
  display: flex;
  background-color: white;
}
header .form-search-input {
  border: none;
  background: transparent;
  margin: 0;
  font-size: 1.25rem;
  padding: 7px 8px;
  color: inherit;
  border: 1px solid #E3E9F1;
  border-radius: inherit;
}
header .form-search-input:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
header .header-desc {
  /*  background: linear-gradient(0deg, rgba(0, 0, 0, 0.69), rgba(0, 0, 0, 0.69)), url('../images/img-header/Image-1 1.jpg'); */
  background-image: url("../images/img-header/Image-1 1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15.25rem 0 12.5rem 0;
}

/* BOTTONS */
.btn:active {
  border: none !important;
}

.btn-circle {
  border: none;
  color: white;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-icon-link {
  text-decoration: none;
  color: #FFF;
  transition: 0.3s ease-in;
}
.btn-icon-link:hover {
  color: #FFF !important;
}

/* ICONS */
.icon-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.31rem;
  width: 1.2rem;
  height: 1.2rem;
}
.icon-burger span {
  border-top: 2px solid #FFFFFF;
  margin-bottom: 3px;
  display: block;
  border-radius: 0.31rem;
}
.icon-burger span:first-child {
  width: 100%;
}
.icon-burger span:nth-child(2) {
  width: 70%;
}
.icon-burger span:last-child {
  width: 30%;
}

/* ***********************  MEDIA *********************** */
/* SM */
@media (min-width: 600px) {
  .w-sm-50 {
    width: 50% !important;
  }
}
/* MD */
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
}
/* LG */
@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
}
/* XL */
@media (min-width: 1200px) {
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
}