/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary: #d27e14;
    --grey: #8A8686;
    --border: #EBEBEB;
    --font: #1D1F20;
    --duration: 0.2s;
    --bg: #dae3e8;
}

.bg-primary1 {
    background: var(--primary);
    color: white;
}

.bg-dark1{
    background: rgba(5, 13, 24, 0.648);
    border: 2px solid white;
}

.bg-primary1:hover {
    background: var(--primary);
    color: white;
}

.border-bottom{
    color: var(--bg);
}

.text-primary1 {
    color: var(--primary);
}

a {
    color: #149ddd;
    text-decoration: none;
}

a:hover {
    color: #37b3ed;
    text-decoration: none;
}

body{
    background: var(--bg);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 20px 0;
    overflow: hidden;
    background: var(--bg);
  }
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
    color: white;
    border-radius: 4px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #ffc451;
    background: var(--primary);
}

.get-started-btn:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

.btn {
    background: var(--primary);
    color: white;
}

.btn:hover{
    background: var(--primary);
    color: white;
}


/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 55px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


.banner-form .field {
    margin: 0 auto 20px;
    max-width: 460px;
    position: relative;
}

.banner-form .field input {
    position: relative;
    font-family: inherit;
    font-size: 16px;
    width: 100%;
    padding: 16px 2px;
    font-weight: 400;
    outline: none;
    transition: all var(--duration) ease-in-out;
    border: none;
    border-bottom: 2px solid var(--border);
    border-radius: 0;
}

.banner-form .field input::placeholder {
    color: var(--grey);
}

.banner-form .field input label span {
    opacity: 1;
    transform: translateY(-16px);
    transition: transform 0.3s ease-out, opacity 0.4s ease-out;
    transition-delay: calc((var(--index)) * 0.04s)
}

.banner-form .field input::selection {
    background: white;
}

.banner-form .field input:not(:placeholder-shown) {
    padding: 22px 0 10px 2px;


}

.banner-form .field input .border {
    transform: scaleX(1);
}

.banner-form .field label {
    pointer-events: none;
    position: absolute;
    top: calc(50% - 10px);
    left: 1px;
    /* color: #6AC890; */
}


.banner-form .field .border {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    border-bottom: 2px solid var(--primary);
    transition: transform var(--duration) ease-out;
    transform-origin: left;
}

/* Basic Styles */
.fancy-button {
    position: relative;
    color: #fff;
    border: 1px solid;
    margin: 5px;
    padding: 10px 25px;
    text-decoration: none;
    display: block;
    outline: none;
    line-height: 100%;
    overflow: hidden;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--primary);
}

.fancy-button:hover {
    text-decoration: none;
}

.fancy-button .icon {
    float: right;
}

.fancy-button.icon {
    display: inline-block;
}

.fancy-button:active .icon,
.fancy-button:focus .icon {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
}

.small {
    padding: 5px 15px;
    font-size: 1em;
    height: 25px;
}

.medium {
    padding: 10px 25px;
    font-size: 1.15em;
}

.large {
    padding: 20px 25px;
    font-size: 1.25em;
    height: 55px;
}

.half-left-rounded {
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-bottom-right-radius: 15px;
    -o-border-bottom-right-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-border-top-left-radius: 15px;
    -moz-border-top-left-radius: 15px;
    -o-border-top-left-radius: 15px;
    border-top-left-radius: 15px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -o-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
    -o-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}


.asbestos {
    background-color: var(--primary);
}

.asbestos:hover {
    color: white;
    background-color: var(--primary);
}



.bounce {
    -webkit-animation: bounce 1.75s 10 linear alternate;
    -moz-animation: bounce 1.75s 10 linear alternate;
    -o-animation: bounce 1.75s 10 infinite linear alternate;
    animation: bounce 1.75s infinite linear alternate;
    /* animation: bounce 1s infinite ; */
    transition: 0.5s;
}

.bounce:hover {
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.vertical {

    -webkit-animation: vertical 1.25s infinite linear alternate;
    -moz-animation: vertical 1.25s infinite linear alternate;
    -o-animation: vertical 1.25s infinite linear alternate;
    animation: vertical 1.25s infinite linear alternate;

}

.vertical:hover .icon {
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.expand {
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.expand:hover {
    -webkit-animation: expand 0.15s forwards linear;
    -moz-animation: expand 0.15s forwards linear;
    -o-animation: expand 0.15s forwards linear;
    animation: expand 0.15s forwards linear;
}


@-webkit-keyframes bounce {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(3deg);
    }

    100% {
        -webkit-transform: rotate(-3deg);
    }
}

@-moz-keyframes bounce {
    0% {
        -moz-transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(3deg);
    }

    100% {
        -moz-transform: rotate(-3deg);
    }
}

@-o-keyframes bounce {
    0% {
        -o-transform: rotate(0deg);
    }

    50% {
        -o-transform: rotate(3deg);
    }

    100% {
        -o-transform: rotate(-3deg);
    }
}

@keyframes bounce {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}


@-webkit-keyframes vertical {
    0% {
        margin-top: 0;
    }

    25% {
        margin-top: -4px;
    }

    50% {
        margin-top: 0;
    }

    75% {
        margin-top: -4px;
    }

    100% {
        margin-top: 0;
    }
}

@-moz-keyframes vertical {
    0% {
        margin-top: 0;
    }

    25% {
        margin-top: -4px;
    }

    50% {
        margin-top: 0;
    }

    75% {
        margin-top: -4px;
    }

    100% {
        margin-top: 0;
    }
}

@-o-keyframes vertical {
    0% {
        margin-top: 0;
    }

    25% {
        margin-top: -4px;
    }

    50% {
        margin-top: 0;
    }

    75% {
        margin-top: -4px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes vertical {
    0% {
        margin-top: 0;
    }

    25% {
        margin-top: -4px;
    }

    50% {
        margin-top: 0;
    }

    75% {
        margin-top: -4px;
    }

    100% {
        margin-top: 0;
    }
}


@-webkit-keyframes expand {
    to {
        -webkit-transform: scale(1.1);
    }
}

@-moz-keyframes expand {
    to {
        -moz-transform: scale(1.1);
    }
}

@-o-keyframes expand {
    to {
        -o-transform: scale(1.1);
    }
}

@keyframes expand {
    to {
        transform: scale(1.1);
    }
}


/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 350px;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    background: white;
    overflow-y: auto;
}

#header .profile img {
    margin: 15px auto;
    display: block;
    width: 120px;
    border: 8px solid #2c2f3f;
}

#header .profile h1 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    -moz-text-align-last: center;
    text-align-last: center;
    font-family: "Poppins", sans-serif;
}

#header .profile h1 a,
#header .profile h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .profile .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #212431;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#header .profile .social-links a:hover {
    background: #149ddd;
    color: #fff;
    text-decoration: none;
}

#main {
    margin-left: 300px;
}

@media (max-width: 1199px) {
    #header {
        left: -300px;
    }

    #main {
        margin-left: 0;
    }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    height: 80px;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar  .nav-bord {
    position: relative;
    border-left: 1px solid var(--grey);
    padding:5px
  }

  @media (max-width: 480px) {
    .navbar  .nav-bord {
        position: relative;
        border-left: none;
        padding:5px
      }

      .navbar  li {
        align-items: flex-start;
        width: 100%;
      }
      .navbar li:hover {

        color: white;
        background: var(--primary);
      }

      .navbar {
        padding: 0;
        height: 90px;
        background: white;
      }

      
      .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        background: white;
        box-shadow: #151515;
      }

}

  .navbar li:hover {
    color: white;
    background: var(--primary);
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar  a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>li {
    /* color: #ffc451; */
    color: white;
    background: var(--primary);
  }
  
  .navbar .nav-item:hover {
    color: white;
    background: var(--primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #151515;
    font-weight: 400;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    background-color: #ffc451;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }

  /**
* Mobile Navigation 
*/

  


  /*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/

#home .home-banner{
    width: 100%;
    height: 90vh;
    background: url("../img/banner/banner18.jpg") top center;
    background-size: cover;
}

#home .home-banner .home-content{
    background: white;
    border-radius: 10px;
}

@media (max-width: 480px) {
    #home .home-banner{
        width: 100%;
        height: 50vh;
        background: url("../img/banner/banner18.jpg") top center;
        background-size: cover;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/banner/banner18.jpg") top center;
    background-size: cover;
}

#hero:before {
    content: "";
    background: rgba(5, 13, 24, 0.3);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#hero .hero-container {
    position: relative;
    z-index: 2;
    min-width: 300px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero p {
    color: #fff;
    margin-bottom: 50px;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
}

#hero p span {
    color: #fff;
    padding-bottom: 4px;
    letter-spacing: 1px;
    border-bottom: 3px solid #149ddd;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}



.home-banner {
    background: white;
    border-radius: 10px;
}


.vertical-text {
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -ms-transform-origin: left top 0;
    -moz-transform-origin: left top 0;
    -webkit-transform-origin: left top 0;
    transform-origin: left top 0;
      
    
    
    margin-left: 40px;
    text-transform: 1px 1px 0px rgba(0, 0, 0, 0.5);
    /* box-shadow: 2px -2px 0px rgba(0, 0, 0, 0.1); */
    float: left;
    cursor: vertical-text;
    }



    .content {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: auto;
        overflow: hidden;
      }
      
      .content .content-overlay {
        background: rgba(0,0,0,0.7);
        position: absolute;
        height: 99%;
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
      }
      
      .content:hover .content-overlay{
        /* opacity: 0.1; */
        background: rgba(5, 13, 24, 0.3);
      }

      .content img{
        -webkit-transition: opacity 0.4s ease;
        -moz-transition: opacity 0.4s ease;
        -o-transition: opacity 0.4s ease;
        transition: opacity 0.4s ease;
      }
            
     .content-image{
        width: 100%;
        /* filter: blur(1px);
        -webkit-filter: blur(1px); */
        opacity: 0.5;
      }
      
      .content-image .currentClick{
        opacity:2;
      }

      .content-image:hover{
        width: 100%;
        background: rgba(5, 13, 24, 0.3);
      }

      .content-image2{
        width: 280;
        height:250px;
        padding-bottom: 5px;
      }
      
      
      .content-details {
        position: absolute;
        text-align: center;
        padding-left: 1em;
        padding-right: 1em;
        width: 100%;
        top: 50%;
        left: 50%;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
      }
      
      .content:hover .content-details{
        top: 50%;
        left: 50%;
        opacity: 1;
      }
      
      .content-details h3{
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.15em;
        margin-bottom: 0.5em;
        text-transform: uppercase;
      }
      
      .content-details p{
        color: #fff;
        font-size: 0.8em;
      }
      
      .fadeIn-bottom{
        top: 80%;
      }
      
      .fadeIn-top{
        top: 20%;
      }
      
      .fadeIn-left{
        left: 20%;
      }
      
      .fadeIn-right{
        left: 80%;
      }


      
/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 10px;
    position: relative;
    overflow: hidden;
    /* background: #fff; */
    /* box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12); */
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    align-content: center;
  }
  
  .featured-services .icon-box::before {
    content: "";
    position: absolute;
    /* background: #cbe0fb; */
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .featured-services .icon-box:hover::before {
    /* background: var(--logo); */
    top: 0;
    border-radius: 0px;
  }
  
  .featured-services .icon-box:hover img {
   /* background: white; */
   /* border-radius: 50px; */
   /* padding: 10px; */
  }
  
  
  
  
  .featured-services .icon {
    margin-bottom: 15px;
  }
  
  .featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: var(--logo);
    transition: all 0.3s ease-in-out;
  }
  
  .featured-services .icon img {
   height: 100px;
   width: 100px;
    line-height: 1;
    color: var(--logo);
    transition: all 0.3s ease-in-out;
    align-items: center;
  }
  
  .featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
   
  }
  
  .featured-services .title a {
    /* color: #111; */
    color: var(--logo);
  }
  
  .featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: center;
  }
  
  .featured-services .icon-box:hover .title a,
  .featured-services .icon-box:hover .description {
    /* color: #fff; */
  }
  
  .featured-services .icon-box:hover .icon i {
    color: #fff;
  }
  
  /**
* Mobile Bottom Navigation 
*/

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    
    z-index: 1000;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: flex;
    padding: 5px 0;
    box-shadow: 0 -2px 5px -2px #333;
    background-color: var(--primary);
    text-decoration: none;
    }

    .border-left{
        border-right: 2px solid lightgray;
    }
    
    .mobile-bottom-nav__item {
    flex-grow: 1;
    text-align: center;
    font-size: 12px;
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    }
    .mobile-bottom-nav__item a{
    color:white !important;
    font-size: 11px;
    text-decoration: none;
    }
    .mobile-bottom-nav__item--active {
    color: var(--color-primary);
    }
    .h300 img{
    height: 300px;
  }
    .mobile-bottom-nav__item-content a i {
      font-size: 22px;
      color: var(--color-logo);
      display: block;
      margin-bottom: 3px;
  
    }
    
    .mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
    }
 
  /*================================================
Default CSS
=================================================*/
.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: var(--primary);
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  .default-btn span {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--logo);
    color: #ffffff;
    -webkit-transition: width 0.5s ease-in-out, 
   height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, 
   height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
    opacity: 1;
  }
  
  .default-btn:hover {
    color: #ffffff !important;
    background-color: var(--logo);
  }
  
  .default-btn:hover span {
    width: 225%;
    height: 562.5px;
  }
  
  .default-btn i {
    font-size: 16px;
    position: relative;
    top: 2px;
    margin-left: 10px;
  }


  
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

  
   .faq-list {
    padding: 0;
    list-style: none;
    /* background: var(--primary); */
    border: 2px solid var(--bg);
  }
  
    .faq-list li {
    border-bottom: 0.1px solid #d4e5fc;
    /* background: var(--primary); */
    /* margin-bottom: 20px;
    padding-bottom: 20px; */

    
  }
  
   .faq-list .question {
    display: block;
    position: relative;
    font-family: #106eea;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #0d58ba;
    transition: 0.3s;
  }
  
   .faq-list i {
    font-size: 16px;
    position: absolute;
    right: 0;
    top: -2px;
    padding: 10px;
  }
  
   .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
  }
  
   .faq-list .icon-show {
    display: none;
  }
  
   .faq-list .collapsed {
    color: black;
  }
  
   .faq-list .collapsed:hover {
    color: #106eea;
  }
  
   .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
  }
  
   .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
  }


   .faq-point  ul {
    list-style: none;
    padding: 0;
  }
  
  .faq-point  ul li {
    padding-bottom: 10px;
  }
  
  .faq-point  ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary);
  }
  

  