.buttonclass {
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block; /* Ensures it behaves like a button */
  padding: 10px 20px; /* Adjust padding as needed */
  border: 2px solid #000; /* Adds a border, change the color as desired */
  border-radius: 5px; /* Optional, for rounded corners */
  text-decoration: none; /* Removes the default underline from the link */
  color: #000; /* Text color, change as needed */
  font-weight: bold; /* Optional, for bold text */
  text-align: center; /* Ensures the text is centered */
  transition: 0.3s ease; /* Optional, for smooth hover effect */
}

.buttonclass:hover {
  background-color: #f0f0f0; /* Change background color on hover */
  border-color: #007bff; /* Change border color on hover */
}

.downloadButton img{
  cursor: pointer;
}


.company-history-body ul li {
  margin-top: 15px;  /* Adjust the value as needed */
  margin-bottom: 15px;  /* Adjust the value as needed */
}

.gallery {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery img {
  margin-top: 80px;
  width: 10%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
  transition: all ease-out 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.gallery img:hover {
  width: 50%;
}

/* Main nav styling */
nav {
  padding: 50px;
  text-align: center;
}
.slicknav_menu{
	margin-top: 100px;
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  background: #ddd;
  border-radius: 5px;
}

nav > ul > li {
  float: left;
  width: 150px;
  height: 65px;
  line-height: 65px;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

nav > ul > li:hover {
  background: #d5d5d5;
}

/* Dropdown menu styling */
ul.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

ul.drop-menu li {
  background: var(--accent-color);
  color: rgba(255, 255, 255, 0.7);
  width: auto;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: rotate3d(-1, 0, -1, -90deg);
  transform: rotate3d(-1, 0, -1, -90deg);
}

ul.drop-menu li:nth-child(even) {
  -webkit-transform: rotate3d(1, 0, 1, -90deg);
  transform: rotate3d(1, 0, 1, -90deg);
}

ul.drop-menu li a {
  background: #293133;
  color: #FFF;
  line-height: 60px;
  text-align: left;
  padding: 0 15px;
  font-size: 13px;
}

ul.drop-menu li a:hover {
  background: dimgray;
}

ul.drop-menu li:last-child {
  border-bottom: 0;
}

li:hover > ul.drop-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
}

li:hover > ul.drop-menu li {
  -webkit-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
}








@media only screen and (max-width: 767px) {
  .slide-image {
    display: none; /* Hides the image for mobile screens */
  }
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}


/* General Carousel Styling */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 1.5s ease-in-out; /* Controls the transition speed */
}

.carousel-image {
    min-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Animation to Slide the Images */
@keyframes slideCarousel {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.carousel-images {
    animation: slideCarousel 6s infinite; /* 6s cycle, infinite loop */
}

/* Responsiveness */
@media (max-width: 768px) {
    .carousel-image img {
        object-fit: cover;
        height: 300px; /* Adjust image height on smaller screens */
    }
}

.desktop_7 * {
    font-family: Nunito, sans-serif;
  }
  
  .desktop_7 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
  }
  
  .desktop_7 .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .desktop_7 .responsive-container-block.bigContainer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .desktop_7 .responsive-container-block.Container {
    /* max-width: 980px; */
    flex-direction: column;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    /* margin-top: 80px; */
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }
  
  .desktop_7 .text-blk.headingText {
    font-size: 36px;
    line-height: 50px;
    font-weight: 900;
  }
  
  .desktop_7 .text-blk.active {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #03a9f4;
  }
  
  .desktop_7 .text-blk.list {
    font-size: 20px;
    line-height: 34px;
    cursor: pointer;
  }
  
  .desktop_7 .text-blk.all {
    margin-right: 20px;
    margin-left: 0px;
  }
  
  .desktop_7 .text-blk.list {
    margin-left: 0px;
    margin-right: 20px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
  }
  
  .desktop_7 .text-blk.list.active {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
  }
  
  .desktop_7 .squareImg {
    width: 225px;
    height: 225px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }
  
  .desktop_7 .responsive-container-block.imageContainer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 0px;
    padding-right: 0px;
    justify-content: center;

  }

.desktop_7 .responsive-container-block.imageContainer .project{
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box; 
}

  
  .desktop_7 .responsive-container-block.optionsContainer {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    justify-content: center; 
    margin-left: 0px;
    min-height: auto;
    align-items: center;
  }
  
  .desktop_7 .project {
    display: inline-block;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .desktop_7 button {
    cursor: pointer;
  }
  
  .desktop_7 img {
    cursor: pointer;
  }
  
  .desktop_7 img:hover {
    transform: scale(1.02);
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
  }
  
  .desktop_7 .hdImg {
    display: none;
  }
  
  .desktop_7 .btn-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }
  
  .desktop_7 .project:hover .btn-box {
    display: block;
  }
  
  .desktop_7 .imageContainer {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: white;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .desktop_7 .project {
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
  }
  
  .desktop_7 .overlay {
    position: fixed;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(71, 69, 69, 0.7);
    height: 100%;
    width: 100%;
    max-height: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    display: none;
  }
  
  .desktop_7 .overlay-inner {
    top: 50%;
    right: 0px;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: white;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    position: relative;
    opacity: 1;
    width: fit-content;
    max-width: 50%;
    max-height: 85%;
  }
  
  .desktop_7 .close {
    position: absolute;
    top: 3px;
    right: 10px;
    background-image: none;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    outline-color: initial;
    outline-style: initial;
    outline-width: 0px;
    color: #474545;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: initial;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .desktop_7 .overlay-inner .hdImgs {
    width: fit-content;
    height: calc(85% - 55px);
    display: flex;
  }
  
  .desktop_7 .overlay-inner img {
    max-height: 100%;
    max-width: 100%;
    transform: none;
  }

  /* .desktop_7 .squareImg {
    width: 500px;
    height: 300px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  } */
  .desktop_7 .squareImg {
    width: 100%; /* Makes it responsive to the container */
    max-width: 700px; /* Limits the max width */
    height: auto; /* Keeps aspect ratio */
    max-height: 500px; /* Limits the max height */
    padding: 0;
    margin: 0;
}
  @media (max-width: 1024px) {
    .desktop_7 .Container {
      width: 90%;
    }
  
    .desktop_7 .squareImg {
      width: 170px;
      height: 170px;
    }
  
  
    .desktop_7 .overlay-inner {
      margin-top: 20px;
      margin-right: 20px;
      margin-bottom: 20px;
      margin-left: 20px;
      padding-top: 25px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
      width: 80%;
    }
  
    .desktop_7 .close {
      font-size: 14px;
      top: 2px;
      right: 5px;
    }
  
    .desktop_7 .overlay {
      padding-top: 10px;
      padding-right: 30px;
      padding-bottom: 10px;
      padding-left: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .desktop_7 .squareImg {
      width: 225px;
      height: 225px;
    }
  
    .desktop_7 .responsive-container-block.Container {
      max-width: 450px;
    }
  
    .desktop_7 .responsive-container-block.optionsContainer {
      max-width: 380px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
      align-items: center
    }
  
    .desktop_7 .text-blk.list {
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
    }
  
    .desktop_7 .text-blk.list.all.active {
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
    }
  
    .desktop_7 .text-blk.headingText {
      text-align: center;
    }
  
    .desktop_7 .text-blk.list {
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 10px;
      margin-left: auto;
    }
  
    .desktop_7 .text-blk.list.all.active {
      margin-top: 0px;
      margin-right: 14.4219px;
      margin-bottom: 10px;
      margin-left: 14.4219px;
    }
  
    .desktop_7 .responsive-container-block.bigContainer {

      align-items: center;
    }
  }
  
  @media (max-width: 500px) {
    .desktop_7 .text-blk.list.all.active {
      font-size: 14px;
      padding-top: 10px;
      padding-right: 15px;
      padding-bottom: 0px;
      padding-left: 15px;
      line-height: 34px;
    }
  
    .desktop_7 .text-blk.list {
      font-size: 14px;
    }
  
    .desktop_7 .responsive-container-block.optionsContainer {
      min-height: auto;
    }
  
    .desktop_7 .responsive-container-block.imageContainer {
    
    }
  
    .desktop_7 .responsive-container-block.optionsContainer {
      max-width: 330px;
      margin-top: 0px;
      margin-right: auto;

      margin-left: auto;
      align-items: center
    }
  
    .desktop_7 .text-blk.list.all.active {
      font-size: 17px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 10px;
      margin-left: auto;
    }
  
    .desktop_7 .text-blk.list {
      font-size: 17px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 10px;
      margin-left: auto;
    }
  
    .desktop_7 .squareImg {
      width: 100%;
      height: 25%;
    }
  
    .desktop_7 .project {
      padding-top: 0px;
      padding-right: 10px;
      padding-bottom: 0px;
      padding-left: 10px;
      width: 100%;
      height: 25%;
    }
  
    .desktop_7 .overlay-inner {
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 20px;
      margin-left: auto;
      padding-top: 25px;
      padding-right: 10px;
      padding-bottom: 10px;
      padding-left: 10px;
      width: 100%;
    }
  
    .desktop_7 .overlay {
      padding-top: 10px;
      padding-right: 10px;
      padding-bottom: 10px;
      padding-left: 10px;
    }
  
    .desktop_7 .responsive-container-block.bigContainer {

    }
  
    .desktop_7 .overlay-inner hdImgs {
      width: 90%;
    }
  }



*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}