/**
 * Theme Name: child-theme
 * Template:   hello-elementor
 * ...other header fields
 */
 
 .navbar-in{
    position: absolute!important;
    left: 0;
    top: 0;
    transition: all .7s!important
}
.navbar-in-fixed{
        position: fixed!important;
    background-color: #23a3c899;
    box-shadow: 0 2px 2px #00000054;
}

.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{
    flex-direction: row!important;
}

/*balls*/

.container-ball-in{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.container-ball-in .ball-in{
        display: block;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--e-global-color-secondary);
    animation-name: moveBall;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    opacity: .8;
}

@keyframes moveBall{
    0%{
        transform: translate(0, 0);
        opacity: .8;
    }
    33%{
        transform: translate(-15px, -30px);
        opacity: .8;
    } 
    66%{
        transform: translate(15px, -60px);
        opacity: .8;
    }
    100%{
        transform: translate(-15px, -60px);
        opacity: 0;
    }
}


/*balls*/


.body-single-package.body-single-package-active{
    background-color: var(--e-global-color-primary)!important
}

.body-single-package.body-single-package-active .elementor-icon-box-wrapper svg{
    fill: #fff!important;
}

.body-single-package.body-single-package-active .unactive-f .elementor-icon-box-wrapper svg{
    fill: #B3B3B3!important;
}

.body-single-package.body-single-package-active .elementor-icon-box-description,
.body-single-package.body-single-package-active .elementor-icon-box-title{
    color: #fff!important;
}

.body-single-package.body-single-package-active .unactive-f .elementor-icon-box-description,
.body-single-package.body-single-package-active .unactive-f .elementor-icon-box-title{
    color: #B3B3B3!important;
}


/*services section*/

.col-custom-container{
        display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.col-custom-container .col-custom{
        width: calc(33.33333% - 13.33333px);
}
.serv-in{
        display: block;
    position: relative;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 3px 5px #0000004f!important;
    overflow: hidden;
}
.serv-in .icon {
        text-align: center;
    padding: 20px 15px;
    width: 100%;
    height: 250px;
}
.serv-in .icon img{
        width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}
.serv-in .icon h2,
.serv-in .text-all h2{
        color: var(--e-global-color-primary);
    font-size: 20px;
    font-family: var(--e-global-typography-primary-font-family) !important;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: capitalize;
}
.serv-in .text-all h2{
    color: #fff;
    margin-bottom: 20px;
        transition: all .7s;
        opacity: 0;
            position: relative;
    top: -45px;
}
.serv-in .text-all{
        background: linear-gradient(184deg, rgba(35, 163, 200, 1) 35%, rgba(139, 229, 255, 1) 100%);
    position: relative;
        text-align: center;
            padding: 20px 15px;
            transition: all .7s;
        transform: translateY(30%);
}
.serv-in .text-all .main-line{
    order: 2;
}
.serv-in .text-all .sec-line{
    order: 1;
}
.serv-in .text-all .main-line,
.serv-in .text-all .sec-line{
    position: absolute;
    bottom: 99%;
    inset-inline-start: 0;
    width: 100%;
    
}
.serv-in .text-all p{
        font-family: var(--e-global-typography-primary-font-family);
    color: #fff;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
        transition: all .7s;
        opacity: 0;
            position: relative;
    top: -45px;
        overflow: hidden;
    height: 69px;
}
.serv-in .text-all .icon-star{
        width: 30px;
            transition: all .7s;
            transform: translateX(250px) rotate(360deg);
    opacity: 0;
}
.serv-in:hover .text-all{
    transform: translateY(0%);
}
.serv-in:hover .text-all p,
.serv-in:hover .text-all h2{
        opacity: 1;
    top: 0px;
}
.serv-in:hover .text-all .icon-star{
    transform: translateX(0) rotate(0deg);
    opacity: 1;
}



/*services section*/

@media (max-width: 1024px){
    .col-custom-container .col-custom{
            width: calc(50% - 10px);
    }
}
@media (max-width: 768px){
    .col-custom-container .col-custom{
        width: 100%;
    }
}
@media (max-width: 565px){
    .serv-in .icon h2, 
    .serv-in .text-all h2{
        font-size: 18px;    
    }
}











