/**
* Template Name: UpConstruction
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Updated: May 05 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

@font-face {
    font-family: 'Swiss721BT'; /* Custom name for the font */
    src: url('../fonts/Swiss721BT.otf') format('opentype'); /* Path to the OTF file */
    font-weight: normal;
    font-style: normal;
}

:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Swiss721BT", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #000;
  --default-color-rgb: 54, 77, 89;
  --heading-color: #000;
  --heading-color-rgb: 82, 86, 94;
  --accent-color: #feb900;
  --accent-color-rgb: 254, 185, 0;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #fff;
  --nav-hover-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #feb900;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 1.2rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--accent-color-rgb), 0.75);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --heading-color-rgb: 255, 255, 255;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000;
  --heading-color: #3c3c3c;
  --heading-color-rgb: 60, 60, 60;
  --nav-color: #fff;
  --nav-hover-color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
	margin: auto;
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #F76A00;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    /* padding: 10px 0; */
    background: #000;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
	border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: #fff;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(var(--default-color-rgb), 0.1);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  --default-color-rgb: var(--contrast-color-rgb);
  --background-color-rgb: 0, 0, 0;
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.8);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #F76A00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  --default-color-rgb: var(--contrast-color-rgb);
  --background-color-rgb: 0, 0, 0;
  color: #F76A00;
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 0 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  /* background-color: rgba(var(--background-color-rgb), 0.6); */
  position: absolute;
  inset: 0;
}

.page-title h1 {
  color: #F76A00;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: start;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "|";
  display: inline-block;
  padding-right: 10px;
  color: #F76A00;
}

.page-title .breadcrumbs ol li a {
  color: #F76A00;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

/* .section-title h2:before, */
/* .section-title h2:after { */
  /* content: ""; */
  /* width: 50px; */
  /* height: 2px; */
  /* background: var(--accent-color); */
  /* display: inline-block; */
/* } */

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  font-weight: bold;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: rgba(var(--default-color-rgb), 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(var(--background-color-rgb), 0.7);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--default-color-rgb), 0.2);
  color: rgba(var(--default-color-rgb), 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
/* .get-started .content { */
  /* padding: 30px 0; */
/* } */

/* .get-started .content h3 { */
  /* font-size: 36px; */
  /* font-weight: 600; */
  /* margin-bottom: 25px; */
  /* padding-bottom: 25px; */
  /* position: relative; */
/* } */

/* .get-started .content h3:after { */
  /* content: ""; */
  /* position: absolute; */
  /* display: block; */
  /* width: 60px; */
  /* height: 4px; */
  /* background: var(--accent-color); */
  /* left: 0; */
  /* bottom: 0; */
/* } */

/* .get-started .content p { */
  /* font-size: 14px; */
/* } */

/* .get-started .php-email-form { */
  /* background: rgba(var(--default-color-rgb), 0.03); */
  /* padding: 30px; */
  /* height: 100%; */
/* } */

/* @media (max-width: 575px) { */
  /* .get-started .php-email-form { */
    /* padding: 20px; */
  /* } */
/* } */

/* .get-started .php-email-form h3 { */
  /* font-size: 14px; */
  /* font-weight: 700; */
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
/* } */

/* .get-started .php-email-form p { */
  /* font-size: 14px; */
  /* margin-bottom: 20px; */
/* } */

/* .get-started .php-email-form .error-message { */
  /* display: none; */
  /* background: #df1529; */
  /* color: #ffffff; */
  /* text-align: left; */
  /* padding: 15px; */
  /* margin-bottom: 24px; */
  /* font-weight: 600; */
/* } */

/* .get-started .php-email-form .sent-message { */
  /* display: none; */
  /* color: #ffffff; */
  /* background: #059652; */
  /* text-align: center; */
  /* padding: 15px; */
  /* margin-bottom: 24px; */
  /* font-weight: 600; */
/* } */

/* .get-started .php-email-form .loading { */
  /* display: none; */
  /* background: var(--background-color); */
  /* text-align: center; */
  /* padding: 15px; */
  /* margin-bottom: 24px; */
/* } */

/* .get-started .php-email-form .loading:before { */
  /* content: ""; */
  /* display: inline-block; */
  /* border-radius: 50%; */
  /* width: 24px; */
  /* height: 24px; */
  /* margin: 0 10px -6px 0; */
  /* border: 3px solid var(--accent-color); */
  /* border-top-color: var(--background-color); */
  /* animation: animate-loading 1s linear infinite; */
/* } */

/* .get-started .php-email-form input[type=text], */
/* .get-started .php-email-form input[type=email], */
/* .get-started .php-email-form textarea { */
  /* font-size: 14px; */
  /* padding: 10px 15px; */
  /* box-shadow: none; */
  /* border-radius: 0; */
  /* color: var(--default-color); */
  /* background-color: rgba(var(--background-color-rgb), 0.8); */
  /* border-color: rgba(var(--default-color-rgb), 0.2); */
/* } */

/* .get-started .php-email-form input[type=text]:focus, */
/* .get-started .php-email-form input[type=email]:focus, */
/* .get-started .php-email-form textarea:focus { */
  /* border-color: var(--accent-color); */
/* } */

/* .get-started .php-email-form input[type=text]::placeholder, */
/* .get-started .php-email-form input[type=email]::placeholder, */
/* .get-started .php-email-form textarea::placeholder { */
  /* color: rgba(var(--default-color-rgb), 0.3); */
/* } */

/* .get-started .php-email-form button[type=submit] { */
  /* color: var(--contrast-color); */
  /* background: var(--accent-color); */
  /* border: 0; */
  /* padding: 10px 30px; */
  /* transition: 0.4s; */
  /* border-radius: 4px; */
/* } */

/* .get-started .php-email-form button[type=submit]:hover { */
  /* background: rgba(var(--accent-color-rgb), 0.8); */
/* } */

/* @keyframes animate-loading { */
  /* 0% { */
    /* transform: rotate(0deg); */
  /* } */

  /* 100% { */
    /* transform: rotate(360deg); */
  /* } */
/* } */

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(var(--default-color-rgb), 0.15);
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.constructions .card-item p {
  color: rgba(var(--default-color-rgb), 0.6);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: rgba(var(--default-color-rgb), 0.05);
}

.services .service-item {
  padding: 40px;
  box-shadow: 0px 0 30px rgba(var(--default-color-rgb), 0.1);
  background-color: var(--contrast-color);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(var(--heading-color-rgb), 0.05);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: rgba(var(--heading-color-rgb), 0.8);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid rgba(var(--heading-color-rgb), 0.1);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: rgba(var(--default-color-rgb), 0.7);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: var(--accent-color);
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# two col layout img left Section
--------------------------------------------------------------*/
.two-col-layout-img-left .features-image {
  position: relative;
  /* min-height: 400px; */
}

.two-col-layout-img-left .features-image img {
  position: relative;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.two-col-layout-img-left h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

/* .two-col-layout-img-left h3:after { */
  /* content: ""; */
  /* background: var(--accent-color); */
  /* position: absolute; */
  /* display: block; */
  /* width: 50px; */
  /* height: 3px; */
  /* left: 0; */
  /* bottom: 0; */
/* } */

.two-col-layout-img-left .icon-box {
  margin-top: 50px;
}

.two-col-layout-img-left .icon-box i {
  color: var(--accent-color);
  background-color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(var(--default-color-rgb), 0.1);
  transition: 0.3s;
}

.two-col-layout-img-left .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.two-col-layout-img-left .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.two-col-layout-img-left .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.two-col-layout-img-left .icon-box h4 a:hover {
  color: var(--accent-color);
}

.two-col-layout-img-left .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.two-col-layout-img-left a {
  color: var(--default-color);
  padding-top: 8px;
  border-top: solid 2px var(--accent-color);
  font-size: 20px;
  font-weight: bold;
}

.two-col-layout-img-left a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid rgba(var(--default-color-rgb), 0.1);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 5vh auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #F76A00;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  padding-left: 50px;
}

.clients .clients-carousel,
.clients .clients-slider {
  overflow: hidden;
}

.clients .clients-item {
  min-height: 200px;
  position: relative;
}

.clients .clients-item .clients-img {
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(100%);
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  /* position: absolute; */
}

.clients .clients-item .clients-img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.clients .clients-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.clients .clients-item h4 {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
  margin: 0;
}

.clients .clients-item .stars {
  margin: 10px 0;
}

.clients .clients-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.clients .clients-item .quote-icon-left,
.clients .clients-item .quote-icon-right {
  color: rgba(var(--accent-color-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.clients .clients-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.clients .clients-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.clients .clients-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .clients .clients-wrap {
    padding-left: 0;
  }

  .clients .clients-carousel,
  .clients .clients-slider {
    overflow: hidden;
  }

  .clients .clients-item {
    padding: 30px;
    margin: 15px;
  }

  .clients .clients-item .clients-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.08);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.recent-blog-posts .post-item hr {
  color: rgba(var(--default-color-rgb), 0.2);
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: rgba(var(--default-color-rgb), 0.6);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  background: url("../img/hero-carousel/banner-about-polos.png") no-repeat center center;
  background-size: cover;
  height: 100vh;
}

.about h1 {
  /* font-size: 75px; */
  line-height: 75%;
}

/* .about p { */
  /* font-size: 20px; */
/* } */

.about .container {
}

/* .about section, .section { */
  /* padding: 0;	 */
/* } */

.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: rgba(var(--default-color-rgb), 0.04);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: rgba(var(--default-color-rgb), 0.5);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.8);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: rgba(var(--default-color-rgb), 0.8);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# profile-location Section
--------------------------------------------------------------*/
.profile-location .profile-location-item {
  box-shadow: 0px 0 30px rgba(var(--default-color-rgb), 0.08);
  padding: 30px;
  background-color: darkgrey;
}

.profile-location .profile-location-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.profile-location .profile-location-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.profile-location .profile-location-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# two col layout img right Section
--------------------------------------------------------------*/
.two-col-layout-img-right .features-image {
  position: relative;
  /* min-height: 400px; */
}

.two-col-layout-img-right .features-image img {
  position: relative;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.two-col-layout-img-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.two-col-layout-img-right .icon-box {
  margin-top: 30px;
}

.two-col-layout-img-right .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.two-col-layout-img-right .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.two-col-layout-img-right .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.two-col-layout-img-right a {
  font-weight: bold;
  font-size: 20px;
  color: var(--default-color);
  padding-top: 8px;
  border-top: solid 2px var(--accent-color);
}

.two-col-layout-img-right a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: rgba(var(--default-color-rgb), 0.7);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid rgba(var(--default-color-rgb), 0.1);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid rgba(var(--default-color-rgb), 0.3);
  margin: 20px 0;
  color: rgba(var(--default-color-rgb), 0.8);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/

.project-details .container {
  height: 85vh;
}

.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper {
  height: 85vh;
}

.project-details .swiper-wrapper {
  height: 80vh;
}

.project-details .swiper-wrapper .swiper-slide {
  background-color: #000;
}

.project-details .swiper-wrapper .swiper-slide h2 {
  color: #fff;
}

.project-details .swiper-wrapper .swiper-slide p {
  color: #fff;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .swiper-pagination {
  height: 5vh;
  background-color: #fff;
  margin-top: 15px;
  position: absolute;
  bottom: 0;
}

.project-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: rgba(var(--default-color-rgb), 0.03);
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: rgba(var(--accent-color-rgb), 0.5);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: rgba(var(--heading-color-rgb), 0.8);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li.active,
.pagination-2 li:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li.active a,
.pagination-2 li:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top a {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.blog-details .meta-bottom i {
  color: rgba(var(--default-color-rgb), 0.6);
  display: inline;
}

.blog-details .meta-bottom a {
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  padding: 20px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: rgba(var(--default-color-rgb), 0.7);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-top: 10px;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog-comments .reply-form p {
  font-size: 14px;
}

.blog-comments .reply-form input {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comments .reply-form textarea {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-comments .reply-form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: rgba(var(--accent-color-rgb), 0.8);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container .header-caption {
  border-bottom: 2px solid var(--accent-color);
  width: fit-content;
}

.contact .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted rgba(var(--accent-color-rgb), 0.6);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.tags-widget {
  margin-bottom: -10px;
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.4);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Detail Capabilities Section
--------------------------------------------------------------*/
.capabilities-product .product-preview img {
  border-radius: 10px;
  width: 50%;
}

.capabilities-product .capabilities-product-wrap {
  padding-left: 25px;
}

.capabilities-product .capabilities-product-carousel,
.capabilities-product .capabilities-product-slider {
  overflow: hidden;
}

.capabilities-product .capabilities-product-item {
  min-height: 200px;
  position: relative;
}

.capabilities-product .capabilities-product-item .capabilities-product-img {
  cursor: pointer;
  transition: transform 0.5s ease, filter 0.5s ease;
  /* filter: grayscale(100%); */
  width: 100%;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.capabilities-product .capabilities-product-item .capabilities-product-img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.capabilities-product .capabilities-product-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.capabilities-product .capabilities-product-item h4 {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
  margin: 0;
}

.capabilities-product .capabilities-product-item .stars {
  margin: 10px 0;
}

.capabilities-product .capabilities-product-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.capabilities-product .capabilities-product-item .quote-icon-left,
.capabilities-product .capabilities-product-item .quote-icon-right {
  color: rgba(var(--accent-color-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.capabilities-product .capabilities-product-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.capabilities-product .capabilities-product-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.capabilities-product .capabilities-product-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.capabilities-product .swiper-wrapper {
  height: auto;
}

.capabilities-product .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.capabilities-product .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.capabilities-product .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.capabilities-product .large-preview {
  text-align: center;
  margin-bottom: 20px;
}

.capabilities-product .large-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .capabilities-product .capabilities-product-wrap {
    padding-left: 0;
  }

  .capabilities-product .capabilities-product-carousel,
  .capabilities-product .capabilities-product-slider {
    overflow: hidden;
  }

  .capabilities-product .capabilities-product-item {
    padding: 30px;
    margin: 15px;
  }

  .capabilities-product .capabilities-product-item .capabilities-product-img {
    /* position: static; */
    left: auto;
  }
}

/*CUSTOM*/
.video-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-player .video-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-player .video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: black;
  cursor: pointer;
  z-index: 2;
}

.video-player video {
  width: 100%;
  height: 100%; /* Maintain aspect ratio */
  display: block;
  z-index: 1;
  padding: 1%;
}

.milestones .timeline {
  <!-- --background: #0a0f2b; -->
  --accent: #02d664;
  --text: #000;
  --line: #c4c4c4;
  background: var(--background);
  color: var(--text);
  padding: 30px;
}

.milestones .timeline .timeline-item {
  background-color: #F76A00;
  color: #fff;
}

.milestones .timeline h1 {
  border-left: 4px solid var(--accent);
  padding: 10px 12px 10px;
}

.milestones .timeline ul {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(var(--items), 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.milestones .timeline ul:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  border-top: 3px solid var(--text);
  left: 11px;
}

.milestones .timeline ul:after {
  <!-- content: "\f04b"; -->
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
  right: -15px;
  font-size: 25px;
  color: var(--accent);
}

.milestones .timeline ul li {
  --circle-size: 15px;
  grid-column: var(--index);
  overflow: hidden;
  position: relative;
  height: calc(100% + var(--circle-size) * 0.5);
}

.milestones .timeline ul li:after {
  content: '';
  width: var(--circle-size);
  height: var(--circle-size);
  background: var(--line);
  position: absolute;
  bottom: 0;
  left: var(--circle-size);
  border-radius: 100px;
  transform: translateX(-50%);
  z-index: 1;
}

.milestones .timeline ul li:nth-child(even):after {
  bottom: auto;
  top: 0;
}

.milestones .timeline ul li:nth-child(even) {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  margin-top: calc(var(--circle-size) * -0.45);
}

.milestones .timeline ul li:nth-child(odd) p:after,
.milestones .timeline ul li:nth-child(even) h3:before {
  content: "";
  display: block;
  border-left: 2px dashed var(--text);
  height: 100vh;
  margin-top: 10px;
  position: absolute;
  left: calc(var(--circle-size) - 1px);
}

.milestones .timeline ul li:nth-child(even) h3:before {
  bottom: 100%;
  margin-bottom: 5px;
}

.milestones .timeline ul li>* {
  padding-left: calc(var(--circle-size) * 0.4);
}

.milestones .timeline ul li h3 {
  color: #000;
  margin: 0;
  margin-bottom: 5px;
  font-size: 1.6em;
  position: relative;
}

.milestones .timeline ul li p {
  margin: 0;
  position: relative;
  text-wrap: pretty;
}

@media (max-width: 568px) {
  .milestones .timeline ul {
	display: flex;
	flex-direction: column;
  }
  .milestones .timeline ul li {
	grid-column: 1 !important;
	grid-row: var(--index) !important;
	height: 100%;
	padding-bottom: 30px;
	padding-top: 10px;
  }
  .milestones .timeline ul:before,
  .milestones .timeline ul:after,
  .milestones .timeline ul li:after,
  .milestones .timeline ul li:nth-child(even) h3:before,
  .milestones .timeline ul li:last-child p:after {
	display: none;
  }
  .milestones .timeline ul li:first-child {
	padding-top: 0;
  }
  .milestones .timeline ul li:nth-child(even) {
	margin-top: 0;
	padding-top: 10px;
  }
  .milestones .timeline ul li p:after {
	content: "";
	display: block;
	border-left: 2px dashed var(--text);
	/* height: 100vh; */
	margin-top: 10px;
	position: absolute;
	left: calc(var(--circle-size) - 1px);
  }
}

.section-title h1 {
  line-height: 90%;
  font-size: 50px;
  font-weight: 700;
}

.btn-normal {
  cursor: pointer;
  padding: 7px 30px !important;
  color: #fff !important;
  background-color: #F76A00 !important;
  border: none !important;
}

.btn-normal:hover {
  color: #fff !important;
  background-color: #b35209 !important;
}

.btn-inverted {
  padding: 7px 30px !important;
  color: #F76A00 !important;
  background-color: #fff !important;
  border: none !important;
}

.btn-inverted:hover {
  color: #F76A00 !important;
  background-color: #e3e3e3 !important;
}

.responsible-partner {
  color: #fff;
  height: 80vh;
  background: url('../img/responsibility.png') no-repeat center center;
  background-size: cover;
}

.responsible-partner h1 {
  color: #fff;
}

.banner-home {
  /* padding: 0px 0px 60px 0; */
}

.banner-capabilities {
  /* padding: 0px 0px 60px 0; */
}

.banner-home .carousel .carousel-inner .carousel-item {
  /* height: 100vh; */
}

.banner-capabilities .carousel .carousel-inner .carousel-item {
  /* height: 100vh; */
}

.certificate {
  color: #000;
  height: 65vh;
  background: url('../img/certification.png') no-repeat center center;
  background-size: cover;
}

.certificate h1 {
  color: #F76A00;
}

.certificate .cert-img {
  max-width: 100%;
  width: 20%;
}

.craft-with-us {
  /* color: #fff; */
  /* height: 100vh; */
  background: #fff;
  /* background: url('../img/craft-with-us.png') no-repeat center center; */
  /* background-size: cover; */
}

.craft-with-us .container {
  height: auto;
}

.craft-with-us h1 {
  /* color: #fff; */
}

.craft-with-us h3 {
	text-wrap: nowrap;
}

.contact-us h3 {
	text-wrap: nowrap;
}

.map .container {
  height: 65vh;
}

.capabilities-section {
  height: auto;
}

.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-2 {
	/* position: relative; */
	height: 100vh;
	/* background: url('../img/hero-carousel/banner-home-2-polos.jpg') no-repeat center center; */
	background: url('../img/hero-carousel/banner-home-desktop-2.png') no-repeat center center;
	background-size: cover;
}



.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 {
	/* position: relative; */
	height: 100vh;
	/* background: url('../img/hero-carousel/banner-home-2-polos.jpg') no-repeat center center; */
	background: url('../img/hero-carousel/banner-home-mobile-3.png') no-repeat center center;
	background-size: cover;
	align-items: center;
}


/*.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-4 {*/
	/* position: relative; */
/*	height: 100vh;*/
	/* background: url('../img/hero-carousel/banner-home-2-polos.jpg') no-repeat center center; */
/*	background: url('../img/hero-carousel/banner-home-desktop-4.png') no-repeat center center;*/
/*	background-size: cover;*/
/*}*/



.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 h1, h2 {
	--x-offset: 0.0425em;
	--y-offset: -0.0625em;
	--sec-x-offset: -0.0425em;
	--sec-y-offset: 0.0625em;
	--stroke: 0.0025em;
	--background-color: transparent;
	--stroke-color: white;
	color: black;

	/* text-shadow:  */

		/* var(--x-offset) */
		/* var(--y-offset) */
		/* 0px */
		/* var(--background-color),  */

		/* calc(var(--x-offset) - var(--stroke)) calc(var(--y-offset) + var(--stroke)) 0px rgba(255, 255, 255, 0.5); /* Second shadow with transparent fill */
		
	text-shadow:
	var(--x-offset) var(--y-offset) 0 black
	/* , var(--sec-x-offset) var(--sec-y-offset) 0 black */
	;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: black;
}

.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .location p, h4 {
	color: #fff !important;
	font-family: var(--default-font);
	/* font-size: 1.5rem; */
}

.banner-home .carousel .carousel-inner .carousel-item h1 {
	font-size: 75px;
	line-height: 75%;
}

.banner-home .carousel .carousel-inner .carousel-item a {
	font-size: 20px;
	font-weight: bold;
}

.banner-capabilities .carousel .carousel-inner .carousel-item .bg-image-banner-1 {
	/* position: relative; */
	height: 100vh;
	background: url('../img/hero-carousel/banner-capabilities-1-polos.jpg') no-repeat center center;
	background-size: cover;
}

.banner-capabilities .carousel .carousel-inner .carousel-item h1 {
	font-size: 75px;
	line-height: 75%;
}

.banner-capabilities .carousel .carousel-inner .carousel-item a {
	font-size: 20px;
	font-weight: bold;
}

/* .banner-home .carousel .carousel-inner .bg-image-banner-1 .grey-overlay { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* background: rgba(0, 0, 0, 0.3); */
  /* z-index: 0; */
  /* pointer-events: none; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-1 .grey-overlay .carousel-content{ */
  /* position: relative; */
  /* z-index: 1; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-2 { */
	/* position: relative; */
	/* height: 100vh; */
	/* background: url('../img/hero-carousel/hero-carousel-2.jpg') no-repeat center center; */
	/* background-size: cover; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-2 .grey-overlay { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* background: rgba(0, 0, 0, 0.3); */
  /* z-index: 0; */
  /* pointer-events: none; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-2 .grey-overlay .carousel-content{ */
  /* position: relative; */
  /* z-index: 1; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-3 { */
	/* position: relative; */
	/* height: 100vh; */
	/* background: url('../img/hero-carousel/hero-carousel-3.jpg') no-repeat center center; */
	/* background-size: cover; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-3 .grey-overlay { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* background: rgba(0, 0, 0, 0.3); */
  /* z-index: 0; */
  /* pointer-events: none; */
/* } */

/* .banner-home .carousel .carousel-inner .bg-image-banner-3 .grey-overlay .carousel-content{ */
  /* position: relative; */
  /* z-index: 1; */
/* } */

.banner-home .carousel .carousel-indicators button {
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	background-color: #000; /* Color of the active dot */
}
.banner-home .carousel .carousel-indicators .active {
	background-color: #fff; /* Color of the active dot */
}

.banner-capabilities .carousel .carousel-indicators button {
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	background-color: #000; /* Color of the active dot */
}
.banner-capabilities .carousel .carousel-indicators .active {
	background-color: #fff; /* Color of the active dot */
}

/*MILESTONES OPT-1*/
.milestone-opt-1 .timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.milestone-opt-1 .first-row {
    flex-direction: row;
}

.milestone-opt-1 .second-row {
    flex-direction: row-reverse;
    margin-top: 50px;
}

.milestone-opt-1 .timeline-horizontal .timeline-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: #F76A00;
    color: white;
    padding: 20px;
    width: 15%;
    z-index: 2;
    position: relative;
    box-sizing: border-box;
}

.milestone-opt-1 .timeline-horizontal .timeline-item:hover {
    transform: scale(1.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.milestone-opt-1 .last-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 50px;
    background-color: #F76A00;
}

.milestone-opt-1 .timeline-horizontal.second-row .timeline-item:first-child::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    width: 2px;
    height: 50px;
    background-color: #F76A00;
}

.milestone-opt-1 .timeline-horizontal .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #F76A00;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
}

.milestone-opt-1 .timeline-item h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
}

.milestone-opt-1 .timeline-item p {
    text-align: left;
    margin-bottom: 0;
}

/* Media Query for Medium Screens and Below */
@media (max-width: 992px) {
    .milestone-opt-1 .timeline-horizontal {
        flex-direction: column;
        align-items: center;
    }
	
	.milestone-opt-1 .second-row {
		margin-top: 0px;
	}
    
    .milestone-opt-1 .timeline-horizontal .timeline-item {
        width: 80%;
        margin-bottom: 30px;
    }
	
	.milestone-opt-1 .timeline-horizontal .timeline-item::after {
		content: '';
		position: absolute;
		top: 100%;
		left: 50%;
		width: 2px;
		height: 50px;
		background-color: #F76A00;
	}
	
	.milestone-opt-1 .timeline-horizontal .last-item-sec-row::after {
		display: none;
	}

    .milestone-opt-1 .timeline-horizontal .timeline-line {
        display: none;
    }
    
    .milestone-opt-1 .first-row,
    .milestone-opt-1 .second-row {
        flex-direction: column;
    }
}
/*MILESTONES OPT-1*/

/*MILESTONES OPT*/
#timeline-opt {
  display: flex;
  background-color: #031625;
}
#timeline-opt:hover .tl-item {
  width: 23.3333%;
}

.tl-item {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  position: relative;
  width: 25%;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
}
.tl-item:before, .tl-item:after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tl-item:after {
  background: rgba(3, 22, 37, 0.85);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.tl-item:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #F76A00 75%);
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) translateY(50%);
          transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.tl-item:hover {
  width: 30% !important;
}
.tl-item:hover:after {
  opacity: 0;
}
.tl-item:hover:before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) translateY(0);
          transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, -webkit-transform 1s ease 0.25s;
  transition: opacity 1s ease, transform 1s ease 0.25s;
  transition: opacity 1s ease, transform 1s ease 0.25s, -webkit-transform 1s ease 0.25s;
}
.tl-item:hover .tl-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}
.tl-item:hover .tl-bg {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.tl-content {
  -webkit-transform: translate3d(0, 0, 0) translateY(25px);
          transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  top: 55%;
  opacity: 0;
}
.tl-content h1 {
  font-family: 'Pathway Gothic One',Helvetica Neue,Helvetica,Arial,sans-serif;
  text-transform: uppercase;
  color: #1779cf;
  font-size: 1.44rem;
  font-weight: normal;
}

.tl-year {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  /* border-top: 1px solid #fff; */
  border-bottom: 1px solid #fff;
}
.tl-year p {
  font-family: 'Pathway Gothic One',Helvetica Neue,Helvetica,Arial,sans-serif;
  font-size: 1.728rem;
  line-height: 0;
}

.tl-bg {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.hlink{
	text-decoration:none;
	color:cyan;
}
/*MILESTONES OPT*/

/*KEYSTONE*/
.keystone .caption-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: #F76A00;
	color: white;
	padding: 20px;
	box-sizing: border-box;
	height: 100%; /* Make sure the caption takes up the full height of the column */
}

.keystone .caption-container h2 {
	/* font-size: 24px; */
	padding: 20px 0;
	color: #fff;
	margin-bottom: 10px;
}

.keystone .caption-container p {
	margin-bottom: 0;
}

.keystone .image-caption {
	margin-bottom: 5vh;
	display: flex;
	flex-direction: column;
}
/*KEYSTONE OPT*/

.customer-rows {
    overflow: hidden; /* Hide overflow for smooth transition */
}

/* Base styles for hidden rows */
.additional-rows {
    max-height: 0; /* Start with max-height of 0 to hide */
    overflow: hidden; /* Hide content when not visible */
    transition: max-height 1s ease-out; /* Smooth transition for max-height */
    display: flex; /* Ensure display is flex for the transition */
    flex-wrap: wrap; /* Allow wrapping if rows need it */
}

/* When rows are visible, set max-height to a specific value */
.additional-rows.visible {
    max-height: 1000px; /* Ensure this is larger than the content height */
}

.btn-show-more {
	background-color: #fff;
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom: 2px solid #000;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
}

.btn-show-more:hover {
	color: #F76A00;
	border-bottom: 2px solid #F76A00;
}

.contact-us {
  background: url("../img/banner-contact-us.png") no-repeat center center;
  background-size: cover;
  height: auto;
}

.contact-us .container {
  
}

.contact-us .cert-img {
  max-width: 100%;
  width: 25%;
}

.capability-detail {
  height: 100vh;
}

.capability-detail a {
  font-size: 20px;
  font-weight: bold;
}

.corr-sheet-breadcrumbs {
  height: 17vh;
}

.sheet-type-section {
  height: 100vh;
  color: #fff;
}

.sheet-type-section h1 {
  color: #fff;
  font-size: 70px;
}

.sheet-type-section p {
  font-size: 1.5rem;
}

.wall-flute {
  background: url("../img/bg-wall-flute-full.png") top center no-repeat;
  background-size: cover;
  background-color: #F76A00;
}

.wall-flute-caption {
  padding: 50px;
  background: radial-gradient(circle, rgba(247, 106, 0, 0.8) 30%, rgba(247, 106, 0, 0.5) 50%, rgba(247, 106, 0, 0.2) 70%, rgba(247, 106, 0, 0) 90%);
}

/* .wall-flute-caption::before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA9klEQVR4nO2SwQ2CMBBELyx0MYGuY6UrsIg7EqBxYJOLXoDJgEK0YLzBlh0K+Bi0mJk7KSm2VHvhmvL1a5NvoRELeRLZx9u6PYQgMgfZnLnDpqCbJf5IFGfZn+QGFgtVrEDB7vS3UYqG0woX8lFMD4p4v9oLxMLd4WBj5Yo0QmJRPp1Qlpt+IOzPiZoa3A4wQtJQ4ddxCP3ZtmZRI1y6dj7ClTPk8eAFvGnS9LPPwPsIpP60VRMPl4Xpy2/hSg3gOa50WEsZo5M7iAAAAAElFTkSuQmCC'); */
    /* opacity: 0.3; */
    /* pointer-events: none; */
/* } */

.layer-carton {
  background: url("../img/bg-layer-carton.png") top center no-repeat;
  background-size: cover;
}

.american-box {
  background: url("../img/bg-american.png") top center no-repeat;
  background-size: cover;
}

.printing-box {
  background: url("../img/bg-printing.png") top center no-repeat;
  background-size: cover;
}

.dice-cut-box {
  background: url("../img/bg-dice-cut.png") top center no-repeat;
  background-size: cover;
}

.partition-box {
  background: url("../img/bg-partition.png") top center no-repeat;
  background-size: cover;
}

@media (max-width: 724px) {
	.capability-detail {
	  height: auto;
	}
	
	/* .about { */
		/* min-height: 75vh; */
	/* } */
}

@media (max-width: 767px) {
	p {
		font-size: 20px;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item h1 {
		font-size: 55px;
	}

	.banner-capabilities .carousel .carousel-inner .carousel-item h1 {
		font-size: 55px;
	}

	.capability-detail {
	  height: auto;
	}

	.capability-detail .container h1 {
		text-align: right;
	}
	
	.capability-detail .container h3 {
		text-align: right;
	}
	
	.capability-detail .container p {
		text-align: left;
	}
	
	.capability-detail .container a {
		text-align: right;
	}
	
	/* .about { */
		/* min-height: 80vh; */
	/* } */
	
	.about h1 {
		font-size: 55px;
	}

	.craft-with-us h1 {
		font-size: 75px;
	}
	
	.craft-with-us h3 {
		font-size: 45px;
	}
	
	.craft-with-us p {
		font-size: 20px;
	}
	
	.contact-us h1 {
		font-size: 75px;
	}
	
	.contact-us h3 {
		font-size: 43px;
	}
	
	.contact-us p {
		font-size: 20px;
	}
	
	.capabilities-section h1 {
		font-size: 65px;
	}
	
	.video-player .video-wrapper {
	  height: 26vh;
	}
	
	.up-banner-content {
		display: none !important;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 {
		/* position: relative; */
		/* background: url('../img/hero-carousel/banner-home-2-polos.jpg') no-repeat center center; */
		background: url('../img/hero-carousel/banner-home-mobile-3.png') no-repeat center center;
		background-size: cover;
		align-items: start;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .container {
		margin: 25%;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 h1 {
		font-size: 70px;
	}

	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 h2 {
		font-size: 45px;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .location p, h4 {
		color: #fff !important;
		font-family: var(--default-font);
		font-size: 1.3rem;
	}

	.dot-separator {
		display: none !important;
	}
	
}

@media (min-width: 768px) {
	.banner-home .carousel .carousel-inner .carousel-item h1 {
		font-size: 125px;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .container {
		margin: 25%;
	}
	
	/* .banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .container */
	/* { */
		/* margin: 15%; */
	/* } */
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .location p, h4 {
		color: #fff !important;
		font-family: var(--default-font);
		font-size: 3vw;
	}

	.banner-capabilities .carousel .carousel-inner .carousel-item h1 {
		font-size: 75px;
	}

	.capability-detail {
	  height: auto;
	}

	.capability-detail .container h1 {
		text-align: right;
	}
	
	.capability-detail .container h3 {
		text-align: right;
	}
	
	.capability-detail .container p {
		text-align: left;
	}
	
	.capability-detail .container a {
		text-align: right;
	}
	
	/* .about { */
		/* min-height: 100vh; */
	/* } */
	
	.about h1 {
		font-size: 75px;
	}

	.craft-with-us h1 {
		font-size: 75px;
	}
	
	.craft-with-us h3 {
		font-size: 35px;
	}
	
	.craft-with-us p {
		font-size: 20px;
	}
	
	.contact-us h1 {
		font-size: 75px;
	}
	
	.contact-us h3 {
		font-size: 33px;
	}
	
	.contact-us p {
		font-size: 20px;
	}
	
	.capabilities-section h1 {
		font-size: 65px;
	}
	
	.video-player .video-wrapper {
	  height: 55vh;
	}
}

@media (min-width: 768px) and (max-width: 1080px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 {
		/* position: relative; */
		/* background: url('../img/hero-carousel/banner-home-2-polos.jpg') no-repeat center center; */
		background: url('../img/hero-carousel/banner-home-mobile-3.png') no-repeat center center;
		background-size: cover;
		align-items: start;
	}

	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 h2 {
		font-size: 75px;
	}

	.dot-separator {
		display: none !important;
	}
}


@media (min-width: 992px) {
	.banner-home .carousel .carousel-inner .carousel-item h1 {
		font-size: 20vw;
	}

	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .location p, h4 {
		color: #fff !important;
		font-family: var(--default-font);
		font-size: 6vw;
	}

	.banner-capabilities .carousel .carousel-inner .carousel-item h1 {
		font-size: 75px;
	}

	.capability-detail {
	  height: auto;
	}

	.capability-detail .container h1 {
		text-align: right;
	}
	
	.capability-detail .container h3 {
		text-align: right;
	}
	
	.capability-detail .container p {
		text-align: left;
	}
	
	.capability-detail .container a {
		text-align: right;
	}
	
	/* .about { */
		/* min-height: 100vh; */
	/* } */
	
	.about h1 {
		font-size: 75px;
	}

	.craft-with-us h1 {
		font-size: 75px;
	}
	
	.craft-with-us h3 {
		font-size: 45px;
	}
	
	.craft-with-us p {
		font-size: 20px;
	}
	
	.contact-us h1 {
		font-size: 75px;
	}
	
	.contact-us h3 {
		font-size: 43px;
	}
	
	.contact-us p {
		font-size: 20px;
	}
	
	.capabilities-section h1 {
		font-size: 65px;
	}
	
	.video-player .video-wrapper {
	  height: 70vh;
	}
	
	.wall-flute .container {
	  /* max-width: 100%; */
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.layer-carton .container {
	  max-width: 100%;
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.american-box .container {
	  max-width: 100%;
	  margin-left: unset !important;
	  padding-left: unset !important;
	}
	
	.printing-box .container {
	  max-width: 100%;
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.dice-cut-box .container {
	  max-width: 100%;
	  margin-left: unset !important;
	  padding-left: unset !important;
	}
	
	.partition-box .container {
	  max-width: 100%;
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 h2 {
		font-size: 15vw;
	}

	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 {
		align-items: start;
	}
	
}

@media (min-width: 1200px){	
	.banner-home .carousel .carousel-inner .carousel-item h1 {
		font-size: 65px;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .container {
		margin-top: 17% !important;
		margin: 10%;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 .location p, h4 {
		font-size: 1.3rem;
	}
	
	.banner-capabilities .carousel .carousel-inner .carousel-item h1 {
		font-size: 75px;
	}

	.capability-detail {
	  height: auto;
	}

	.capability-detail .container h1 {
		text-align: right;
	}
	
	.capability-detail .container h3 {
		text-align: right;
	}
	
	.capability-detail .container p {
		text-align: left;
	}
	
	.capability-detail .container a {
		text-align: right;
	}
	
	/* .about { */
		/* min-height: 110vh; */
	/* } */
	
	.about h1 {
		font-size: 75px;
	}

	.craft-with-us h1 {
		font-size: 75px;
	}
	
	.craft-with-us h3 {
		font-size: 50px;
	}
	
	.craft-with-us p {
		font-size: 20px;
	}
	
	.contact-us h1 {
		font-size: 75px;
	}
	
	.contact-us h3 {
		font-size: 48px;
	}
	
	.contact-us p {
		font-size: 20px;
	}
	
	.capabilities-section h1 {
		font-size: 65px;
	}
	
	.video-player .video-wrapper {
	  height: 100vh;
	}
	
	.wall-flute .container {
	  /* max-width: 100%; */
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.layer-carton .container {
	  max-width: 100%;
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.american-box .container {
	  max-width: 100%;
	  margin-left: unset !important;
	  padding-left: unset !important;
	}
	
	.printing-box .container {
	  max-width: 100%;
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.dice-cut-box .container {
	  max-width: 100%;
	  margin-left: unset !important;
	  padding-left: unset !important;
	}
	
	.partition-box .container {
	  max-width: 100%;
	  margin-right: unset !important;
	  padding-right: unset !important;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 {
		/* position: relative; */
		/* background: url('../img/hero-carousel/banner-home-2-polos.jpg') no-repeat center center; */
		background: url('../img/hero-carousel/banner-home-desktop-3.png') no-repeat center center;
		background-size: cover;
		align-items: center;
	}

	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-3 h2 {
		font-size: 2.5rem;
	}

}

@media (max-width: 609px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-1 {
		height: 100vh;
		background: url('../img/hero-carousel/banner-home-mobile-1.png') no-repeat center center;
		background-size: cover;
		align-items: start;
	}
	
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-1 .row{
		margin-top: 10vh;
	}
}

@media (min-width: 610px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-1 {
		height: 100vh;
		/* background: url('../img/hero-carousel/banner-home-1-polos.jpg') no-repeat center center; */
		background: url('../img/hero-carousel/banner-home-desktop-1.png') no-repeat center center;
		align-items: center;
		background-size: cover;
	}
}

@media (max-width: 609px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-4 {
		height: 100vh;
		background: url('../img/hero-carousel/banner-home-mobile-4.png') no-repeat center center;
		background-size: cover;
		align-items: start;
	}
}

@media (min-width: 610px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-4 {
		height: 100vh;
		/*background: url('../img/hero-carousel/banner-christmas-desktop.jpg') */
		background: url('../img/hero-carousel/banner-home-desktop-4.jpg') 
		
		no-repeat center center;
		background-size: cover;
		align-items: start;
	}
}

@media (max-width: 609px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-5 {
		height: 100vh;
		background: url('../img/hero-carousel/banner-home-mobile-6.png') no-repeat center center;
		background-size: cover;
		align-items: start;
	}
}

@media (min-width: 610px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-5 {
		height: 100vh;
		/*background: url('../img/hero-carousel/banner-christmas-desktop.jpg') */
		background: url('../img/hero-carousel/banner-home-desktop-6.png') 
		
		no-repeat center center;
		background-size: cover;
		align-items: start;
	}
}

@media (max-width: 609px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-6 {
		height: 100vh;
		background: url('../img/hero-carousel/banner-home-mobile-5.png') no-repeat center center;
		background-size: cover;
		align-items: start;
	}
}

@media (min-width: 610px) {
	.banner-home .carousel .carousel-inner .carousel-item .bg-image-banner-6 {
		height: 100vh;
		/*background: url('../img/hero-carousel/banner-christmas-desktop.jpg') */
		background: url('../img/hero-carousel/banner-home-desktop-5.png') 
		
		no-repeat center center;
		background-size: cover;
		align-items: start;
	}
}

@media (max-width: 450px) {
	.capability-detail {
	  height: auto;
	}
	
	/* .about { */
		/* min-height: 40vh; */
	/* } */
}

@media (max-width: 500px) {
	.capability-detail {
	  height: auto;
	}
	
	/* .about { */
		/* min-height: 50vh; */
	/* } */
}

.dot-separator {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: white; /* Change this to your text color */
    /* font-weight: bold; */
    letter-spacing: 1px;
}

.dot-separator span {
    position: relative;
    padding: 0 15px; /* Adjust the padding for more or less spacing */
	text-wrap: nowrap;
	font-size: 1.3rem;
}

/* .dot-separator span:not(:last-child)::after { */
    /* content: "•"; */
    /* position: absolute; */
    /* right: -10px; /* Adjust to position the dot correctly */
    /* color: white; /* Change this to the color of the dot */
/* } */