@charset "UTF-8";
/*** ----- FONTS  ----- ***/
/*  
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
/*


/*** ----- COLORS  ----- ***/
/*** ----- GENERAL STYLES  ----- ***/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  color: #2a2b2c;
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5em;
  color: #2a2b2c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.modal-active {
  overflow-y: hidden;
}

p {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 0.6em;
  color: #2a2b2c;
  font-weight: 200;
  letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Flex", sans-serif;
  color: #111111;
}

h1 {
  font-size: 3.1rem;
  line-height: 1.1em;
}
h1.front {
  font-size: 3.1rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2em;
}

h3 {
  font-size: 2rem;
  line-height: 1.3em;
}

h4 {
  font-size: 1.8rem;
  line-height: 1.3em;
}

h5 {
  font-size: 1.65rem;
  line-height: 1.3em;
}

img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: 0.25s ease;
  color: #c76a00;
}
a:hover {
  color: #FF6D2D;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.small-title {
  position: relative;
  color: #FF6D2D;
  font-size: 2rem;
  margin-bottom: 5rem;
  max-width: 500px;
  line-height: 1.3em;
  display: inline-block;
}
.small-title::after {
  content: "";
  position: absolute;
  right: -210px;
  top: 50%;
  width: 200px;
  height: 1px;
  background-color: #FFD6C4;
}

.container {
  max-width: 1446px;
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.container-fluid {
  max-width: 1600px;
}

.no-margin {
  margin: 0;
}

.red-clr {
  color: red;
}

.bold {
  font-weight: 700;
}

/*** ----- Single PAGE and POST  ----- ***/
.page-single,
.post-single,
.page-blog {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

/*  
######  Sections  ###### 
*/
section {
  padding: 4rem 0;
}
section h2 {
  font-weight: 300;
  font-size: 4.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  line-height: 1em;
}
section .section-subtitle {
  font-size: 2.6rem;
  color: #9C9C9C;
  font-weight: 200;
  padding-left: 6px;
  margin-bottom: 4rem;
}

.full-w-section {
  padding: 3rem 0;
}
.full-w-section.img-background {
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 1000;
}
header .main-menu {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 0 50px 50px 0;
  /* ===== MENU ===== */
  /* ===== DESKTOP STYLE ===== */
  /* ===== MOBILE STYLE ===== */
}
header .main-menu .header-logo {
  display: flex;
  align-items: center;
  max-width: 300px;
  transition: height 0.3s ease;
  transition: 0.3s all ease;
}
header .main-menu :root {
  --menu-bg: #fff;
  --menu-color: #111;
}
header .main-menu nav {
  transition: all 0.4s ease;
}
header .main-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0 80px 0 15px;
  background-color: transparent;
  border-radius: 10px;
}
header .main-menu nav ul li {
  font-size: 18px;
  cursor: pointer;
  padding: 12px 10px;
  position: relative;
}
header .main-menu nav ul li:hover > ul.sub-menu {
  opacity: 1;
  max-height: 500px;
  transform: translateY(12px);
}
header .main-menu nav ul li a {
  color: #111 !important;
  font-size: 1.9rem;
  font-weight: 700;
}
header .main-menu nav ul li a:hover {
  color: #FF6D2D !important;
}
header .main-menu ul.sub-menu {
  position: absolute;
  left: 0;
  z-index: 111111;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, max-height 0.4s ease-out, transform 0.4s ease-out;
  margin-top: 0;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0 0 10px 10px;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 769px) {
  header .main-menu nav {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
    background: transparent;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  header .main-menu nav.open {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  header .main-menu nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.85);
  }
  header .main-menu nav ul li {
    color: #000;
    transition: color 0.2s ease;
  }
  header .main-menu nav ul li:hover {
    color: #555;
  }
}
@media (max-width: 768px) {
  header .main-menu nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    flex-direction: column;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  header .main-menu nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  header .main-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  header .main-menu nav ul li {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
  }
  header .main-menu nav.open ul li.show {
    opacity: 1;
    transform: translateY(0);
  }
}
header .menu-icon {
  align-items: center;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  border-radius: 50%;
  transition: all 0.2s ease;
}
header .menu-icon img {
  width: 70%;
  height: 70%;
  margin: auto;
}
header.scrolled {
  padding: 2rem 2rem;
  background: rgba(255, 255, 255, 0.85);
}
header.scrolled .main-menu .header-logo {
  max-width: 220px;
}
header.page-header {
  background: #fff;
}

.menu-icon-close {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  opacity: 0.6;
  z-index: 1000;
  cursor: pointer;
}
.menu-icon-close:hover {
  opacity: 1;
}
.menu-icon-close::before, .menu-icon-close::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #111;
}
.menu-icon-close::before {
  transform: rotate(45deg);
}
.menu-icon-close::after {
  transform: rotate(-45deg);
}

#overlay-mobile {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.6s ease;
  pointer-events: none;
  height: 100%;
}
#overlay-mobile.show-overlay {
  left: 72%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hero-section {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.hero-section .hero-content {
  position: absolute;
  bottom: 40%;
  transform: translate(-30%, 50%);
  left: calc(30% + 2.5rem);
  width: 100%;
  padding-right: 4rem;
  max-width: 1000px;
  z-index: 1;
}
.hero-section .hero-content::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 65vh;
  border: 14px solid rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  left: -4.2rem;
  pointer-events: none;
}
.hero-section .hero-content .small-title {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  line-height: 1.3em;
  z-index: 1;
}
.hero-section .hero-content .subtitle {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  max-width: 700px;
  line-height: 1.3em;
  z-index: 1;
}
.hero-section .hero-content h1 {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 8rem;
  text-align: left;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  z-index: 1;
}
.hero-section .hero-content h1 strong {
  font-weight: 700;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  /* Covers bottom half */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
  /* So it doesn’t block clicks */
}
.hero-section.front-hero-section {
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.hero-section.front-hero-section video {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .hero-section.front-hero-section video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-section.front-hero-section video {
    width: auto;
    height: 100%;
  }
}
.hero-section.page-hero-section {
  margin-top: 15rem;
  height: 400px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hero-section.page-hero-section video {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .hero-section.page-hero-section video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-section.page-hero-section video {
    width: auto;
    height: 100%;
  }
}
.hero-section.page-hero-section .hero-content {
  position: relative;
  bottom: 2rem;
  left: 0;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  transform: none;
}
.hero-section.page-hero-section .hero-content h1 {
  color: #fff;
  font-weight: 500;
  font-size: 5rem;
  text-align: left;
  margin-bottom: 1.8rem;
}
.hero-section.page-hero-section .hero-content h1 strong {
  font-weight: 700;
}
.hero-section.page-hero-section .hero-content .hero-subtitle p {
  color: #fff;
  max-width: 800px;
}

.cta-sect.cta-sect-1 {
  padding: 6rem 0;
}
.cta-sect.cta-sect-1 H2 {
  font-family: "Roboto Flex", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 5.6rem;
  line-height: 5.9rem;
  margin-bottom: 3rem;
}
.cta-sect.cta-sect-1 p {
  font-family: "Roboto Flex", sans-serif;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}
.cta-sect.cta-sect-1 p.txt-lg {
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
}
.cta-sect.cta-sect-1 .cta-button {
  width: 100%;
  margin-top: 4rem;
}
.cta-sect.cta-sect-1 .cta-button a {
  margin: 0.5rem auto 2rem auto !important;
}

.newsl-sect.newsl-sect-1 {
  padding: 6rem 0;
}
.newsl-sect.newsl-sect-1 H2 {
  font-family: "Roboto Flex", sans-serif;
  text-align: center;
  font-size: 5.6rem;
  line-height: 5.9rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
.newsl-sect.newsl-sect-1 p {
  font-family: "Roboto Flex", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #909090;
}
.newsl-sect.newsl-sect-1 p.txt-lg {
  text-transform: uppercase;
}
.newsl-sect.newsl-sect-1 .cta-button {
  width: 100%;
  margin-top: 4rem;
}
.newsl-sect.newsl-sect-1 .cta-button a {
  margin: 0.5rem auto 2rem auto !important;
}

.ft-spc {
  height: 4rem;
  width: 100%;
}

footer {
  margin-top: auto;
  padding: 3rem 0 0 0;
}
footer .footer-widgets .footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}
footer .footer-widgets .footer-logo img {
  max-width: 300px;
}
footer .footer-widgets .vertical-spacer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  max-height: 190px;
  width: 1px;
  background-color: #FFD6C4;
}
footer.footer-three {
  padding-top: 8rem;
  color: #111111;
  font-size: 1.7rem;
  line-height: 1.7em;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 5rem;
}
footer.footer-three .footer-widget-title {
  font-size: 5.3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 4rem;
}
footer.footer-three .footer-widget-title span {
  color: #FF6D2D;
  font-weight: 600;
}
footer.footer-three .footer-menu {
  margin-bottom: 3.5rem;
}
footer.footer-three p {
  color: #E6E6E6;
  font-size: 1.5rem;
}
footer.footer-three a {
  color: #E6E6E6;
}
footer.footer-three a:hover {
  color: #ffaa83 !important;
}
footer.footer-three .about-us-short {
  margin: 0 auto 6rem auto;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.4em;
  font-weight: 300;
  max-width: 1000px;
}
footer.footer-three .footer-social {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  margin-right: auto;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
footer.footer-three .footer-social .icon {
  opacity: 0.7;
  margin: 0 1rem 1rem 1rem;
  height: 3rem;
  width: auto;
  transition: all 0.2s ease;
}
footer.footer-three .footer-social .icon:first-child {
  margin-left: 0;
}
footer.footer-three .footer-social .icon img {
  width: auto;
  height: 100%;
}
footer.footer-three .footer-social .icon:hover {
  opacity: 1;
}
footer.footer-three .footer-company-details .footer-widget-title {
  text-align: left;
}
footer.footer-three .footer-company-details ul li {
  font-weight: 300;
  text-align: left;
  font-size: 2.2rem;
  line-height: 1.5em;
}
footer.footer-three .footer-company-details ul li.big {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.copyright-copy {
  background: #fff;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.3px;
  color: #5e5e5e;
  width: 100%;
  border-top: 1px solid #e7e7e7;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.copyright-copy a {
  color: #000000 !important;
  font-weight: 600;
}
.copyright-copy a:hover {
  color: #ffaa83 !important;
}
.copyright-copy .legal-stuff-menu ul {
  display: flex;
}
.copyright-copy .legal-stuff-menu ul li a {
  margin-right: 2rem;
}

.featured-image {
  margin-bottom: 30px;
}

.post-category {
  margin-bottom: 10px;
}

.post-date {
  margin-bottom: 10px;
}

h2.wp-block-heading {
  padding-top: 6rem;
  margin-bottom: 2rem;
  font-size: 5rem;
  line-height: 1em;
}

.wp-block-columns {
  margin-bottom: 8rem;
}

.breadcrumbs {
  z-index: 1;
  margin-bottom: 3rem;
}
.breadcrumbs p {
  color: #fff;
  font-weight: 400;
}
.breadcrumbs p a {
  color: #fff;
  font-weight: 700;
}
.breadcrumbs p a:hover {
  color: #ddba6d;
}

.section-link {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  justify-content: flex-end;
}
.section-link p {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 1rem 0 0;
}
.section-link img {
  width: 32px;
}

.section-about-us {
  position: relative;
  overflow: visible;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.section-about-us .about-us-logo {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
}
.section-about-us .about-us-logo img {
  max-width: 420px;
}
.section-about-us .about-us-text {
  padding-top: 6rem;
}
.section-about-us .about-us-text p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-about-us .about-us-text p.quote-paragraph {
  font-size: 3.1rem;
  line-height: 1.2em;
}
.section-about-us .cta-button {
  margin-top: 4rem;
}
.section-about-us::after {
  position: absolute;
  content: "";
  top: -100px;
  right: 0;
  background-image: url(../../assets/images/bg-shape01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 492px;
  height: 581px;
}

.section-our-mission {
  display: flex;
  align-items: center;
}
.section-our-mission .our-mission-content {
  position: relative;
  margin-left: -160px;
  background-color: #fff;
  padding: 8rem;
  height: 98%;
  box-shadow: 4px 4px 11px 2px rgba(107, 107, 107, 0.1);
}
.section-our-mission .our-mission-content .small-title {
  margin-bottom: 3rem;
}
.section-our-mission .our-mission-content h2 {
  margin-bottom: 3.5rem;
}
.section-our-mission .our-mission-content .text-item {
  margin-bottom: 3rem;
  padding-left: 35px;
}
.section-our-mission .our-mission-content .text-item .text-item-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.section-our-mission .our-mission-content .text-item .text-item-title::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -35px;
  width: 25px;
  height: 15px;
  background-image: url(../../assets/images/bullet-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.section-our-mission .our-mission-content .text-item:last-child {
  margin-bottom: 0;
}

.section-our-values .values-item {
  display: flex;
  justify-content: center;
  padding: 0 6rem;
  position: relative;
}
.section-our-values .values-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #FFD6C4;
}
.section-our-values .values-item:last-child::after {
  display: none;
}
.section-our-values .values-item .icon {
  margin-right: 2rem;
  height: 6rem;
}
.section-our-values .values-item .icon img {
  height: 100%;
  width: auto;
}
.section-our-values .values-item .content .title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-our-team .team-card .team-card-item .image {
  position: relative;
}
.section-our-team .team-card .team-card-item .image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  /* Covers bottom half */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
  /* So it doesn’t block clicks */
}
.section-our-team .team-card .team-card-item .card-content {
  position: absolute;
  bottom: 3.5rem;
  left: 5.5rem;
}
.section-our-team .team-card .team-card-item .card-content .text01 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}
.section-our-team .team-card .team-card-item .card-content .text02 {
  font-size: 1.6rem;
  color: #fff;
}

.section-contact-us {
  padding-top: 6rem;
  padding-bottom: 0;
  background-color: #141414;
  position: relative;
}
.section-contact-us h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 5.3rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
.section-contact-us h2 span {
  font-weight: 300;
  color: #FF6D2D;
}
.section-contact-us .map {
  height: 100%;
}
.section-contact-us .map iframe {
  position: absolute;
  left: 0;
  padding-right: 3rem;
}

form .ff-btn-submit {
  font-family: "Roboto Flex", sans-serif !important;
  color: #fff !important;
  text-align: center !important;
  font-size: 1.8rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  background-color: #FF6D2D !important;
  border: 1px solid #FF6D2D !important;
  border-radius: 0 !important;
  padding: 18px 30px 14px 30px !important;
  margin: 10px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  line-height: 1em !important;
}
form .ff-btn-submit:hover {
  color: #FF6D2D !important;
  background-color: #fff !important;
}

.ff-el-form-control {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

.card {
  box-shadow: 0px 10px 23px 0px rgba(77, 77, 77, 0.15);
  overflow: hidden;
  padding-bottom: 25px;
  position: relative;
  padding-bottom: 80px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.card.rnd-corners {
  border-radius: 8px;
}
.card .card-image {
  margin-bottom: 2rem;
  height: auto;
  position: relative;
  overflow: hidden;
  max-height: 287px;
}
.card .card-image img {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}
.card .card-title {
  font-family: "Roboto Flex", sans-serif;
  color: #111111;
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: 700;
  padding: 0 2.3rem 0 2.3rem;
  margin-bottom: 1.3rem;
  transition: all 0.3s ease;
}
.card .card-content {
  padding: 0 2.3rem 0 2.3rem;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #2a2b2c;
  transition: all 0.3s ease;
}
.card .card-read-more {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #848e99;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  right: 2.6rem;
}
.card.card-1 {
  padding: 0;
  position: relative;
}
.card.card-1 .card-image {
  overflow: visible;
  height: 100%;
  margin: 0;
  max-height: 100%;
}
.card.card-1 .card-image img {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}
.card.card-1 .card-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 2, 16, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.card.card-1:hover .overlay {
  opacity: 1;
}
.card.card-1 .card-content {
  z-index: 10;
  position: absolute;
  color: #fff;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  margin: 0;
  padding: 2rem 8rem 1rem 3rem;
}
.card.card-1 .card-content .card-info,
.card.card-1 .card-content .card-title {
  color: #fff;
  padding: 0;
}
@media (min-width: 992px) {
  .card.card-1 .card-image {
    height: 100%;
  }
}
.card.card-1 .card-icon-more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #BCABAE;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card.card-1 .card-icon-more img {
  width: 16px;
  height: 16px;
}
.card.card-2 {
  padding: 40px 15px 70px 15px;
}
.card.card-2:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.card.card-2:hover .card-title,
.card.card-2:hover .card-content {
  color: #fff;
}

/* Plus sign */
.plus {
  position: relative;
  width: 50px;
  height: 50px;
}

/* both lines share same base styles */
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translate(-50%, -50%) scaleY(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

/* horizontal line */
.plus::after {
  width: 100%;
  height: 4px;
  transform: translate(-50%, -50%) scaleX(0);
}

/* hover: draw + rotate into X */
.card:hover .plus::before {
  transform: translate(-50%, -50%) scaleY(1) rotate(90deg);
}

.card:hover .plus::after {
  transform: translate(-50%, -50%) scaleX(1) rotate(90deg);
}

.cta-button {
  cursor: pointer;
}
.cta-button a.btn {
  font-family: "Roboto Flex", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 23.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #FF6D2D;
  border: 1px solid #FF6D2D;
  border-radius: 0;
  padding: 17px 60px;
  display: block;
  margin: 15px 0;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 180px;
  text-align: center;
}
.cta-button a.btn:hover {
  color: #FF6D2D;
  background-color: #fff;
}
.cta-button a.btn.ghost {
  color: #fff;
  background-color: #716969;
  border-radius: 0;
  border: 1px solid #fff;
}
.cta-button a.btn.ghost:hover {
  background-color: #ffffff;
  border: 1px solid #353535;
  color: #353535;
}

.hero-content .cta-button {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  /*** ----- GENERAL STYLES  ----- ***/
  h1 {
    font-size: 3.4rem;
    line-height: 1em;
  }
  h1.front {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 2.8rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  section {
    padding: 6rem 0;
  }
  section h2 {
    font-size: 5.3rem;
  }
  .main-menu ul.primary-menu {
    display: flex;
  }
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 187px;
  }
  .card .card-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  /*** ----- Footer  ----- ***/
  footer .footer-widgets .footer-logo {
    justify-content: flex-start;
  }
  footer.footer-three .footer-social {
    margin-top: 4rem;
    justify-content: flex-start;
    height: 3.6rem;
    margin-bottom: 0;
  }
  footer.footer-three .footer-social .icon {
    height: 3.6rem;
  }
  footer.footer-three .footer-social .icon:last-child {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  /*** ----- GENERAL STYLES  ----- ***/
  h1 {
    font-size: 3.8rem;
    line-height: 1em;
  }
  h1.front {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 160px;
  }
}
@media (min-width: 1200px) {
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 195px;
  }
}