* {
    box-sizing: border-box;
    margin:0;
    padding:0;
  }
  .sticky
  {
    -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
  }
  .fixed {
    position: fixed;
    top:0; left:0;
    width: 100%; 
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
  html {
    scroll-behavior: smooth;
  }
  #logo
  {
    margin-top:7px;
    cursor: pointer;
  }
  body
  {
    font-family: 'Poppins', sans-serif;
  }
.bg-banner
{
    background-image:url('/images/banner.jpg');
    background-size:cover;
    background-position:bottom;
    background-repeat:no-repeat;
    margin:0;
    height: 100vh;
    width:100%;
}
.bg-mining
{
    background-image:url('/images/mining-banner.jpeg');
    background-size:cover;
    background-position:bottom;
    background-repeat:no-repeat;
    margin:0;
    height: 500px;
    width:100%;
}

.bg-civil
{
    background-image:url('/images/civil-banner.jpeg');
    background-size:cover;
    background-position:bottom;
    background-repeat:no-repeat;
    margin:0;
    height: 500px;
    width:100%;
}

#top-header
{
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-list
{
    font-family: 'Poppins', sans-serif;
    display: flex;
    list-style: none;
    gap: 40px;
    line-height: 90px;
}
.menu-list a
{
    color:#000;
    text-decoration: none;
}
.menu-list a:hover
{
    color:#fed615;
}

/* Dropdown menu */
.dropdown
{
    position: relative;
 }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 90px;
   }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    line-height: normal;
  }
  .dropdown-content a:hover {
    background-color: #ddd;
    color:#000;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }

.display-table
{
    display:table;
    height:100%;
    width:100%;
}
.display-table-cell
{
    display: table-cell;
    width: 100%;
    height:100%;
}

header
{
    background-color: #FFF;
    -webkit-box-shadow: 0 5px 5px -5px #777;
    -moz-box-shadow: 0 5px 5px -5px #777;
    box-shadow: 0 5px 5px -5px #777; 
    z-index: 99;
}

.banner-text
{
    text-align: center;
    width: 40%;
    margin: auto;
}

.banner-text h2
{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.banner-text p
{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.container
{
    width: 1140px;
    margin:auto;
    display: block;
}

.first-section
{
padding: 80px 0;
background-color: #eee; 
}
.text-box h2
{
    margin-bottom:20px;
    font-size:30px;
    line-height: 40px;
    color:#000;
}
.text-box p
{
    font-size: 18px;
    line-height: 28px;
    color:#000;

}
.text-box
{
    width:70%;
    margin:auto;
    text-align: center;
}

.text-box-2
{
    width:100%;
    margin:auto;
    text-align: center;
}
.second-section
{
    background-color: #fff;
    padding: 80px 0;
}
.flex-div
{
    display: flex;
    justify-content: space-between;
}
.left-div
{
    width:50%;
}
.right-div
{
    width:50%;
    padding-left:30px;
}
.right-div h2
{
    font-size: 30px;
    line-height: 40px;
    margin-bottom:15px;
    color:#000;
}
.right-div p
{
    font-size:16px;
    line-height: 26px;
    margin-bottom:15px;
    color:#000;
}
.right-div ol
{
    font-size:16px;
    line-height: 26px;
    margin-bottom:15px;
    color:#000;
    padding-left:30px;
}

.img-width
{
    width:570px;
    border-radius: 10px;
}

.third-section
{
    padding:80px 0;
    background-color: #eee;
}
.text-block
{
    text-align: center;
    margin-bottom:30px;
}
.text-block h2
{
    font-size:30px;
    line-height: 40px;
}
.flex-box
{
    display: flex;
    justify-content: flex-start;
    gap:20px;
}
.box-img
{
    width:280px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom:10px;
}
.card-box
{
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-bottom: 10px;
}
.card-box h4
{
    font-size: 20px;
    line-height: 30px;
    margin-bottom:5px;
    color:#000;
    padding-left: 10px;
}
.card-box p
{
    font-size: 16px;
    line-height: 26px;
    color:#000;
    margin-bottom: 10px;
    padding-left: 10px;
}
.text-pad
{
    padding-bottom: 51px;
}
.text-pad2
{
    padding-bottom: 25px;
}
.hideshow
{
    cursor: pointer;
    border-bottom:solid 3px #fed615;
    display: inline-block;
    margin-left:10px;
    padding-left: 0 !important;
}
.services-a{text-decoration: none;color:#000;}
.content
{
    display: none;
}
.content p
{
    font-size:14px;
    line-height: 24px;
    color:#000;
}
.content ul
{
    font-size:14px;
    line-height: 24px;
    color:#000;
    padding-left:25px;
}
.fourth-section
{
    background-color: #fff;
    padding:80px 0;
}
.contact-text
{
    text-align: center;
    width:70%;
    display: block;
    margin: auto;
}
.contact-text h4
{
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
}
.contact-text p
{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    color:#000;
}
.contact-text p a
{
    color:#000;
    text-decoration: none;
}
.contact-text p a:hover
{
    color:#fed615;
}

footer
{
    background-color: #333;
    padding:25px 0;
}
 footer p
 {
    color:#fff;
    font-size:18px;
    line-height: 26px;
 }

 .services-info
 {
    background-color:#eee;
    padding: 80px 0;
 }
 .info-text{padding-right: 30px;}
 .info-text h2
 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
 }
 .info-text p
 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    color:#000;
 }
 
 .info-text .mb{margin-bottom: 10px !important;}

.title-info
{
    font-size: 18px !important;
    line-height: 28px;
    margin-bottom:7px !important;
}
/* Accordion Style */
.accordian-section
{
    padding:40px 0 40px;
}
.accordian-div{width:50%;}
.accordian-list {
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 40px auto;
    width: 100%;
    
  }
 .al{margin-right:40px;}
 .ar{margin-left:40px;}
  .accordian-item {
     padding: 32px 0 14px;
    position: relative;
    list-style: none;
  }
  .accordian-item:not(:last-child) {
    border-bottom: 1px solid #202020;
  }
  
  .accordian-title:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #202020;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 0;
    margin: auto 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: none;
    transition: 0.3s ease transform;
    width: 0;
  }
  .accordian-checkbox:checked + .accordian-title:after {
    transform: rotate(180deg);
  }
  
  .accordian-checkbox {
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  .accordian-checkbox:checked ~ p {
    opacity: 0;
    margin: 0;
    max-height: 0;
    transform: translate(0, 50%);
  }
  
  .accordian-title,
  .accordian-description {
    padding-right: 40px;
  }
  
  .accordian-title {
    color: #202020;
    margin: 0 0 8px;
    position: relative;
    font-size: 22px;
    line-height: 30px;
    font-weight: normal;
  }
  
  .accordian-description {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 26px;
  }
.mobile-menu{display: none;}

/* Mobile responsive */
  @media screen and (max-width: 640px) {
    .bb{border-bottom: 1px solid #202020;}
    .flex-div {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
   }
  .left-div, .right-div, .accordian-div {width:100%;}
  .right-div{padding-left: 0;padding-top: 30px;}
  .al, .ar {
    margin-right: 20px;
    margin-left: 20px;
}
.accordian-list{margin: 0 auto;}
  .first-section, .services-info, .fourth-section, .second-section, .third-section{padding: 50px 20px;}
    #top-header{display: none;}
    .sub-menu{padding-left:30px !important;}
    .container
    {
    width:100%;
    overflow: hidden;
    margin: auto;
}
.img-width {
  width: 100%; 
}
.box-img {
  width: 100%;
}
.text-pad, .text-pad2{padding-bottom:0}
.flex-box { 
  gap: 30px;
  flex-direction: column;
}
.info-text {
  padding-right: 0px;
}
.info-text h2 {
  font-size: 25px;
  line-height: 35px; 
}
.contact-text { 
  width: 100%;
}
footer{text-align: center;}
.banner-text { width: 90%; }
.banner-text h2 { font-size: 35px; line-height: 45px;}
.text-box {
  width: 100%;
  text-align: justify;
}
/* Mobile Menu */
    .mobile-menu {
        display: block;
        max-width: 480px;
        margin: auto;
         background-color: #555; 
        color: white;
        border-radius: 10px;
      }
      
      .topnav {
        /* overflow: hidden; */
        background-color: #fff;
        position: relative;
       }
      
      .topnav #myLinks {
        display: none;
        background-color: #555;
      }
      .topnav #myLinks a
      {
        border-bottom:solid 1px #fff;
        padding-left:10px;
      }
      .mobile-width{height: 60px;}
      .topnav a {
        color: white;
        padding: 5px;
        text-decoration: none;
        font-size: 17px;
        display: block;
      }
      
      .topnav a.icon {
        color: black;
        display: block;
        position: absolute;
        right: 5px;
        font-size: 30px;
        top: 5px;
    }
      
      .topnav a:hover {
        background-color: #fff !important;
        color: black;
      }
      
      /* .active {
        background-color: #04AA6D;
        color: white;
      } */
    
    }