/**************************/
/* HERO IMAGE FULL SCREEN */
/**************************/
.header {
  height: 80vh;
  overflow: hidden;
  background-image: linear-gradient(
      90deg,
      rgba(234, 234, 236, 0.0001),
      rgba(234, 234, 236, 0.95)
    ),
    url(../img/hero/hero.jpeg);
  background-size: cover;

  position: relative;
}

/**************************/
/* HEADER*/
/**************************/
.topbar {
  display: flex;
  /* background-color: rgba(234, 234, 244, 0.25); */
  background-color: rgba(234, 234, 236, 0.25);
  justify-content: space-between;
  align-items: center;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
}

.company {
  display: flex;
  align-items: center;
}

.company-logo {
  height: 7.4rem;
}

.company-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #13123a;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #2b2d42;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;

  color: #fff;
  background-color: #f2ab26;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #2b2d42;
}

/* sticky navigation */
.sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .hero-section {
  margin-top: 9.6rem;
}

/* MOBILE NAVIGATION */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

/* selecting with attribute name */
.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/**************************/
/* HERO TITLE, DESCRIPTION */
/**************************/

.hero-section {
  font-weight: 500;
  color: #333;
  padding: 4.8rem 0 9.6rem 0;
  min-height: 80vh;
  margin: 0 auto;
  max-width: 130rem;
  display: grid;
  align-items: stretch;
  justify-content: center;
  align-content: center;
  grid-template-columns: 1fr 1fr;
}

.hero-text-box {
  grid-row: 1/2;
  grid-column: 2/3;
  padding: 2rem;
}

.hero-description {
  color: #13123a;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

/**************************/
/* WE OFFER */
/**************************/
.section-we-offer {
  padding: 4.8rem 0 4.8rem 0;
}

.grid-we-offer {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr 4fr;
  margin-bottom: 4.8rem;

  /* margin-bottom: 9.6rem; */
}

.we-offer-text {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: flex-end;
  justify-content: center;

  color: #13123a;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  padding-right: 2.2rem;

  border-right: 2px solid #f2ab26;
}

.we-offer-text p {
  white-space: nowrap;
}

.service-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

.carousel {
  padding: 0 3rem;
}

.owl-dots {
  text-align: center;
  margin-top: 4rem;
}
.owl-dot {
  height: 1.2rem;
  width: 1.2rem;
  margin: 0 5px;
  outline: none;
  border-radius: 50%;
  border: 2px solid #2b2d42 !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.owl-dot.active,
.owl-dot:hover {
  background: #2b2d42 !important;
}

.services {
  /* box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.075); */

  overflow: hidden;
  transition: all 0.4s;
}

.services:hover {
  transform: translateY(-1.2rem);
  /* box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06); */
}

.services-content {
  padding-top: 2rem;
}

.services-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.services-img {
  width: 100%;
  height: 20rem;
}

.services-details {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* WHO WE ARE */
/**************************/

.section-who-we-are {
  padding: 9.6rem 0;
}

.who-we-are-container {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 3.2rem;
}

.who-image {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.who-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

.who-image-box {
  position: relative;
}

.our-mission-box {
  outline: 2px solid white;
  outline-offset: -8px;
  display: block;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translate(-10%, -50%);
  width: 55%;
  background-color: #f2ab26;
  padding: 2rem;
  color: #2b2d42;
}

.our-mission-box:hover {
  background-color: #da9a22;
}

.our-mission {
  display: block;
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
  font-weight: 700;
}

.mission-description {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.icon {
  height: 9.6rem;
  width: 9.6rem;
  padding: 0.8rem;
}

/**************************/
/* WHY */
/**************************/

.section-why-us {
  padding: 4.8rem 0 9.6rem 0;
}

.why-us-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
}

.why-text-box {
  color: white;
  padding: 1.8rem;
  margin-top: 10rem;
  width: 100%;
  background-color: #2b2d42;
  grid-row: 1/3;
  grid-column: 1/3;
  z-index: 1;
}

.why-us-header {
  margin-top: 3.2rem;
  border-left: 0.8rem solid #f2ab26;
}
.why-us-header-inner {
  padding-left: 2rem;
}

.why-image {
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.why-us-highlights {
  padding: 6.4rem 0;
  background-color: #f2ab26;
  color: #2b2d42;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
}

.why-image-box {
  grid-row: 1/2;
  grid-column: 2/4;
}

.why-blank {
  padding: 5rem;
  background-color: #f2ab26;
  grid-row: 2/3;
  grid-column: 3/4;
  z-index: 1;
}

.numbers {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.below-numbers {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.8rem;
}

.heading-secondary-why {
  color: #f2ab26;
}

.why-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3.8rem;
}

/**************************/
/* PROJECTS */
/**************************/

.section-projects {
  padding: 9.6rem 0;
}

.filters-list {
  background-color: #eff4f5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  list-style: none;
  text-align: center;
  margin: 0 1.6rem 1.8rem 1.6rem;
}

.filters-link:link,
.filters-link:visited {
  display: block;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 2.4rem;
}

.filters-link:hover,
.filters-link:active {
    
}

.active:link,
.active:visited {
  background-color: #2b2d42;
  /* color: #f2ab26; */
  color: #fff;
}

.active:hover,
.active:active {
  
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.4s;

  backface-visibility: hidden;
}

.gallery .gallery-item.show {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.gallery .gallery-item.hide {
  display: none;
}

.project-info {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}

.gallery-item:hover .project-info {
  opacity: 1;
}

.text {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  color: black;
  font-size: 1.6rem;
  padding: 1rem;
  line-height: 1;
  text-align: center;
  padding: 2.4rem 0;
}

/**************************/
/* CONTACT US */
/**************************/

.section-contact-us {
  padding: 4.8rem 0 9.6rem 0;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  background-image: url(/img/hero/background.jpg);
  background-size: cover;
  border-top: 0.5px solid #aaabb3;
}

.logo {
  height: 7.4rem;
}

.grid--footer {
  grid-template-columns: 1.5fr 2fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: block;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin-bottom: 1.2rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #2b2d42;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #f1a415;
}

#thank-you-message {
  visibility: hidden;
}
