
/*============================================
  Homepage SimpleBanner slider Css Start Here
============================================*/

.HomePage-BannerSec-slider{
    position: relative;
    overflow: hidden;
}

.HomePage-BannerSec-slider .BannerSlider-homepage{
    position: relative;
    height: 100vh;
}

.HomePage-BannerSec-slider .overlay-text{
    position: absolute;
    top: 50%;
    right: 10%;
    width: 100%;
    max-width: 500px;
    text-align: start;
    transform: translateY(-50%);
    z-index: 20;
}

.HomePage-BannerSec-slider .overlay-text h1,
.HomePage-BannerSec-slider .overlay-text h2,
.HomePage-BannerSec-slider .overlay-text h3,
.HomePage-BannerSec-slider .overlay-text h4,
.HomePage-BannerSec-slider .overlay-text h5,
.HomePage-BannerSec-slider .overlay-text h6,
.HomePage-BannerSec-slider .overlay-text p,
.HomePage-BannerSec-slider .overlay-text strong,
.HomePage-BannerSec-slider .overlay-text span{
    color: var(--light);
}

.HomePage-BannerSec-slider .overlay-text h1::after,
.HomePage-BannerSec-slider .overlay-text h2::after{
    background-color: var(--light);
}

.HomePage-BannerSec-slider .overlay-text .short-desc{
    margin: 0 0 24px 0;
}

.HomePage-BannerSec-slider .overlay-text .action{
    display: flex;
    gap: 10px;
}

.HomePage-BannerSec-slider .action .theme-btn{
    background-color: var(--light);
    color: var(--theme-primary-text-color);
}

.HomePage-BannerSec-slider .action .theme-btn:hover{
    border: 1px solid var(--theme-primary-border-color);
    background-color: var(--theme-tertiary-bg-color);
    color: var(--light);
}

.HomePage-BannerSec-slider .swiper-slide{
    position: relative;
}

.HomePage-BannerSec-slider .swiper-pagination{
    position: absolute;
    bottom: 10px;
}

.HomePage-BannerSec-slider .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    background-color: var(--theme-primary-color);
    border: 1px solid var(--dark);
    opacity: .3;
    transition: .3s;
}

.HomePage-BannerSec-slider .swiper-pagination-bullet-active{
    opacity: 1;
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-next,
.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-prev{
    width: 42px;
    height: 42px;
    position: relative;
    background-color: var(--theme-primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    transition: .3s;
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-next:hover,
.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-prev:hover{
    transform: translateY(-50%) scale(1.1);
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-next{
    left: -100px;
    right: inherit;
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-prev{
    left: inherit;
    right: -100px;
}

.HomePage-BannerSec-slider:hover .swiper-button-next{
    left: 12px;
    right: inherit;
}

.HomePage-BannerSec-slider:hover .swiper-button-prev{
    left: inherit;
    right: 12px;
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-next::after,
.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-prev::after{
    font-family: "Font Awesome 6 Pro";
    background-image: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--dark);
    transition: .3s;
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-next::after{
    content: "\f104" !important;
}

.HomePage-BannerSec-slider .BannerSlider-homepage .swiper-button-prev::after{
    content: "\f105" !important;
}

@media (max-width : 992px){
    .HomePage-BannerSec-slider{
        margin-top: 60px;
    }
}

/*============================================
  Homepage SimpleBanner slider Css End Here
============================================*/

/*============================================
    InnerPage Banner slider Css Start Here
============================================*/


.inner-BannerSec-main{
    position: relative;
    background-color: var(--dark-rgba-4);
}

.inner-BannerSec-main .BannerSlider-homepage{
    position: relative;
    height: calc(100vh - 200px);
}

.inner-BannerSec-main .banner-content-wrp{
    padding: 30px 0;
    background-color: var(--theme-body-bg-color);
}

.inner-BannerSec-main .banner-img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*============================================
    InnerPage Banner slider Css End Here
============================================*/

/*============================================
    Thumbnails Banner slider Css Start Here
============================================*/

.HomePage-Thumbslider{
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.HomePage-Thumbslider-md{
    height: auto;
}

.bigImage-slider-main{
    height: 100%;
}

.HomePage-Thumbslider .swiper-bigImage{
    position: relative;
    height: 100%;
}

.HomePage-Thumbslider .swiper-bigImage .swiper-wrapper{
    position: relative;
}

.HomePage-Thumbslider .swiper-bigImage .swiper-slide{
    width: 100%;
}

.HomePage-Thumbslider .swiper-bigImage .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.HomePage-Thumbslider-md .swiper-bigImage .swiper-slide img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/5;
}

.thumbnail-slider-main{
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
    width: 550px;
    z-index: 1010;
}

.thumbnail-slider-main .swiper-thumb{
    padding: 12px;
}

.thumbnail-slider-main .swiper-slide .banner-img{
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 100%;
    outline: 4px solid var(--theme-border-color2);
    transition: .5s;
}

.thumbnail-slider-main .swiper-slide-thumb-active .banner-img{
    outline: 4px solid var(--theme-primary-color);
}

@media (max-width: 992px){
    .thumbnail-slider-main{
        width: 300px;
    }
    .thumbnail-slider-main .swiper-slide .banner-img {
        height: 36px;
    }
}

@media (max-width : 600px){
    .HomePage-Thumbslider-md .swiper-bigImage .swiper-slide img{
        aspect-ratio: 2/3;
    }
}

#htmlContent .HomePage-Thumbslider{
    height: auto !important;
}

#htmlContent .swiper-bigImage .swiper-wrapper{
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 24px 0 !important;
}

#htmlContent .swiper-bigImage .swiper-slide{
    width: 18% !important;
    padding: 20px !important;
    flex: 0 0 auto;
    border: 2px solid #bbbbbb !important;
    margin: 0 10px;
}

#htmlContent .swiper-bigImage .swiper-slide img{
    width: 100% !important;
    height: 300px !important;
    object-fit: contain !important;
    border: none !important;
    outline: none !important;
}

#htmlContent .thumbnail-slider-main{
    position: inherit !important;
    bottom: inherit !important;
    left: inherit !important;
    transform: translate(0) !important;
    width: 100%;
}

#htmlContent .thumbnail-slider-main .swiper-slide{
    width: 6.33333%;
    padding: 20px !important;
    flex: 0 0 auto;
    border: 2px solid #bbbbbb !important;
    margin: 0 12px;
}

#htmlContent .thumbnail-slider-main .swiper-slide img{
    width: 100% !important;
    height: 100px !important;
    border-radius: 24px !important;
    object-fit: contain !important;
    border: none !important;
    outline: none !important;
}

/*============================================
    Thumbnails Banner slider Css End Here
============================================*/

/*========================================
    Banner Normal Sec Css Start Here
=========================================*/

.Banner-Image-Normal{
    position: relative;
    overflow: hidden;
}

.Banner-Image-Normal .nr-ban-image{
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width : 992px){
    .Banner-Image-Normal{
        margin-top: 60px;
    }
}

/*========================================
    Banner Normal Sec Css End Here
=========================================*/

/*========================================
    Categories Sec Css Start Here
=========================================*/

:root{
    --category-bg-color: rgba(150, 98, 74, 0.8);
    --category-bg-hover-color: rgb(198, 123, 88);
    --category-border-color: #BBC9CF;
}

.categories-Homepage-layout1{
    position: relative;
    margin: 50px 0;
}

.categories-Homepage-layout1 .row{
    gap: 24px 0;
}

.categories-Homepage-layout1 .box-link{
    position: relative;
    display: block;
    height: 100%;
    box-shadow: var(--box-shadow-1);
    transition: .3s;
}

.categories-Homepage-layout1 .box-link:hover{
    box-shadow: var(--box-shadow-2);
}

.categories-Homepage-layout1 .box-link:hover .categories-title-otr{
    background-color: var(--category-bg-hover-color);
}

.categories-Homepage-layout1 .categories-title-otr{
    position: absolute;
    text-align: center;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    background-color: var(--category-bg-color);
    transition: .3s;
}

.categories-Homepage-layout1 h3{
    padding: 6px 4px;
    margin: 0;
}

/*========================================
    Categories Sec Css End Here
=========================================*/

/*========================================
        Projects Sec Css Start Here
=========================================*/

.projects-main{
    position: relative;
    margin: 50px 0;
}

.projects-main .row{
    justify-content: center;
}

@media (min-width: 992px){
    .projects-main .row{
        gap: 6px 0;
        margin: 0 -4px;
    }
    .projects-main .box-link-otr{
        padding: 0 3px;
    }
}

@media (max-width : 992px){
    .projects-main .row{
        gap: 12px 0;
    }
}

.projects-main .box-link{
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    transition: .3s;
}

.projects-main .box-link:hover{
    box-shadow: var(--box-shadow-3);
    border: 1px solid var(--theme-primary-color);
}

.projects-main .img-otr,
.projects-main .iframe-video-otr{
    display: flex;
    position: relative;
    background-color: var(--light-rgba-5);
    transition: .3s;
}

.projects-main iframe,
.projects-main .iframe-video{
    width: 100% !important;
    height: 320px !important;
}

.projects-main .img-inr,
.projects-main iframe,
.projects-main .iframe-video{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.projects-main .content-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
}

.projects-main .content-div::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-rgba-2);
    z-index: 1;
    transition: .3s;
}

#htmlContent .projects-main .content-div::after{
    background-color: var(--dark);
}

.projects-main .content{
    position: relative;
    z-index: 10;
}

.projects-main .content h2,
.projects-main .content h3,
.projects-main .content h4,
.projects-main .content h5{
    color: var(--bodyText-color-light);
    padding: 12px 0;
    margin: 0;
}

.projects-main .short-desc{
    margin: 6px 0 12px 0;
}

.projects-main .action{
    display: flex;
    justify-content: flex-end;
}

.projects-main .action-main{
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-main .action-main .action{
    display: flex;
    margin-top: 24px;
}

/*========================================
        Projects Sec Css Start Here
=========================================*/

/*========================================
        Product Cards Css Start Here
=========================================*/

.products-cards-main{
    position: relative;
    margin: 50px 0;
}

.products-cards-main .row{
    gap: 10px 0;
    margin: 0 -12px;
}

.products-cards-main .box-link-otr{
    padding: 0 5px;
}

.products-cards-main .box-link{
    height: 100%;
    padding: 12px;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--theme-border-color);
    transition: .3s;
}

.products-cards-main .box-link:hover{
    box-shadow: var(--box-shadow-3);
}

.products-cards-main .product-img-otr{
    position: relative;
}

.products-cards-main .img-inr{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.products-cards-main .heart-icon-otr{
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 100%;
    background-color: var(--theme-primary-color);
    box-shadow: var(--box-shadow3);
    width: 40px;
    height: 40px;
}

.products-cards-main .heart-icon-otr .heart-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--light);
}

.products-cards-main .product-content{
    text-align: center;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 312px);
}

.products-cards-main .product-content-inr{
    position: relative;
}

.products-cards-main .h3-heading{
    display: inline-block;
}

.products-cards-main .h3-heading:hover{
    color: var(--theme-primary-color);
}

.products-cards-main .product-content br{
    display: none;
}

.products-cards-main .product-details{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    margin-top: 24px;
}

.products-cards-main .product-price{
    font-family: var(--font-family-semibold);
}

.products-cards-main .product-short-desc{
    margin: 12px 0 0 0;
}

.products-cards-main .quantity-controls{
    display: flex;
    align-items: center;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.products-cards-main .quantity{
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    background-color: transparent;
    transition: .3s;
}

.products-cards-main .quantity:hover{
    background-color: var(--theme-primary-color);
}

.products-cards-main .quantity:hover .icon{
    color: var(--light);
}

.products-cards-main .quantity-minus{
    border: 1px solid var(--theme-border-color);
    border-radius: 0 4px 4px 0;
}

.products-cards-main .quantity-plus{
    border: 1px solid var(--theme-border-color);
    border-radius: 4px 0 0 4px;
}

.products-cards-main .quantity-input{
    border: 1px solid var(--theme-border-color);
    border-left: none;
    border-right: none;
}

.products-cards-main .quantity-input:focus{
    outline: none;
}

.products-cards-main .quantity-input:hover{
    background-color: transparent;
}

.products-cards-main .quantity .icon{
    font-size: 16px;
    color: var(--dark);
}

.products-cards-main .row .theme-btn{
    padding: 4px 8px;
}

/*========================================
       Product Cards Css End Here
=========================================*/

/*========================================
      Product Cards v2 Css Start Here
=========================================*/

.products-cards-main-v2{
    position: relative;
    margin: 50px 0;
}

.products-cards-main-v2 .row{
    gap: 10px 0;
    margin: 0 -12px;
}

.products-cards-main-v2 .box-link-otr{
    padding: 0 5px;
}

.products-cards-main-v2 .box-link{
    height: 100%;
    padding: 12px;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--theme-border-color);
    display: flex;
    gap: 16px 24px;
    transition: .3s;
}

.products-cards-main-v2 .box-link:hover{
    box-shadow: var(--box-shadow-3);
}

.products-cards-main-v2 .product-img-otr{
    position: relative;
    width: 25%;
}

.products-cards-main-v2 .img-inr{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.products-cards-main-v2 .heart-icon-otr{
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 100%;
    background-color: var(--theme-primary-color);
    box-shadow: var(--box-shadow3);
    width: 40px;
    height: 40px;
}

.products-cards-main-v2 .heart-icon-otr .heart-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--light);
}

.products-cards-main-v2 .prodcut-content-main{
    width: 100%;
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 0 32px;
}

.products-cards-main-v2 .product-content{
    width: 75%;
}

.products-cards-main-v2 .product-content-inr{
    position: relative;
}

.products-cards-main-v2 .h3-heading{
    display: inline-block;
}

.products-cards-main-v2 .h3-heading:hover{
    color: var(--theme-primary-color);
}

.products-cards-main-v2 .product-content br{
    display: none;
}

.products-cards-main-v2 .product-details{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px 0;
}

.products-cards-main-v2 .product-details-inr{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.products-cards-main-v2 .product-price{
    font-size: 28px;
    line-height: 38px;
    font-family: var(--font-family-semibold);
}

.products-cards-main-v2 .product-short-desc{
    margin: 12px 0 0 0;
}

.products-cards-main-v2 .quantity-controls{
    display: flex;
    align-items: center;
    text-align: center;
}

.products-cards-main-v2 .quantity{
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    background-color: transparent;
    transition: .3s;
}

.products-cards-main-v2 .quantity:hover{
    background-color: var(--theme-primary-color);
}

.products-cards-main-v2 .quantity:hover .icon{
    color: var(--light);
}

.products-cards-main-v2 .quantity-minus{
    border: 1px solid var(--theme-border-color);
    border-radius: 0 4px 4px 0;
}

.products-cards-main-v2 .quantity-plus{
    border: 1px solid var(--theme-border-color);
    border-radius: 4px 0 0 4px;
}

.products-cards-main-v2 .quantity-input{
    border: 1px solid var(--theme-border-color);
    border-left: none;
    border-right: none;
}

.products-cards-main-v2 .quantity-input:focus{
    outline: none;
}

.products-cards-main-v2 .quantity-input:hover{
    background-color: transparent;
}

.products-cards-main-v2 .quantity .icon{
    font-size: 16px;
    color: var(--dark);
}

.products-cards-main-v2 .row .theme-btn{
    padding: 8px 20px;
}

@media (max-width : 992px){
    .products-cards-main-v2 .prodcut-content-main{
        flex-direction: column;
        gap: 24px 0;
    }
    .products-cards-main-v2 .img-inr{
        height: 100%;
        object-fit: cover;
    }
    .products-cards-main-v2 .product-content,
    .products-cards-main-v2 .product-details{
        width: 100%;
    }
    .products-cards-main-v2 .product-details,
    .products-cards-main-v2 .product-details-inr{
        gap: 8px;
    }
}

@media (max-width : 768px){
    .products-cards-main-v2 .box-link{
        flex-direction: column;
    }
    .products-cards-main-v2 .container .product-img-otr{
        width: 100%;
    }
}

/*========================================
      Product Cards v2 Css End Here
=========================================*/

/*========================================
    Content Section Css Start Here
=========================================*/

.contentSec-main{
    position: relative;
    padding: 60px 0 30px 0;
    border-bottom: 1px solid var(--theme-border-color);
    border-top: 1px solid var(--theme-border-color);
    background-color: var(--theme-border-color);
}

/*========================================
    Content Section Css End Here
=========================================*/

/*========================================
       CTA Sec Css Start Here
=========================================*/

.cta-sec{
    position: relative;
    padding: 50px 0 50px 0;
    background-color: #6f6f6f;
}

.cta-sec .wrapper{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}


.cta-sec .wrapper h2,
.cta-sec .wrapper p{
    color: var(--light);
}

.cta-sec .row{
    gap: 24px 0;
}

.cta-sec .input-otr label{
    display: none;
}

.cta-sec .theme-input{
    width: 100%;
    color: var(--light);
}

.cta-sec .theme-input::placeholder,
.cta-sec .theme-input:focus{
    color: var(--light);
}

.cta-sec .theme-input,
.cta-sec .theme-btn{
    width: 100% !important;
}

.cta-sec .theme-btn{
    cursor: pointer;
    border: none;
    background-color: var(--light);
    color: var(--dark);
}

.cta-sec .theme-btn:hover{
    border: none;
    background-color: var(--dark);
    color: var(--light);
}

.cta-sec .theme-input:focus{
    outline: none;
}

.cta-sec .message-text{
    text-align: center;
    margin-top: 10px;
}

#htmlContent .cta-sec .action{
    padding: 0 !important;
    margin: 0 !important;
}

#htmlContent .cta-sec .action .theme-btn{
    margin: 0 !important;
}

#htmlContent .cta-sec .theme-input,
#htmlContent .cta-sec .theme-btn{
    color: var(--dark) !important;
}

#htmlContent .cta-sec .theme-input:focus,
#htmlContent .cta-sec .theme-input::placeholder{
    color: var(--dark) !important;
}

/*========================================
       CTA Sec Css End Here
=========================================*/

/*========================================
  CTA LOGO with Bg image Css Start Here
=========================================*/

.cta-content-main{
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    margin: 50px 0;
}

.cta-content-main::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-rgba-1);
    z-index: 11;
}

#htmlContent .cta-content-main::after{
    width: 50px;
    height: 50px;
}

.cta-content-main .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.cta-content-main .wrp-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    gap: 12px 0;
    margin: 0 auto 0 auto;
    position: relative;
    z-index: 20;
}

.cta-content-main .wrp-center h2{
    margin: 0;
}

.cta-content-main h1,
.cta-content-main h2,
.cta-content-main h3,
.cta-content-main p,
.cta-content-main strong{
    color: var(--light);
}

.cta-content-main .logo-img{
    width: auto;
    height: 150px;
    object-fit: contain;
}

.cta-content-main .short-desc{
    margin: 12px 0 24px 0;
}

.cta-content-main .theme-btn{
    background-color: var(--light);
    color: var(--dark);
}

.cta-content-main .theme-btn:hover{
    background-color: var(--theme-secondary-color);
}

/*========================================
  CTA LOGO with Bg image Css End Here
=========================================*/

/*========================================
        About Sec Css Start Here
=========================================*/

.aboutSection-main{
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.aboutSection-main-lg-padding{
    padding: 50px 0;
}

.aboutSection-main-lg-padding .wrp-center{
    margin: 0 auto 50px auto;
}

.aboutWith-h2 h2::after{
    display: none;
}

.aboutSection-main .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    z-index: 1;
}

.aboutSection-main .bg-img-start{
    right: 0;
    left: inherit;
    width: auto;
    object-position: top right;
    transform: scale(-1, 1);
}

.aboutSection-main .row{
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 24px 0;
    z-index: 10;
}

.aboutSection-main .col-inr{
    position: relative;
}

.aboutSection-main .col-inr .short-desc{
    margin: 12px 0;
    position: relative;
}

.aboutSection-main .col-inr ul{
    margin: 24px 0 32px 0;
}

.aboutSection-main .col-inr li{
    display: flex;
    gap: 12px;
}

.aboutSection-main .col-inr li:not(:last-child){
    margin-bottom: 12px;
}

.aboutSection-main .col-inr li .icon{
    font-size: 24px;
    color: var(--bodyText-color2);
    position: relative;
    top: 3px;
}

.aboutSection-main .col-inr .action{
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

.about-sec-with-Twobuttons .col-inr .action{
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.aboutSection-main .col-img-inr{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 50px;
    /* box-shadow: var(--box-shadow-3);
    height: 100%; */
}
          
.aboutSection-main .col-img-inr [data-component-video],
.aboutSection-main .col-img-inr .iframe-video-otr{
	/* aspect-ratio: 1/1; 
    background-color: #000; */
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
}
          
.aboutSection-main [data-component-video] iframe,
.aboutSection-main .iframe-video-otr iframe{
    width: 100% !important;
    /* height: auto !important; */
   	/* aspect-ratio: 1/1; */
}

.oposite-direction-about .col-img-inr{
    margin-left: 50px;
    margin-right: 0;
}

.aboutSection-main .col-img-inr .about-img,
.aboutSection-main .col-img-inr .img-inr{
    width: auto;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1/1;
    box-shadow: var(--box-shadow-1);
}

.aboutSection-main iframe{
    aspect-ratio: ;
}

.fa-check-circle::before {
    content: "\f058";
}

/* .half-n-half-width .col-img-inr{
    margin: 0 80px 0 0;
} */

.half-n-half-width .col-img-inr img{
    width: 100% !important;
}

.half-n-half-width-oposite-dir .col-img-inr{
    margin: 0 0 0 80px;
}

.aboutSection-main .web-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: auto;
    object-fit: contain;
    opacity: 30%;
    z-index: -1;
}

.col-9-3 .col-inr{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (max-width : 992px){
    .aboutSection-main-lg-padding{
        padding: 30px 0;
    }
    .aboutSection-main-lg-padding .wrp-center{
        margin: 0 auto 20px auto;
    }
    .aboutSection-main .col-img-inr{
        margin: 0;
    }
    
    .oposite-direction-about .col-img-inr{
        margin: 0;
    }
}

@media (max-width : 576px){
    .aboutSection-main .row{
        justify-content: center;
    }
    .aboutSection-main .col-inr .action{
        justify-content: center;
    }
    .about-sec-with-Twobuttons .col-inr .action{
        justify-content: center;
    }
}

/*========================================
        About Sec Css End Here
=========================================*/

/*========================================
      About row Boxes Css Start Here
=========================================*/

.aboutSection-main .row-boxes{
    margin: 50px 0 0 0;
    justify-content: center !important;
}

.aboutSection-main .box-link{
    position: relative;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* box-shadow: var(--box-shadow-3); */
    border: 1px solid var(--theme-border-color);
    text-align: center;
    height: 100%;
    transition: .3s;
}

.aboutSection-main .box-link:hover{
    border: 1px solid var(--theme-primary-color);
}

.aboutSection-main .box-link .img-otr{
    width: 60;
    height: 60px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    margin-bottom: 12px;
}

.aboutSection-main .box-link .img-inr{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.aboutSection-main .box-link .icon{
    font-size: 44px;
    color: var(--dark);
}

#htmlContent .aboutSection-main .row-boxes .box-link-otr{
    margin: 10px;
    padding: 20px;
}

/*========================================
      About row Boxes Css End Here
=========================================*/

/*========================================
      About Sec 9-3 Css Start Here
=========================================*/

.col-9-3{
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.col-9-3-with-h2 h2::after{
    display: none;
}

.col-9-3 .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    z-index: 1;
}

.col-9-3 .bg-img-start{
    right: 0;
    left: inherit;
    width: auto;
    object-position: top right;
    transform: scale(-1, 1);
}

.col-9-3 .row{
    justify-content: space-between;
    position: relative;
    gap: 24px 0;
    z-index: 10;
}

.col-9-3 .col-inr{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.col-9-3 .col-inr .short-desc{
    margin: 12px 0;
    position: relative;
}

.col-9-3 .col-inr ul{
    margin: 24px 0 32px 0;
}

.col-9-3 .col-inr li{
    display: flex;
    gap: 12px;
}

.col-9-3 .col-inr li:not(:last-child){
    margin-bottom: 12px;
}

.col-9-3 .col-inr li .icon{
    font-size: 24px;
    color: var(--bodyText-color2);
    position: relative;
    top: 3px;
}

.col-9-3 .col-inr .action{
    display: flex;
    justify-content: flex-end;
}

.col-9-3-with-Twobuttons .col-inr .action{
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-9-3 .col-img-inr{
    display: flex;
    height: 100%;
}
          
.col-9-3 .col-img-inr [data-component-video],
.col-9-3 .col-img-inr .iframe-video-otr{
	aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    background-color: #000;
    width: 100%;
 }
          
 .col-9-3 [data-component-video] iframe,
 .col-9-3 .iframe-video-otr iframe{
    width: 100% !important;
    height: 100% !important;
   	aspect-ratio: 1/1;
}

.col-9-3 .col-img-inr .about-img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    box-shadow: var(--box-shadow-1);
}

.fa-check-circle::before {
    content: "\f058";
}

.col-9-3 .web-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: auto;
    object-fit: contain;
    opacity: 30%;
    z-index: -1;
}

#htmlContent .col-9-3 .web-logo{
    z-index: 10;
}

@media (max-width : 992px){
    .col-9-3 .col-img-inr{
        margin: 0;
    }
}

@media (max-width : 576px){
    .col-9-3 .row{
        justify-content: center;
    }
    .col-9-3 .col-inr .action{
        justify-content: center;
    }
    .col-9-3-with-Twobuttons .col-inr .action{
        justify-content: center;
    }
}

/*========================================
      About Sec 9-3 Css End Here
=========================================*/

/*========================================
       Team Verticale Css End Here
=========================================*/

.team-vertical-sec{
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 0 0 0;
}

.team-vertical-sec .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    z-index: 1;
}

.team-vertical-sec .wrp-center{
    position: relative;
    z-index: 10;
}

.team-vertical-sec .row{
    position: relative;
    justify-content: center;
    gap: 24px 0;
    z-index: 10;
}

.team-vertical-sec .col-inr,
.team-vertical-sec .box-link{
    display: flex;
    align-items: center;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--theme-border-color);
    /* box-shadow: var(--box-shadow-3); */
    transition: .3s;
}

.team-vertical-sec .col-inr:hover,
.team-vertical-sec .box-link:hover{
    border: 1px solid var(--theme-primary-color);
}

.team-vertical-sec .icon-div{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    width: 350px;
    padding: 10px;
}

.team-vertical-sec .iframe-video-otr,
.team-vertical-sec [data-component-video]{
    width: 100% !important;
    overflow: hidden !important;
    aspect-ratio: 1/1 !important;
    background-color: var(--dark);
}

.team-vertical-sec .iframe-video-otr iframe,
.team-vertical-sec [data-component-video] iframe{
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1/1;
}

.team-vertical-sec-SignleBox .icon-div{
    width: 400px;
}

.team-vertical-sec-SignleBox .iframe-video-otr,
.team-vertical-sec-SignleBox [data-component-video]{
    width: 100% !important;
    overflow: hidden !important;
    aspect-ratio: 1/1 !important;
    background-color: var(--dark);
}

.team-vertical-sec-SignleBox .iframe-video-otr iframe,
.team-vertical-sec-SignleBox [data-component-video] iframe{
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1/1;
}

.team-vertical-sec .icon-div .icon{
    font-size: 40px;
    color: var(--dark);
}

.team-vertical-sec .icon-div .icon-img,
.team-vertical-sec .icon-div .img-inr{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--theme-border-color);
}

.team-vertical-sec .content-div{
    padding: 20px 14px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.team-vertical-sec .content-div .content{
    position: relative;
}

.team-vertical-sec .content-div h2,
.team-vertical-sec .content-div h3{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.team-vertical-sec .content-div h2::before,
.team-vertical-sec .content-div h2::after{
    display: none;
}

.team-vertical-sec .content-div .short-desc p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-vertical-sec-SignleBox .content-div .short-desc p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-vertical-sec .action{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 18px;
}

.team-vertical-sec-SignleBox .action{
    justify-content: flex-end;
}

.team-vertical-sec .press-img-otr{
    display: flex;
}

.team-vertical-sec .action .press-img-logo{
    width: 100px;
    height: auto;
    object-fit: contain;
}

@media (max-width : 768px){
    .team-vertical-sec .col-inr,
    .team-vertical-sec .box-link{
        flex-direction: column;
    }
    .team-vertical-sec .icon-div{
        width: 100%;
    }
}

/*========================================
       Team Verticale Css End Here
=========================================*/

/*========================================
    All Team Images Css Start Here
=========================================*/

.allTeam-members-image{
    position: relative;
    overflow: hidden;
}

.allTeam-members-image .img-inr{
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*========================================
    All Team Images Css End Here
=========================================*/

/*========================================
    All Team Boxes Css Start Here
=========================================*/

.team-main{
    position: relative;
    margin: 50px 0;
}

.team-main .row{
    gap: 24px 0;
    justify-content: center;
}

.team-main .box-link{
    padding: 12px;
    height: 100%;
    position: relative;
    border: 1px solid var(--theme-border-color);
    /* box-shadow: var(--box-shadow-3); */
    transition: .3s;
}

.team-main .box-link:hover{
    border: 1px solid var(--theme-primary-color);
}

.team-main .img-otr,
.team-main .iframe-video-otr{
    position: relative;
    background-color: var(--light-rgba-5);
}

.team-main .img-inr,
.team-main iframe,
.team-main .iframe-video{
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.team-main .team-content{
    text-align: center;
    margin-top: 12px;
}

.team-main .team-content h3{
    margin-bottom: 4px;
}

/*========================================
    All Team Boxes Css End Here
=========================================*/

/*========================================
       All Projects Css Start Here
=========================================*/

.all-projects-sec{
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 0 0 0;
}

.all-projects-sec .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    z-index: 1;
}

.all-projects-sec .wrp-center{
    position: relative;
    z-index: 10;
}

.all-projects-sec .row{
    position: relative;
    justify-content: center;
    gap: 24px 0;
    z-index: 10;
}

.all-projects-sec .col-inr,
.all-projects-sec .box-link{
    display: flex;
    align-items: center;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--theme-border-color);
    /* box-shadow: var(--box-shadow-3); */
    transition: .3s;
}

.all-projects-sec .col-inr:hover,
.all-projects-sec .box-link:hover{
    border: 1px solid var(--theme-primary-color);
}

.all-projects-sec .col-inr h2,
.all-projects-sec .col-inr h3,
.all-projects-sec .col-inr h4,
.all-projects-sec .box-link h2,
.all-projects-sec .box-link h3,
.all-projects-sec .box-link h4{
    font-size: 28px;
    line-height: 36px;
    font-family: var(--font-family-semibold);
    color: var(--headings-color-dark);
}

.all-projects-sec .icon-div{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    width: 45%;
    padding: 10px;
}

.all-projects-sec .iframe-video-otr,
.all-projects-sec [data-component-video]{
    width: 100% !important;
    overflow: hidden !important;
    aspect-ratio: 1/1 !important;
    background-color: #000000;
}

.all-projects-sec .iframe-video-otr iframe,
.all-projects-sec [data-component-video] iframe{
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1/1;
}

.all-projects-sec-SignleBox .icon-div{
    width: 400px;
}

.all-projects-sec-SignleBox .iframe-video-otr,
.all-projects-sec-SignleBox [data-component-video]{
    width: 100% !important;
    overflow: hidden !important;
    aspect-ratio: 1/1 !important;
    background-color: #000000;
}

.all-projects-sec-SignleBox .iframe-video-otr iframe,
.all-projects-sec-SignleBox [data-component-video] iframe{
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1/1;
}

.all-projects-sec .icon-div .icon{
    font-size: 40px;
    color: var(--dark);
}

.all-projects-sec .icon-div .icon-img,
.all-projects-sec .icon-div .img-inr{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--theme-border-color);
}

.all-projects-sec .content-div{
    padding: 20px 14px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 55%;
    height: 100%;
}

.all-projects-sec .content-div .content{
    position: relative;
}

.all-projects-sec .content-div h2,
.all-projects-sec .content-div h3{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.all-projects-sec .content-div h2::before,
.all-projects-sec .content-div h2::after{
    display: none;
}

.all-projects-sec .content-div .short-desc p{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.all-projects-sec-SignleBox .content-div .short-desc p{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.all-projects-sec .action{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 18px;
}

.all-projects-sec-SignleBox .action{
    justify-content: flex-end;
}

.all-projects-sec .press-img-otr{
    display: flex;
}

.all-projects-sec .action .press-img-logo{
    width: 100px;
    height: auto;
    object-fit: contain;
}

@media (max-width : 768px){
    .all-projects-sec .col-inr,
    .all-projects-sec .box-link{
        flex-direction: column;
    }
    .all-projects-sec .icon-div{
        width: 100%;
    }
    .all-projects-sec .content-div{
        width: 100%;
    }
}

/*========================================
       All Projects Css End Here
=========================================*/

/*========================================
      Map Section Css Start Here
=========================================*/

.mapSection{
    margin: 0;
    position: relative;
}

.mapSection iframe{
    position: relative;
    top: 8px;
    width: 100% !important;
    height: 500px !important;
}

/*========================================
      Map Section Css End Here
=========================================*/

/*========================================
   HomePage Galalery Sec Css Start Here
=========================================*/

.gallerySec-main{
    position: relative;
    margin: 50px 0;
}

@media (min-width: 992px){
    .gallerySec-main .row{
        gap: 6px 0;
        margin: 0 -4px;
    }
    .gallerySec-main .box-link-otr,
    .gallerySec-main .col-otr{
        padding: 0 3px;
    }
}

@media (max-width : 992px){
    .gallerySec-main .row{
        gap: 12px 0;
    }
}

.gallerySec-main .col-inr{
    position: relative;
    display: flex;
    box-shadow: var(--box-shadow-1);
    cursor: pointer;
    height: 100%;
    transition: .3s;
}
          
.gallerySec-main .col-inr [data-component-video],
.gallerySec-main .col-inr .iframe-video-otr{
	position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: #000;
}
          
.gallerySec-main [data-component-video] iframe,
.gallerySec-main .iframe-video-otr iframe{
   width: 100%;
   height: auto;
   aspect-ratio: 1/1;
}

.gallerySec-main .col-inr .gallerySec-img,
.gallerySec-main .gallery-img,
.gallerySec-main .img-inr{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.gallerySec-main .show-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-rgba-2);
    z-index: 102020;
    transition: .3s;
}

.gallerySec-main .img-show{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallerySec-main .img-show img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--dark-rgba-2);
    aspect-ratio: 3/2;
}

.gallerySec-main .close_icon_otr{
    width: 44px;
    height: 44px;
    border-radius: 100%;
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--theme-primary-color);
    border: 2px solid transparent;
    z-index: 1000;
    transition: .3s;
}

.gallerySec-main .close_icon_otr .icon{
    font-size: 24px;
    color: var(--light);
}

.gallerySec-main .close_icon_otr:hover{
    background-color: var(--light);
    border: 2px solid var(--theme-primary-color);
}

.gallerySec-main .close_icon_otr:hover .icon{
    color: var(--dark);
}

.gallerySec-main #prev,
.gallerySec-main #next{
    width: 44px;
    height: 44px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--theme-primary-color);
    border: 2px solid transparent;
    z-index: 1000;
    transition: .3s;
}

.gallerySec-main #prev .icon,
.gallerySec-main #next .icon{
    font-size: 24px;
    color: var(--light);
}

.gallerySec-main #prev:hover,
.gallerySec-main #next:hover{
    background-color: var(--light);
    border: 2px solid var(--theme-primary-color);
}

.gallerySec-main #prev:hover .icon,
.gallerySec-main #next:hover .icon{
    color: var(--dark);
}

.gallerySec-main #next{
    right: 12px;
}

.gallerySec-main #prev{
    left: 12px;
}
          
#htmlContent .gallerySec-main .row{
	justify-content: center;
}
          
#htmlContent .gallerySec-main .box-link-otr{
	width: 31.3333%          
}
          
#htmlContent .gallerySec-main .box-link-otr{
	margin: 12px;   
    padding: 20px;
} 

/*========================================
   HomePage Galalery Sec Css End Here
=========================================*/  

/*========================================
       Testimonials Css Start Here
=========================================*/

.testimonials-sec{
    position: relative;
    overflow: hidden;
    padding: 50px 0 60px 0;
}

.testimonials-sec-bg{
    background-color: transparent;
}

.testimonials-sec .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.testimonials-sec-bg::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-rgba-1);
    z-index: 9;
}

.testimonials-sec .wrp-center{
    position: relative;
    margin: 0 auto;
    z-index: 10;
}

.testimonials-sec .wrp-center h2,
.testimonials-sec .wrp-center p{
    color: var(--dark);
}

.testimonials-sec .wrp-center h2::after{
    background-color: var(--dark);
}

.testimonials-sec-bg .wrp-center h2,
.testimonials-sec-bg .wrp-center p{
    color: var(--headings-color);
}

.testimonials-sec-bg .wrp-center h2::after{
    background-color: var(--theme-primary-color);
}

.testimonials-sec .testimonials-swiper{
    padding: 30px 10px 10px 10px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: stretch;
}

.testimonials-sec .testimonials-swiper .swiper-slide{
    height: auto;
    display: flex;
    width: 100%;
}

.testimonials-sec .col-otr{
    width: 100%;
}

.testimonials-sec .col-inr{
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    box-shadow: 4px 4px 10px -2px rgba(0,0,0,0.2);
    background-color: var(--light);
    height: 100%;
}

.testimonials-sec-bg .col-inr{
    border: 1px solid var(--theme-border-color);
}

.testimonials-sec .user-img-otr{
    display: none;
    width: 88px;
    height: 88px;
    border-radius: 100%;
    border: 4px solid var(--theme-border-color);
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-sec .user-img-otr .user-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.testimonials-sec .col-inr .quote-icon{
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 10%;
    color: var(--theme-primary-color);
}

.testimonials-sec .content-div{
    padding: 30px 24px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonials-sec .content-div h3{
    margin: 36px 0 0 0;
}

.testimonials-sec .content-div ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0;
    gap: 8px;
}

.testimonials-sec .content-div .icon{
    font-size: 18px;
    color: var(--theme-secondary-color);
}

.testimonials-sec .content-div span,
.testimonials-sec .content-div p{
    color: var(--dark);
}

/* .testimonials-sec .content-div p{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */

.testimonials-sec .action{
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonials-sec .action .theme-btn{
    color: var(--light);
    border: 2px solid transparent;
    background-color: var(--dark);
}

.testimonials-sec .action .theme-btn:hover{
    color: var(--dark);
    background-color: var(--theme-secondary-color);
    border: 2px solid var(--theme-border-color);
}

.testimonials-sec .swiper-button-next{
    right: inherit;
    left: 10px;
    transform: rotate(180deg);
}

.testimonials-sec .swiper-button-prev{
    left: inherit;
    right: 10px;
    transform: rotate(180deg);
}

.testimonials-sec .swiper-button-next,
.testimonials-sec .swiper-button-prev{
    width: 42px;
    height: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-primary-color);
    transition: .3s;
}

.testimonials-sec .swiper-button-next:hover,
.testimonials-sec .swiper-button-prev:hover{
    background-color: var(--theme-secondary-color);
}

.testimonials-sec .swiper-button-next:hover::before,
.testimonials-sec .swiper-button-prev:hover::before{
    color: var(--light);
}

.testimonials-sec .swiper-button-next::before,
.testimonials-sec .swiper-button-prev::before{
    color: var(--dark);
    transition: .3s;
}

.testimonials-sec .swiper-button-next::after,
.testimonials-sec .swiper-button-prev::after{
    display: none;
}

.testimonials-sec-bg .swiper-button-next,
.testimonials-sec-bg .swiper-button-prev{
    border: 1px solid var(--theme-border-color);
    background-color: var(--theme-primary-color);
}

.testimonials-sec-bg .swiper-button-next:hover,
.testimonials-sec-bg .swiper-button-prev:hover{
    background-color: var(--theme-secondary-color);
}

.testimonials-sec-bg .swiper-button-next:before,
.testimonials-sec-bg .swiper-button-prev:before{
    color: var(--light);
}

.testimonials-sec-bg .swiper-button-next:hover::before,
.testimonials-sec-bg .swiper-button-prev:hover::before{
    color: var(--dark);
}

/*========================================
       Testimonials Css End Here
=========================================*/

/*========================================
     Accessbility Page Css Start Here
=========================================*/ 

.accessbilityPage-sec-main,
.accessbilityContactSec-main{
    margin: 50px 0;
    position: relative;
}

.accessbilityPage-sec-main .wrapper,
.accessbilityContactSec-main .wrapper{
    width: min(800px, 100%);
    margin: 0 auto 40px auto;
    text-align: center;
}

.accessbilityContactSec-main .wrapper{
    width: min(600px, 100%);
}

.accessbilityPage-sec-main .wrapper h2,
.accessbilityContactSec-main .wrapper h2{
    margin-bottom: 8px;
}

.accessbilityPage-sec-main .wrapper-rightAlign{
    text-align: right;
}

.accessbilityPage-sec-main .wrapper-rightAlign .wrp-rightAlign:not(:last-child){
    margin-bottom: 32px;
}

.accessbilityPage-sec-main .wrp-rightAlign h2{
    margin-bottom: 8px;
}

.accessbilityPage-sec-main .wrp-rightAlign .short-desc p:not(:last-child){
    margin-bottom: 4px;
}

.accessbilityContactSec-main .Accform-main{
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.accessbilityContactSec-main .Accform-main{
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    width: min(800px, 100%);
    margin: 0 auto;
}

.accessbilityContactSec-main .theme-input{
    width: 100%;
    text-align: right;
}

.accessbilityContactSec-main .textarea{
    height: 150px;
}

.accessbilityContactSec-main .action{
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessbilityContactSec-main .action .theme-btn{
    max-width: 300px;
    width: 100%;
}

/*========================================
     Accessbility Page Css End Here
=========================================*/

/*========================================
       Only Text Sec Css Strat Here 
=========================================*/

.textSec-main{
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.textSec-main .short-desc p:not(:last-child){
    margin-bottom: 8px;
}

#htmlContent .textSec-main section{
    border: 2px solid #cdcdcd !important;
}

/*========================================
       Only Text Sec Css End Here 
=========================================*/

/*========================================
      Basket Page Css Start Here 
=========================================*/

.order-process .container [name="shippingDetailsForm"]{
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    margin-bottom: 10px;
}

.order-process .container .input{
    text-align: start;
    padding: 8px 18px;
}

.order-process .container br{
    display: none;
}

.order-process .container .checked-otr{
    padding-left: 32px;
    padding-right: 0;
}

.order-process .container .circle-check{
    right: initial;
    left: 0;
    top: 0;
}

.order-process .row-custom .col-lg-4:first-child .d-flex{
    margin: 0;
    display: flex;
    gap: 0 8px;
}

.order-process .row-custom .col-lg-4:first-child .input-otr,
.order-process .row-custom .col-lg-4:first-child .input-otr input,
.order-process .row-custom .col-lg-4:first-child .d-flex .input-otr{
    margin: 0 !important;
}

.order-process .row-custom .prmo-main .input-otr{
    flex: 1;
}

/* .order-process .container .procduct-box .box-otr:not(:first-child){
    margin: 0;
} */

/* .order-process .container .procduct-box .box-otr:not(:first-child){
    padding: 10px 0;
} */

/* .order-process .row-custom .col-lg-4:first-child .input-otr div,
.order-process .row-custom .col-lg-4:first-child .input-otr div{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 0 0 !important;
} */

@media (max-width : 992px){
    .order-process{
        margin: 70px 0 30px 0 !important;
    }
}

/*========================================
      Basket Page Css End Here 
=========================================*/

/*========================================
      Product Details Css Start Here 
=========================================*/

.product-details-template1 .lightbox-overlay{
    z-index: 999999999;
}

.product-details-template1 .container .col-content-inr{
    text-align: start;
}
 
.product-details-template1 .container .ThumbnailsSlider .swiper-button-prev{
    right: 20px;
    left: initial;
}

.product-details-template1 .container .BigImageSLider .swiper-button-prev{
    left: 89%;
}

.product-details-template1 .container .icon-otr:hover{
    background-color: var(--theme-primary-color);
}

/*========================================
      Product Details Css End Here 
=========================================*/