/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*--- All Buttons ----*/

 .all-btns .elementor-button-content-wrapper{
    align-items: center;
}
.all-btns .elementor-button-icon{
   padding: 15px !important;
   background-color: #FFD47A !important;
   border-radius: 4px;
}
.elementor-button:hover svg{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.all-btns .elementor-button:hover .elementor-button-icon{
    background-color: #0f4c68fa !important;
 }
.main-header .elementor-menu-toggle{
    padding: 0 !important;
}

/*--- Banner image ----*/

.play-icon{
    -webkit-animation: pulse-border 1.5s linear infinite;
    animation: pulse-border 1.5s linear infinite;
}
@-webkit-keyframes pulse-border {
    0% {
        transform: scale(0.8);
    }

    25% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(0.8);
    }
}

/*--- Project Page ---*/

.projects-loop a{
    display: block !important;
}

/*---- Details Page Gallery Thumbnail ---*/

.container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto; 
  }
.container .slide-thumbnail{
	height: 250px;
	border-radius: 5px;
	object-fit: cover;
}
  
  /* .holder {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
  } */
  
  .holder::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide the images by default */
  .slides {
    display: none;
    /* max-width: 1000px; */
    /* width: 100%;
    flex-shrink: 0;
    height: 100%; */
  }
  
  .slides img {
   width: 100%;
   height: 600px !important;
   object-fit: cover;
   border-radius: 10px !important;
  }
  
  .row{
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  .prevContainer {
    background-color: #0B3244;
    border: 1px solid #0B3244;
    position: absolute;
    top: 25%;
    transform: translate(0, calc(-50% - 54px));
    height: 54px;
    width: 54px;
    cursor: pointer;
    border-radius: 50%;
    left: -70px;
}
.prevContainer:hover{
    background-color: #fff; 
}
.prevContainer:hover svg{
     fill: #0B3244;
}
.nextContainer {
    background-color: #0B3244;
    border: 1px solid #0B3244;
    position: absolute;
    top: 25%;
    transform: translate(0, calc(-50% - 54px));
    height: 54px;
    width: 54px;
    cursor: pointer;
    border-radius: 50%;
    right: -70px !important;
}
.nextContainer:hover{
    background-color: #fff; 
}
.nextContainer:hover svg{
    fill: #0B3244;
}
  /* .prevContainer {
    margin-left: 26px;
    left: 0;
    border-radius: 30px 0 0 30px;
  } */
  
  .prev {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    height: 21px;
    width: 32px;
    float: left;
    margin-left: 18px;
}
  
  .prev svg,
  .next svg {
    fill: white;
  }
  
  .nextContainer {
    right: 0;
  }
  
  .next {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    height: 21px;
    width: 32px;
    float: right;
    margin-right: 0px;
  }
  
  /* Container for image text */

  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */

  .row .column {
    float: left;
    width: 31.5%;
  }
  
  /* Add a transparency effect for thumbnail images */

  .slide-thumbnail {
    width: 100%;
    opacity: 0.6;
    cursor: pointer;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    background-position: top center;
  }
  
  .active,
  .slide-thumbnail:hover {
    opacity: 1;
  }

/*---- Report Page ----*/

  .report-sec .elementor-icon{
    box-shadow: 0px 4px 15px rgba(45, 110, 253, 0.15);
  }

/*---- Product Details ---*/

.links-wrapper{
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.links-wrapper a{
  color: #595959 !important;
}
.links-wrapper a:hover{
  color: #FFC651;
}

.pdfs-link{
    display: flex;
    gap: 15px;
    align-items: center;
}
.pdfs-link .download-icons{
    width: 51px;
    height: 50px;
    padding: 15px 15px 9px 15px;
    box-shadow: 0px 4px 15px rgba(45, 110, 253, 0.15);
    border-radius: 50%;
}
.pdfs-link .download-icons img{
    width: 20px;
    height: 20px;
}

/*---- Responsive ----*/

@media (max-width: 1366px){

    .prevContainer{
        left: 0;
    }
    .nextContainer{
        right: 0 !important;
    }
}

@media(max-width: 1224px){
    .row{
        gap: 20px;
        justify-content: center;
      }
}

@media(max-width:767px){
   .all-btns .elementor-button-icon{
    padding: 8px 8px 7px 8px !important;
    }
    .all-btns .elementor-button-icon svg{
        width: 12px;
    }

/*-- Footer section ---*/

    .main-footer .elementor-nav-menu>li:not(:last-child):after {
      display: none;
    }

 /*--- Details page gallery section ---*/

    .prevContainer,
    .nextContainer {
      display: none;
      visibility: hidden;
    }
    .slides img {
        height: 500px !important;
    }

    .slide-thumbnail {
        height: 200px;
    }
    .row .column {
        float: left;
        width: 48%;
    }
    .row{
        gap: 21px;
        justify-content: center;
    }
}

@media only screen and (max-width: 550px) {
    .slides img {
        height: 450px !important;
    }
    .row .column {
        float: left;
        width: 47%;
    }
    .row{
        gap: 15px;
        justify-content: space-between;
    }
    
  }
  



/* Fix nav overflow — accommodate 8 menu items (Elementor nav) */
.main-header .elementor-widget-nav-menu {
    flex-grow: 1 !important;
}
.elementor-nav-menu--main > ul {
    flex-wrap: nowrap !important;
}
