/*
    Style CSS
*/

/*
    1. product-search
    2. text-carousel
    3. section title
    4. video block
*/

/* --------------- start product-search --------------- */
.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-text);
    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 {
    width: 5px;
}

.search-results.active ul {
    overflow: auto;
    height: 80vh;
    scrollbar-width: thin;
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 30px;
    margin: 0 0 30px;
}

.search-results.active ul li a>* {
    display: table-cell;
    vertical-align: top;
}

.search-results.active .product-image {
    width: 100%;
    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;
}

.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;
}

.search-results.active .product-data h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500
}

.search-results.active a:hover .product-data h3 {
    color: #111;
}

.product-data div:not(.product-categories) {
    display: inline-block;
    vertical-align: middle;
}

.product-data {
    text-align: left;
}

.search-results.active .product-data .product-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-data .product-price .regular-price {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
    font-family: var(--secondary-font);
}

.product-data .product-price .sale-price {
    color: var(--price-color);
    font-weight: 600;
    font-size: 18px;
    padding: 0 12px 0 0;
    margin: 0 6px 0 0;
    position: relative;
}


.product-data .product-price .sale-price::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 00;
    width: 6px;
    height: 2px;
    content: '';
    background: #666;
    margin: auto;
}

.search-results.active .product-stock,
.search-results.active .product-categories {
    display: none
}

.product-data .product-stock {
    padding: 4px 8px;
    background: #eeeeee;
    border-radius: 4px;
    position: absolute;
    bottom: 30px;
    right: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.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: #ffffff;
    border: 1px solid #e0e0e0;
}

.search-wrapper {
    position: relative;
}

.search-wrapper.loading+button {
    display: none;
}

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

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

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

@-webkit-keyframes loading {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@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: 100%;
        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: 100%;
        max-width: 30%;
    }

}

/* --------------- end product-search --------------- */


/* --------------- start text-carousel --------------- */
.text-carousel .swiper-slide>p {
    font-family: var(--primary-font);
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.text-carousel .swiper-slide>p a {
    text-decoration: underline;
    color: var(--primary-color);
}

.text-carousel .swiper-slide>p svg {
    padding: 0 10px 0 0;
    width: 20px;
    height: 20px;
    color: currentcolor;
}

.text-stroke .swiper-slide>p {
    white-space: nowrap;
    font-family: var(--primary-font);
    font-size: 162px;
    line-height: 190px;
    letter-spacing: 3px;
    -webkit-text-stroke: 1px var(--primary-color);
    color: transparent;
    margin: 0;
}

.elementor-element.text-absolute.e-con.e-transform {
    max-width: 110%;
    width: 110%;
}

.elementor.elementor .e-con>.elementor-element.text-absolute {
    max-width: 110%;
}

.elementor.elementor .e-con>.elementor-element.text-absolute .elementor-widget-container {
    width: 110%;
}

.elementor.elementor marquee .marquee-content p {
    color: #fff;
    font-size: 44px;
    text-transform: uppercase;
    font-family: var(--primary-font);
}

.elementor.elementor marquee .marquee-content p a {
    color: #fff;
    text-decoration: underline;
}

.elementor-element .black marquee .marquee-content p a,
.elementor-element .black marquee .marquee-content p {
    color: #333;
}

/* --------------- end text-carousel --------------- */

/* ------------- start section title ------------- */
.heading-01 .elementor-heading-title {
    position: relative;
    padding: 0 0 0 25px;
}

.heading-01 .elementor-heading-title::after {
    content: '';
    position: absolute;
    height: 85%;
    width: 1px;
    background: var(--primary-color);
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto;
}

.tt-section-sab {
    font: 500 15px/16px var(--secondary-font);
    color: #a45934;
    text-transform: uppercase;
    margin: 0 0 10px;
    display: inline-block;
}

.section-heading {
    font: 400 36px/40px var(--primary-font);
    color: var(--secondary-color);
}

.title-space .section-heading {
    padding-left: 40px;
}

/* ------------- end section title ------------- */

/* ---------------- start video block --------------- */
.tt-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tt-video>img {
    width: 100%;
}

#myvid {
    z-index: -1;
    position: relative;
}

#myvid.show {
    z-index: 1;
}

.tt-video .icon-popup,
.tt-video .youtube-popup {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    height: 90px;
    width: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tt-video .icon-popup::after,
.tt-video>.youtube-popup::after {
    content: '';
    position: absolute;
    border: 1px dashed #fff;
    top: -9.45%;
    bottom: auto;
    left: -9.45%;
    right: 0;
    margin: auto;
    border-radius: 50%;
    width: calc(100% + 18.9%);
    height: calc(100% + 18.9%);
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tt-video .icon-popup #vidbutton,
.tt-video>.youtube-popup #vidbutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tt-video .icon-popup svg,
.tt-video>.youtube-popup svg {
    width: 14%;
    height: 14%;
}

.video-icon-big .tt-video>.youtube-popup svg,
.video-icon-big .tt-video .icon-popup svg {
    width: 14%;
    height: 14%;
}

.tt-video .icon-popup:hover,
.tt-video>.youtube-popup:hover {
    background: var(--primary-color);
}

.tt-video .icon-popup:hover>.play-button>svg,
.tt-video>.youtube-popup:hover>.play-button>svg {
    color: #fff;
}

.tt-video .icon-popup:hover::after,
.tt-video>.youtube-popup:hover::after {
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
}

.tt-video .icon-popup .play-button svg,
.tt-video>.youtube-popup>.play-button>svg {
    font-size: 25px;
}

.tt-video .icon-popup .play-button,
.tt-video>.youtube-popup>.play-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.elementor-element.video-section-600 .tt-video,
.elementor-element.video-section-600 {
    height: 600px;
}

.elementor-element.custom-video-height {
    height: 170px;
}

/* ---------------- end video block --------------- */


.swiper-navigation {
    position: absolute;
    top: -80px;
    bottom: auto;
    right: 0;
    left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.swiper-navigation .swiper-button {
    position: static;
}

.arrow-style-01 .swiper-navigation {
    top: -45px;
}

.arrow-position.arrow-style-01 .swiper-navigation {
    left: 14%;
    right: auto;
    -webkit-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    transform: rotate(4deg);
    top: -75px;
}

.arrow-style-01 .swiper-navigation .swiper-button {
    border: none;
    height: auto;
    width: auto;
}

.arrow-style-01 .swiper-navigation .swiper-button svg {
    display: none;
}

.arrow-style-01 .swiper-navigation .swiper-button.swiper-button-prev {
    position: relative;
    right: 20px;
    left: auto;
    width: 30px;
    height: 30px;
}

.arrow-style-01 .swiper-navigation .swiper-button.swiper-button-next {
    position: relative;
    right: 0;
    left: auto;
    width: 30px;
    height: 30px;
}

.arrow-style-01 .swiper-navigation .swiper-button::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    top: 0;
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}

.arrow-style-01 .swiper-navigation .swiper-button::after {
    content: '' !important;
    width: 10px;
    height: 1px;
    background: var(--primary-color);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -8px;
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: auto;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}

.arrow-style-01.fff .swiper-navigation .swiper-button::before,
.arrow-style-01.fff .swiper-navigation .swiper-button::after {
    background: #fff;
}

.arrow-style-01 .swiper-navigation .swiper-button.swiper-button-next::after {
    content: '' !important;
    width: 10px;
    height: 1px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 8px;
    position: absolute;
    bottom: 0;
    margin: auto;
    left: auto;
    right: 0;
}

.arrow-style-01 .swiper-navigation .swiper-button:hover::before {
    width: 40px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.arrow-style-01 .swiper-navigation .swiper-button:hover::after {
    -webkit-transform: translateX(0px) rotate(-45deg);
    -ms-transform: translateX(0px) rotate(-45deg);
    transform: translateX(0px) rotate(-45deg);
}

.arrow-style-01 .swiper-navigation .swiper-button.swiper-button-next:hover::before {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.arrow-style-01 .swiper-navigation .swiper-button.swiper-button-next:hover::after {
    -webkit-transform: translateX(1px) rotate(-45deg);
    -ms-transform: translateX(1px) rotate(-45deg);
    transform: translateX(1px) rotate(-45deg);
}

/* 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: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
@keyframes line-slide {
    0% {
        background-position: -5% 0;
   }
    100% {
        background-position: 100% 0;
   }
}
.swiper-container {
    overflow: visible;
}
.swiper-pagination {
    position: absolute;
    bottom: -25px;
} */

/*-------------- testimonial------------ */

.elementor-element.outline-offset img {
    outline: 1px solid #a45934;
    outline-offset: 30px;
}

.elementor-element.outline-offset.outline-offset-white img {
    outline-color: #787171;
    outline-offset: 20px;
}

/* .tt-testimonial.swiper .swiper-pagination {
    top: 0;
    bottom: auto;
    left: 0;
    right: auto;
    width: auto;
    height: fit-content;
} */
.elementor-element .tt-testimonial-wrap {
    padding: 0 0 60px;

}

.elementor-element .tt-testimonial-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 44px;
    width: auto;
}

.elementor-element.center .tt-testimonial-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 0;
    right: 0;
}

.elementor-element .tt-testimonial-wrap.style-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 0;
    right: 0;
    width: auto;
}

.tt-testimonial-wrap .swiper-pagination-bullet {
    position: relative;
    background: 0 0;
    width: 35px;
    height: 35px;
    opacity: 1;
}

.tt-testimonial-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #b96f4a;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tt-testimonial-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: #b96f4a;
}

.tt-testimonial-wrap .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #777;
}

.testimonial-wrap .testimonial-info-wrapper {
    padding: 0 50px;
}

.testimonial-wrap .testimonial-info-wrapper .block-quote {
    padding: 150px 0 0 0;
    display: block;
    position: relative;
}

.tt-testimonial {
    position: relative;
}

.tt-testimonial::before {
    content: '\f10d';
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #000;
    font-size: 25px;
    top: 0;
    bottom: auto;
    left: 50px;
    right: auto;
    margin: auto;
    height: 125px;
    width: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tt-testimonial.center-side::before {
    left: 0;
    right: 0;
}

.testimonial-wrap .testimonial-info-wrapper .tt-testimonial-title {
    font: normal 500 34px/36px var(--primary-font);
    margin: 20px 0 35px;
    display: block;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-details p {
    font: normal 400 16px/26px var(--secondary-font);
    margin: 0 0 24px;
    float: left;
    font-style: italic;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    width: 100%;
    position: relative;
    margin: 0 0 25px;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info .testimonial-author {
    font-size: 22px;
    font-family: var(--primary-font);
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info .testimonial-designation {
    font-size: 14px;
    position: relative;
    margin: 0 0 0 10px;
    padding-left: 20px;
    color: #004544;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info .testimonial-designation::before {
    position: absolute;
    content: '';
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.tt-testimonial-wrap.style-2 .testimonial-wrap .testimonial-info-wrapper .block-quote {
    padding: 55px 0 0 0;
}

.tt-testimonial-wrap.style-2 .tt-testimonial::before {
    right: 0;
    left: 0;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 35px;
}

.tt-testimonial-wrap.style-2 .testimonial-wrap .testimonial-info-wrapper .testimonial-content {
    text-align: center;
}

.tt-testimonial-wrap.style-2 .testimonial-wrap .testimonial-info-wrapper .testimonial-info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.elementor-element .tt-testimonial-wrap.style-2 .tt-testimonial.swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 0;
    width: 100%;
}

.testimonial-wrap .testimonial-info-wrapper .center-side .block-quote::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.testimonial-wrap .testimonial-info-wrapper .center-side .testimonial-info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-wrap .testimonial-info-wrapper .center-side .testimonial-details p {
    text-align: center;
}

.testimonial-wrap .testimonial-info-wrapper .right-side .block-quote::before {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
}

.testimonial-wrap .testimonial-info-wrapper .right-side .testimonial-info {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.testimonial-wrap .testimonial-info-wrapper .right-side .testimonial-details p {
    text-align: right;
}


/* -------------- start accordion ---------------- */
.samanta-accordion-item {
    border-bottom: 1px solid var(--dark-border);
}

.samanta-accordion-item .accordion-tilte {
    position: relative;
    font-size: 20px;
    font-family: var(--primary-font);
    color: #333;
    padding: 30px 0 30px 40px;
    margin: 0;
    cursor: pointer;
}

.samanta-accordion-item.active .accordion-tilte {
    padding-bottom: 15px;
}


.samanta-accordion-item .accordion-tilte::before {
    content: '\2b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    margin: 0;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.samanta-accordion-item.active .accordion-tilte::before {
    content: '\f068';
    font-size: 13px;
    font-weight: 600;
    top: auto;
    bottom: 20px;
}

.samanta-accordion-item .samanta-accordion-content p {
    font-family: var(--secondary-font);
    color: #666;
    margin: 0 0 30px;
}

.samanta-accordion-item .samanta-accordion-content {
    padding: 0 0 0 40px;
}


/* -------------- start accordion ---------------- */

/* --------------- Start Banner block ------------------- */
.tt-banner .banner-image {
    display: block;
    float: none;
    position: relative;
    overflow: hidden;
}

.tt-banner {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.tt-banner .banner-text.tt-icon-right {
    width: 40%;
    left: auto;
    right: 30px;
}

.tt-banner .banner-text.tt-icon-center {
    padding: 0 90px;
}

.tt-banner .banner-text.tt-icon-top {
    top: 50px;
    bottom: auto;
    padding: 0 90px;
}

.tt-banner .banner-text.tt-icon-left {
    right: auto;
    width: 40%;
    left: 30px;
}

.tt-banner .banner-text.tt-icon-bottom {
    top: auto;
    bottom: 50px;
    padding: 0 90px;
}

.banner-center-bottom .tt-banner .banner-text.tt-icon-bottom {
    padding: 0 185px;
}

.banner-left-bottom .tt-banner .banner-text.tt-icon-bottom {
    padding: 0 60px;
    bottom: 50px;
    width: 70%;
    margin: 0;
}

.banner-right-bottom .tt-banner .banner-text.tt-icon-bottom {
    padding: 0 60px;
    bottom: 50px;
    width: 70%;
    margin: 0;
    right: 0;
    left: auto;
}

.banner-right-bottom .tt-banner .banner-text.tt-icon-bottom .wpbanner-content {
    text-align: end;
}

.tt-banner .banner-text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tt-banner .wpbanner-content {
    float: left;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tt-banner .banner-text .banner-sub-title {
    font: 400 18px/20px var(--secondary-font);
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.tt-banner .banner-text .banner-title {
    font: 500 46px/56px var(--primary-font);
    color: #fff;
}

.tt-banner .banner-text .banner-content {
    font: 400 16px/18px var(--secondary-font);
    margin: 10px 0 0px;
    color: #fff;
}

.tt-banner .banner-text .button-banner a {
    font: 400 14px/16px var(--secondary-font);
    padding: 4px 0;
    margin: 20px 0 0;
    color: #fff;
    text-transform: uppercase;
    background: none;
}

.tt-banner .banner-text .button-banner a::after {
    height: 1px;
    bottom: 0;
    top: auto;
}

.tt-banner .banner-text .button-banner a:hover::after {
    background: #fff;
}

.tt-banner .banner-text .button-banner a:hover {
    color: #fff;
}

.tt-banner .banner-text .button-banner:after {
    background: var(--primary-color-text);
}

.tt-banner img {
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
}

.tt-banner:hover .banner-image img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.tt-banner .banner-image::after,
.tt-banner .banner-image::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.tt-banner:hover .banner-image::after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255, 255, 255, .2);
}

.tt-banner:hover .banner-image::before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255, 255, 255, .2);
}

/* --------------- End Banner Block ------------------- */

/* --------------- Start cms-block block ------------------- */

.tt-cms-block .cms-block-text,
.tt-cms-block .cms-block-image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tt-cms-block.flex-column {
    border-bottom: 1px solid var(--secondary-color);
}

.tt-cms-block.flex-column-reverse {
    border-top: 1px solid var(--secondary-color);
}

.tt-cms-block .cms-block-image img {
    width: 100%;
}

/* .tt-cms-block .cms-block-text {
    background: #eeebe7;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.tt-cms-block .cms-block-text .wpcms-block-content {
    padding: 115px 80px;
}


.tt-cms-block .cms-block-image {
    float: none;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
}

.tt-cms-block:hover .cms-block-image>img,
.tt-cms-block .cms-block-image>img {
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
    cursor: pointer;
}

.banner-hover:hover .elementor-widget-container img,
.tt-cms-block:hover .cms-block-image>img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.tt-cms-block .cms-block-image::after,
.tt-cms-block .cms-block-image::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.tt-cms-block:hover .cms-block-image::after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255, 255, 255, .2);
}

.tt-cms-block:hover .cms-block-image::before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255, 255, 255, .2);
}

.tt-cms-block .cms-block-text .wpcms-block-content .cms-block-content {
    font: 400 20px/22px var(--secondary-font);
    text-transform: uppercase;
    margin: 0 0 25px;
    color: #a45934;
}

.tt-cms-block .cms-block-text .wpcms-block-content .cms-block-title {
    font: 400 54px/60px var(--primary-font);
    margin: 0 0 70px;
    color: var(--secondary-color);
}

.tt-cms-block .cms-block-text .wpcms-block-content .button-cms-block .cms-block-button {
    font: 400 14px/16px var(--secondary-font);
    padding: 14px 28px;
    color: #fff;
    text-transform: capitalize;
}

/* .cms-btn .tt-cms-block .cms-block-text .wpcms-block-content .button-cms-block .cms-block-button{
	background: none;
	border: 1px solid #997b4d;
	color: #997b4d;
}
.cms-btn .tt-cms-block .cms-block-text .wpcms-block-content .button-cms-block .cms-block-button::after{
	background: #997b4d;
}
.cms-btn .tt-cms-block .cms-block-text .wpcms-block-content .button-cms-block .cms-block-button:hover{
	color: #fff;
} */

/* -------------- Start .swiperient Logo ---------------- */

.client-logo .item img {
    width: auto;
    opacity: 0.7;
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    -webkit-opacity: 0.7;
    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;
}

.client-logo .item a {
    cursor: pointer;
    padding: 10px 0;
}

.client-logo .item a:hover img {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
}

.client-logo .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* -------------- End .swiperient Logo ---------------- */


/* -------------- Start .cms-slider ---------------- */

.cms-service-slider .tt-feature-box {
    cursor: pointer;
    padding: 120px;
    position: relative;
}

.tt-icon-top .tt-feature-box-containt {
    margin-top: 15px;
}

.cms-service-slider .tt-feature-box::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 100%;
    left: auto;
    width: 1px;
    height: 100%;
    background: var(--dark-border);
}

.cms-service-slider .tt-feature-box .service-slider-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.cms-service-slider .tt-feature-box .tt-feature-box-icon {
    display: block;
    float: none;
    position: relative;
    overflow: hidden;
}

.cms-service-slider .tt-feature-box.tt-icon-right .tt-feature-box-containt {
    width: 60%;
    left: auto;
    right: 30px;
}

.cms-service-slider .tt-feature-box.tt-icon-center .tt-feature-box-containt {
    padding: 0 90px;
}

.cms-service-slider .tt-feature-box.tt-icon-top .tt-feature-box-containt {
    top: 40px;
    bottom: auto;
    padding: 0 90px;
}

.cms-service-slider .tt-feature-box.tt-icon-left .tt-feature-box-containt {
    right: auto;
    width: 60%;
    left: 40px;
}

.cms-service-slider .tt-feature-box.tt-icon-bottom .tt-feature-box-containt {
    top: auto;
    bottom: 40px;
    padding: 0 20% 0 40px;
}

.cms-service-slider .tt-feature-box .tt-feature-box-containt {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
}

.cms-service-slider .tt-feature-box .tt-feature-box-containt p {
    font: 400 18px/20px var(--secondary-font);
    text-transform: uppercase;
    margin: 0 0 25px;
    color: #fff;
    width: 100%;
}

.cms-service-slider .tt-feature-box .tt-feature-box-containt p span {
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding: 0 0 5px;
    letter-spacing: 3px;
}

.cms-service-slider .tt-feature-box .tt-feature-box-containt .tt-feature-title {
    font: 400 46px/52px var(--primary-font);
    width: 100%;
    color: #fff;
    margin: 0;
}

.cms-service-slider .tt-feature-box .tt-feature-box-icon img {
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
}

.cms-service-slider .tt-feature-box .service-slider-inner:hover .tt-feature-box-icon img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.cms-service-slider .tt-feature-box .tt-feature-box-icon::after,
.cms-service-slider .tt-feature-box .tt-feature-box-icon::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.cms-service-slider .tt-feature-box:hover .tt-feature-box-icon::after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255, 255, 255, .2);
}

.cms-service-slider .tt-feature-box:hover .tt-feature-box-icon::before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255, 255, 255, .2);
}

/* -------------- End .cms-slider ---------------- */

/*-------------- Start Category Gallery ---------------*/

#gallary_tabs,
.category-gallery-wrap,
.cat-gallary,
#gallary_tabs .category-gallery-wrap .category-gallary,
#gallary_tabs .category-gallery-wrap .category-gallary .cat-gallary {
    float: left;
    width: 100%;
}

#gallary_tabs {
    position: relative;
}

#gallary_tabs .category-name-wrap {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#gallary_tabs .category-button a {
    font-family: var(--primary-font);
    color: var(--primary-color-text);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

#gallary_tabs .category-button a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color-text);
    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;
}

#gallary_tabs .category-button a:hover {
    color: #974e40;
}

#gallary_tabs .category-button a:hover::after {
    background: #974e40;
    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;
}

#gallary_tabs .category-name-wrap li {
    margin: 0 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#gallary_tabs .category-name-wrap li .category-number {
    font-size: 34px;
    font-family: var(--primary-font);
    color: #FFF;
}

#gallary_tabs .category-gallary-title {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#gallary_tabs .category-gallary-title .tt-section-title {
    width: auto;
    margin: 0 0 40px;
}

#gallary_tabs .category-name-wrap li a {
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    opacity: 0.5;
    font-size: 75px;
    line-height: 78px;
    padding: 0 0 0 15px;
}

#gallary_tabs .category-gallary-title.style-1 .category-name-wrap li a {
    font-size: 50px;
    line-height: 52px;
}

.add-btn-arrow #gallary_tabs .category-gallary-title .category-name-wrap .category-name a {
    padding: 0 0 10px 0;
}

.add-btn-arrow #gallary_tabs .category-gallary-title .category-name-wrap .category-name.active a {
    padding: 0 50px 10px 0;
}

.add-btn-arrow #gallary_tabs .category-gallary-title .category-name-wrap .category-name.active a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 1px;
    background: #fff;
}

.add-btn-arrow #gallary_tabs .category-gallary-title .category-name-wrap .category-name.active a::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 2px;
    left: auto;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 10px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#gallary_tabs .category-name-wrap li a:hover,
#gallary_tabs .category-name-wrap li.active a {
    color: #fff;
    opacity: 1;
}

#gallary_tabs .category-name-wrap li {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

#gallary_tabs .category-name-wrap li::before {
    content: "";
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
    top: auto;
    bottom: 0;
    height: 2px;
    z-index: 0;
    -webkit-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
    width: 0;
    background: #fff;
}

#gallary_tabs .category-name-wrap li:hover::before,
#gallary_tabs .category-name-wrap li.active::before {
    width: 100%;
}

#gallary_tabs .category-gallery-wrap .category-gallary {
    display: none;
}

#gallary_tabs .category-gallery-wrap .category-gallary.active {
    display: block;
}

#gallary_tabs .category-gallery-wrap .category-gallary .cat-gallary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.category-gallary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cat-heading .tt-section-title {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 20px;
    bottom: auto;
    width: 40%;
}

.category-gallery-wrap .category-gallary .cat-img {
    position: relative;
    float: left;
    padding: 0 15px;
}

.category-gallery-wrap .category-gallary.active .cat-img .cat-img-2,
.category-gallery-wrap .category-gallary.active .cat-img .cat-img-0,
.category-gallery-wrap .category-gallary.active .cat-img .cat-img-3 {
    animation: 2s ease 0s normal none 1 fadeInUp;
    -webkit-animation: 2s ease 0s normal none 1 fadeInUp;
    -moz-animation: 2s ease 0s normal none 1 fadeInUp;
    -o-animation: 2s ease 0s normal none 1 fadeInUp;
}

.category-gallery-wrap .category-gallary .cat-left .cat-img-1 {
    float: none;
    width: auto;
    position: absolute;
    top: auto;
    bottom: 10px;
    right: auto;
    left: 24%;
    animation: 3s ease 0s normal none 1 fadeInUp;
    -webkit-animation: 3s ease 0s normal none 1 fadeInUp;
    -moz-animation: 3s ease 0s normal none 1 fadeInUp;
    -o-animation: 3s ease 0s normal none 1 fadeInUp;
}

.category-gallery-wrap .category-gallary .cat-left .cat-img-2,
.category-gallery-wrap .category-gallary .cat-right .cat-img-4 {
    animation: 4s ease 0s normal none 1 fadeInUp;
    -webkit-animation: 4s ease 0s normal none 1 fadeInUp;
    -moz-animation: 4s ease 0s normal none 1 fadeInUp;
    -o-animation: 4s ease 0s normal none 1 fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.category-gallery-wrap .category-gallary .cat-left .cat-img-2 {
    margin: 35px 0 0 35px;
    float: left;
    width: 100%;
}

.category-gallery-wrap .category-gallary .cat-right .cat-img-3,
.category-gallery-wrap .category-gallary .cat-right .cat-img-3 img {
    float: right;
}

.category-gallery-wrap .category-gallary .cat-right .cat-img-4 {
    position: absolute;
    right: auto;
    left: 0;
    bottom: 10%;
    top: auto;
}

.category-gallery-wrap .category-gallary .cat-right .cat-img-5 {
    float: none;
    width: auto;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    right: auto;
}

.category-gallary .category-url img {
    height: auto;
    width: auto;
}

.category-gallary .category-url:hover img {
    scale: 1.1;
}

.category-url.cat-img-0 {
    max-height: 510px;
    max-width: 280px;
    border-radius: 140px;
    overflow: hidden;
    -webkit-border-radius: 140px;
    -moz-border-radius: 140px;
    -ms-border-radius: 140px;
    -o-border-radius: 140px;
}

.category-url.cat-img-1 {
    max-height: 470px;
    max-width: 370px;
    border-top-left-radius: 185px;
    overflow: hidden;
}

.cat-right.cat-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.category-url.cat-img-2 {
    max-height: 720px;
    max-width: 485px;
    border-radius: 285px;
    overflow: hidden;
    -webkit-border-radius: 285px;
    -moz-border-radius: 285px;
    -ms-border-radius: 285px;
    -o-border-radius: 285px;
}

.category-url.cat-img-3 {
    max-height: 490px;
    max-width: 360px;
    overflow: hidden;
}

.category-url.cat-img-4 {
    max-height: 280px;
    max-width: 270px;
    overflow: hidden;
}

.category-gallery-wrap .category-gallary .cat-img.cat-left {
    padding: 30px 0 0 0;
}

.category-gallery-wrap .category-gallary .cat-img.cat-right {
    padding: 0 0 0 0;
}

/* Category Gallery 02 start */

.category-gallery-wrap.style-2 {
    position: relative;
    left: 12%;
    transform: translateX(12%);
    width: auto;
    -webkit-transform: translateX(12%);
    -moz-transform: translateX(12%);
    -ms-transform: translateX(12%);
    -o-transform: translateX(12%);
}

.category-gallary-title.style-2 .category-button,
#gallary_tabs .category-gallary-title.style-2 .category-name.active {
    position: relative;
    z-index: 2;
}

.category-gallery-wrap.style-2 .category-gallary.active .cat-img .cat-img-0 {
    animation: 1s ease 0s normal none 1 scaleIn;
    -webkit-animation: 1s ease 0s normal none 1 scaleIn;
    -moz-animation: 1s ease 0s normal none 1 scaleIn;
    -o-animation: 1s ease 0s normal none 1 scaleIn;
    border-radius: 220px;
    overflow: hidden;
    border: 15px solid rgba(255, 255, 255, 0.1);
    outline: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 220px;
    -moz-border-radius: 220px;
    -ms-border-radius: 220px;
    -o-border-radius: 220px;
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

#gallary_tabs .category-gallary-title.style-2 .category-name-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


#gallary_tabs .category-gallary-title.style-2 .category-name-wrap li:last-child {
    margin: 0;
}

.category-gallery-wrap.style-2 .cat-img .category-url.cat-img-0 {
    max-width: 410px;
    max-height: 645px;
    border-radius: 205px;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 205px;
    -moz-border-radius: 205px;
    -ms-border-radius: 205px;
    -o-border-radius: 205px;
}

#gallary_tabs .category-gallary-title.style-2 {
    float: left;
    width: auto;
}


/* Category Gallery 02 end */

.no-number #gallary_tabs .category-name-wrap li span {
    display: none;
}

.gallery-style-2 #gallary_tabs .category-name-wrap li a {
    font-size: 30px;
    line-height: 32px;
}

.gallery-style-2 #gallary_tabs .category-name-wrap li a::before {
    display: none;
}

.gallery-style-2 #gallary_tabs .category-name-wrap li a:hover,
.gallery-style-2 #gallary_tabs .category-name-wrap li.active a {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-style-2 #gallary_tabs .category-name-wrap li::before {
    content: none;
}

.cat-gallery-btn .btn.btn-primary {
    padding: 13px 28px;
    background: #fff;
    color: #333;
}

.cat-gallery-btn .btn.btn-primary:hover {
    color: #fff;
}

.cat-gallery-btn .btn.btn-primary::after {
    background: #333;
}

.gallery-style-2 #gallary_tabs .category-name-wrap li {
    margin: 0 0 0;
    padding: 30px 0;
    border-bottom: 1px solid #fff;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    width: 100%;
}

.gallery-style-2 #gallary_tabs .category-name-wrap li:first-child {
    border-top: 1px solid #fff;
}

.gallery-style-2 #gallary_tabs .category-name-wrap {
    text-align: start;
    width: 100%;
}

.gallery-style-2 .category-gallary-title.style-2 .category-button,
.gallery-style-2 #gallary_tabs .category-gallary-title.style-2 .category-name.active {
    position: relative;
    z-index: 0;
}

.gallery-style-2 .category-gallery-wrap.style-2 .category-gallary.active .cat-img .cat-img-0 {
    border: 8px solid rgba(255, 255, 255, 1);
    outline: none;
}

.gallery-style-2 .category-gallery-wrap.style-2 {
    position: relative;
    left: 40%;
}

.gallery-style-2 .category-gallery-wrap.style-2 .cat-img .category-url.cat-img-0 {
    max-width: 250px;
    max-height: 250px;
}


/*-------------- end Category Gallery ---------------*/

.main-cms .main-cms-img {
    outline: 1px solid #000;
    outline-offset: 4px;
    margin: 0 35px;
    width: 140px;
    height: auto;
}

.main-cms div {
    font-size: 52px;
    font-family: var(--primary-font);
    color: #333;
    line-height: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.elementor-element.position-none {
    position: static;
}


.tt-portfolio-thumbnail span {
    color: var(--primary-color-text)
}

.Portfolio-style-1 .tt-portfolio-thumbnail a {
    float: none;
    display: inline-block;
    vertical-align: top;
    background: #fff;
    padding: 15px;
    -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, .1)
}

.tt-portfolio-thumbnail a img {
    width: 100%
}

.portfolio-grid.Portfolio-style-1 a,
.portfolio-grid.Portfolio-style-2 a {
    margin: 0 0 40px;
    position: relative;
    width: 100%;
    overflow: hidden
}

.portfolio-grid.Portfolio-style-2 a {
    display: inline-block;
    float: none
}

.portfolio-grid.Portfolio-style-1 a span {
    font-family: var(--primary-font);
    font-size: 20px;
    padding: 15px 0;
    float: left;
    width: 100%
}

.portfolio-grid.Portfolio-style-2 a span {
    font-family: var(--primary-font);
    font-size: 20px;
    padding: 15px 10px;
    float: left;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all
}

.portfolio-grid.Portfolio-style-2 a:hover span {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px)
}

.service-block .tt-feature-box.tt-icon-left {
    display: flex;
    align-items: center;
}

.tt-feature-box .tt-feature-box-containt .tt-feature-box-title {
    margin: 0 0 5px;
}

.tt-feature-box .tt-feature-box-containt p {
    margin: 0;
}

.service-block .tt-feature-box.tt-icon-right {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.service-block .tt-feature-box .tt-feature-box-containt {
    margin: 0 0 0 10px;
}

.service-block .tt-feature-box.tt-icon-top .tt-feature-box-containt {
    margin: 20px 0 0;
}


/* --------------- Insta Feed start ------------------- */

.insta-feed .elementor-shortcode {
    margin: 0 -30px;
}

#sb_instagram .sbi_photo_wrap {
    overflow: hidden;
}

.about-team .tt-feature-box .tt-feature-box-icon {
    overflow: hidden;
}

#sb_instagram .sbi_photo,
.about-team .tt-feature-box .tt-feature-box-icon img {
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
}

#sb_instagram .sbi_photo:hover,
.about-team .tt-feature-box:hover .tt-feature-box-icon img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
}

.insta-feed.e-con.e-flex {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

#sb_instagram.sbi_col_6 #sbi_images .sbi_item .sbi_photo_wrap {
    overflow: hidden;
}

#sb_instagram.sbi_col_6 #sbi_images .sbi_item:hover .sbi_photo {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

#sb_instagram .sbi_photo:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "\f002";
    border: 2px solid #fff;
    float: left;
    width: 40px;
    padding: 0;
    height: 40px;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transition: .4s ease-in-out;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 15px;
    z-index: 10;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#sb_instagram .sbi_photo {
    position: relative;
}

#sb_instagram .sbi_photo_wrap {
    float: none;
    display: block;
    overflow: hidden;
}

#sb_instagram .sbi_photo:hover::after {
    background: #000;
    opacity: 0.6;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


#sb_instagram .sbi_photo: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;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transition: .4s ease-in-out;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    font-family: 'Font Awesome 5 Free';
    background: #222;
    z-index: 9;
}


#sb_instagram .sbi_photo:hover:before {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* --------------- Insta Feed End ------------------- */