.product-search .product-search-form .product-search-form {
    position: relative;
}
.product-search .product-search-form .product-search-form input,
.product-search .search-wrapper input{
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 20px;
    font-family: var(--primary-font);
    padding-right: 60px;
    color: var(--primary-color);
    padding: 0px 40px 0 20px;
    height: 45px;
}
.product-search .product-search-form .product-search-form button[type=submit]{
    position: absolute;
    right: 20px;
    left: auto;
    top: auto;
    bottom: 12px;
    background: none;
    padding: 0;
    font-size: 0;
}
.product-search .product-search-form .product-search-form button[type=submit]::after{
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 13px;
}
.search-results.active {
    display: block;
    margin: 30px 0 0;
    float: left;
    width: 100%;
}

.search-results.active ul {
    list-style: none;
    margin:0 !important;
    padding: 0 !important;
}
.search-results.active ul::-webkit-scrollbar-track {
    background-color: #d7d7d7;
}
.search-results.active ul::-webkit-scrollbar-thumb {
    background-color: #a0a0a0;
}
.search-results.active ul::-webkit-scrollbar {
	height:2px;
}
.search-results.active ul li {
    display: block;
    padding: 0 20px;
    position: relative;
    float: left;
    width: 50%;
}

.search-results.active ul li:last-child {
    border-bottom: none;
}
.search-results.active ul li a {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 30px;
    margin: 0 0 30px;
}
.search-results.active ul li a:hover{
    color: #111;
}
.search-results.active ul li a > * {
    display: table-cell;
    vertical-align: top;
}

.search-results.active .product-image {
    width: 15%;
    max-width: 15%;
}
.search-results.active .product-data .product-sku,
.search-results.active .product-data .product-categories{
    color: #666;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    text-align: left;
}
.search-results.active a:hover .product-data .product-sku,
.search-results.active a:hover .product-data .product-categories{
    color: #111;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    }
.product-data {
    padding-left: 24px;
}

.search-results.active h3 {
    display: block;
    text-align: left;
}
.search-results.active .product-data h3,
.search-results.active .product-data .product-price {
    margin: 0 0 10px;
}
.product-data div:not(.product-categories) {
    display: inline-block;
    vertical-align: middle;
}
.product-data{
    text-align: left;
}
.product-data .product-price .regular-price{
    color: #666;
}
.product-data .product-price .sale-price{
    color: #111;
    font-weight: 500;
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 0 0 6px;
}
.product-data .product-price .sale-price::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 6px;
    height: 2px;
    content: '';
    background: #666;
    margin: auto;
}
.product-data .product-stock {
    padding: 4px 8px;
    background: #eeeeee;
    border-radius: 4px;
    position: absolute;
    bottom: 30px;
    right: 0;
}
.product-categories > span {
    display: inline-block;
    margin-right: 4px;
}
.product-categories > span:after {
    content: ",";
}

.product-categories > span:last-child:after {
    content: "";
}

.product-categories > span:last-child {
    margin-right:0;
}

.product-search select {
    width: 100% !important;
    min-height: 40px !important;
    margin-bottom: 16px;
}

.product-search select,
.product-search input {
    background: var(--secondary-color);
    border:1px solid var(--border-color-1);
}

.search-wrapper {
    position: relative;
}

.search-wrapper input {
    padding-right: 35px !important;
}

.search-wrapper svg {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    fill:#bdbdbd;
    animation:loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 0;
}

.search-wrapper.loading svg {
    opacity:1;
}

@keyframes loading {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@media(min-width: 1200px){
    .search-results.active ul {
        overflow: auto;
        height: 570px;
        scrollbar-width: thin;
    }
}

@media(max-width: 1199px){
    .product-data .product-price{
        top: 10px;
    }
    .product-data h3{
        font-size: 20px;
        margin: 0 0 15px;
    }
}
@media(max-width: 991px){
    .search-results.active ul li{
        width: 100%;
    }
}
@media(max-width: 767px){
    .search-results.active .product-image {
        width: 20%;
        max-width: 20%;
    }
    .product-search .product-search-form .product-search-form input, .product-search .search-wrapper input{
        font-size: 18px;
    }
    .product-data h3{
        margin: 0 0 12px;
    }
}
@media(max-width: 575px){
    .product-data h3{
        font-size: 16px;
        margin: 0 0 8px;
    }
    .search-results .product-data .product-sku, .search-results .product-data .product-categories{
        font-size: 13px;
        float: left;
        width: 100%;
    }
    .search-results.active ul li{
        padding: 0;
    }
    .search-results.active .product-data{
        padding-left: 15px;
    }
    .product-data .product-price,
    .product-data .product-stock{
        position: static;
    }
    .product-data .product-stock{
        font-size: 12px;
        margin: 10px 0 0;
    }
    .product-data .product-price{
        margin: 0 0 5px;
        float: left;
        width: 100%;
    }
}
@media(max-width: 480px){
    .search-results.active .product-image {
        width: 70%;
        max-width: 70%;
    }
   
}


/* main {
    padding: 2rem 0;
} */
.tiny {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-container:after {
    content: '';
    display: block;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, black 50%, transparent 50%);
    background-size: 10% 1px;
    background-position: -50px;
    background-repeat: repeat-x;
    position: absolute;
    left: -10%;
    top: 40%;
    animation: line-slide 60s forwards infinite linear;
    z-index: 1;
}
.swiper-container.swiper--bottom:after {
    animation-direction: reverse;
}
.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
.swiper-slide {
    text-align: center;
    /* font-size: 33px; */
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0;
}
@keyframes line-slide {
    0% {
        background-position: -5% 0;
   }
    100% {
        background-position: 100% 0;
   }
}



.swiper-container {
    overflow: visible;
}
.swiper-pagination {
    position: absolute;
    bottom: -25px;
}



/* SERVICES */

.service-block.swiper{
	position: static;
}
.service-block .swiper-pagination{
	position: static;
	margin-top: 15px;
}
.service-block .swiper-wrapper .swiper-slide .service-box-inner{
    flex-direction: column;
    display: flex;
    align-items: center;
    width: 68%;
    margin: auto;
}
.service-block .service-box-inner .tt-feature-box-containt{
    text-align: center;
}
.service-block-grid .tt-feature-box-containt h4,
.service-block .tt-feature-box-containt h4{
    font-size: 26px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0;
    transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.service-block-grid .tt-feature-box-containt h4{
    font-size: 50px;
    font-style: italic;
    letter-spacing: 2px;
    font-weight: 400;
}
.service-block .tt-feature-box-containt .tt-box-border{
    padding: 30px 0 25px;
    position: relative;
    margin-bottom: 25px;
}
.service-block .tt-feature-box-containt .tt-box-border::before,
.service-block .tt-feature-box-containt .tt-box-border::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    margin: auto;
    background-color: var(--primary-color);
    width: 35px;
    height: 1px;
}
.service-block .tt-feature-box-containt .tt-box-border::after{
    bottom: 5px;
}
.service-block-grid .tt-feature-box-containt h4:hover{
    color: var(--secondary-color);
}
.service-block .tt-feature-box-containt p{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--tertiary-color);
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/* SERVICE BOX STYLE 2 */
.style-2 .tt-feature-box-icon{
    width: 100px;
    height: 100px;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.service-block .style-2 .tt-feature-box-containt .tt-box-border{
    margin-bottom: 0;
    margin-top: 15px;
    padding-top: 55px;
}
.service-block .style-2 .tt-feature-box-containt .tt-box-border::after{
    display: none;
}
.service-block .style-2 .tt-feature-box-containt .tt-box-border::before{
    height: 40px;
    width: 1px;
    top: 0;
    bottom: auto;
}

/* SERVICE BOX GRID */
.service-box-grid{
    padding: 50px 0;
    border-bottom: 1px solid var(--body-bg-light);
}
.service-box-grid:last-child{
    border: none;
}
.service-box-grid .service-box-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-box-grid .tt-feature-box-containt{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.service-box-grid .tt-feature-box-containt .tt-box-border{
    width: 50%;
}
    .service-box-grid .tt-feature-box-containt p{
    width: 50%;
    font-size: 14px;
    margin: 0;
}
.service-box-grid .tt-feature-box-icon{
    width: 100px;
}
.service-box-grid .tt-feature-box-icon img{
    width: 70px;
}
/* TEAM */
.team-wrap.swiper-slide{
    padding: 0;
}
.elementor-widget-Team .tt-team-wrap .tt-team .team-wrap {
    padding: 0;
    background: transparent;
    }
    .tt-team-wrap .tt-team .team-info-wrapper{
        float: left;
        width: 100%;
    }
    .tt-team-wrap .tt-team .team-info-wrapper .team-frame{
        position: relative;
    }

    .tt-team .team-info-wrapper .team-info{
    background: transparent;
    padding: 20px 0;
    float: left;
    width: 100%;
    text-align: center;
    }
    .tt-team .team-info-wrapper .team-info .team-designation{
    position: relative;
    color: var(--tertiary-color);
    margin: 0;
    display: inline-block;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    text-transform: capitalize;
    }
    .tt-team .team-info-wrapper .team-info .team-designation::before,
        .tt-team .team-info-wrapper .team-info .team-designation::after{
        content: '';
        position: absolute;
        left: -12px;
        right: auto;
        top: 0;
        bottom: 0;
        margin: auto;
        background-color: var(--tertiary-color);
        width: 5px;
        height: 1px;
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
}
    .tt-team .team-info-wrapper .team-info .team-designation::after{
        left: auto;
        right: -12px;
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
}
    .tt-team .team-info-wrapper .team-info .team-title{
    text-align: center;
    font-size: 30px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--primary-font);
    color: var(--primary-color);
    transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
    }
    .tt-team .team-info-wrapper .team-info .team-title:hover{
        color: var(--secondary-color);
    }
    .team-info-wrapper .team-img .team-social{
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    margin: auto;
    opacity: 1;
    z-index: 1;
     transition: all 400ms ease-in-out 0s;
      -webkit-transition: all 400ms ease-in-out 0s;
      -moz-transition: all 400ms ease-in-out 0s;
      -o-transition: all 400ms ease-in-out 0s;
      -ms-transition: all 400ms ease-in-out 0s;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .team-info-wrapper .team-img .team-social a {
    color: var(--body-bg-color);
        padding: 6px;
    font-size: 18px;
    display: inline-block;
    width: 40px;
    height: 40px;
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 400ms ease-in-out 0s;
      -webkit-transition: all 400ms ease-in-out 0s;
      -moz-transition: all 400ms ease-in-out 0s;
      -o-transition: all 400ms ease-in-out 0s;
      -ms-transition: all 400ms ease-in-out 0s;
    }
    .team-info-wrapper .team-img .team-social a svg{
        color: var(--body-bg-color);
        transition: all 400ms ease-in-out 0s;
      -webkit-transition: all 400ms ease-in-out 0s;
      -moz-transition: all 400ms ease-in-out 0s;
      -o-transition: all 400ms ease-in-out 0s;
      -ms-transition: all 400ms ease-in-out 0s;
    }
    /* TEAM STYLE_2 */
    .tt-team .style-2.team-info-wrapper .team-info{
        position: absolute;
        bottom: 0;
        top: auto;
        text-align: start;
        padding: 20px 30px;
        z-index: 1;
        width: auto;
    }
    .tt-team .style-2.team-info-wrapper .team-info .team-designation{
        margin: 0 15px;
    }
    .tt-team .style-2.team-info-wrapper .team-info .team-title{
        text-align: start;
    }
    .tt-team .style-2.team-info-wrapper .team-img .team-social{
		top: auto;
        right: 30px;
        bottom: 30px;
	}
    .tt-team .style-2.team-info-wrapper .team-img .team-social a{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
}
    .tt-team .style-2.team-info-wrapper .team-img .team-social a{
        background-color: transparent;
    }
    .tt-team .style-2.team-info-wrapper .team-img .team-social a:hover{
        background-color: var(--primary-color);
    }
    .tt-team .style-2.team-info-wrapper .team-img .team-social a svg{
        color: var(--secondary-color);
    }
    .tt-team .style-2.team-info-wrapper .team-img .team-social a:hover svg{
        color: var(--body-bg-color);
    }
    .tt-team-wrap .tt-team .style-2.team-info-wrapper .team-frame::after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: linear-gradient(180deg, #ffffff00,#000);
        z-index: 0;
    }

    .tt-team .style-3.team-info-wrapper .team-frame{
        position: relative;
    }

    .tt-team .style-3.team-info-wrapper .team-info {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        top: 30px;
        gap: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 10px;
        z-index: 1;
        width: auto;
        transition: all 400ms ease-in-out 0s;
        -webkit-transition: all 400ms ease-in-out 0s;
        -moz-transition: all 400ms ease-in-out 0s;
        -o-transition: all 400ms ease-in-out 0s;
        -ms-transition: all 400ms ease-in-out 0s;
    }
    .tt-team .style-3.team-info-wrapper .team-info::after {
        content: '';
        position: absolute;
        background: var(--body-bg-color);
        opacity: 0.8;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .tt-team .style-3.team-info-wrapper .team-social{
        display: flex;
        gap: 26px;
        margin-top: 5px;
    }
    .tt-team .style-3.team-info-wrapper .team-social a{
        color: var(--body-bg-color);
        font-size: 24px;
        display: inline-block;
        transition: all 400ms ease-in-out 0s;
        -webkit-transition: all 400ms ease-in-out 0s;
        -moz-transition: all 400ms ease-in-out 0s;
        -o-transition: all 400ms ease-in-out 0s;
        -ms-transition: all 400ms ease-in-out 0s;
    }
    .tt-team .style-3.team-info-wrapper .team-social a svg{
        color: var(--secondary-color);
    }
    .tt-team .style-3.team-info-wrapper .team-social a:hover svg{
        color: var(--primary-color);
    }
    
    /* TESTIMONIAL */
    
    .tt-testimonial.swiper .swiper-pagination{
        position: static;
    }
    .tt-testimonial.swiper .swiper-pagination .swiper-pagination-bullet{
        margin-top: 40px;
    }
    .tt-testimonial .swiper-button{
        color: var(--tertiary-color);
    }
    .testimonial-wrap.swiper-slide{
        background: transparent;
        text-align: center;
    }
    .tt-testimonial-wrap.style-1{
        position: relative;
        padding-top: 120px;
    }
    .tt-testimonial-wrap.style-1::after{
        content: '\f10d';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Font Awesome 5 Free';
        font-weight: 600;
        font-size: 22px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        z-index: 1;
        color: var(--tertiary-color);
        border: 1px solid var(--tertiary-color);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
}
.testimonial-wrap .testimonial-details{
    width: 70%;
    margin: auto;
}
    .testimonial-wrap .testimonial-details p{
        color: var(--tertiary-color);
        font-size: 26px;
        font-weight: 400;
        line-height: 40px;
        font-family: var(--primary-font);
        font-style: italic;
        margin-bottom: 35px;
    }
    .testimonial-wrap .testimonial-img{
        width: 80px;
        height: 80px;
        overflow: hidden;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        background-size: cover;
        margin: 0 auto 18px;
}
    .testimonial-rating{
        margin-bottom: 10px;
    }
    .testimonial-rating svg{
        color: var(--primary-color);
        font-size: 14px;
        padding-right: 3px;
    }

.testimonial-info span{
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
}
.style-2 .testimonial-wrap .testimonial-img{
    margin:0 ;
}
.style-2 .testimonial-wrap.swiper-slide{
    text-align: start;
}
.style-2 .testimonial-wrap .testimonial-details{
    margin: 0;
    width: 90%;
}
.style-2 .testimonial-box-2{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
} 
.style-2 .testimonial-box-2 p{
    margin: 0;
}
.style-2 .testimonial-info span{
    text-transform: capitalize;
    font-size: 26px;
    margin-bottom: 5px;

}
.style-2 .testimonial-wrap .testimonial-details p{
    font-size: 18px;
    line-height: 32px;
    font-family: var(--secondary-font);
}
.style-2 .testimonial-info-wrapper::after{
    content: '';
    position: absolute;
    background: url(../images/Vector.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-size: cover;
    width: 221px;
    height: 235px;
    right: 10%;
    top: 0;
    left: auto;
    bottom: 0;
    opacity: 0.2;
	margin: auto;
}

.style-3 .testimonial-info-wrapper{
    text-align: start;
    padding-left: 20%;
    padding-right: 50px;
    padding-top: 75px;
   
}
.style-3>.tt-testimonial{
	 position: relative;
}
.style-3>.tt-testimonial::after{
    content: '\f10d';
    position: absolute;
    left: 170px;
    right: 80%;
    top: 0;
    bottom: auto;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 22px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.style-3 .testimonial-wrap .testimonial-details{
    margin: 0;
    width: 100%;
}
.style-3 .testimonial-wrap .testimonial-img{
    margin: 0;
}

/* BLOG */
.blog-style .tt-post-wrapper.swiper-slide{
    background: transparent;
    padding: 0;
}

/* Dots */
.swiper-pagination-clickable .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
    background-color: var(--secondary-color);
    position: relative;
}
.swiper-pagination-clickable .swiper-pagination-bullet::after{
    content: '';
    position: absolute;
    left: -3px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}
.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
    border: 1px solid var(--primary-color);
}

/* VIDEO */
.video-section{
    max-height: 650px;
    position: relative;
}
.elementor-element.heading-center{
    position: absolute;
    left: 0;
    right: 0;
    top: 22%;
    bottom: auto;
    margin: auto;
}
/* .video-section::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    background-color: #00000040;
}
.elementor-custom-embed-play{
    z-index: 2;
} */


/* CLIENT */
.client-logo .swiper-wrapper .item a{
    float: left;
    width: 100%;
	opacity: 0.3
}
.client-logo .swiper-wrapper .item a:hover{
    opacity: 1;
}

/* SERVICES */
.tt-services-thumbnail.grid-item .tt-service-img{
    display: none;
}
.tt-services-thumbnail.grid-item:nth-child(odd){
    padding-right: 60px;
}
.tt-services-thumbnail.grid-item:nth-child(even){
    padding-left: 60px;
}
.tt-services-thumbnail.grid-item .title-content-wrap{
    padding-bottom: 18px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color-1);
}
.tt-services-thumbnail.grid-item .title-content-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tt-services-thumbnail.grid-item .title-content-wrap h4{
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 400ms ease-in-out 0s;
			-webkit-transition: all 400ms ease-in-out 0s;
			-moz-transition: all 400ms ease-in-out 0s;
			-o-transition: all 400ms ease-in-out 0s;
			-ms-transition: all 400ms ease-in-out 0s;
}
.tt-services-thumbnail.grid-item .title-content-wrap h4:hover{
    color: var(--primary-color);
}
.tt-services-thumbnail.grid-item .title-content-wrap p{
    color: var(--tertiary-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.tt-services-thumbnail.grid-item .service-img-price h3{
	font-size: 30px;
	margin-bottom: 0;
}

/* SERVICES img-slider */
.tt-feature-box.swiper-slide .item .tt-services-thumbnail.swiper-slide:last-child .tt-service-inner{
    display: flex;
    flex-direction: row-reverse;
}
.tt-services-thumbnail.swiper-slide .tt-service-inner{
    display: flex;
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .tt-service-img,
.tt-services-thumbnail.swiper-slide .tt-service-inner .title-content-wrap{
    width: 50%;
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .title-content-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
	background: var(--body-bg-light);
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .title-content-wrap button{
    background: transparent;
    height: 45px;
    width: 45px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .title-content-wrap button:hover{
    border-color: var(--primary-color);
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .title-content-wrap button:hover svg{
    color: var(--primary-color);
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .title-content-wrap button svg{
    color: var(--secondary-color);
    width: 25px;
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .service-content-inner h4{
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
    margin-bottom: 15px;
    line-height: normal;
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .service-content-inner h4:hover{
    color: var(--primary-color);
}
.tt-services-thumbnail.swiper-slide .tt-service-inner .service-content-inner p{
    color: var(--tertiary-color);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    margin-bottom: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/* VIDEO */
.elementor-custom-embed-image-overlay .elementor-custom-embed-play{
	top: 55%;
}

/* NEXT - PREV */
.swiper-navigation .swiper-button > svg{
    display: none;
}
.tt-testimonial-wrap .swiper-navigation .swiper-button{
	background: transparent;
	width:auto;
}
.tt-testimonial-wrap .swiper-navigation .swiper-button::after,
.tt-testimonial-wrap .swiper-rtl .swiper-navigation .swiper-button::after{
	font-size: 45px;
	width: auto;
}
.tt-testimonial-wrap .swiper-navigation .swiper-button.swiper-button-prev{
	left: 0;
}
.tt-testimonial-wrap .swiper-navigation .swiper-button.swiper-button-next{
	right: 0;
}
.swiper-navigation .swiper-button.swiper-button-prev{
	left: -50px;
}
.swiper-navigation .swiper-button.swiper-button-next{
	right: -50px;
}
.swiper-navigation .swiper-button{
	width: 50px;
	height: 50px;
	background: transparent;
	z-index: 1;
}
.swiper-navigation .swiper-button::after, .swiper-rtl .swiper-navigation .swiper-button::after{
    font-size: 20px;
    width: auto;
	color: var(--primary-color);
}

/* TEXT CARAUSEL */

.text-carousel .swiper-wrapper .swiper-slide{
    background-color: var(--body-bg-light);
    padding: 0;
    width: auto !important;
    flex: 0 0 auto;
  }
  .text-carousel p{
    font-size: 26px;
    line-height: normal;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    position: relative;
    margin: 0;
    padding: 12px 100px;
  }
  .text-carousel p::before{
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  

  
/* MARQUEE CSS */

.marquee-container {
    max-width: 100%;
    overflow: hidden;
  }
  
  .marquee {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    background-color: var(--body-bg-light);
    align-items: center;
  }
  
  .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    -webkit-animation: marquee 30s linear infinite;
}
  .marquee-content-rtl {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-rtl 30s linear infinite;
    -webkit-animation: marquee-rtl 30s linear infinite;
}
  .nav-ticker {
    box-sizing: border-box;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
    padding: 0;
    width: auto !important;
    flex: 0 0 auto;
  }
  
  .nav-ticker p{
    font-size: 26px;
    line-height: normal;
    font-family: var(--primary-font);
    color: var(--secondary-color);
	text-transform: uppercase;
    position: relative;
    margin: 0;
    padding: 12px 100px;
  }

  .nav-ticker p::before{
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  
  
  /* Duplicate the keyframes for a smooth repeat */
  @keyframes marquee {
    0% {
      transform: translateX(0); /* Start from the right of the container */
    }
    100% {
      transform: translateX(-100%); /* Move to the left outside the container */
    }
  }
    @keyframes marquee-rtl {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0%);
    }
  }
/* PORTFOLIO */
  .tt-portfolio-thumbnail a span {
    top: 0;
    left: 0;
    position: absolute;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    justify-content: center;
    bottom: 0;
      padding: 10px;
    opacity: 1;
    font-size: 20px;
    z-index: 1;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
  }
  .tt-portfolio-thumbnail {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .tt-portfolio-thumbnail a {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .tt-portfolio-thumbnail a::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    float: left;
    width: 100%;
    height: 100%;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    font-family: "Font Awesome 5 Free";
    background: #222;
    z-index: 0;
  }
  .tt-portfolio-thumbnail a:hover::after {
    opacity: 0.6;
  }
  .tt-portfolio-thumbnail a:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
  .tt-portfolio-thumbnail.swiper-slide a img{
      height: 485px;
      object-fit: cover;
  }
  .tt-portfolio-thumbnail a img {
    width: 100%;
    transition: all 3s ease-in-out 0s;
    -webkit-transition: all 3s ease-in-out 0s;
    -moz-transition: all 3s ease-in-out 0s;
    -o-transition: all 3s ease-in-out 0s;
    -ms-transition: all 3s ease-in-out 0s;
  }
  .elementor-widget-Portfolio .button-banner {
    text-align: center;
    display: flex;
    margin-top: 50px;
  }
  .elementor-widget-Portfolio .button-banner a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0 45px;
    height: 50px;
    background-color: transparent;
    margin: auto;
    font-size: 14px;
  }
  .elementor-widget-Portfolio .button-banner a.btn::after{
    background-color: var(--primary-color);
  }
  .elementor-widget-Portfolio .button-banner a.btn:hover {
    border-color: var(--primary-color);
    color: var(--body-bg-color);
  }


/* portfolio-grid style-1 massonary */
.portfolio-grid.portfolio-style-1 .tt-portfolio-thumbnail.grid-item a{
    border: 10px solid var(--body-bg-light);
  }
  .portfolio-grid.portfolio-style-1 .tt-portfolio-thumbnail.grid-item a span{
    padding: 10px 10px 0;
    opacity: 1;
    top: auto;
    background-color: var(--body-bg-light);
  }
  .portfolio-carousel.portfolio-style-3 .swiper-slide{
      width: auto !important;
  }
  
  /* portfolio-carousel */
  .portfolio-carousel .swiper-slide{
    padding: 0;
  }
  .portfolio-style-2.portfolio-carousel .swiper-wrapper{
    align-items: center;
    padding: 100px 0 130px;
  }
  .portfolio-carousel .swiper-slide a{
    float: left;
  }
  .portfolio-style-2 .swiper-wrapper .tt-portfolio-thumbnail:nth-child(4n-0) {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }
  .portfolio-style-2 .swiper-wrapper .tt-portfolio-thumbnail:nth-child(4n-1) {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
  }
  .portfolio-style-2 .swiper-wrapper .tt-portfolio-thumbnail:nth-child(4n-2) {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }
  .portfolio-style-2 .swiper-wrapper .tt-portfolio-thumbnail:nth-child(4n-3) {
    transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
  }


/* --------- START SERVICES SECTION --------- */
.service-heading-slider .service-heading  {
    position: static;
    width: 100%;
  }
  .service-heading-slider .service-heading .section-heading {
    width: 100%;
  }
  .service-heading {
    position: absolute;
    width: 50%;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .service-heading .section-heading {
    width: 70%;
    text-transform: uppercase;
    font-size: 36px;
    font-family: var(--primary-font);
    margin: 0 0 20px 0;
    color: var(--dark-bg-text);
    letter-spacing: 1px;
  }
  .service-heading p {
    font-style: italic;
    font-size: 20px;
    font-family: var(--primary-font);
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    color: var(--dark-content);
  }
  .services-grid {
    padding-top: 80px;
  }
  .services-grid .tt-services-thumbnail:nth-child(odd) .tt-service-inner {
    padding: 120px 80px 0 0;
  }
  .services-grid .tt-services-thumbnail:nth-child(even) .tt-service-inner {
    padding: 0 0 120px 80px;
  }
  .tt-services-thumbnail.swiper-slide {
    background-color: #161513;
    padding: 0;
  }
  .swiper-wrapper.slider-3 .tt-services-thumbnail.swiper-slide{
    background-color: transparent;
  }
  .swiper-wrapper.slider-3 .tt-services-thumbnail .tt-service-inner .title-content-wrap{
      text-align: center;
  }
  .elementor-section .swiper.services-carousel.swiper-vertical .swiper-navigation {
    opacity: 1;
  }
  /* .tt-services-thumbnail.swiper-slide.swiper-slide-active{
    margin-top: 160px;
  }
  */
  .services-carousel .button-banner ,
  .services-grid .button-banner {
    text-align: center;
    display: flex;
    margin-top: 60px;
  }
  .services-carousel .button-banner a.btn,
  .services-grid .button-banner a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg-text);
    border: 1px solid var(--dark-bg-text);
    padding: 0 45px;
    height: 50px;
    background-color: transparent;
    margin: auto;
    font-size: 14px;
  }
  .services-carousel .button-banner a.btn:hover,
  .services-grid .button-banner a.btn:hover {
    border-color: var(--primary-color);
  }
  /* --------- END SERVICES SECTION --------- */


/* ervices-slider-1 */
.services-carousel .slider-1 .tt-services-thumbnail.swiper-slide {
    background-color: transparent;
  }
  .services-carousel .slider-1 .tt-service-inner{
    transition: all 400ms ease-in-out 0s;
      -webkit-transition: all 400ms ease-in-out 0s;
      -moz-transition: all 400ms ease-in-out 0s;
      -o-transition: all 400ms ease-in-out 0s;
      -ms-transition: all 400ms ease-in-out 0s;
  }
  
  .services-carousel .slider-1 .tt-service-inner .tt-service-img {
    float: left;
    padding: 1px;
  }
  .services-carousel .slider-1 .swiper-slide.swiper-slide-active .tt-service-inner .tt-service-img {
    padding: 2px;
  }
  .services-carousel .slider-1 .tt-service-inner .tt-service-img .tt-service-slide-box{
    float: left;
    transition: all 400ms ease-in-out 0s;
      -webkit-transition: all 400ms ease-in-out 0s;
      -moz-transition: all 400ms ease-in-out 0s;
      -o-transition: all 400ms ease-in-out 0s;
      -ms-transition: all 400ms ease-in-out 0s;
  }
  .services-carousel .slider-1 .swiper-slide.swiper-slide-active .tt-service-inner .tt-service-img .tt-service-slide-box{
    border-radius: 250px;
    -webkit-border-radius: 250px;
    -moz-border-radius: 250px;
    -ms-border-radius: 250px;
    -o-border-radius: 250px;
    outline: 1px solid var(--dark-content);
    overflow: hidden;
    border: 10px solid transparent;
  }
  .services-carousel .slider-1 .swiper-slide.swiper-slide-active .tt-service-inner .tt-service-img a{
    overflow: hidden;
  }
  .services-carousel .slider-1 .tt-service-inner .title-content-wrap:not( .services-carousel .slider-1 .swiper-slide.swiper-slide-active .tt-service-inner .title-content-wrap){
    display: none;
  }
  
  .services-carousel .slider-1 .tt-service-inner .title-content-wrap{
    text-align: center;
  }
  
  /* ervices-slider-2 */
  .services-carousel .slider-2 .tt-services-thumbnail.swiper-slide {
    background-color: transparent;
  }
  .services-carousel .slider-2{
    align-items: center;
      padding-bottom: 60px;
  }
  .services-carousel .slider-2 .tt-service-inner{
    transition: all 400ms ease-in-out 0s;
      -webkit-transition: all 400ms ease-in-out 0s;
      -moz-transition: all 400ms ease-in-out 0s;
      -o-transition: all 400ms ease-in-out 0s;
      -ms-transition: all 400ms ease-in-out 0s;
  }
  .services-carousel .slider-2 .tt-service-inner .tt-service-img {
    float: left;
    padding: 1px;
  }
  .services-carousel .slider-2 .swiper-slide.swiper-slide-active .tt-service-inner .tt-service-img {
    padding: 2px;
  }
  .services-carousel .slider-2 .swiper-slide.swiper-slide-next .tt-service-inner {
    margin-left: 120px;
  }
  .services-carousel .slider-2 .swiper-slide.swiper-slide-prev .tt-service-inner {
    margin-right: 120px;
  }
  .services-carousel .slider-2 .tt-service-inner .tt-service-img .tt-service-slide-box{
    float: left;
    outline: 1px solid var(--dark-content);
    border: 10px solid transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
  }
  .services-carousel .slider-2 .swiper-slide.swiper-slide-active .tt-service-inner .tt-service-img .tt-service-slide-box{
    border-radius: 250px;
    -webkit-border-radius: 250px;
    -moz-border-radius: 250px;
    -ms-border-radius: 250px;
    -o-border-radius: 250px;
  }
  .services-carousel .slider-2 .swiper-slide.swiper-slide-active .tt-service-inner .tt-service-img a{
    overflow: hidden;
  }
  .services-carousel .slider-2 .tt-service-inner .title-content-wrap{
    text-align: center;
      margin-top:68px;
      padding-top: 10px;
      position: relative;
  }
  .services-carousel .slider-2 .swiper-slide.swiper-slide-active .tt-service-inner .title-content-wrap{
      margin-top: 30px;
  }
  .services-carousel .slider-2 .tt-service-inner .title-content-wrap::after{
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      width: 1px;
      height: 50px;
      bottom: 100%;
      margin: auto;
      top: auto;
      background-color: var(--dark-content);
  }
  
  /* ervices-slider-3 */
  .services-carousel .slider-3 .tt-services-thumbnail:nth-child(odd){
    padding: 50px;
  }
  