@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {

    /* Fonts */
    --primary-font: "Oswald", sans-serif;
    --body-font: "Inter", sans-serif;

    /* Brand Colors */
    --accent-color: #f13a07;
    --heading-color: #05050d;
    --default-color: #5b5b5b;

    /* Neutral Colors */
    --white-color: #ffffff;
    --grey-color: #dcdcdc;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-dark: #05050d;
    --bg-grey: #f2f2f2;

    /* Effects */
    --box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);

    /* Transition */
    --transition: all 0.5s cubic-bezier(.165, .85, .45, 1);

}

/*===================================================
    01 Navigation
====================================================*/

.el-main-header {
    /* background-color: var(--bg-dark); */
    position: relative;
    z-index: 2;
    overflow-x: clip;
    overflow-y: visible;
}

.el-main-header-wapper {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}

.site-logo img {
    width: 150px;
}

.sticky-header {
    display: none;
}

.el-main-header-info {
    position: relative;
}

/* .el-main-header-info:before {
    background-color: var(--bg-dark);
    clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
    width: 50px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
} */

.el-main-header-info:after {
    background-color: var(--accent-color);
    transform: skewX(23deg);
    width: 8px;
    height: 100%;
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
}

/* Top Header */
.top-header {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    padding-left: 80px;
}

/* .top-header:before {
    background-color: var(--accent-color);
    content: "";
    width: 6000px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
} */

.top-left {
    display: flex;
    align-items: center;
    column-gap: 60px;
    padding-top: 10px;
}

.top-header-nav li a,
.top-left li a,
.top-left li {
    font-family: var(--primary-font);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
}

.top-left li i {
    color: var(--white-color);
    font-size: 15px;
    margin-right: 5px;
}


.top-right {
    display: inline-flex;
    align-items: center;
}


.top-header-nav {
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.top-header-nav li {
    position: relative;
}

.top-header-nav li:not(:first-of-type) {
    margin-left: 20px;
}

.top-header-nav li:not(:last-of-type):before {
    background-color: #b40007;
    width: 2px;
    height: 15px;
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}

.header-social-share {
    display: flex;
    align-items: center;
}

.header-social-share li a {
    color: var(--white-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #b40007;
}

.header-social-share li:last-child a {
    border-right: 1px solid #b40007;
}

.site-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Navigation Menu */
.nav-menu-wrapper .site-logo {
    display: none;
}

.menu-right-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    height: 100%;
}

.menu-right-item > div {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-right-item .menu-action-btn {
    color: var(--heading-color);
    cursor: pointer;
    font-size: 25px;
    position: relative;
}

.menu-right-item .dl-search-icon {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%);
    margin-top: 5px;
}

@media (max-width: 767px) {

    .menu-right-item .dl-search-icon,
    .menu-action-btn.cart {
        display: none;
    }
}

.menu-action-btn.cart i {
    font-size: 28px;
}

.menu-action-btn.cart span {
    background-color: var(--accent-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    bottom: -5px;
    font-size: 14px;
    font-weight: 500;
}

.menu-right-item .default-btn {
    margin-left: 10px;
    padding: 15px 30px;
}

@media (max-width: 1170px) {
    .menu-right-item .default-btn {
        padding: 20px 25px;
    }
}


/* Menu Button */
.menu-right-item .menu-btn {
    background-color: var(--heading-color);
    color: var(--white-color);
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.menu-right-item .menu-btn:hover {
    background-color: var(--bg-dark);
}

/* Burger Menu */
.menu-right-item .mobile-menu-icon {
    display: none;
}

/* Menu Style */
@media (min-width: 993px) {
    .nav-menu-wrapper {
        margin-bottom: -30px;
    }

    .sticky-header .nav-menu-wrapper {
        margin: 0;
    }

    .sticky-header .header-menu-wrap ul {
        padding-left: 0;
    }

    .header-menu-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-left: 80px;
    }

    .header-menu-wrap:before {
        background-color: var(--white-color);
        width: 6000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .header-menu-wrap ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header-menu-wrap ul li {
        display: inline-block;
        position: relative;
        padding: 30px 0;
        margin-right: 30px;
    }

    .header-menu-wrap ul li > a {
        font-family: var(--primary-font), sans-serif;
        color: var(--heading-color);
        display: block;
        font-size: 16px;
        letter-spacing: 1.2px;
        font-weight: 500;
        text-transform: capitalize;
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        position: relative;
        z-index: 1;
    }

    .header-menu-wrap li ul {
        background-color: var(--white-color);
        box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
        border-radius: 0;
        width: 220px;
        padding: 0;
        display: block;
        position: absolute;
        left: -35px;
        top: 70px;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        -webkit-transform: perspective(300px) rotateX(-18deg);
        transform: perspective(300px) rotateX(-18deg);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .header-menu-wrap li:hover > ul {
        -webkit-transform: perspective(300px) rotateX(0deg);
        transform: perspective(300px) rotateX(0deg);
        opacity: 1;
        visibility: visible;
        top: 75px;
        z-index: 99;
    }

    .header-menu-wrap li li {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid #ddd;
        text-align: left;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

    .header-menu-wrap li li:last-child {
        margin: 0;
        border-bottom: 0;
    }

    .header-menu-wrap li li > a {
        font-family: var(--body-font);
        color: var(--heading-color);
        display: block;
        height: auto;
        line-height: inherit;
        font-weight: 500;
        font-size: 15px;
        text-transform: capitalize;
        line-height: 20px;
        letter-spacing: -0.2px;
        width: 100%;
        -webkit-font-smoothing: antialiased;
    }

    .header-menu-wrap li li:before {
        background-color: var(--bg-grey);
        content: "";
        width: 0;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        transition: width .5s linear;
    }

    .header-menu-wrap li li:hover:before {
        width: 100%;
    }

    .header-menu-wrap li li:after {
        background-color: var(--accent-color);
        width: 3px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0px;
        top: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .2s cubic-bezier(.75, 0, .175, 1);
    }

    .header-menu-wrap li li:hover:after {
        visibility: visible;
        opacity: 1;
    }

    .header-menu-wrap li li > a:hover {
        color: var(--heading-color);
    }

    .header-menu-wrap li ul li ul {
        width: 220px;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header-menu-wrap li ul {
        display: block !important;
    }

    /* Sticky Header */
    .sticky-header {
        background-color: var(--white-color);
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        transform: translateY(-100%);
        z-index: 99;
    }

    .sticky-header .top-header {
        display: none;
    }

    .sticky-header .el-main-header-info:after {
        transform: skewX(31.5deg);
    }

    .sticky-header .nav-menu-wrapper .site-logo {
        display: block;
        max-width: 150px;
    }

    .sticky-header.sticky-fixed-top {
        transition: transform 1s ease;
        will-change: transform;
    }

    .sticky-header.sticky-fixed-top {
        transform: translateY(0);
        box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap .nav-menu > li {
        padding: 32px 0;
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap li:hover > ul {
        top: 79px;
    }

    .sticky-fixed-top .menu-right-item .menu-btn {
        height: auto;
        padding: 10px 30px;
    }
}

@media all and (max-width: 1200px) and (min-width: 993px) {
    .el-main-header-wapper {
        grid-template-columns: 150px 1fr;
    }

    .header-menu-wrap {
        padding-left: 70px;
    }

    .header-menu-wrap ul li {
        margin-right: 20px;
    }
}

.mobile-navigation-menu {
    display: none;
}

@media (max-width: 992px) {
    .top-header {
        display: none;
    }

    .header-menu-wrap {
        position: relative;
        padding: 9px 0;
    }

    .header-menu-wrap::before {
        background-color: #fff;
        width: 3000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .el-main-header-info:after {
        transform: skewX(35deg);
    }

    .header-menu-wrap .nav-menu {
        display: none;
    }

    /* Mobile Menu */
    .navigation-menu {
        display: none;
    }

    .menu-right-item .mobile-menu-icon {
        background-color: var(--bg-grey);
        font-size: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
    }

    .menu-right-item .mobile-menu-icon i {
        color: var(--heading-color);
    }

    #mobile-menu-close {
        color: var(--heading-color);
        position: absolute;
        right: 15px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    #mobile-menu-close:hover {
        color: var(--accent-color);
    }

    .mobile-navigation-menu {
        background-color: rgba(255, 255, 255, 1);
        border-right: 1px solid #eee;
        position: fixed;
        left: -100%;
        top: 0;
        width: 400px;
        height: 100vh;
        padding: 100px 0 50px;
        box-shadow: var(--shadow-sm);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all .3s linear;
        z-index: 1000;
    }

    .open-mobile-menu.mobile-navigation-menu {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all .3s linear;
    }

    .mobile-navigation-menu .main-menu {
        display: block;
    }

    .mobile-navigation-menu .dropdown-plus {
        width: 100px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 2px;
        right: 32px;
        cursor: pointer;
        z-index: 1;
    }

    .mobile-navigation-menu .dropdown-plus:before,
    .mobile-navigation-menu .dropdown-plus:after {
        position: absolute;
        content: "";
        top: 21px;
        right: 10px;
        width: 10px;
        height: 2px;
        background-color: var(--bg-dark);
    }

    .mobile-navigation-menu .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .mobile-navigation-menu .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-navigation-menu ul {
        padding-left: 0;
    }

    .mobile-navigation-menu ul li {
        position: relative;
        margin: 0;
        display: block;
        padding: 0;
    }

    .mobile-navigation-menu ul li > a {
        font-family: var(--primary-font);
        color: var(--heading-color);
        display: block;
        padding: 15px 40px;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
    }

    .mobile-navigation-menu ul li:hover > a,
    .mobile-navigation-menu li li:hover > a {
        color: var(--accent-color);
    }

    .mobile-navigation-menu ul li ul li ul,
    .mobile-navigation-menu ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }

    .mobile-navigation-menu li li {
        padding: 0 20px;
    }

    .mobile-navigation-menu li li {
        padding-left: 10px;
    }

    .mobile-navigation-menu li li:last-child {
        border-bottom: none;
    }

    .mobile-navigation-menu li li > a {
        color: var(--default-color);
        font-weight: 500;
        font-size: 15px;
        padding: 14px 20px 14px 40px;
    }

    .menu-right-item {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .el-main-header-info:before {
        height: calc(100% + 1px);
        left: -1px;
        top: -1px;
    }

    .el-main-header-info:after {
        transform: skewX(41.5deg);
    }
}

@media (max-width: 600px) {
    .mobile-navigation-menu {
        width: 80%;
    }
}

/* =========================== */
/* Services section  */
/* =========================== */

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  padding: 3rem;
  /* background-color: color-mix(in srgb, var(--accent-color), transparent 97%); */
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-2 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action-2 {
    padding: 2rem;
  }

  .call-to-action-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* =================================== */
/* Breadcrumb Section */
/* =================================== */
.br-section{
    background-image: url(../img/br.webp);
    background-position:bottom;
    background-size: cover;
    padding-top: 200px;
  }

  @media (max-width:768px){
    
    .br-section{
      background-position: center;
      padding-top: 30px;
    }
  }

  @media (max-width:526px){
    
    .br-section{
      background-position: right;
      padding-top: 0;
    }
  }


  /* *********************** */
/* Our Clients section */
/* *********************** */


/* Client Cards */
.clients-grid {
margin-bottom: 20px;
}

.client-card {
background: white;
/* border-radius: 16px; */
padding: 25px 15px;
text-align: center;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
border: 1px solid rgba(242, 169, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}

.client-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
border-color: var(--accent-color);
}

.client-logo {
height: 200px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
position: relative;
}

.client-logo img {
max-height: 180px;
max-width: 100%;
object-fit: contain;
transition: transform 0.3s ease;
}

.client-card:hover .client-logo img {
transform: scale(1.1);
}

.client-name {
font-size: 0.85rem;
font-weight: 600;
color: var(--heading-color);
line-height: 1.3;
margin-top: auto;
}

/* Client Stats */
.client-stats {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
transition: transform 0.3s ease;
}

.stat-item:hover {
transform: translateY(-5px);
}

.stat-number {
margin-bottom: 8px;
}

.stat-label {
font-size: 0.9rem;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 1px;
}

/* Alternative Layout - Logo Carousel Style */
.client-carousel {
overflow: hidden;
white-space: nowrap;
position: relative;
}

.carousel-track {
display: inline-flex;
animation: scroll 30s linear infinite;
gap: 40px;
align-items: center;
}

.carousel-item {
flex-shrink: 0;
width: 150px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background: white;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
border: 1px solid rgba(242, 169, 0, 0.1);
transition: all 0.3s ease;
}

.carousel-item:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.carousel-item img {
max-height: 60px;
max-width: 120px;
object-fit: contain;
}

@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(calc(-150px * 10 - 400px)); }
}

/* Responsive Design */
@media (max-width: 992px) {
.category-title {
font-size: 1.5rem;
}

.client-card {
padding: 20px 10px;
}

.client-logo {
height: 150px;
margin-bottom: 12px;
}

.client-logo img {
max-height: 110px;
}

.client-name {
font-size: 0.8rem;
}
}

@media (max-width: 768px) {
.category-icon {
width: 60px;
height: 60px;
}

.category-icon i {
font-size: 1.5rem;
}

.category-title {
font-size: 1.3rem;
}

.category-subtitle {
font-size: 0.9rem;
}

.client-card {
padding: 15px 8px;
}

.client-logo {
height: 130px;
margin-bottom: 10px;
}

.client-logo img {
max-height: 90px;
}

.client-name {
font-size: 0.75rem;
}

.stat-number {
font-size: 2rem !important;
}
}

@media (max-width: 576px) {
.client-category {
margin-bottom: 40px;
}

.category-header {
margin-bottom: 30px;
}

.client-card {
margin-bottom: 15px;
}

.client-stats {
padding: 2rem !important;
}
}

/* Loading Animation for Images */
.client-logo img {
opacity: 0;
animation: fadeInLogo 0.5s ease forwards;
}

@keyframes fadeInLogo {
to {
opacity: 1;
}
}

/* Staggered Animation Delays */
.client-card:nth-child(1) .client-logo img { animation-delay: 0.1s; }
.client-card:nth-child(2) .client-logo img { animation-delay: 0.2s; }
.client-card:nth-child(3) .client-logo img { animation-delay: 0.3s; }
.client-card:nth-child(4) .client-logo img { animation-delay: 0.4s; }
.client-card:nth-child(5) .client-logo img { animation-delay: 0.5s; }
.client-card:nth-child(6) .client-logo img { animation-delay: 0.6s; }

/* ********************************* */

/* =========================================
PREMIUM RESPONSIVE FOOTER ROAD
========================================= */

.footer-road {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;

    background: url(../img/city3.png)
    repeat-x center bottom;

    background-size: cover;

    isolation: isolate;
}

/* DARK OVERLAY */
/* 
.footer-road::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.08),
        rgba(0,0,0,0.18)
    );

    z-index: 1;
} */

/* ROAD SHADOW */

.footer-road::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 12px;

    background: rgba(0,0,0,0.2);

    z-index: 2;
}

/* =========================================
COMMON TRUCK STYLE
========================================= */

.truck {
    position: absolute;
    z-index: 5;

    height: auto;

    will-change: transform;

    filter:
    drop-shadow(0 6px 10px rgba(0,0,0,.35));

    pointer-events: none;
}

/* =========================================
TRUCK 1
LEFT TO RIGHT
========================================= */

.truck-1 {
    width: 95px;
    bottom: 10px;
    right: -140px;

    transform: scaleX(1);
    animation:

    moveLeft 16s linear infinite;
}

/* =========================================
TRUCK 2
RIGHT TO LEFT
========================================= */

.truck-2 {
    width: 80px;
    bottom: 60px;
    right: -140px;

    

    animation:
    moveRight 16s linear infinite;
}

/* =========================================
TRUCK 3
LEFT TO RIGHT
========================================= */

.truck-3 {
    width: 70px;
    bottom: 95px;
    left: -180px;

    opacity: .95;
    transform: scaleX(-1);
    animation:
    moveRightSlow 24s linear infinite;

    animation-delay: 4s;
}

/* =========================================
PLANE
========================================= */

.cargo-plane {
    position: absolute;

    width: 90px;

    top: 15px;
    left: -200px;

    z-index: 4;
    transform: scaleX(-1);
    opacity: .95;

    animation:
    flyPlane 28s linear infinite;

    filter:
    drop-shadow(0 0 10px rgba(255,255,255,.2));
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes moveRight {

    0% {
        left: -160px;
    }

    100% {
        left: 110%;
    }
}

@keyframes moveRightSlow {

    0% {
        left: -220px;
    }

    100% {
        left: 110%;
    }
}

@keyframes moveLeft {

    0% {
        right: -160px;
    }

    100% {
        right: 110%;
    }
}

@keyframes flyPlane {

    0% {
        left: -200px;
        top: 20px;
    }

    50% {
        top: 5px;
    }

    100% {
        left: 110%;
        top: 30px;
    }
}

@media (max-width: 526px) {

.footer-road {
    height: 280px;
}

.truck-1 {
    width: 110px;
    bottom: 0;
    z-index: 10;
}

.truck-2 {
    width: 80px;
    bottom: 28px;
}

.truck-3 {
    width: 70px;
    bottom: 35px;
    z-index: 2;
}

.cargo-plane {
    width: 100px;
    top: 25px;
}
}






/* =========================================
TABLET
========================================= */

@media (min-width: 768px) {

    .footer-road {
        height: 280px;
    }

    .truck-1 {
        width: 150px;
        bottom: 0;
        z-index: 10;
    }

    .truck-2 {
        width: 110px;
        bottom: 38px;
    }

    .truck-3 {
        width: 90px;
        bottom: 47px;
        z-index: 2;
    }

    .cargo-plane {
        width: 140px;
        top: 25px;
    }
}

/* =========================================
LAPTOP
========================================= */

@media (min-width: 1200px) {

    .footer-road {
        height: 500px;
    }

    .truck-1 {
        width: 220px;
        /* bottom: 25px; */
        z-index: 10;
    }

    .truck-2 {
        width: 130px;
        bottom: 72px;
    }

    .truck-3 {
        width: 105px;
        bottom: 90px;
    }

    .cargo-plane {
        width: 220px;
        top: 35px;
    }
}

/* =========================================
LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

    .footer-road {
        height: 520px;
    }

    .truck-1 {
        width: 280px;
    }

    .truck-2 {
        width: 230px;
    }

    .truck-3 {
        width: 200px;
    }

    .cargo-plane {
        width: 300px;
    }
}