@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  min-height: 100%;
  box-sizing: border-box;
  line-height: 1;
  background-color: black;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*********************************
        REUSABLE STYLING
**********************************/
/****************
      COLORS
*****************/
/****************
   FONT SIZES
*****************/
/****************
   FONT STYLES
*****************/
.content-heavy-body {
  line-height: 25px;
  font-weight: 400;
  font-size: clamp(0.8rem, 0.76rem + 0.2667vw, 1rem);
  line-height: clamp(1.2rem, 1.04rem + 1.0667vw, 2rem);
  text-align: justify;
}

.md-content-header {
  font-weight: normal;
  font-size: 72px;
  line-height: 88px;
}

.sm-content-header {
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
}

.lg-content-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 35px;
}

.lg-thin-content-header {
  font-weight: 300;
  letter-spacing: 0.1em;
}

/****************
 HEADER STYLING
*****************/
/********************
   CONTAINERS SIZES
*********************/
.section {
  position: relative;
  width: 100%;
}

.section-content-wrapper {
  max-width: 1440px;
  padding: 60px 20px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-content-wrapper {
    padding: 100px;
  }
}
.section-title {
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
  background-color: #ce8105;
  color: white;
  letter-spacing: 0.15em;
  font-weight: 300;
  font-size: clamp(0.8rem, 0.7rem + 0.6667vw, 1.3rem);
  padding: 10px;
}

.learn-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ce8105;
  border-radius: 30px;
  padding: 15px;
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
  margin-top: 30px;
}
.learn-more-link a {
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.next-section-arrow {
  margin: 80px auto 0 auto;
  display: flex;
  justify-content: center;
}

/********************
       NAVBAR 
*********************/
.header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 3;
  /* menu */
  /* menu btn */
}
.header .header-width-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: black;
}
.header li a {
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  padding: 10px;
  font-weight: 300;
  display: block;
  text-decoration: none;
}
.header .current-page {
  font-weight: 700;
}
.header .logo-container {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}
.header .logo-container .logo {
  width: 100px;
}
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
.header .menu-icon .nav-icon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.header .menu-icon .nav-icon:before,
.header .menu-icon .nav-icon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.header .menu-icon .nav-icon:before {
  top: 5px;
}
.header .menu-icon .nav-icon:after {
  top: -5px;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

.navbar-color-change {
  animation: navbar-color-change-animation 2s;
}

@keyframes navbar-color-change-animation {
  from {
    background-color: transparent;
  }
  to {
    background-color: black;
  }
}

/* 48em = 768px @ 16pt font */
@media (min-width: 48em) {
  .header ul {
    background-color: transparent;
  }
  .header li {
    float: left;
  }
  .header li a {
    padding: 30px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
/****************
  HERO STYLING
*****************/
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  will-change: opacity;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.hero-container .hero-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: white;
  text-align: center;
  max-width: 1440px;
  height: 100%;
  padding: 0px 30px;
  animation: fade-bottom 1s;
}
.hero-container .hero-content-wrap .small-hero-header-text {
  font-size: clamp(1rem, 0.9194rem + 0.6452vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 5px;
}
.hero-container .hero-content-wrap .hero-header-text {
  margin-top: 0px;
  font-size: clamp(1.7rem, 1.329rem + 2.9677vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
}
.hero-container .hero-center-arrow {
  padding: 10px 0px;
}
@media (min-width: 1024px) {
  .hero-container .hero-content-wrap .small-hero-header-text {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 5px;
  }
  .hero-container .hero-content-wrap .hero-header-text {
    margin-top: 0px;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
  }
}
@media (min-height: 650px) {
  .hero-container .hero-center-arrow {
    padding: 50px 0px;
  }
}
@media (min-height: 750px) {
  .hero-container .hero-center-arrow {
    padding: 70px 0px;
  }
}
@media (min-height: 800px) {
  .hero-container .hero-center-arrow {
    padding: 100px 0px;
  }
}
@media (min-height: 1000px) {
  .hero-container .hero-center-arrow {
    padding: 200px 0px;
  }
}

/*********************************
        HOME PAGE STYLING
**********************************/
/*********************
  HOME HERO STYLING
**********************/
.home-hero-section {
  background-image: url(/ASSETS/hero/home.jpg) !important;
  background-size: cover;
  background-position: center;
}

/*********************
  HOME ABOUT-US STYLING
**********************/
.home-about-section .home-about-text-container {
  max-width: 800px;
}
.home-about-section .home-about-text-container p {
  color: white;
}
.home-about-section .about-section-facts-wrapper {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 100%;
  background: #e9e9e9;
  border-radius: 20px;
  margin-top: 80px;
}
.home-about-section .about-section-facts-wrapper .about-section-facts-wrapper-divider {
  display: flex;
  flex: 1;
}
.home-about-section .about-section-facts-wrapper .about-section-individual-fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.home-about-section .about-section-facts-wrapper .about-section-individual-fact svg {
  margin: 0 0 15px 0;
  height: 30%;
}
.home-about-section .about-section-facts-wrapper .about-section-individual-fact h3 {
  font-size: 2.9rem;
  font-weight: 500;
  color: #ce8105;
  margin: 0 0 20px 0;
  height: 40%;
}
.home-about-section .about-section-facts-wrapper .about-section-individual-fact p {
  font-size: 0.7rem;
  font-weight: 400;
  color: #000000;
  margin: 0;
  text-align: center;
  height: 30%;
}
@media (min-width: 200px) {
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact h3 {
    font-size: 2rem;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact p {
    font-size: 0.6rem;
  }
}
@media (min-width: 375px) {
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact h3 {
    font-size: 3rem;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact p {
    font-size: 0.9rem;
  }
}
@media (min-width: 425px) {
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact h3 {
    font-size: 3rem;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact p {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .home-about-section .home-about-text-container p {
    font-size: 1.2rem;
  }
  .home-about-section .about-section-facts-wrapper {
    margin-top: 80px;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact {
    padding: 15px;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact svg {
    margin: 0 0 15px 0;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact h3 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .home-about-section .about-section-facts-wrapper {
    flex-direction: row;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact {
    height: 300px;
    padding: 30px;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact svg {
    margin: 0 0 10px 0;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact h3 {
    font-size: 3.5rem;
    margin: 0 0 0 0;
  }
  .home-about-section .about-section-facts-wrapper .about-section-individual-fact p {
    font-size: 1.2rem;
    margin-top: 0px;
  }
}

/*********************
  HOME WHAT-WE-DO STYLING
**********************/
.home-what-we-do-section {
  background-color: #ffffff;
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-image-wrapper svg {
  margin: 0 auto;
  height: 80%;
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-text-container {
  margin-top: 50px;
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-text-container h1 {
  padding: 10px;
  align-self: flex-start;
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-text-container h2 {
  color: #2a2a2a;
  align-self: flex-start;
  font-size: clamp(2.5rem, 1.5rem + 5.7143vw, 4rem);
  line-height: clamp(2.5rem, 1.5rem + 5.7143vw, 4rem);
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-text-container hr {
  color: #2a2a2a;
  width: 100%;
}
.home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-text-container p {
  color: #2a2a2a;
  align-self: flex-start;
  max-width: 600px;
}
@media (min-width: 1200px) {
  .home-what-we-do-section .home-what-we-do-content-wrapper {
    display: flex;
    gap: 200px;
  }
  .home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-image-wrapper svg {
    height: 80%;
  }
  .home-what-we-do-section .home-what-we-do-content-wrapper .home-what-we-do-text-container h2 {
    font-weight: normal;
  }
}

/*********************************
        ABOUT PAGE STYLING
**********************************/
/*********************
  ABOUT HERO STYLING
**********************/
.about-hero-section {
  background-image: url(/ASSETS/hero/about.jpg) !important;
  background-size: cover;
  background-position: center;
}

/*********************
  ABOUT OURSTORY STYLING
**********************/
.about-ourstory-section .about-ourstory-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin-left: auto;
}
.about-ourstory-section .about-ourstory-text-wrapper .year-header {
  color: #ce8105;
  align-self: flex-end;
  margin-bottom: 0;
  font-size: 6rem;
  line-height: 0px;
  margin-bottom: 50px;
}
.about-ourstory-section .about-ourstory-text-wrapper .section-title {
  align-self: flex-start;
  background-color: rgba(233, 174, 80, 0.3);
}
.about-ourstory-section .about-ourstory-text-wrapper p {
  color: white;
}
.about-ourstory-section .about-ourstory-text-wrapper hr {
  color: white;
  width: 100%;
}
@media (min-width: 425px) {
  .about-ourstory-section .about-ourstory-text-wrapper .year-header {
    margin-bottom: 0;
    font-size: 8rem;
    line-height: 0px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .about-ourstory-section .about-ourstory-text-wrapper .year-header {
    margin-bottom: 0;
    font-size: 12rem;
    line-height: 0px;
    margin-bottom: 50px;
  }
}

/*********************
  ABOUT OURVALUES STYLING
**********************/
.about-ourvalues-section {
  background-color: #e9e9e9;
  overflow-y: clip;
  position: relative;
}
.about-ourvalues-section .about-ourvalues-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: 50px;
  max-width: 700px;
}
.about-ourvalues-section .about-ourvalues-text-wrapper h1 {
  align-self: flex-start;
}
.about-ourvalues-section .about-ourvalues-text-wrapper h3 {
  font-size: clamp(2.5rem, 1.5rem + 5.7143vw, 4rem);
  line-height: clamp(2.5rem, 1.5rem + 5.7143vw, 4rem);
  color: #2a2a2a;
  align-self: flex-start;
  padding-bottom: 0;
  margin-bottom: 0;
}
.about-ourvalues-section .about-ourvalues-text-wrapper hr {
  color: #2a2a2a;
  width: 100%;
}
.about-ourvalues-section .about-ourvalues-text-wrapper p {
  color: #2a2a2a;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .about-ourvalues-section .about-ourvalues-text-wrapper h3 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .about-ourvalues-section .about-ourvalues-text-wrapper p {
    color: #2a2a2a;
    align-self: flex-start;
  }
}
@media (min-width: 1024px) {
  .about-ourvalues-section .about-ourvalues-text-wrapper h3 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .about-ourvalues-section .about-ourvalues-text-wrapper p {
    color: #2a2a2a;
    align-self: flex-start;
  }
}

.about-ourvalues-section::before {
  content: "";
  background-image: url(/ASSETS/other/crane.png);
  background-size: cover;
  height: 100%;
  max-width: 400px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.1;
}

/*********************************
  ABOUT OURACCREDITATIONS STYLING
**********************************/
.about-our-accreditations-section .swiffy-slider {
  margin-top: 50px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-our-accreditations-section .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 500px;
  padding: 10px;
  color: white;
}
.about-our-accreditations-section .card img {
  padding: 10px;
  border-radius: 5px;
  height: 15%;
  width: 100%;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
  background-color: #e9e9e9;
}
.about-our-accreditations-section .card hr {
  border: 1px solid rgba(233, 174, 80, 0.3);
  width: 100%;
  margin: 0;
  align-self: flex-start;
}
.about-our-accreditations-section .card h2 {
  align-self: flex-start;
  font-weight: 500;
  font-size: clamp(0.8rem, 0.66rem + 0.9333vw, 1.2rem);
  line-height: clamp(0.8rem, 0.66rem + 0.9333vw, 1.2rem);
}
.about-our-accreditations-section .card p {
  overflow-y: scroll;
  font-weight: normal;
  font-size: clamp(0.5rem, 0.4rem + 0.6667vw, 1rem);
  line-height: clamp(0.6rem, 0.44rem + 1.0667vw, 1.4rem);
}

/*********************************
        SERVICES PAGE STYLING
**********************************/
/*********************
  SERVICES HERO STYLING
**********************/
.services-hero-section {
  background-image: url(/ASSETS/hero/services.jpg) !important;
  background-size: cover;
  background-position: center;
}

/******************************
 SERVICES  OUR SERVICES STYLING
*******************************/
.services-ourservices-section .section-title {
  background-color: rgba(233, 174, 80, 0.3);
  margin: 0 auto;
}
.services-ourservices-section .services-catalog-wrapper {
  margin-top: 50px;
}
.services-ourservices-section .services-catalog-wrapper .service-selection-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 5px;
}
.services-ourservices-section .services-catalog-wrapper .service-selection-wrapper input {
  visibility: hidden;
  width: 0;
}
.services-ourservices-section .services-catalog-wrapper .service-selection-wrapper label {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.9rem, 0.8rem + 0.6667vw, 1.4rem);
  transition: 0.1s;
  font-weight: 400;
}
.services-ourservices-section .services-catalog-wrapper .service-selection-wrapper input:checked + label {
  font-weight: 400;
  color: white;
  transform: scale(1.2);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(233, 174, 80, 0.3);
}
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .financing-description,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .logistics-description,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .trade-description {
  display: none;
}
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .financing-description p,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .logistics-description p,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .trade-description p {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin: 0px auto;
}
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .financing-description hr,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .logistics-description hr,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .trade-description hr {
  display: none;
  margin: 0 auto;
  border: 0.2px solid rgba(233, 174, 80, 0.3);
  align-self: center;
}
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .financing-description .service-description-illustration,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .logistics-description .service-description-illustration,
.services-ourservices-section .services-catalog-wrapper .service-description-wrapper .trade-description .service-description-illustration {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 400px;
  height: 250px;
  width: 80%;
  margin: 0px auto 0px auto;
}
@media (min-width: 756px) {
  .services-ourservices-section .section-title {
    background-color: rgba(233, 174, 80, 0.3);
  }
  .services-ourservices-section .services-catalog-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 20%;
    margin: 30px 0 clamp(3rem, -2.5263rem + 11.6959vw, 8rem) 0;
  }
  .services-ourservices-section .services-catalog-wrapper .service-selection-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 100px;
  }
  .services-ourservices-section .services-catalog-wrapper .service-description-wrapper {
    width: clamp(25rem, 22.5rem + 16.6667vw, 37.5rem);
    height: 400px;
  }
}

/******************************
 SERVICES  OUR CATALOG STYLING
*******************************/
.services-catalog-section {
  background-color: #e9e9e9;
}
.services-catalog-section .section-title {
  margin: 0 auto;
}
.services-catalog-section .md-content-header {
  color: black;
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
  margin: 0 auto;
  font-size: clamp(2.5rem, 1.5rem + 5.7143vw, 4rem);
  line-height: clamp(2.5rem, 1.5rem + 5.7143vw, 4rem);
}
.services-catalog-section .catalog {
  margin-top: 40px;
  display: block;
}
.services-catalog-section .catalog .materials {
  display: flex;
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  margin-bottom: 20px;
}
.services-catalog-section .catalog .materials .material-container {
  display: inline-flex;
  white-space: nowrap;
  margin: 0px 10px;
}
.services-catalog-section .catalog .materials .material-container input {
  visibility: hidden;
  width: 0;
}
.services-catalog-section .catalog .materials .material-container label {
  font-size: 24px;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
}
.services-catalog-section .catalog .materials .material-container input:checked + label {
  font-weight: 600;
  color: black;
}
.services-catalog-section .catalog .products-list-container {
  display: block;
  height: 600px;
}
.services-catalog-section .catalog .products-list-container img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.services-catalog-section .catalog .products-list-container div {
  display: none;
}
.services-catalog-section .catalog .products-list-container ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.services-catalog-section .catalog .products-list-container ul li {
  float: left;
  padding: 20px;
}
.services-catalog-section .catalog .products-list-container ul li p {
  display: block;
  text-align: center;
}
.services-catalog-section .catalog .products-list-container ul p::before {
  content: "•";
  color: #ce8105;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
@media only screen and (min-width: 1024px) {
  .services-catalog-section .catalog {
    display: flex;
    max-width: 1200px;
    height: 550px;
    margin: 50px auto 0 auto;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 10px;
  }
  .services-catalog-section .catalog .materials {
    display: block;
    max-width: 200px;
    height: 100%;
    margin-bottom: 0;
    border-right: 1px solid black;
  }
  .services-catalog-section .catalog .materials .material-container {
    display: flex;
    height: 55px;
    overflow-y: hidden;
  }
  .services-catalog-section .catalog .materials .material-container input {
    visibility: hidden;
    width: 0;
  }
  .services-catalog-section .catalog .materials .material-container label {
    font-size: 24px;
    position: relative;
    color: rgba(0, 0, 0, 0.5);
  }
  .services-catalog-section .catalog .materials .material-container input:checked + label {
    font-weight: 600;
    color: black;
    border-bottom: 1px solid #ce8105;
    width: 100%;
  }
  .services-catalog-section .catalog .products-list-container {
    display: block;
    flex: 1;
  }
  .services-catalog-section .catalog .products-list-container img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .services-catalog-section .catalog .products-list-container div {
    display: none;
  }
  .services-catalog-section .catalog .products-list-container ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
  }
  .services-catalog-section .catalog .products-list-container ul li {
    float: left;
    padding: 20px;
  }
  .services-catalog-section .catalog .products-list-container ul li p {
    display: block;
    text-align: center;
    font-size: 1rem;
  }
  .services-catalog-section .catalog .products-list-container ul p::before {
    content: "•";
    color: #ce8105;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
}

/*********************************
        CONTACT PAGE STYLING
**********************************/
/****************
CONTACT/ CONTACT FORM STYLING
*****************/
.contact-form-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-form-section .text-wrapper {
  max-width: 600px;
  width: 100%;
  padding: 60px 40px 10px 40px;
}
.contact-form-section .text-wrapper .section-title {
  padding: 10px;
  background-color: rgba(233, 174, 80, 0.3);
}
.contact-form-section .text-wrapper h2 {
  color: white;
}
.contact-form-section .form-container {
  max-width: 800px;
  width: 100%;
  padding: 25px 40px 10px 40px;
}
.contact-form-section .form-container form {
  padding: 30px 0 0 0 0;
}
.contact-form-section .form-container form input,
.contact-form-section .form-container form textarea {
  outline: none;
  color: white;
}
.contact-form-section .form-container form .form-row {
  display: flex;
  margin: 32px 0;
  justify-content: center;
}
.contact-form-section .form-container form .form-row .input-data {
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}
.contact-form-section .form-container form .form-row .input-data label {
  position: absolute;
  bottom: 10px;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  color: white;
}
.contact-form-section .form-container form .form-row .input-data input {
  background: transparent;
}
.contact-form-section .form-container form .form-row .input-data input:focus ~ label,
.contact-form-section .form-container form .form-row .input-data input:valid ~ label {
  transform: translateY(-25px);
  color: #ce8105;
  font-size: 14px;
}
.contact-form-section .form-container form .form-row .textarea {
  height: 70px;
}
.contact-form-section .form-container form .form-row .textarea textarea {
  resize: none;
  padding-top: 10px;
  background: transparent;
}
.contact-form-section .form-container form .form-row .textarea textarea:focus ~ label,
.contact-form-section .form-container form .form-row .textarea textarea:valid ~ label {
  transform: translateY(-25px);
  color: #ce8105;
  font-size: 14px;
}
.contact-form-section .form-container form .form-row .textarea label {
  width: 100%;
  bottom: 40px;
}
.contact-form-section .form-container form .form-row .input-data input,
.contact-form-section .form-container form .form-row .textarea textarea {
  display: block;
  height: 100%;
  width: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(233, 174, 80, 0.3);
}
.contact-form-section .form-container form .form-row .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #ce8105;
}
.contact-form-section .form-container form .form-row .button-wrapper button {
  border: none;
  color: whitesmoke;
  background: transparent;
}
@media (max-width: 700px) {
  .contact-form-section .form-container form {
    padding: 10px 0 0 0 0;
  }
  .contact-form-section .form-container form .form-row {
    display: block;
  }
  .contact-form-section .form-container form .form-row .input-data {
    margin: 35px 0 !important;
  }
}

.form-submision-hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-submision-hero .submission-text-container {
  border: 1px solid #ce8105;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  max-width: 500px;
  padding: 20px;
  margin: 0 auto;
}
.form-submision-hero .submission-text-container h1 {
  margin-top: 50px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 24px;
}
.form-submision-hero .submission-text-container p {
  margin-top: 0px;
  font-weight: 200;
  font-size: 12px;
}

/***********************************
CONTACT/ CONTACT INFORMATION STYLING
************************************/
.contact-information-section {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.contact-information-section .box-container {
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap-reverse;
  width: 100%;
  color: #e9e9e9;
}
.contact-information-section .box-container .text-container {
  width: 400px;
  padding-left: 30px;
  margin-top: 15px;
}
.contact-information-section .box-container .text-container h3 {
  font-size: 42px;
}
.contact-information-section .box-container .text-container h4 {
  line-height: 0px;
  color: #ce8105;
}
.contact-information-section .box-container .text-container hr {
  width: 80%;
  margin-left: 0;
  border: 1px solid rgba(233, 174, 80, 0.3);
}
.contact-information-section .box-container .text-container p {
  font-size: 18px;
}
.contact-information-section .box-container .map-wrapper {
  min-width: 250px;
  flex-grow: 1;
  height: 500px;
  padding: 30px;
}
.contact-information-section .box-container .map-wrapper #map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 360px) {
  .contact-information-section .box-container .text-container h3 {
    font-size: 32px;
  }
}

/****************
FOOTER STYLING
*****************/
footer .footer-contact {
  margin-top: 70px;
  color: white;
}
footer .footer-contact .footer-contact-title {
  color: white;
  letter-spacing: 10px;
  line-height: 18px;
  margin-bottom: 20px;
}
footer .footer-contact .footer-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 10px;
  width: 250px;
  border: 1px solid white;
  color: #ce8105;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 5px;
  line-height: 18px;
}
footer .footer-navigation {
  margin-top: 50px;
  border-bottom: 1px solid #ce8105;
}
footer .footer-navigation ul {
  list-style: none;
  padding: 10px 0;
}
footer .footer-navigation ul li {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
}
footer .footer-navigation ul li a {
  color: #dfdfdf;
  text-decoration: none;
}
footer .footer-bottom {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 60px;
}
footer .footer-bottom .footer-logo-container {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e9e9e9;
}
footer .footer-bottom .footer-logo-container img {
  width: 150px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  footer .footer-navigation {
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
  }
  footer .footer-navigation ul {
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
  }
  footer .footer-navigation ul li {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  footer .footer-contact {
    margin-top: 70px;
    color: white;
    display: flex;
    gap: 20%;
  }
  footer .footer-contact .footer-contact-title {
    color: white;
    letter-spacing: 10px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  footer .footer-contact .footer-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    gap: 10px;
    width: 250px;
    border: 1px solid white;
    color: #ce8105;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 5px;
    line-height: 18px;
  }
}

/***********************************
             ANIMATIONS
************************************/
/***********************
  SCROLLING ANIMATIONS
************************/
.navbar-color-change {
  background-color: black;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s;
}

.active.fade-left {
  animation: fade-left 1s;
}

.active.fade-right {
  animation: fade-right 1s;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/***************************************
  HOME SERVICES ILLUSTRATIONS ANIMATIONS
****************************************/
@keyframes square-down {
  0% {
    transform: translate(0, -70px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 100%;
  }
}
@keyframes square-up {
  0% {
    transform: translate(0, 70px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 100%;
  }
}
@keyframes descriptions-up {
  0% {
    opacity: 0%;
  }
  50% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
.active.square-1 {
  animation: square-up 1s forwards;
  animation-timing-function: ease-in-out;
}

.active.square-2 {
  animation: square-down 1s forwards;
  animation-timing-function: ease-in-out;
}

.active.square-decriptions {
  opacity: 0;
  animation: descriptions-up 1s forwards;
  animation-timing-function: linear;
  animation-delay: 1s;
  animation: name duration timing-function delay iteration-count direction fill-mode;
}

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