@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap);
body {
  font-family: "Montserrat", sans-serif;
}

.form-custom-control {
  background: #FCFAFA;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  outline: none;
  border-radius: 6px;
}

.btn-custom {
  background: #787676;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  font-size: 24px;
  line-height: 29px;
  color: white;
}

header#site-header .logo-container {
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
header#site-header .logo-container img {
  width: 450px;
}
@media (max-width: 992px) {
  header#site-header .logo-container {
    display: none;
  }
}
header#site-header .navbar {
  font-family: "Raleway", sans-serif;
  background-color: black !important;
  font-weight: bold;
  color: white;
}
header#site-header .navbar .nav-link {
  color: white;
}
header#site-header .navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
header#site-header .navbar .navbar-toggler {
  border-color: white;
  border: none;
}
header#site-header .navbar .dropdown-menu {
  font-size: 12px;
}
header#site-header .navbar .dropdown-menu .col-md-4 {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  header#site-header .navbar {
    background-color: #F6F2E9 !important;
    font-size: 18px;
  }
  header#site-header .navbar .nav-link {
    color: black;
    padding: 0.25rem 15px;
  }
  header#site-header .navbar .navbar-brand {
    display: none;
  }
  header#site-header .navbar .nav-item.active .nav-link {
    border-bottom: 5px black solid;
  }
  header#site-header .navbar .nav-item.dropdown .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    min-width: 992px;
    font-size: 12px;
  }
}

footer {
  background-color: #8C8888;
  padding: 15px 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
footer .mail a {
  font-weight: bold;
  color: white;
  text-decoration: none;
}
footer .social-media {
  display: flex;
}
footer .social-media a {
  margin: 0 7.5px;
}
@media (max-width: 992px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer .mail, footer .social-media, footer .all-rights-reserved {
    margin: 10px 0;
  }
}

.owl-carousel .item {
  position: relative;
  overflow: hidden;
}
.owl-carousel .item img {
  -o-object-fit: cover;
     object-fit: cover;
}
.owl-carousel .item .slogan {
  position: absolute;
  color: white;
  z-index: 10;
  top: 50%;
  font-size: 64px;
  font-weight: bold;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.owl-carousel .item::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: unset;
}
.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover {
  background-color: transparent !important;
}
.owl-carousel .owl-nav .owl-next {
  right: 100px;
}
.owl-carousel .owl-nav .owl-prev {
  left: 100px;
}
@media (max-width: 992px) {
  .owl-carousel .item .slogan {
    font-size: 16px;
  }
  .owl-carousel .owl-dots {
    bottom: 10px;
  }
  .owl-carousel .owl-nav {
    height: 20px;
    padding: 0 !important;
    margin: 0 !important;
  }
  .owl-carousel .owl-nav .arrow {
    height: 20px;
  }
  .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    padding: 0 !important;
    margin: 0 !important;
  }
  .owl-carousel .owl-nav .owl-next {
    right: 15px;
  }
  .owl-carousel .owl-nav .owl-prev {
    left: 15px;
  }
}

.answers.gray {
  background-color: #787676;
}
.answers.gray .answer::after {
  background-color: #A8A4A4;
}
.answers.red {
  background-color: #5A1818;
}
.answers.red .answer::after {
  background-color: #884D4D;
}
.answers .answers-title {
  font-weight: bold;
  font-size: 48px;
  letter-spacing: 45px;
  text-align: center;
  color: white;
  padding: 20px;
}
@media (max-width: 992px) {
  .answers .answers-title {
    font-size: 24px;
    letter-spacing: 22px;
  }
}
.answers .answers-container {
  padding: 0;
  margin: 0;
}
.answers .answer {
  position: relative;
  padding: 0;
  margin: 0;
}
.answers .answer img {
  width: 100%;
}
.answers .answer .answer-box {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.answers .answer .answer-box .answers-desc {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}
.answers .answer .answer-box .answers-detail {
  font-size: 14px;
  padding: 10px 20px;
  border: 1px white solid;
  color: white;
  text-decoration: none;
}
.answers .answer::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 5;
}

.why {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}
.why .big-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 4rem;
}
.why .why-inner {
  width: 1200px;
}
.why .box {
  padding: 20px;
  background: #F6F2E9;
  box-shadow: 4px 4px 23px 1px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  min-height: 450px;
}
.why .box .head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
.why .box .head img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.why .box .head .title {
  margin-bottom: 0;
  margin-left: 30px;
  font-size: 28px;
}
.why .box .desc {
  padding: 15px 0;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 1200px) {
  .why .box {
    min-height: auto;
  }
  .why .why-inner {
    width: 90%;
  }
}

.footer-contact {
  background-color: #F6F2E9;
  padding: 30px 0;
}
.footer-contact .row, .footer-contact .row .call, .footer-contact .row form {
  margin: 0;
  padding: 0;
}
.footer-contact .form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-contact .form .form-inner {
  max-width: 75%;
}
.footer-contact .call img {
  width: 100%;
}
@media (max-width: 992px) {
  .footer-contact .call img {
    width: 90%;
  }
  .footer-contact .form .form-inner {
    max-width: 100%;
    padding: 30px;
  }
}

section.contact #map {
  width: 100%;
  height: 750px;
  border: none;
  filter: drop-shadow(6px 7px 4px rgba(0, 0, 0, 0.25));
}
section.contact .title {
  font-size: 32px;
  line-height: 59px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.525em;
}
section.contact .address {
  color: #C9C5C5;
}
section.contact .infos-box .info {
  margin-bottom: 7px;
  color: #8C8888;
  font-weight: bold;
  font-style: italic;
  line-height: 20px;
}
section.contact .infos-box .info img {
  height: 20px;
}

section.about .item {
  position: relative;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 4px 6px 7px rgba(0, 0, 0, 0.4);
}
section.about .item:hover .desc {
  height: 300px;
  opacity: 1;
}
section.about .item .desc {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s all ease-in-out;
}
section.about .item img {
  width: 100%;
}
section.about .item .text-box {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  z-index: 10;
}
section.about .item .text-box .title {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
}
section.about .item::after {
  z-index: 5;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
}
@media (max-width: 992px) {
  section.about .item {
    margin-bottom: 25px;
  }
  section.about .item .text-box {
    top: 50%;
    transform: translateY(-50%);
  }
  section.about .item img {
    max-height: 600px;
  }
  section.about .item .desc {
    height: auto;
    opacity: 1;
    overflow: auto;
  }
  section.about .item:hover .desc {
    height: auto;
    overflow: auto;
  }
}

section.special-page-1 .image-container {
  position: relative;
}
section.special-page-1 .image-container .image {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
section.special-page-1 .image-container .title {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: bold;
  color: white;
  z-index: 10;
  margin: 0;
  line-height: 158%;
}
section.special-page-1 .image-container::after {
  z-index: 5;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 20px;
  opacity: 0.5;
}
@media (max-width: 992px) {
  section.special-page-1 .image-container .image {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  section.special-page-1 .image-container .title {
    text-align: center;
  }
  section.special-page-1 .image-container .text-container {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  section.special-page-1 .text-container {
    padding: 20px 0;
  }
}

section.sectors .sector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
section.sectors .sector .bg-image {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.sectors .sector .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-align: center;
  z-index: 10;
}
section.sectors .sector::after {
  z-index: 5;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 20px;
  opacity: 0.5;
}
