@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* navigation bar and banner */
:root {
    --primary-color: #115030;
    --secondary-color: #9c1c27;
    --title-font: "Poppins", sans-serif;
    --p-font: "Poppins", sans-serif;
    --bg-white: #fdfdfd;
    --transparent-25-primary: rgba(17, 80, 48, 0.25);
    --transparent-25-secondary: rgba(156, 28, 39, 0.25);
    --transparent-50-primary: rgba(17, 80, 48, 0.5);
    --transparent-50-secondary: rgba(156, 28, 39, 0.5);
    --transparent-70-primary: rgba(17, 80, 48, 0.7);
    --transparent-70-secondary: rgba(156, 28, 39, 0.7);
    --transparent-80-primary: rgba(17, 80, 48, 0.8);
    --transparent-80-secondary: rgba(156, 28, 39, 0.8);
    --transparent-90-primary: rgba(17, 80, 48, 0.9);
    --transparent-90-secondary: rgba(156, 28, 39, 0.9);
}
html{
    scroll-behavior: smooth;
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  

#navigation {
    position: fixed;
    z-index: 10;
    width: 100%;
}

#navigation .logoBox {
    margin-left: 20px;
    height: 120px;
    width: 270px;
    background-image: url("../img/logoColor.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: 0.2s;
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: #fff;
}

.navbar-brand {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2em;
    color: #262626;
}

.nav-item {
    font-family: var(--p-font);
    font-weight: 500;
    text-transform: capitalize;
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item.active .nav-link {
    background: #be1717;
    color: #fff;
}

.dropdown-item.active {
    background: #be1717;
    color: #fff;
}

.navbar-nav .nav-item .nav-link {
    color: #262626;
    padding: 5px 15px;
}

.navbar .navbar-toggler {
    color: #000;
    border: 2px solid #7f7f7f;
    border-radius: none;
    outline: none;
}

.navbar .navbar-toggler {
    box-shadow: none;
}



@media all and (min-width: 992px) {
    .navbar{
        background: #fff;
    }
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

@media screen and (max-width: 550px) {
    .logoBox {
        width: 200px !important;
        height: 100px !important;
    }
}


/* hero vid */

#video {
    margin-top: 150px;
    position: relative;
    width: 100%;
    height: 100vh;
}

#video video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videocontainer {
    height: 500px;
    background-color: rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

#video .text{
    text-align: center;
    top: 50%;
    left: 50%;
    font-size: 35px;
    position: absolute;
    transform: translate(-50%, -50%);
    letter-spacing: 6px;
    width: 100%;
    z-index: 2;
    color: #fff;
}

#video .text h1{
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 2.5em;
    letter-spacing: 2px;
    margin-top: 25px;
    margin-bottom: 25px;
    /* font-family: Bodoni; */
    color: #fff;
}
#video .text p {
    font-size: .75em;
    color: #fff;
    letter-spacing: normal;
}
#video .buttons button{
    text-transform: uppercase;
    font-weight: 700;
    font-size: .9em;
    margin-top: 25px;
}
#video .buttons button a{
    text-decoration: none;
    color: #000;
}
/* #video .text .YT p {
    width: 70%;
    margin: auto;
    font-size: 15px;
    line-height: 1.9;
    color: #fff;
}
#video .text .YT i{
    font-size: 1em;
}
#video .text .YT {
    text-transform: capitalize;
    text-decoration: none;
    padding: 8px 20px;
    color: #fff;
    margin-top: 30px;
    border-radius: 5px;
} */

#video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


@media only screen and (min-width: 768px) and (max-width: 2100px) {
    #video .text {
        bottom: 250px;
    }
    
 
}

@media only screen and (min-width: 767px) and (max-width: 1440px) {
    #video .text {
        bottom: 250px;
    }

    #video .text h1{
        font-size: 50px;
    }

    #video .text p {
        font-size: 17px;
        width: 100%;
    }
    #video .buttons button{
        font-size: .7em;
    }
}
@media only screen and (max-width: 767px) {
    #video .text {
        bottom: 250px;
    }

    #video .text h1{
        font-size: 30px;
    }

    #video .text p {
        font-size: 15px;
        width: 100%;
    }
    #video .buttons button{
        font-size: .5em;
    }
}




/* end hero vid */


/* carousel */
#project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.imgContainer {
    height: inherit;
    background-color: rgba(0, 0, 0, 0.5);
    object-fit: contain;
    background: url('../img/aldua2.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;

}

.imgContainer.complete{
    background: url('../img/kange7.png') no-repeat;
    background-size: cover;
    background-position: center bottom;
}

#project-hero .text {
    text-align: center;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: #555;
    letter-spacing: 6px;
    width: 100%;
    z-index: 2;
}


#project-hero .text h5 {
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.5em;
}

#project-hero .text p {
    font-size: .6em;
    color: #fff;
    letter-spacing: normal;
    max-width: 750px;
    text-align: center;
    margin: auto;
}

#project-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 2100px) {
    #project-hero .text {
        bottom: 250px;
    }

    #project-hero .text h5 {
        font-size: 45px;
    }

    #project-hero .text p {
        font-size: 18px;
        /* width: 100%; */
    }
}

@media only screen and (max-width: 767px) {
    #project-hero .text {
        bottom: 250px;
    }

    #project-hero .text h5 {
        font-size: 30px;
    }

    #project-hero .text p {
        font-size: 12px;
        max-width: 400px;
    }
}

/* end carousel */

/* projekt cards */
#projectSlider{
    .title h1 {
        text-align: center;
        font-family: var(--title-font);
        color: #333;
    }
    .title .line{
        height: 5px;
        width: 80px;
        background: #333;
        margin: 0 auto 15px;
    }
    .card {
        margin: 0 10px;
        border-radius: 25px;
        color: #fff;
      }

      .card .wrapper {
        background: linear-gradient(to bottom, transparent, rgba(17, 80, 48, 1) 58%);
        min-height: 540px;
        position: relative;
        overflow: hidden;
      }

      .card .data {
        position: absolute;
        bottom: 0;
        width: 100%;
      }
      .card .data .content {
        padding: 1.5em;
        position: relative;
        z-index: 1;
      }
      .card .type {
        font-size: 12px;
      }
      .card .title {
        margin-top: 10px;
      }
      .card .text {
        /* height: 120px; */
        margin: 0;
      }

      .project_card .wrapper {
        border-radius: 25px;

      }
      .project_card .content {
        background: linear-gradient(to bottom, transparent, rgba(17, 80, 48, 1) 58%);
        /* box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3); */
      }
      .project_card h1{
        font-size: 35px;
      }
      .project_card .title a {
        color: #fff;
        text-decoration: none;
        text-transform: capitalize;
      }
}

/* project cards end */

/* product slider */
#productSlider .slider {
    width: 100%;
    height: var(--height);
    margin: 20px 0 10px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  }
  #productSlider .slider .sliderList {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
  }
  #productSlider .slider .sliderList .sliderItem {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 30s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc(
      (30s / var(--quantity)) * (var(--position) - 1)
    ) !important;
  }
  #productSlider .slider .sliderList .sliderItem img {
    width: 100%;
  }
  @keyframes autoRun {
    from {
      left: 100%;
    }
    to {
      left: calc(var(--width) * -1);
    }
  }


/* banner */
.banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/nanenane7.png");
    max-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 200px;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
}
.banner.furBan{
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/Steel\ Fabrication.png");
}
.banner .inner{
   max-width: 500px;
}
.banner h1{
    text-align: left;
    font-family: var(--title-font);
    font-weight: bold;
    color: #fff;
}
.banner p {
    padding: 15px;
    font-family: var(--p-font);
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5em;
    color: #fff;
    text-align: left;
    z-index: 1;
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, .5);
    }

    .banner {
        padding: 200px 0;
    }

    .banner h2 {
        font-size: 1.8em;
        color: #262626;
        text-align: center;
        display: none;
    }

    .banner h1 {
        margin-left: 0;
    }

    .banner p {
        margin-left: 0;
        font-size: 1em;
    }

}

#heroCard .cardsBox{
    transform: translateY(-50px);
}

#heroCard .cardsBox .card{
    background-color: var(--primary-color);
    color: #fff;
}
#heroCard .cardsBox h5{
    font-size: 30px;
    font-weight: bold;
    font-family: var(--title-font);
    text-transform: capitalize;
}
#heroCard .cardsBox p{
    font-family: var(--p-font);
}

#serviceCards{
    background: var(--secondary-color);
}
#serviceCards .card{
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    
    .card-title{
        text-transform: capitalize;
    }
    img{
        height: 80px;
        margin: auto;
    }
}
#serviceCards .vertline{
    margin-top: 35px;
    height: 140px;
    width: 1px;
    background-color: #fff;
}
@media (max-width: 991px) {
    #serviceCards .vertline{
        display: none;
    }
}
/* whatWeDo Section */
#whatWeDo {
    background: var(--bg-white);
    padding-bottom: 25px;
}

#whatWeDo p {
    font-family: var(--p-font);
}

.title h1 {
    font-family: var(--title-font);
    color: #333;
}
.title .line{
    height: 5px;
    width: 80px;
    background: #333;
    margin: 0 auto 15px;
}
.title img {
    margin-top: 20px;
    width: 150px;
}

#gallery .image {
    position: relative;
}

#gallery img {
    width: 100%;
    height: 250px;
    max-height: 250px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    border-radius: 5px;
    object-fit: cover;
}

#gallery .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
    backdrop-filter: blur(10px);
    color: #fff;
}
#gallery .content.one {
    background: var(--transparent-70-primary);
}

#gallery .content.two {
    background: var(--transparent-70-secondary);
}

#gallery .content.three {
    background: var(--transparent-70-primary);
}

#gallery .content.four {
    background: var(--transparent-70-primary);
}

#gallery .content.five {
    background: var(--transparent-70-secondary);
}

#gallery .content.six {
    background: var(--transparent-70-primary);
}

#gallery .image:hover .content {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    #gallery .content {
        opacity: 1;
        backdrop-filter: blur(5px);
    }

    #gallery .content h2 {
        font-size: 20px;
    }
}

/* End whatWeDo Section */

/* funFacts Section */
#funfacts {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(46, 45, 45, 0.8), rgba(46,45,45, 0.8)), url("../img/bg1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#funfacts .card {
    background: transparent;
    color: #fff;
    border: none;
    text-align: center;
}

#funfacts .numBox {
    display: flex;
    justify-content: center;

}

#funfacts .numBox h1 {
    font-size: 50px;
    font-family: var(--title-font);
}

#funfacts p {
    font-size: 18px;
    font-weight: bold;
    font-family: var(--p-font);
}

#funfacts .numBox span {
    font-size: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    #funfacts .numBox h1 {
        font-size: 40px;
    }
    
    #funfacts p {
        font-size: 12px;
    }
    #funfacts .numBox span {
        font-size: 40px;
    }
}
@media screen and (max-width: 768px) {
    #funfacts .numBox h1 {
        font-size: 40px;
    }
    
    #funfacts p {
        font-size: 15px;
    }
    #funfacts .numBox span {
        font-size: 40px;
    }
}
/* End funFacts section */

/* testimonials */
#testimonials {
    background: var(--primary-color);
    padding-bottom: 20px;
    color: #fff;
}

#testimonials .title img {
    margin-top: 20px;
    width: 150px;
}

.tesHolder {
    display: flex;
    justify-content: center;
    align-items: center;
}


.testimonial {
    margin-bottom: 20px;
    font-family: var(--p-font);
}

.testimonial .card {
    background-color: transparent;
    /* border: 5px solid #fff; */
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.testimonial .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    text-align: center;
    width: 100%;
}

.testimonial button.owl-dot {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin: 0 6px;
    text-align: center;
    background-color: #262626 !important;
    border-radius: 50%;
}

.testimonial button.owl-dot.active {
    background-color: #fff !important;
}


/* end testimonials */
/* footer */
footer {
    background-color: #fff;
    position: relative;
}

footer h5 {
    font-family: var(--title-font);
}

footer a,
footer p {
    color: #000;
    font-family: var(--p-font);
}
footer .vertline{
    /* margin-top: 35px; */
    height: 150px;
    width: 1px;
    background-color: #fff;
    margin: 0 25px;
}
footer .footCol{
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 997px) {
    footer .footCol{
        display: block;
    }
    footer .vertline{
        display: none;
        margin: none;
    }
}


#cusfoot {
    display: flex;
    background: #000;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    padding: 5px;
}

#cusfoot li a {
    text-decoration: none;
    color: #fff;
}

/* end footer */

/* About us Page */
#statements .icon{
    /* font-size: 40px; */
    margin: 20px auto;
    padding: 10px;
    height: 150px;
    width: 150px;
}
#statements .icon img{
    width: 100%;
}
#statements h3{
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}
#statements .text{
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

/* inHouse slide */
#inHouse {
    background: var(--primary-color);
}

#inHouse .title {
    margin-bottom: 30px;
}

#inHouse .title h1 {
    text-transform: uppercase;
    font-size: 40px;
    font-family: var(--title-font);
    color: #fff;
    text-align: center;
}



.services .boxCard{
    height: 500px;
    max-height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.services .boxCard img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    /* transition: transform 0.5s; */
}
.services .boxCard .overlay{
    height: 100%;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8) 58%);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    padding: 140px 40px 0;
    text-align: left;
    font-size: 14px;
    color: #fff;
    /* transition: height 0.5s; */
}

.services h3 {
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: bolder;
}

.services p {
    font-family: var(--p-font);
}

#inHouse .titleUnder {
    color: var(--primary-color);
    /* border: 3px solid #ffd700; */
    height: 5px;
}

.services .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    text-align: center;
    width: 100%;
}

.services button.owl-dot {
    width: 20px;
    height: 6px;
    display: inline-block;
    margin: 0 6px;
    text-align: center;
    background-color: #7f7f7f !important;
    border-radius: 5px;
}

.services button.owl-dot.active {
    background-color: #262626 !important;
}

@media screen and (max-width: 900px) {
    #inHouse .title .text h1 {
        font-size: 26px;
    }
}

/* end inHouse slide */


/* timeline */
#historyTime {
    background: linear-gradient(rgba(46, 45, 45, 0.8), rgba(46,45,45, 0.8)), url("../img/bg1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.timelineContainer {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 30px;
}

.timelineRow {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    grid-column-gap: 40px;
}

.timelineRow .timelineDate {
    grid-area: theDate;
}

.timelineRow .timelineLine {
    position: relative;
    background-color: #fff;
    grid-area: theLine;
}

.timelineRow .timelineLine span {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
}

.timelineRow .timelineContent {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    grid-area: theContent;
    color: #262626;
}

.timelineContent h2 {
    padding-bottom: 8px;
    color: var(--secondary-color);
}

.timelineContent p {
    line-height: 1.5;
}

.timelineRow:nth-child(odd) {
    grid-template-areas: 'theDate theLine theContent';
}

.timelineRow:nth-child(even) {
    grid-template-areas: 'theContent theLine theDate';
}

.timelineRow .timelineContent,
.timelineRow .timelineDate {
    margin-bottom: 35px;
}

.timelineRow:nth-child(odd) .timelineDate {
    text-align: right;
}

.timelineDate span {
    display: inline-block;
    padding: 10px 16px;
    font-weight: 600;
    border: 3px solid #fff;
    border-radius: 25px;
    position: relative;
    top: -7px;
    color: #fff;
}

.timelineLine .last-point {
    top: initial !important;
    bottom: 0;
}

.timelineRow .last {
    margin-bottom: 0;
}

.timelineRow:hover .timelineLine span:not(.last-point) {
    background-color: var(--secondary-color);
    box-shadow: 0 0 9px 3px var(--secondary-color);
}

@media(max-width: 768px) {

    .timelineRow:nth-child(odd),
    .timelineRow:nth-child(even) {
        grid-template-columns: 2px 1fr;
        grid-template-areas: 'theLine theDate' 'theLine theContent';
    }

    .timelineRow:nth-child(odd) .timelineDate {
        text-align: left;
    }

    .timelineRow .timelineDate {
        margin-bottom: 5px;
    }

    .timelineRow .timelineContent {
        margin-bottom: 25px;
    }

    .timelineRow .last {
        margin-bottom: 5px;
    }
}

@media(max-width:520px) {
    .timelineRow .timelineLine {
        display: none;
    }

    .timelineRow:nth-child(odd),
    .timelineRow:nth-child(even) {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }
}

/* end timeline */
/* end history */

/* end About us page*/

/* project pages */
#projectGallery {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    padding: 20px;
    color: #fff;
}

#projectGallery .card {
    background: var(--primary-color);
    text-align: center;
    margin: 10px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#projectGallery .card .card-img-top {
    height: 250px;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
}

#projectGallery .card .card-title {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

#projectGallery .card .card-text {
    font-size: 18px;
    color: #fff;
}

.singleProject {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal .desc{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.modal .desc a{
    max-width: 140px;
}
.modal .modal-title {
    color: var(--primary-color);
    font-weight: bolder;
    font-family: var(--title-font);
}

.modal .modal-body h3 {
    color: var(--secondary-color);
    font-family: var(--title-font);
}

.modal .modal-body p{
    text-align: justify !important;
}

/* end project pages */

/* contact us */
#contactUs {
    background: var(--primary-color);
}

#contactUs .title {
    color: #fff;
}

.contactBox {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(5pxs);
    border-radius: 20px;
}

.contactInfo {
    margin-top: 100px;
}

.contactInfo .title {
    margin: 20px 0 20px;
    font-weight: 500;
    font-size: 40px;
    color: var(--secondary-color) !important;
}

.contactBox .card {
    background: transparent;
    border-radius: 10px;
    padding: 5px;
    border: none;
}

.contactBox .card h3 {
    color: var(--secondary-color);
}

.contactBox .card h2 {
    color: var(--primary-color);
    margin-left: 10px;
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    font-size: 30px;
    font-weight: 500;
}

.contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
    background: transparent;
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px auto;
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    outline: none;
    resize: none;
}

.contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contact-form .input-box input:focus~span,
.contact-form .input-box input:valid~span,
.contact-form .input-box textarea:focus~span,
.contact-form .input-box textarea:valid~span {
    color: var(--secondary-color);
    font-size: 14px;
    transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"] {
    width: 100px;
    background: transparent;
    color: #000;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    transition: .2s ease-in;
}

.contact-form .input-box input[type="submit"]:hover {
    background: var(--secondary-color);
    color: #fff;
}

@media screen and (max-width: 800px) {
    .contactInfo {
        margin-top: 0;
    }
}

#map {
    background: var(--primary-color);
}

/* Products page */
#furnitureCarousel{
    font-family: var(--p-font);
}

.furniture-title{
    font-size: 5em;
    font-weight: bold;
}

.furniture-txt{
    font-weight: 400;
    font-size: 2.5em;
}

.mora-gramps{
    display: flex;
    justify-content: right;
    align-items: center;
}

.mora{
    width: 25em;
}

#furnitureList{
    font-family: var(--p-font);
    overflow-x: hidden;
}
#furnitureList section{
    height: 100vh;
    max-height: 100vh;
    display: flex;
    /* background-position: center; */
    background-repeat: no-repeat;
    /* padding: 150px 0 200px; */
}

.carousel-indicators button{
    height: 15px !important;
    width: 15px !important;
    border-radius: 50% !important;
}

.modernFurniture{
    background: url("../img/Modern\ Furniture.png");
    background-position: center top;  
    background-size: cover;

}
.executiveFurniture{
    background: url("../img/Exceutive\ Table.png");
    display: flex;
    /* justify-content: right; */
    background-position: center;
    background-size: cover;
}
.executiveFurniture h1{
    margin-top: 30px;
    margin-left: 150px;
}
.officeFurniture h1{
    /* margin-top: 80px; */
    margin-right: 250px;
}
.homeFurniture{
    background: url("../img/Home\ Furniture.png");
    background-position: bottom;
    background-size: cover;

}
.judiciaryFurniture{
    background: url("../img/Judiciary.png");
    background-size: 50%;
    background-position: top;

}
.officeFurniture{
    background: url("../img/HOTEL\ .png");
    display: flex;
    justify-content: right;
    background-size: 90%;
    background-position: top;
}
@media screen and (min-width: 1440px) {
    .judiciaryFurniture{
        background-size: 40%;
    }
}

@media screen and (max-width: 1440px) {
    .executiveFurniture h1{
        margin-left: 100px;
    }
    .officeFurniture h1{
        margin-right: 40px;
    }
    .officeFurniture{
        background-size: cover;
    }
}

@media screen and (max-width: 786px) {
    .furniture-title{
        font-size: 3em;
    }  
    .furniture-txt{
        font-size: 1.5em;
    }
}
@media screen and (max-width: 500px) {
    .furniture-title{
        font-size: 2em;
    }  
    .furniture-txt{
        font-size: 1em;
    }
    .judiciaryFurniture{
        background-size: cover;
    }
}
/* end products */