* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #1a1a1a;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.subtitle {
  margin: 2rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  padding: 0.8rem 2rem;
  line-height: 1;
  transition: all 0.2s;
  border-radius: 0;
  position: relative;
  transform-style: preserve-3d;
}
.btn::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0.9) scaleY(0.9);
  visibility: visible;
  opacity: 1;
  transform: translateZ(-1px);
  top: 0;
  left: 0;
}
.btn:hover {
  transform: scale(1.05);
}
.btn:hover::before {
  animation-name: buttonAnimation;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
@keyframes buttonAnimation {
  0% {
    transform: scaleX(0.9) scaleY(0.9) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
  50% {
    transform: scaleX(1.1) scaleY(1.2) translateZ(-1px);
    visibility: visible;
    opacity: 1;
  }
  100% {
    transform: scaleX(1.2) scaleY(1.4) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
}
.btn i {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn img {
  width: 2rem;
}
.btn--rounded {
  border-radius: 9999px;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--border-white {
  border: 2px solid #fff;
}
.btn--border-white:hover {
  border: 2px solid #fff;
}
.btn--bg-black {
  background-color: #191919;
}
.btn--bg-black:hover {
  background-color: #3f3f3f;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-orange {
  background-color: #ea733d;
}
.btn--bg-orange:hover {
  background-color: #c54c15;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #25292b;
  color: #1a1a1a;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border-bottom: 1px solid #3aac79;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.footer-infos {
  flex: 1;
  padding: 2rem 4rem;
}
@media (max-width: 600px) {
  .footer-infos {
    flex-basis: 100%;
  }
}
.footer-infos__logo img {
  width: 14rem;
  height: auto;
}
@media (max-width: 600px) {
  .footer-infos__logo img {
    display: block;
    margin: auto;
  }
}
.footer-infos__social {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer-infos__social {
    justify-content: center;
  }
}
.footer-infos__social a {
  display: inline-block;
}
.footer-infos__social a i {
  font-size: 3.2rem;
  color: #1a1a1a;
  transition: all 0.2s;
}
.footer-infos__social a:hover i {
  animation: pulse 1s infinite;
}
.footer-infos__item {
  display: inline-block;
  font-weight: 300;
  font-size: 2.4rem;
  color: #1a1a1a;
  position: relative;
}
@media (max-width: 600px) {
  .footer-infos__item {
    width: 100%;
    text-align: center;
  }
}
.footer-infos__item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.3s ease-in;
}
.footer-infos__item:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.footer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  padding: 4rem 2rem;
}
.footer-links__nav {
  margin-bottom: 6rem;
}
@media (max-width: 600px) {
  .footer-links__nav {
    margin-bottom: 0;
  }
}
.footer-links__nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.footer-links__nav ul li a {
  display: inline-block;
  position: relative;
  font-weight: 300;
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: 2.4rem;
  transition: all 0.2s;
}
.footer-links__nav ul li a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.2s;
}
.footer-links__nav ul li a:hover {
  transform: scale(1.05);
}
.footer-links__nav ul li a:hover::after {
  width: 100%;
}
.footer-copyright {
  font-weight: 300;
  text-align: center;
}
@media (max-width: 800px) {
  .footer-copyright {
    display: none;
  }
}
.footer-contact {
  flex: 1;
  padding: 4rem 4rem 4rem 2rem;
  background-color: #363636;
  border-radius: 1.2rem 0 0 1.2rem;
}
@media (max-width: 800px) {
  .footer-contact {
    border-radius: 1.2rem 1.2rem 0 0;
    width: 100%;
    flex: 1;
    flex-basis: 100%;
    padding: 2rem;
  }
}
.footer-contact__heading {
  color: #f7f7f7;
}
.footer-contact__heading span {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 2px;
}
.footer-contact__heading p {
  font-weight: 300;
}
.footer-contact__form label {
  position: absolute;
  left: -999999px;
}
.footer-contact__form input,
.footer-contact__form textarea {
  background-color: transparent;
  border-bottom: 1px solid #fff !important;
  border-radius: 0.4rem;
  color: #fff !important;
}
.footer-contact__form input::placeholder,
.footer-contact__form textarea::placeholder {
  color: #95959f !important;
}
.footer-contact__form .form-submit {
  text-align: right;
}
.footer-contact__form .form-submit button[type=submit] {
  color: #fff;
}
.footer-contact__form .form-submit button[type=submit]:hover {
  transform: scale(1.05);
}
.footer-contact__form .wpcf7 form.invalid .wpcf7-response-output {
  color: #fff;
}
.footer-policy {
  color: #fff;
  font-weight: 300;
}
@media (max-width: 800px) {
  .footer-policy {
    text-align: center;
    margin-top: 2rem;
  }
}
.footer-policy a {
  color: #fff;
}
.footer-policy a:hover {
  text-decoration: underline;
}
.footer-policy span {
  display: none;
}
@media (max-width: 800px) {
  .footer-policy span {
    display: block;
  }
}

.header {
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.05);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-logo {
  padding: 1.5rem 12rem 1.5rem 8rem;
  background-color: #191919;
  position: relative;
}
@media (max-width: 1399px) {
  .header-logo {
    padding: 1.5rem 8rem 1.5rem 4rem;
  }
}
@media (max-width: 1199px) {
  .header-logo {
    padding: 1.5rem 5rem 1.5rem 2.5rem;
  }
}
@media (max-width: 991px) {
  .header-logo {
    flex: 1;
  }
}
.header-logo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  width: 10px;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
}
.header-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  width: 10px;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
}
.header-logo img {
  margin: auto;
  display: block;
  width: 18rem;
  transition: all 0.2s;
  max-width: 100%;
}
.header-main {
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header-main {
    padding: 0 2rem;
  }
}
.header-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 2px;
  height: 100%;
  background-color: #fff;
}
.header-nav {
  z-index: 1;
  flex: 1;
  align-items: center;
  padding: 0 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.header-nav:hover {
  z-index: 3;
}
.header-nav .close-btn {
  background-color: transparent;
  font-size: 2rem;
  border: none;
  color: #1a1a1a;
  pad: 2rem;
  margin: 2rem;
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30rem;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translate(100%);
    transition: all 0.2s;
    overflow: auto;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    z-index: 9999;
  }
}
.header-nav__wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__wrapper {
    position: unset;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1199px) {
  .header-nav__list {
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list {
    border-radius: 0;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
  }
}
.header-nav__list > li > a,
.header-nav__list > li > span > a {
  color: #191919;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  display: inline-block;
}
@media (max-width: 1199px) {
  .header-nav__list > li > a,
  .header-nav__list > li > span > a {
    font-size: 1.4rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li > span > a {
    padding: 0.8rem 2rem;
    font-size: 1.6rem;
  }
}
.header-nav__list > li > a::after,
.header-nav__list > li > span > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: #1a1a1a;
  transition: all 0.1s ease-in;
}
.header-nav__list > li > a:hover::after,
.header-nav__list > li > span > a:hover::after {
  height: 2px;
}
@media (max-width: 991px) {
  .header-nav__list > li > a:hover::after,
  .header-nav__list > li > span > a:hover::after {
    height: 0;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li > a {
    display: block;
    width: 100%;
  }
}
.header-nav__list > li > span {
  display: flex;
}
.header-nav__list > li > span > a {
  flex: 1;
}
.header-nav__list > li > span > button {
  background-color: transparent;
  border: none;
  padding: 0rem 2rem;
}
.header-nav__list > li.highlited > a {
  background-color: #191919;
  color: #fff;
  padding: 0.4rem 2rem;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-nav__list > li.highlited > a {
    padding: 0.8rem 2rem;
    background-color: #fff;
    color: #1a1a1a;
  }
}
.header-nav__list > li.highlited > a:hover {
  background-color: #333333;
}
.header-nav__list > li.highlited > a:hover::after {
  height: 0;
}
@media (max-width: 991px) {
  .header-nav__list > li.active > a,
  .header-nav__list > li.active > span > a {
    background-color: #1a1a1a;
    color: #fff;
  }
}
.header-nav__list > li.active > a::after,
.header-nav__list > li.active > span > a::after {
  height: 2px;
}
@media (max-width: 991px) {
  .header-nav__list > li.active > a::after,
  .header-nav__list > li.active > span > a::after {
    height: 0;
  }
}
.header-nav__list > li.active.highlited > a::after,
.header-nav__list > li.active.highlited > span > a::after {
  height: 2px;
}
@media (max-width: 991px) {
  .header-nav__list > li.active.highlited > a::after,
  .header-nav__list > li.active.highlited > span > a::after {
    height: 0;
  }
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #1a1a1a;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #1a1a1a;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #1a1a1a;
}
.header-search__btn {
  color: #191919;
  background-color: transparent;
  border: none;
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__btn:hover i {
  animation: pulse 1s infinite;
}
.header-search__form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #1a1a1a;
  gap: 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header-search__form.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-search__form input {
  flex: 1;
  border: 1px solid #ececec;
  height: 3.2rem;
  padding: 0 1.2rem;
  transition: all 0.2s;
}
.header-search__form input:focus {
  outline: none;
  box-shadow: 0 0 2px #3aac79;
}
.header-search__form button {
  border: none;
  background-color: #003847;
  color: #fff;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__form button:hover {
  background-color: #00607a;
}
.header-social {
  background-color: #191919;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  gap: 2rem;
}
@media (max-width: 1399px) {
  .header-social {
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 991px) {
  .header-social {
    display: none;
  }
}
.header-social__item {
  color: #fff;
  font-size: 2rem;
}
.header-social__item:hover i {
  animation: pulse 1s infinite;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(25, 25, 25, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  z-index: 9999;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 100vh;
  min-height: 100vh;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
}
.banner-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.45);
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item__content {
  position: relative;
  z-index: 1;
  width: 117rem;
  max-width: 100%;
  margin: auto;
  text-align: center;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-item__content-title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 15.36px;
}
@media (max-width: 767px) {
  .banner-item__content-title {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .banner-item__content-title {
    font-size: 2.4rem;
  }
}
.banner-item__content-subtitle {
  font-weight: 300;
  font-size: 3.2rem;
  letter-spacing: 6.72px;
}
@media (max-width: 767px) {
  .banner-item__content-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .banner-item__content-subtitle {
    font-size: 1.8rem;
  }
}
.banner-item__content .btn {
  font-size: 2.4rem;
  padding: 1.2rem 2rem;
  margin-top: 2rem;
}
.banner-item__content .btn:hover {
  color: #191919;
}
@media (max-width: 575px) {
  .banner-item__content .btn {
    font-size: 1.8rem;
  }
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #1a1a1a !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #010101 !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.cards-title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
  color: #191919;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 2.8rem;
}
@media (max-width: 575px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.2rem;
}
@media (max-width: 575px) {
  .cards-grid--3 {
    grid-template-columns: 1fr;
  }
}
.cards-grid .card-item {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #191919;
  transition: all 0.4s ease-out;
}
.cards-grid .card-item__image {
  display: block;
  aspect-ratio: 16/9;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
  position: relative;
}
.cards-grid .card-item__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.cards-grid .card-item__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
}
.cards-grid .card-item__hover .btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.cards-grid .card-item__name {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
}
@media (max-width: 575px) {
  .cards-grid .card-item__name {
    font-size: 1.8rem;
  }
}
.cards-grid .card-item__name h3,
.cards-grid .card-item__name span {
  display: inline-block;
  text-align: center;
  margin: 0;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .cards-grid .card-item__name h3,
  .cards-grid .card-item__name span {
    font-size: 1.8rem;
  }
}
.cards-grid .card-item__location {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  color: #a2a2a2;
  font-weight: 300;
}
.cards-grid .card-item:hover {
  transform: scale(1.05);
}
.cards-grid .card-item:hover .card-item__hover {
  visibility: visible;
  opacity: 1;
}
.cards-grid .card-item:hover .card-item__hover .btn {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.cards-grid .card-item:hover .card-item__hover .btn:hover {
  transform: scale(1.1);
  background-color: #fff;
  color: #1a1a1a;
}
.cards-cta {
  text-align: center;
  margin-top: 3.2rem;
}
.cards-cta .btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  width: 40rem;
  max-width: 100%;
  letter-spacing: 2px;
}
.cards-cta .btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}
.cards--dark {
  background-color: #1a1a1a;
}
.cards--dark .card-item {
  color: #fff;
}
.cards--dark .card-item__name {
  color: #fff;
}
.cards--dark .cards-title {
  color: #fff;
}
.cards--dark .cards-cta .btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
}
.cards--dark .cards-cta .btn:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.projects-tabs {
  padding: 6rem 0;
}
.projects-tabs__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projects-tabs__heading h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
}
.projects-tabs__heading p {
  text-align: center;
  width: 50rem;
  max-width: 100%;
  margin: auto;
}
.projects-tabs__nav {
  margin-top: 2.4rem;
}
.projects-tabs__nav .nav {
  display: flex;
  gap: 1.2rem;
}
.projects-tabs__nav .nav button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #e3e6e9;
  color: #191919;
  font-weight: 500;
  text-transform: uppercase;
}
.projects-tabs__nav .nav button.active {
  font-weight: 700;
  color: #fff;
  background-color: #003847;
}
.projects-tabs__nav .nav button:hover:not(.active) {
  background-color: #fff;
}
.projects-tabs__items {
  padding: 3.2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .projects-tabs__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .projects-tabs__items {
    grid-template-columns: 1fr;
  }
}
.projects-tabs__item {
  position: relative;
  aspect-ratio: 4/6;
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.4s ease-out;
}
.projects-tabs__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-tabs__item-infos {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(25, 25, 25, 0.66);
  width: 100%;
  box-shadow: 0px -2px 10px 7px rgba(25, 25, 25, 0.66);
}
.projects-tabs__item-infos span {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.4rem;
}
.projects-tabs__item-infos h3 {
  font-weight: 700;
  font-size: 2.4rem;
}
@media (max-width: 575px) {
  .projects-tabs__item-infos h3 {
    font-size: 1.8rem;
  }
}
.projects-tabs__item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
}
.projects-tabs__item-hover .btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.projects-tabs__item:hover {
  transform: scale(1.05);
}
.projects-tabs__item:hover .projects-tabs__item-hover {
  visibility: visible;
  opacity: 1;
}
.projects-tabs__item:hover .projects-tabs__item-hover .btn {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.projects-tabs__item:hover .projects-tabs__item-hover .btn:hover {
  transform: scale(1.1);
  background-color: #fff;
  color: #1a1a1a;
}
.projects-tabs__cta {
  text-align: center;
  margin-top: 3.2rem;
}
.projects-tabs__cta .btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}
.projects-tabs__cta .btn:hover {
  color: #fff;
  background-color: #1a1a1a;
}
.projects-tabs--dark {
  background-color: #1a1a1a;
}
.projects-tabs--dark .projects-tabs__heading {
  color: #fff;
}
.projects-tabs--dark .projects-tabs__cta {
  text-align: center;
  margin-top: 3.2rem;
}
.projects-tabs--dark .projects-tabs__cta .btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
}
.projects-tabs--dark .projects-tabs__cta .btn:hover {
  color: #191919;
  background-color: #fff;
}

.home-projects {
  background-color: #1a1a1a;
  padding-bottom: 6rem;
}
.home-projects .projects-carousel {
  width: 33.3%;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .home-projects .projects-carousel {
    width: 66.67%;
  }
}
.home-projects .projects-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  transition: all 0.2s ease-out;
}
.home-projects .projects-carousel-item img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.home-projects .projects-carousel-item h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.home-projects .projects-carousel-item .player-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}
.home-projects .projects-carousel-item .player-icon i {
  color: #fff;
  font-size: 4rem;
  position: relative;
  left: 3px;
}
.home-projects .projects-carousel-item .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
  padding: 1.2rem 2rem;
}
.home-projects .projects-carousel-item .btn:hover {
  color: #191919;
  background-color: #fff;
}
.home-projects .projects-carousel.owl-carousel .owl-stage-outer {
  overflow: unset !important;
}
.home-projects .projects-carousel.owl-carousel .owl-item .projects-carousel-item {
  opacity: 0.5;
}
.home-projects .projects-carousel.owl-carousel .owl-item.active .projects-carousel-item {
  opacity: 1;
  transform: scale(1.1);
}
.home-projects .projects-carousel.owl-carousel .owl-item.active .projects-carousel-item .player-icon,
.home-projects .projects-carousel.owl-carousel .owl-item.active .projects-carousel-item .btn {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
}
.home-about {
  padding: 6rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .home-about__text {
    margin-bottom: 4rem;
  }
}
.home-about__text .title {
  font-size: 3.2rem;
  font-weight: 200;
}
.home-about__text .title strong {
  font-weight: 600;
  text-transform: uppercase;
}
.home-about__text .btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  gap: 1.2rem;
  padding: 1.2rem 2.8rem;
  margin-top: 2rem;
}
.home-about__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}
.home-about__images-image {
  width: 100%;
}
.home-about__images-ma {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 30rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.58);
}
.home-catalog {
  background-color: #1a1a1a;
}
.home-featured {
  background-color: #1a1a1a;
}
.home-featured__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.2rem;
}
.home-featured__heading h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 575px) {
  .home-featured__heading h2 {
    font-size: 3.2rem;
  }
}
.home-featured__heading p {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
  width: 50rem;
  max-width: 100%;
  margin: auto;
}
.home .cards {
  background-color: #1a1a1a;
  padding-top: 6rem;
}
.home .cards:last-child {
  padding-bottom: 6rem;
}
.home .exclusives-banner {
  padding: 6rem 0;
  background-color: #1a1a1a;
}
.home .exclusives-banner img {
  width: 100%;
}

.about-text {
  padding: 6rem 0;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.about-text__bg {
  position: absolute;
  top: 2rem;
  left: 50%;
  z-index: -1;
  width: 95%;
  transform: translate(-50%);
}
.about-text h1,
.about-text h2,
.about-text h3 {
  font-weight: 700;
}
.about-text ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.about-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 575px) {
  .about-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-images__image {
  width: 100%;
}
.about .cards {
  padding: 6rem 0;
}

.page-404 {
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #1a1a1a;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #1a1a1a;
}
.page-404-main p {
  color: #1a1a1a;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.contact {
  padding: 4rem 0 6rem;
}
.contact-wrapper {
  background-color: #1a1a1a;
}
.contact-heading {
  margin-bottom: 2rem;
}
.contact-heading .title {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #f7f7f7;
}
.contact-form {
  padding-right: 4rem;
}
.contact-form label {
  font-weight: 700;
  position: absolute;
  left: -99999px;
}
.contact-form input:not([type=file], [type=submit]),
.contact-form textarea {
  border: 1px solid #cacaca !important;
  border-radius: 0.8rem !important;
  background-color: #1a1a1a;
  color: #f7f7f7;
}
.contact-form input:not([type=file], [type=submit])::placeholder,
.contact-form textarea::placeholder {
  color: rgba(202, 202, 202, 0.5);
}
.contact-form input:not([type=file], [type=submit]):focus,
.contact-form textarea:focus {
  outline: 0;
  border-bottom: 1px solid #3aac79;
}
@media (max-width: 767px) {
  .contact-form {
    padding-right: 0;
    margin-bottom: 4rem;
  }
}
.contact-form .wpcf7-text, .contact-form textarea, .contact-form select, .contact-form .wpcf7-email {
  border: 1px solid #000;
  width: 100%;
  padding: 1.2rem;
  border-radius: 0;
  font-size: 1.6rem;
}
.contact-form .form-submit {
  text-align: left;
  margin-top: 0;
}
.contact-form .form-submit input {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  color: #003847;
  border: none;
  font-weight: 400;
  padding: 0.8rem 2rem;
  border-radius: 0.8rem;
  transition: all 0.2s ease-out;
}
.contact-form .form-submit input:hover {
  background-color: #d1d1d1;
}
.contact-form .form-check-input {
  width: 2rem;
  height: 2rem;
  border: 1px solid #000;
  margin-right: 1rem;
}
.contact-form textarea {
  height: 180px;
}
.contact-form--button {
  border: none !important;
  margin: 2rem 0 0 0 !important;
  padding: 1rem 3rem !important;
  background-color: #ee0430;
  font-size: 1.6rem !important;
  color: #ffffff !important;
}
.contact-form .form-check {
  padding-left: 0;
}
.contact-form .wpcf7-list-item {
  margin-left: 0;
}
.contact-form .wpcf7-response-output {
  color: #fff;
}
.contact-info {
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    gap: 3rem;
  }
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  font-size: 1.4rem;
  color: #f7f7f7;
}
@media (max-width: 767px) {
  .contact-info__item {
    align-items: center;
  }
}
.contact-info__item i {
  color: #f7f7f7;
  margin-bottom: 1rem;
}
.contact-info__item span {
  font-weight: 700;
  font-size: 1.8rem;
}
.contact-info__item a {
  color: #f7f7f7;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contact-info__item a {
    text-align: center;
  }
}
.contact-info__item--location {
  margin-top: 2rem;
  flex: 100%;
  width: 100%;
}
.contact-social {
  display: block;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.2rem;
}
.contact-social__title {
  color: #f7f7f7;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
}
.contact-social__items {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-social__items {
    gap: 2rem;
  }
}
.contact-social__items a {
  font-size: 2.8rem;
}
.contact-social__items a i {
  color: #f7f7f7;
}
.contact-social__items a:hover i {
  animation: pulse 1s infinite;
}
.contact-partners {
  gap: 6rem;
  padding: 6rem 0;
}
.contact-partners > h3 {
  color: #f7f7f7;
  font-weight: 500;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
.contact-partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
.contact-partners__item img {
  width: 13rem;
  height: auto;
}

.releases {
  padding-top: 6rem;
}
.releases-heading {
  margin-bottom: 4rem;
}
.releases-heading .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
}
.releases .cards {
  padding-bottom: 6rem;
}

.projects {
  padding-top: 6rem;
}
.projects-heading {
  margin-bottom: 4rem;
}
.projects-heading .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
}
.projects .cards {
  padding: 6rem 0;
}
.projects--taxonomy {
  background-color: #1a1a1a;
}
.projects--taxonomy .projects-heading {
  color: #fff;
}

.project {
  background-color: #1a1a1a;
  padding: 6rem 0;
  color: #fff;
}
.project-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}
.project-heading .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.project-heading p {
  font-weight: 300;
}
.project-content {
  display: grid;
  grid-template-columns: calc(100% - 29rem) 1fr;
  padding-top: 3.2rem;
}
@media (max-width: 991px) {
  .project-content {
    grid-template-columns: 1fr;
  }
}
.project-content__description {
  font-weight: 300;
}
.project-content__description strong {
  font-weight: 700;
}
.project-content__infos {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 2rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  .project-content__infos {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.project-content__infos-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .project-content__infos-item {
    align-items: flex-start;
  }
}
.project-content__infos-item span {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.project-content__infos-item p {
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
}
.project-ctas {
  display: flex;
  align-items: center;
  margin-top: 3.2rem;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.project-ctas .btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.project-ctas .btn:last-child:hover {
  background-color: white;
  color: #191919;
}
.project .ms-view {
  background-color: #1a1a1a !important;
}
.project .ms-slide {
  border-radius: 3rem 0 0 3rem !important;
  overflow: hidden;
}
.project .ms-slide img {
  width: calc(100% - 2rem) !important;
  margin-left: 0 !important;
}
.project .ms-thumb-frame img {
  border-radius: 0 3rem 3rem 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project .ms-sbar {
  width: calc(100% - 2rem) !important;
}

.products {
  padding-top: 6rem;
  background-color: #1a1a1a;
}
.products-heading {
  margin-bottom: 4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-heading .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.products .cards {
  padding: 6rem 0;
}
.products .cards-title {
  font-size: 2.4rem;
  font-weight: 700;
}
.products .cards-grid {
  row-gap: 6rem;
}
.products .cards .card-item__cta {
  text-align: center;
}
.products .cards .card-item__cta .btn {
  text-transform: uppercase;
}
.products .cards .card-item__name h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.project {
  background-color: #1a1a1a;
  padding: 6rem 0;
  color: #fff;
}
.project-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}
.project-heading .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.project-heading p {
  font-weight: 300;
}
.project-content {
  display: grid;
  grid-template-columns: calc(100% - 29rem) 1fr;
  padding-top: 3.2rem;
}
@media (max-width: 991px) {
  .project-content {
    grid-template-columns: 1fr;
  }
}
.project-content__description {
  font-weight: 300;
}
.project-content__infos {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 2rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  .project-content__infos {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.project-content__infos-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .project-content__infos-item {
    align-items: flex-start;
  }
}
.project-content__infos-item span {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.project-content__infos-item p {
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
}
.project-ctas {
  display: flex;
  align-items: center;
  margin-top: 3.2rem;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.project-ctas .btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.project-ctas .btn:last-child:hover {
  background-color: white;
  color: #191919;
}
.project .ms-view {
  background-color: #1a1a1a !important;
}
.project .ms-slide {
  border-radius: 3rem 0 0 3rem !important;
  overflow: hidden;
}
.project .ms-slide img {
  width: calc(100% - 2rem) !important;
  margin-left: 0 !important;
}
.project .ms-thumb-frame img {
  border-radius: 0 3rem 3rem 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project .ms-sbar {
  width: calc(100% - 2rem) !important;
}

.blog-archive {
  padding: 6rem 0;
}
.blog-heading {
  margin-bottom: 4rem;
}
.blog-heading .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6rem;
  row-gap: 3.2rem;
}
@media (max-width: 991px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}
.blog-item {
  transition: all 0.4s ease-out;
}
.blog-item__thumb {
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}
.blog-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-item__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  text-align: center;
  color: #353e52;
}
.blog-item__text h3 {
  font-weight: 600;
  font-size: 2rem;
}
.blog-item__text p {
  font-weight: 300;
  font-size: 1.4rem;
}
.blog-item__text .btn {
  background-color: #003847;
  color: #fff;
  text-transform: uppercase;
}
.blog-item:hover {
  transform: scale(1.05);
}

.single-blog {
  padding: 6rem 0;
}
.single-blog .title {
  font-weight: 600;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.search-main {
  padding: 6rem 0;
}
.search-main .cards,
.search-main .blog {
  padding: 6rem 0;
}

.thanks {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #3aac79;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #1a1a1a;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.container {
  max-width: 1170px;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*# sourceMappingURL=main.css.map */
