/* 
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
*/



/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - Header CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */
.navMenu .elementor-nav-menu .menu-item .elementor-item::after{
    content: '';
    height: 8px;
    width: 8px;
    background: var(--e-global-color-primary) !important;
    border-radius: 100px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    transition: all 0.4s ease;
    opacity: 0;
}
.navMenu .elementor-nav-menu .menu-item .elementor-item:hover::after{
    margin-top: 2px;
    opacity: 1;
}
.navMenu .elementor-nav-menu .menu-item .elementor-item-active::after{
    margin-top: 2px;
    opacity: 1;
}

.main-header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: transform 0.4s ease, background 0.3s ease;
    /* backdrop-filter: blur(80px);    */
}
 
.main-header-sticky.is-scrolled {
    background: #000;
    box-shadow: 0 4px 25px #6cb8a354;
    transition: all 0.4s ease;
}
.main-header-sticky.is-scrolled .e-con-inner{
    padding: 20px 0;
    transition: all 0.4s ease;
}
 
.main-header-sticky.is-hidden {
    transform: translateY(-110%);
}
 



/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - Homepage CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */
.heroSlider{
  width:100%;
  height:300px;
  display:flex;
  align-items:center;
}


.white{
  color:#fff;
  opacity:0;
  transform:translateY(20px);
  margin: 0;
}

.grey{
  color:#6C6C6C !important;
  margin: 0;
}

.grey span{
  opacity:0;
  display:inline-block;
  transform:translateY(10px);
  white-space:pre;
}

.fadeIn{
  animation:fadeUp .8s forwards;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.grey span{
  opacity:0;
  display:inline-block;
  transform:translateY(10px);
}

.grey span.show{
  animation:letterFade .4s forwards;
}

@keyframes letterFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.floatingItem {
    animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px); /* move up */
    }
    100% {
        transform: translateY(0px); /* back to original */
    }
}

.logoSlider::after {
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(to left, #000 0%, #ffffff00 10%, #ffffff00 90%, #000 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.blackLinearHeading h2{
    background: linear-gradient(180deg, #000000 0%, #464646 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.learnMoreBtn .elementor-button-content-wrapper:hover .elementor-button-icon svg{
    fill: transparent !important;
}
.learnMoreBtn .elementor-button-content-wrapper .elementor-button-icon svg path{
    transition: all 0.4s ease;
}
.learnMoreBtn .elementor-button-content-wrapper:hover .elementor-button-icon svg path{
    stroke: #fff;
}
.learnMoreBtn .elementor-button-content-wrapper .elementor-button-icon {
    transition: all 0.4s ease;
}
.learnMoreBtn .elementor-button-content-wrapper:hover .elementor-button-icon {
    transform: translateX(5px);
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - About CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */

.teamBox{
    transition: all 0.8s ease;
}
.teamBox .teamDetails{
    transition: all 0.8s ease;
    background-image: url("./img/transparent.png");
    transform: translateY(76%);
}
.teamBox:hover .teamDetails{
    background-image: url("./img/hoverBG.png");
    transform: unset;
}


.teamContent{
    max-height: 334px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: 1px;
    scrollbar-color: #fff transparent;
}

/* Chrome, Edge, Safari */
.teamContent::-webkit-scrollbar {
    width: 2px;
}

.teamContent::-webkit-scrollbar-track {
    background: transparent;
}

.teamContent::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
}

.teamContent::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.teamSlider .elementor-swiper-button svg path{
    transition: all 0.4s ease;
}
.teamSlider .elementor-swiper-button:hover svg path{
    stroke: #fff;
}   
.teamSlider .swiper-pagination-progressbar{
    top: 100% !important;
    margin-top: 67px;
    background: rgba(255, 255, 255, 0.5) !important;
    width: 1397px !important;
    left: 50px !important;
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - Meet us CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */
.galleryNext .elementor-icon,
.galleryPrev .elementor-icon{
    cursor: pointer;
}
.galleryNext .elementor-icon svg path,
.galleryPrev .elementor-icon svg path{
    transition: all 0.4s ease;
}
.galleryPrev .elementor-icon:hover svg path,
.galleryNext .elementor-icon:hover svg path{
    stroke: #fff;
}

.galleryNext1 .elementor-icon,
.galleryPrev1 .elementor-icon{
    cursor: pointer;
}
.galleryNext1 .elementor-icon svg path,
.galleryPrev1 .elementor-icon svg path{
    transition: all 0.4s ease;
}
.galleryPrev1 .elementor-icon:hover svg path,
.galleryNext1 .elementor-icon:hover svg path{
    stroke: #fff;
}








/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - Footer CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */
.linearHeading h2{
    color: transparent !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #CBC7C7 100%);
    -webkit-background-clip: text;
    background-clip: text;
}






/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - Zoom CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media only screen and (min-width: 1480px) and (max-width: 1780px){
    html{
        zoom: 0.85;
        zoom: 85%;
    }
}

@media only screen and (min-width: 1381px) and (max-width: 1480px){
    html{
        zoom: 0.78;
        zoom: 78%;
    }
}
@media only screen and (min-width: 1201px) and (max-width: 1380px){
    html{
        zoom: 0.68;
        zoom: 68%;
    }
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - 

- - - - - - - - - - - - - Responsive CSS

- - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 1366px){
    .teamSlider .swiper-pagination-progressbar{
        top: 100% !important;
        margin-top: 67px;
        background: rgba(255, 255, 255, 0.5) !important;
        width: 81% !important;
        left: 50px !important;
    }
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(80%);
    }
    .teamBox:hover .teamDetails{
        background-image: url("./img/hoverBG.png");
        transform: unset;
    }
    .teamContent{
        max-height: 270px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 1024px){
    .teamSlider .swiper-pagination-progressbar{
        top: 100% !important;
        margin-top: 54px;
        background: rgba(255, 255, 255, 0.5) !important;
        width: 80% !important;
        left: 50px !important;
    }
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(79%);
    }
    .teamBox:hover .teamDetails{
        background-image: url("./img/hoverBG.png");
        transform: unset;
    }
    .teamContent{
        max-height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }

    .heroSlider{
        width:100%;
        height:150px;
        display:flex;
        align-items:center;
    }
    .white{
        color:#fff;
        opacity:0;
        transform:translateY(20px);
        margin: 0;
        text-align: center;
    }

    .grey{
        color:#6C6C6C !important;
        margin: 0;
        text-align: center;
    }
}

@media only screen and (max-width: 767px){
    .teamSlider .swiper-pagination-progressbar{
        top: 100% !important;
        margin-top: 30px;
        background: rgba(255, 255, 255, 0.5) !important;
        width: 100% !important;
        left: 0 !important;
    }
    .heroSlider{
        width:100%;
        height:150px;
        display:flex;
        align-items:center;
    }
}



@media only screen and (max-width: 766px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(81%);
    }
    .teamBox:hover .teamDetails{
        background-image: url("./img/hoverBG.png");
        transform: unset;
    }
    .teamContent{
        max-height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 660px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(78%);
    }
}

@media only screen and (max-width: 616px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(77%);
    }
    .teamContent{
        max-height: 280px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 575px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(75%);
    }
    .teamContent{
        max-height: 250px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 530px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(72%);
    }
    .teamContent{
        max-height: 220px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 475px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(70%);
    }
    .teamContent{
        max-height: 200px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 446px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(68%);
    }
    .teamContent{
        max-height: 180px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 420px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(82.5%);
    }
    .teamContent{
        max-height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}

@media only screen and (max-width: 375px){
    .teamBox .teamDetails{
        transition: all 0.8s ease;
        background-image: url("./img/transparent.png");
        transform: translateY(81%);
    }
    .teamContent{
        max-height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: 1px;
        scrollbar-color: #fff transparent;
    }
}