
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
    /*--background: #ee6f22;*/
    --background: #455ca8;
    --themetextColor: #455ca8;
    --hoverbgLightColor: rgb(69 92 168 / 10%);
    --primaryTextColor: #318353;
    --primaryBgColor: #318353;
    --primaryBorderColor: #318353;
    --secondaryTextColor: #455ca8;
    --secondaryBgColor: #455ca8;
    --secondaryBorderColor: #455ca8;
    --textColor: #052136;
    --bgColor: #052136;
    --borderColor: #052136;
    --textWhite: white;
    --bgWhite: white;
}
body {
    background-color: #ffffff;
    /*font-family: 'Nunito', sans-serif !important;*/
    font-family: "Rubik", serif, sans-serif;
    font-size: 1rem;
    color: #707070;
    font-weight: 400;
    line-height: 1.75;
    box-sizing: border-box
}

    .logo img {
        height:50px;
    }

.main-main {
    width: 100%;
    display: flex;
    justify-content: end;
}

    .main-main > ul {
        display: flex;
        margin: 0;
        padding: 0;
        justify-content: space-between;
        align-items: center;
    }

        .main-main > ul > li {
            list-style-type: none;
            padding: 20px 8px;
            position:relative;
        }

    .main-main ul li a {
        color: #333;
        text-decoration: none;
        transition: all ease .3s;
    }
        .main-main ul li a.addmenu {
            padding-right: 25px;
        }
        .main-main ul li a.loginBtn.addmenu {
            padding-right: 30px;
        }
            .main-main ul li a:hover {
                color: var(--background);
                transition: all ease .3s;
            }
    .main-main ul li a:hover.addmenu:before {
        border-color: var(--background);
        transition: all ease .3s;
    }

.submenu {
    min-width: 200px;
    position: absolute;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    z-index: 10;
    box-shadow: 0px 5px 11px rgb(197 197 197 / 54%);
    top: 65px;
    border-radius: 4px;
    left: 12px;
    transition: all ease .3s;
}
    .submenu.panel {
        left: auto;
        right: 10px;
    }
    .submenu ul {
        padding: 10px 0px;
    }
    .submenu ul li {
        list-style-type:none;
    }

        .submenu ul li a {
            padding: 2px 15px;
            display: block;
        }
.main-main ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transition: all ease .3s;
}
.submenu li:hover a{
    color:var(--background);
}
.submenu li:hover {
    background: var(--hoverbgLightColor);
}
a.addmenu{
    position:relative;
}
    a.addmenu:before {
        content: '';
        border: 2px solid #5c5959;
        width: 8px;
        height: 8px;
        position: absolute;
        right: 5px;
        transform: rotate(45deg);
        border-left: 0;
        border-top: 0;
        top: 5px;
    }
a.addmenu.loginBtn:before {
    display: none;
}
/*.active .submenu {
    display: block;
}*/

img {
    max-width: 100%;
}
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: var(--background)
}

a.loginBtn {
    background: var(--background);
    color: #fff !important;
    padding: 6px 30px;
    border-radius: 5px;
    font-weight: 400;
    min-width: 123px;
    display: inline-block;
    text-align: center;
}
a.registerBtn {
    border: 2px solid var(--primaryBorderColor);
    padding: 4.4px 30px;
    color: var(--primaryTextColor) !important;
    font-weight: 400;
    border-radius: 5px;
    min-width: 123px;
    display: inline-block;
    transition: all ease .3s;
    text-align: center;
}
a.registerBtn:hover {
    background:var(--background);
    color: #fff !important;
    border-color:var(--background);
    transition:all ease .3s;
}

/* ------- colors ------- */
.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #000;
}

.text-black {
    color: #000;
}

.text-dark {
    color: #000;
}

.text-white {
    color: #000;
}

.swiper-slide {
    opacity: 0 !important;
    transition: 0.3s;
}

.swiper-slide-active {
    opacity: 1 !important;
}

.swiper-slide > .hero-super {
    transform: translateY(-30px);
    opacity: 0;
    transition-duration: 0.8s;
}

.swiper-slide-active > .hero-super {
    transform: none;
    opacity: 1;
}

.swiper-slide > .hero-img {
    transition-duration: 0.8s;
    transform: scale(1.1);
    opacity: 0;
}

.swiper-slide-active > .hero-img {
    opacity: 1;
    transform: scale(1);
}

.hero {
    position: relative;
}

    .hero .overlay-black {
        position: absolute;
        width: 100%;
        height: 100%;
        /*background-color: #000;*/
        opacity: .4;
        z-index: 3;
    }

    .hero .logo {
        position: absolute;
        top: 40px;
        left: 40px;
        width: 72px;
        z-index: 3;
    }

.hero-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.nav-carousel button {
    border: none;
    background: transparent;
}

@media screen and (max-width: 768px) {
    .hero-img {
        height: 350px;
    }
}

.hero-super {
    position: absolute;
    bottom: 88px;
    left: 40px;
    color: #000;
    font-size: 44px;
    font-weight: 600;
    line-height: normal;
    z-index: 9999;
    transition-delay: 0.2s;
}

@media screen and (max-width: 992px) {
    .hero-super {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .hero-super {
        font-size: 32px;
    }
}

.contact_left_section ul li {
    list-style-type: none
}

.hero .nav-carousel {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: scale(1);
    z-index: 3;
}

    .hero .nav-carousel .button-prev, .hero .nav-carousel .button-next {
        transition: transform 0.3s ease-in-out;
    }

        .hero .nav-carousel .button-prev:hover, .hero .nav-carousel .button-next:hover {
            transform: scale(1.1);
        }

    .hero .nav-carousel .pagination > .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        background-color: #000;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

    .hero .nav-carousel .pagination > .swiper-pagination-bullet-active {
        background-color: #000;
        width: 48px;
        border-radius: 16px;
    }

        .hero .nav-carousel .pagination > .swiper-pagination-bullet:hover, .hero .nav-carousel .pagination > .swiper-pagination-bullet-active:hover {
            background-color: #000;
        }

.sign-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 64px;
}


/*Header css new*/

.stripMarquee {
    font-size: 14px;
    font-weight: 400;
    background-color: var(--primaryBgColor);
    color: white;
    padding: 8px 15px;
}

.feacher-text {
    position: absolute;
    bottom: 50%;
    left: 30px;
    transform: translateY(135%);
    width: 70%;
    z-index: 20;
    transition: all 0.3s ease-out;
}
.card2:hover .feacher-text {
    transform: translateY(80%);
    transition: all 0.3s ease-out;
}
    .card2 h5 {
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform:capitalize;
}

.card2 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 0;
}

.card2 {
    display: block;
    top: 0px;
    position: relative;
    background-color: #f2f8f9;
    border-radius: 4px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    border: 1px solid #f2f8f9;
    transition: all 0.2s ease-out;
}

    .card2:hover {
        transition: all 0.2s ease-out;
        box-shadow: 0px 4px 8px rgb(55 55 55 / 42%);
        top: -4px;
        border: 1px solid var(--background);
        background-color: white;
    }

    .card2:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: -16px;
        right: -16px;
        background: var(--background);
        height: 32px;
        width: 32px;
        border-radius: 32px;
        transform: scale(2);
        transform-origin: 50% 50%;
        transition: transform 0.15s ease-out;
    }

    .card2:hover:before {
        transform: scale(27);
        background: #455ca859;
        transition: transform 0.15s ease-out;
    }
.card3 {
    box-shadow: 0px 5px 5px #d7d7d7;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgb(128 128 128 / 20%);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
    a{
        text-decoration:none;
    }
    .card3:hover {
        border: 1px solid var(--background);
    }
.product-img {
    overflow: hidden;
    position: relative;
}
.product-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.3s ease-out;
}
.card3:hover .product-img img {
    transform: scale(1.05);
    transition: all 0.3s ease-out;
    z-index: -1;
    position: relative;
}

.product-details-n {
    padding: 10px 15px;
}
.gallery_pdp_container {
    width: 102.5px;
    flex:none;
}
.pdp-image-gallery-block {
    display: flex;
    gap: 15px;
}
.page-title-title{
    color:var(--primaryTextColor)
}
.top-arrow, .bottom-arrow {
    text-align: center;
    color: var(--primaryBgColor);
    cursor: pointer;
}
.gallery-viewer {
    margin-top: 19px !important;
    margin-bottom: 0 !important;
}
.product-details-n p {
    color: var(--themetextColor);
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 300;
}
        .product-details-n p i {
            color: #ee6f22;
        }
        .product-details-n h4 {
            color: #333333;
            font-size: 18px;
            font-weight: 400;
            line-height: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            letter-spacing: .1px;
            word-spacing: .1px;
        }
.product-slider .col{
    padding-left:8px;
    padding-right:8px
}
.product-details-n h3 {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}
.del-price {
    font-size: 12px;
    margin-left: 8px;
}
.product-details-n h3 .del-price i {
    font-size: 12px;
}
.product-details-n h3 i {
    font-size: 16px;
}
.buy-btn {
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translate(-50%, -20%);
    transition: all 0.3s ease-out;
}
.card3:hover .buy-btn {
    bottom: 50%;
    transform: translate(-50%, 50%);
    transition: all 0.3s ease-out;
}

    .buy-btn span {
        background: var(--background);
        padding: 10px;
        display: inline-block;
        border-radius: 6px;
        line-height: 1;
        color: white;
        text-decoration: none;
        font-weight: 400;
        font-size: 16px;
    }

.card3 .product-img:before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primaryBgColor);
    width: 35px;
    height: 35px;
    transform: scale(1);
    z-index: 0;
    border-radius: 35px;
    transform-origin: 50% 50%;
    transition: transform .3s ease-out;
}
.card3:hover .product-img:before {
    background:var(--hoverbgLightColor);
    transform: scale(20.2);
    transition: transform .3s ease-out;
}
.popular-product a{
    text-decoration:none;
}
.card-title-theme{
    color:var(--themetextColor) !important;
}
.banner-img {
    position: relative;
}

    .banner-img:before {
        content: '';
        background: rgb(0 0 0 / 60%);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
    }
.product-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-banner {
    position: relative;
}

.banner-text {
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
}

    .banner-text h3 {
        font-size: 50px;
        font-weight: 500;
        color: white;
    }

    .banner-text p {
        font-size: 16px;
        font-weight: 400;
        color: rgb(255,255,255);
    }
.paginationjs .paginationjs-pages .ulpage li {
    border: none;
}
    .paginationjs .paginationjs-pages .ulpage li:last-child {
        border:none
    }
    .paginationjs .paginationjs-pages .ulpage li > a {
        font-size: 16px;
    }
    .paginationjs .paginationjs-pages .ulpage li.pageActive a {
        background-color: var(--secondaryBgColor);
        border-radius: 2px;
    }
    .paginationjs .paginationjs-pages .ulpage li.pageActive a, .paginationjs .paginationjs-pages .ulpage li.pageActive a:hover {
        background-color: var(--secondaryBgColor);
        border-radius: 2px;
        color:#ffffff;
    }
    .paginationjs .paginationjs-pages .ulpage li:not(:last-child) a {
        margin-right:10px;
    }
    .paginationjs .paginationjs-pages .ulpage li a:hover {
        background-color: #455ca85e;
        color: #000;
        border-radius: 2px;
    }
    .paginationjs .paginationjs-pages .ulpage li:first-child, .paginationjs .paginationjs-pages .ulpage li:first-child > a {
        border-radius: 2px;
    }
        .paginationjs .paginationjs-pages .ulpage li:last-child > a, .paginationjs .paginationjs-pages .ulpage li:first-child > a {
            color: transparent;
            position:relative;
        }
            .paginationjs .paginationjs-pages .ulpage li:last-child > a:before, .paginationjs .paginationjs-pages .ulpage li:first-child > a:before {
                content: '';
                position: absolute;
                height: 12px;
                width: 12px;
                border: 2px solid var(--background);
                border-left: 0;
                border-top: 0;
                transform: rotate(317deg);
                left: 12px;
                top: 9px;
            }
            .paginationjs .paginationjs-pages .ulpage li:last-child > a:after, .paginationjs .paginationjs-pages .ulpage li:first-child > a:after {
                content: '';
                position: absolute;
                height: 2px;
                width: 20px;
                background: var(--background);
                left: 6px;
                top: 13.8px;
            }
            .paginationjs .paginationjs-pages .ulpage li:first-child > a:before {
                border: 2px solid var(--background);
                border-right: 0;
                border-bottom: 0;
                left: 7px;
            }
                /*sidebar filter*/
                .filter-header {
                    font-weight: 500;
                    font-size: 25px;
                    color: #333;
                }
.terms-page li{
    margin-bottom:10px;
}
.contact_left_section p > span{
    font-weight:500;
}
/*contact page start*/
.con-container {
    margin: 50px 0;
    background: #fff;
    padding: 20px;
    margin-top:4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}
input:focus, textarea:focus{
    outline:none;
}
.con-input, .con-textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width:100%;
}

.con-button {  
    background: var(--secondaryBgColor);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top:30px;
    width:100%;
}

.con-button:hover {
    background: var(--primaryBgColor);
}
.about-page h3{
    color:var(--secondaryTextColor)
}
.contact-info {
    margin-top: 20px;
}
    .contact-info strong{
        font-weight:500;
    }
    .contact-info span {
        color: var(--primaryTextColor)
    }
    /*contact page end*/
    .filter-title {
        font-weight: 500;
        font-size: 18px;
        padding-bottom: 14px;
        margin-bottom: 15px;
        color: #333;
    }
.filter-close-btn{
    font-size:20px;
    margin-right:10px;
    cursor:pointer;
}
.ml-auto{
    margin-left:auto;
}

.title {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.row-grid img {
    margin-bottom: 30px;
    max-width: 100%
}
#slider-range input{
    width:100%
}
.sidebar__inner {
    padding-bottom: 10px;
}
.sort-drop {
    display: none;
}
.filter-options {
    padding-left: 20px;
}
.sidebar__inner {
    position: relative !important;
    transform: translate3d(0px, 0px, 0px) !important;
    bottom:0 !important;
    left:0 !important;
}
@media (max-width: 767.98px) {
    .filters-actions {
        position: fixed;
        background: #fff;
        display: flex;
        justify-content: center;
        border: 0;
        bottom: 0;
        z-index: 1031;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: 0px -2px 3px rgb(0 0 0 / 21%);
        -webkit-box-shadow: 0px -2px 3px rgb(0 0 0 / 21%);
        -moz-box-shadow: 0px -2px 3px rgb(0 0 0 / 21%);
        height: 50px;
    }

        .filters-actions > div {
            flex: 1;
            text-align: center;
        }

            .filters-actions > div:first-of-type {
                border-right: 1px solid #d6d1ce;
            }

            .filters-actions > div > * {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
            }
    /*.no-border-select.sort-select + .select2-container--default .select2-selection--single{
      background-image: none;
      padding:10px;
    }*/
    .filter-btn, .filter-btn:hover, .filter-btn:focus, .filter-btn:active {
        padding: 14px 20px;
        height: 50px;
        border: 0;
        position: relative;
        z-index: 1;
        background: #fff;
        border-radius: 0;
    }
    
    .sort-drop .dropdown-menu {
        width: 100%;
        left: 0;
        position: fixed !important;
        transform: translateY(100%) !important;
        bottom: 50px !important;
        top: auto !important;
        text-align: center;
        border-radius: 6px 6px 0 0 !important;
        box-shadow: none !important;
        transition: .3s;
        display: block;
        /* border: 0;*/
        z-index: -11;
    }
    .sort-drop .dropdown-menu .dropdown-item {
        padding: 15px 20px !important;
    }

            .sort-drop .dropdown-menu .dropdown-item:first-child {
                border-radius: 6px 6px 0 0 !important;
            }

    .sort-drop.show .dropdown-menu {
        transform: translateY(0) !important;
    }

    .btn.sort-toggle {
        background-image: none;
        padding: 10px !important;
        width: 100%;
        border: 0;
        height: 50px;
        position: relative;
        z-index: 1;
        background: #fff;
        border-radius: 0;
        font-size: 16px;
        line-height: 22px;
    }

    .sidebar {
        position: fixed;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -o-transition: .3s;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: #fff;
        z-index:1;
    }

        .sidebar.open {
            z-index: 1032;
            transform: translateY(0);
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
        }

    .sidebar__inner {
        padding: 15px;
        height: calc(100% - 58px);
        overflow-y: auto;
    }

    .filter-header {
        height: 58px;
        font-size:18px;
    }
        .filter-header .ml-auto {
            color:var(--primaryTextColor)
        }

    .filter-body {
        padding-right: 0;
    }
}

/*Sidebar filter*/

.breadcrumb-section {
    background: #e9ecef;
    padding: 15px;
}
.breadcrumb-item a{
    color:var(--themetextColor)
}
.product-details-page{
    padding:30px 15px;
}
.product-name {
    font-size: 24px;
    color: var(--themetextColor);
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    margin: 0 0 0px;
    padding-top: 0px;
}
.card-body .product-name {
    font-size: 20px;
    margin: 0 0 10px;
}
    .ratings {
        margin: 10px 0 10px;
        display: block;
    }
.card-body .p-price {
    color: #333;
}
.ratings .rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ratings span, .ratings p {
    font-size: .8571em;
    color: #ee6f22;
    vertical-align: bottom;
}
        .ratings p{
            margin-bottom:0;
        }
.short-des {
    margin: 25px 0 30px;
    color: #666;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}
.inner-right-p .p-price {
    color: #333;
    padding: 0px 0px;
    padding-top: 20px;
    margin-bottom: 0;
    line-height: 1;
}
.brand-p{
    color:#333;
    margin-bottom:0px;
    font-weight:500;
}
.brand-p span{
    font-weight: 400;
}
.Availability {
    color: #333;
    margin-bottom: 0px;
}
    .Availability .instocknum {
        color: var(--primaryTextColor);
        font-weight: 500;
    }
label[for=Quantity] {
    float: left;
    line-height: 48px;
    margin-right: 30px;
    color: #2c2c2c;
    font-weight: 400;
}
.quantity-box {
    border-radius: 3px;
    width: 70px;
    border: 1px solid #ececec;
    float: left;
}
#Quantity, #minus, #plus {
    float: left;
    height: 23px;
    box-shadow: none;
    text-align: center;
    width: 32px;
    font-size: 1.4286em;
    border-radius: 0;
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
}
#Quantity {
    height: 46px;
}
span#variantQuantity.is-visible {
    color: red;
    margin: auto 20px;
    line-height: 45px;
}
.button-cart.btn{
    margin: 30px 10px 30px 0;
    float: left;
    height: 40px;
    /*padding: 0 90px;*/
    border-radius: 3px;
    background: var(--background) !important;
    font-weight: 500;
    font-size: .8571em;
    color: #fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
}
.btn-actions button.btn-wishlist:hover {
    background-color: var(--background) !important;
}
.mobile-cart-btn {
    display: none;
}
.btn-actions {
    float: left;
    margin: 30px 0;
    position:relative;
}
    .btn-actions button.btn-wishlist {
        width: 40px;
        height: 40px;
        display: inline-block;
        border: none;
        border-radius: 3px;
        padding: 0;
        text-align: center;
        background: #eef0f1;
    }
.button-cart.btn:hover {
    border-color: var(--background) !important;
}
button.btn-wishlist i {
    font-size: 1.1429em;
    color: #a4a4a4;
}
button.btn-wishlist:hover i {
    color: #fff;
}
button.btn-wishlist span {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
    font-size: 12px;
    position: absolute;
    top: -30px;
    min-width: 100px;
    left: -75%;
    background: #f9f7f7;
    border-radius: 2px;
    padding: 3px 5px;
    display: flex;
    color: green;
}
button.btn-wishlist.active span {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
    pointer-events: none;
}
.del-price.text-danger {
    color: red;
}
.inner-right-p {
    padding-top: 25px;
}
.pin-code {
    display: flex;
    gap:15px;
    padding-bottom:15px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
    .pin-code input {
        border-style: inset;
        border-color: transparent;
        border-bottom: 1px solid #cacaca;
        font-size: 14px;
        line-height:1;
        outline: none;
        box-shadow: none;
        padding: 4px 0px;
    }
.itemDetails h6{
    font-size:18px;
    color:#333;
}
.itemDetails ul {
    padding-left:12px;
}
.itemDetails ul li {
    font-size:16px;
    line-height:1.3;
    color:#666;
}
.Inclusive-text{
    font-size:14px;
    color:#333;
}
.nav-tabs .nav-item {
    margin: 0;
}
.tab-content{
    padding:20px 0;
}
.nav-tabs .nav-link {
    color: var(--secondaryTextColor);
}
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
        color:var(--primaryTextColor)
    }
    /*login section start*/
    .strip {
        background: #FBF8F3;
        border: 1px solid #EFDCBA;
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 0px 40px;
    }

.leftimage, .rightimage {
    height: auto;
    width: 100%;
    text-align: center;
}

    .leftimage img, .rightimage img {
        width: 100%;
        height: 100%;
        max-width: 176px;
    }

.rightimage {
    position: absolute;
    bottom: 0;
}


.user-box {
    position: relative;
    margin-bottom: 25px;
}

    .user-box input, .user-box select {
        width: 100%;
        font-size: 16px;
        color: #fff;
        margin-bottom: 0px;
        border: none;
        outline: none;
        background: #ffffff30;
        height: 56px;
        border-radius: 5px;
        padding-left: 55px;
        padding-top: 18px;
        font-weight: 500;
    }

    .user-box select {
        padding-top: 15px;
        padding-left: 15px;
    }

    .user-box label {
        position: absolute;
        top: 0;
        left: 0;
        padding: 15px 0px 0px 55px;
        font-size: 18px;
        color: #fff;
        pointer-events: none;
        transition: .5s;
        margin: 0;
    }
    /*   .user-box input:valid ~ label*/

    .user-box input:focus ~ label, .user-box input:valid ~ label {
        top: -8px;
        left: 0;
        color: #666666;
        font-size: 14px;
    }

    .user-box input + img {
        bottom: 17px;
        right: 12px;
        position: absolute;
        display: none;
    }

    .user-box input:valid + img {
        display: block;
    }

.selectLabel {
    position: absolute !important;
    top: -8px !important;
    font-size: 14px !important;
    left: -37px !important;
}

.selectBefore {
    position: relative;
    z-index: 9;
}

    .selectBefore:before {
        content: '';
        position: absolute;
        height: 10px;
        width: 10px;
        border: 2px solid rgba(90, 90, 90, 1);
        top: 20px;
        right: 20px;
        border-left: 0;
        border-top: 0;
        transform: rotate(45deg);
    }

    .selectBefore select {
        -webkit-appearance: none;
        -moz-appearance: none;
        text-indent: 1px;
        text-overflow: '';
    }

.user-box span {
    position: absolute;
    top: 14px;
    left: 20px;
}

    .user-box span img {
        filter: invert(37%) sepia(13%) saturate(11%) hue-rotate(346deg) brightness(101%) contrast(87%);
        max-width: 24px;
    }

    .user-box span i {
        color: #fff;
        font-size: 24px;
    }

.toggle-password {
    float: right;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 15px;
    color: #666666;
}

.round {
    position: relative;
}

    .round label {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 50%;
        cursor: pointer;
        height: 24px;
        left: 0;
        position: absolute;
        top: 0;
        width: 24px;
    }

        .round label:after {
            border: 2px solid #fff;
            border-top: none;
            border-right: none;
            content: "";
            height: 6px;
            left: 5px;
            opacity: 0;
            position: absolute;
            top: 6px;
            transform: rotate(-45deg);
            width: 12px;
        }

.roundWrap {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

    .roundWrap a {
        color: var(--background);
    }

.user-box button {
    padding: 10px 25px;
    background: #fff;
    color: var(--background);
    border-radius: 5px;
    border: none;
    font-weight: 600;
}

.round span {
    padding-left: 15px;
    color: #666666;
    font-weight: 500;
    font-size: 14px;
}

.portfolio-field {
    height: auto;
    padding: 40px;
    width: 100%;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    background: linear-gradient(180.5deg, rgb(21 118 164) 8.5%, rgb(21 118 164 / 72%) 118.2%);
    border-radius: 10px;
}

.portfoliotext {
    height: auto;
    width: 100%;
    padding-bottom: 15px;
}

    .portfoliotext h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 24px;
        padding-bottom: 10px;
        color: #fff;
    }

.user-box:last-of-type {
    margin-bottom: 0;
}


.forgetmar {
    margin-bottom: 0;
}

.user-box.buttonMar button {
    margin-top: 15px;
}

.portfolio {
    height: auto;
    width: 100%;
    padding: 40px 0px;
}

/*login section end*/

.portfolio-right {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin: 0 -5px;
}

.portfolio-leftimage {
    line-height: 0;
    padding: 0 5px;
    width: 36%;
    position: relative;
    z-index: -1;
    top: 50px;
}

    .portfolio-leftimage img {
        height: 220px;
        width: 235px;
        border-radius: 40px;
        border: 10px solid #eee;
    }

.portfolioright-wrap {
    width: 50%;
    padding-left: 15px;
}

.portfolioright-first {
    padding: 5px 0;
    width: 100%;
}



    .portfolioright-first img {
        width: 290px;
        height: 260px;
        border-radius: 40px;
        border: 10px solid #eee;
    }

.portfolioright-second {
    padding: 5px 0;
    width: 100%;
}

    .portfolioright-second img {
        height: 208px;
        width: 270px;
        border-radius: 40px;
        border: 10px solid #eee;
    }

.common-hadd {
    height: auto;
    width: 100%;
    padding:20px 15px;
    padding-top:38px;
}

    .common-hadd h3 {
        font-size: 40px;
        margin: 0;
        text-align: center;
        color: #333333;
        font-weight: 500;
        text-transform: capitalize;
    }
    .common-hadd p {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
        color: #666666;
        font-weight: 400;
        text-transform: capitalize;
    }
    .product {
    height: auto;
    width: 100%;
    background: #f5f5f5;
    padding: 40px 0px;
}

.product-box {
    height: auto;
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(87, 45, 3, 0.1);
}

.proimage {
    max-width: 300px;
    height: 220px;
    text-align: center;
}

    .proimage img {
        width: 74%;
        height: 100%;
    }

.protext {
    padding-top: 20px;
    text-align: center;
    height: 255px;
    position: relative;
}

    .protext h5 {
        color: #333;
        font-size: 16px;
        line-height: 24px;
        font-weight: 700;
    }

    .protext h2 {
        font-size: 32px;
        font-weight: 700;
        margin: 0;
        padding: 10px 0px;
        color: var(--background);
    }

    .protext p {
        font-size: 16px;
        font-weight: 600;
        color: #959595;
    }

    .protext a {
        background: var(--background);
        color: #ffff;
        border-radius: 5px;
        width: 100%;
        display: block;
        height: 48px;
        line-height: 48px;
        font-size: 18px;
        position: absolute;
        text-decoration: none;
        bottom: 0;
    }

/*team*/

.slick-slider .element {
    height: 100px;
    width: 100px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    margin: 0px 10px;
    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;
    font-size: 20px;
}

.slick-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.team-grid {
    text-align: center;
}

.col-xs-4 {
    width: 33.33333333%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
/*-- Team --*/

.team {
    height: auto;
    width: 100%;
    padding: 40px 0px;
    background: #fff;
}

.team-grid {
    text-align: center;
}

    .team-grid h4 {
        font-size: 25px;
        color: #000;
        font-weight: 600;
        margin: 40px 0 20px;
    }

    .team-grid p {
        color: #777;
        font-size: 1em;
    }

.social-nav li {
    display: inline-block;
}

.social-nav a {
    display: inline-block;
    float: none;
    width: 30px;
    height: 30px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    background: #000;
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.model-3d-0 a {
    background: #5C5B5B;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.model-3d-0 .front,
.model-3d-0 .back {
    width: 30px;
    height: 30px;
    font-size: 1em;
    color: #fff;
    background: #faad81;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateZ(18px);
    -moz-transform: translateZ(18px);
    -ms-transform: translateZ(18px);
    -o-transform: translateZ(18px);
    transform: translateZ(18px);
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    -o-backface-visibility: visible;
    backface-visibility: visible;
}

.model-3d-0 .back {
    font-size: 1em;
    color: #fff;
    -webkit-transform: rotateX(90deg) translateZ(18px);
    -moz-transform: rotateX(90deg) translateZ(18px);
    -ms-transform: rotateX(90deg) translateZ(18px);
    -o-transform: rotateX(90deg) translateZ(18px);
    transform: rotateX(90deg) translateZ(18px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.twitter .back,
.facebook .back,
.instagram .back,
.pinterest .back {
    background: #81cdfa;
}

.model-3d-0 a:hover {
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

    .model-3d-0 a:hover .back {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        -ms-backface-visibility: visible;
        -o-backface-visibility: visible;
        backface-visibility: visible;
    }

.stack img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    border: 10px solid #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -moz-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -o-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -ms-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.stack:last-of-type {
    margin-right: 0;
}

/* Third stack example (One stack element rotated in the opposite direction) */

.stack.twisted:before {
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -o-transform: rotate(4deg);
}

.stack.twisted:after {
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
}

/* Reset all rotations on hover */

.stack:hover:before,
.stack:hover:after,
.team-grid:hover .stack:before,
.team-grid:hover .stack:after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}

/* Stacks creted by the use of generated content */

.stack:before,
.stack:after {
    content: "";
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 10px solid #fff;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -moz-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -ms-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -o-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
}

.stack:before {
    top: 4px;
    z-index: -10;
}

/* 1st element in stack (behind image) */

.stack:after {
    top: 8px;
    z-index: -20;
}

/* 2nd element in stack (behind image) */

.stack {
    float: none;
    width: 92%;
    margin: 3% 0% 8% 4%;
    position: relative;
    z-index: 1;
}

.slick-slider.slick-initialized button {
    position: absolute;
    height: 40px;
    width: 40px;
    border: none;
    right: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 50px;
    color: transparent;
    background: rgb(255 255 255 / 44%);
    box-shadow: 0px 0px 10px 0px rgba(87, 45, 3, 0.1);
}
.product-slider.slick-slider.slick-initialized button {
    right: -30px;
}

button.slick-prev {
    left: 45px;
    position: absolute;
}
.product-slider button.slick-prev{
    left:10px;
}
.slick-slider.slick-initialized button:before {
    content: '';
    position: absolute;
    height: 12px;
    width: 12px;
    border: 2px solid var(--background);
    border-left: 0;
    border-top: 0;
    transform: rotate(314deg);
    left: 17px;
    top: 13px;
}

button.slick-prev:before {
    transform: rotate(130deg) !important;
}

.slick-slider.slick-initialized button.slick-next:before {
    left: 12px;
}

/*team*/

/*  counter*/
.counter {
    height: auto;
    width: 100%;
    padding: 100px 0px;
    background-image: linear-gradient(45deg, hsl(60deg 47% 93%) 0%, hsl(68deg 48% 93%) 11%, hsl(75deg 48% 94%) 22%, hsl(83deg 48% 95%) 33%, hsl(92deg 47% 95%) 44%, hsl(101deg 46% 96%) 56%, hsl(111deg 44% 96%) 67%, hsl(122deg 42% 97%) 78%, hsl(132deg 43% 97%) 89%, hsl(140deg 43% 97%) 100%);
}

.counter-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.counterBox {
    text-align: center;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    width: 260px;
}

    .counterBox i {
        display: block;
        font-size: 35px;
        color: var(--background);
        padding-bottom: 12px;
    }

span.count.percent {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.counterBox p {
    font-weight: 700;
    font-size: 14px;
}

/*testtymoniyal*/
.testymoniyal {
    height: auto;
    width: 100%;
    padding: 40px 0px;
}

.testim {
    width: 100%;
    height: auto;
}

    .testim .wrap {
        position: relative;
        width: 100%;
        padding: 40px 0px;
        margin: auto;
    }

    .testim .arrow {
        display: block;
        position: absolute;
        color: #333;
        cursor: pointer;
        top: 50%;
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        padding: 5px;
        z-index: 22222222;
        background: #f5f5f5;
        text-align: center;
        border-radius: 50px;
        height: 48px;
        width: 48px;
        line-height: 42px;
    }

        .testim .arrow i {
            font-size: 18px;
            color: #666;
        }

        .testim .arrow:before {
            cursor: pointer;
        }

        .testim .arrow:hover {
            color: var(--background);
        }


        .testim .arrow.left {
            left: 0px;
        }

        .testim .arrow.right {
            right: 0px;
        }

    .testim .dots {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 60px;
        left: 0;
        display: block;
        z-index: 3333;
        height: 12px;
    }

        .testim .dots .dot {
            list-style-type: none;
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid var(--background);
            margin: 0 10px;
            cursor: pointer;
            -webkit-transition: all .5s ease-in-out;
            -ms-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            position: relative;
        }

            .testim .dots .dot.active,
            .testim .dots .dot:hover {
                background: var(--background);
                border-color: var(--background);
            }

            .testim .dots .dot.active {
                -webkit-animation: testim-scale .5s ease-in-out forwards;
                -moz-animation: testim-scale .5s ease-in-out forwards;
                -ms-animation: testim-scale .5s ease-in-out forwards;
                -o-animation: testim-scale .5s ease-in-out forwards;
                animation: testim-scale .5s ease-in-out forwards;
            }

    .testim .cont {
        position: relative;
        overflow: hidden;
    }

        .testim .cont > div {
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            padding: 0 0 70px 0;
            opacity: 0;
        }

            /*.testim .cont > div.inactive {
                opacity: 1;
            }*/


            .testim .cont > div.active {
                position: relative;
                opacity: 1;
            }


        .testim .cont div .img img {
            display: block;
            width: 100px;
            height: 100px;
            margin: auto;
            border-radius: 50%;
        }

        .testim .cont div h2 {
            color: var(--background);
            font-size: 24px;
            margin: 15px 0;
        }

        .testim .cont div h3 {
            font-size: 18px;
            padding-bottom: 10px;
        }

        .testim .cont div p {
            font-size: 16px;
            color: #333;
            width: 80%;
            margin: auto;
            line-height: 30px;
        }

        .testim .cont div.active .img img {
            -webkit-animation: testim-show .5s ease-in-out forwards;
            -moz-animation: testim-show .5s ease-in-out forwards;
            -ms-animation: testim-show .5s ease-in-out forwards;
            -o-animation: testim-show .5s ease-in-out forwards;
            animation: testim-show .5s ease-in-out forwards;
        }

        .testim .cont div.active h2 {
            -webkit-animation: testim-content-in .4s ease-in-out forwards;
            -moz-animation: testim-content-in .4s ease-in-out forwards;
            -ms-animation: testim-content-in .4s ease-in-out forwards;
            -o-animation: testim-content-in .4s ease-in-out forwards;
            animation: testim-content-in .4s ease-in-out forwards;
        }

        .testim .cont div.active p {
            -webkit-animation: testim-content-in .5s ease-in-out forwards;
            -moz-animation: testim-content-in .5s ease-in-out forwards;
            -ms-animation: testim-content-in .5s ease-in-out forwards;
            -o-animation: testim-content-in .5s ease-in-out forwards;
            animation: testim-content-in .5s ease-in-out forwards;
        }

        .testim .cont div.inactive .img img {
            -webkit-animation: testim-hide .5s ease-in-out forwards;
            -moz-animation: testim-hide .5s ease-in-out forwards;
            -ms-animation: testim-hide .5s ease-in-out forwards;
            -o-animation: testim-hide .5s ease-in-out forwards;
            animation: testim-hide .5s ease-in-out forwards;
        }

        .testim .cont div.inactive h2 {
            -webkit-animation: testim-content-out .4s ease-in-out forwards;
            -moz-animation: testim-content-out .4s ease-in-out forwards;
            -ms-animation: testim-content-out .4s ease-in-out forwards;
            -o-animation: testim-content-out .4s ease-in-out forwards;
            animation: testim-content-out .4s ease-in-out forwards;
        }

        .testim .cont div.inactive p {
            -webkit-animation: testim-content-out .5s ease-in-out forwards;
            -moz-animation: testim-content-out .5s ease-in-out forwards;
            -ms-animation: testim-content-out .5s ease-in-out forwards;
            -o-animation: testim-content-out .5s ease-in-out forwards;
            animation: testim-content-out .5s ease-in-out forwards;
        }

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }

    .testim .cont div p {
        line-height: 25px;
    }
}

.card {
    padding: 10px;
    border: none;
}

.card-title-cont {
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 0;
    padding-bottom: 0;
}

img.thumb {
    max-width: 100%;
}

.video-section {
    height: auto;
    width: 100%;
    padding: 40px 0px;
}

/*footer css*/

.footer {
    height: auto;
    width: 100%;
    background: linear-gradient(45deg, hsl(60deg 47% 93%) 0%, hsl(68deg 48% 93%) 11%, hsl(75deg 48% 94%) 22%, hsl(83deg 48% 95%) 33%, hsl(92deg 47% 95%) 44%, hsl(101deg 46% 96%) 56%, hsl(111deg 44% 96%) 67%, hsl(122deg 42% 97%) 78%, hsl(132deg 43% 97%) 89%, hsl(140deg 43% 97%) 100%);
    padding: 40px 0px;
    padding-bottom: 0px;
    background: var(--bgColor);
}
    .footer .container{
        padding-bottom:40px;
    }

    .footerlogo {
        margin-bottom: 30px;
        padding-top:25px;
    }

    .footerlogo img {
        height: 50px;
    }

    .footerlogo p i {
        background: #fff;
        height: 40px;
        width: 40px;
        border-radius: 40px;
        line-height: 40px;
        text-align: center;
        margin: 15px 5px;
        color: #fff;
        font-size: 18px;
    }

.footerMenuwrap {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--primaryBorderColor);
    padding: 20px 0px;
    height:100%;
}

.footer-left ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-left p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--secondaryTextColor);
}

.footer-left ul li {
    padding-right: 25px;
}

        .footer-left ul li a {
            color: var(--textWhite);
            text-decoration: none;
            font-weight:400
        }

.footer-right {
    padding-top:20px;
}
.footerIcon a i {
    color: #fff;
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
}
.footerIcon a {
    text-decoration:none;
}
    .footerIcon {
    display: flex;
    gap: 10px;
}
    .footer-right p {
        margin: 0;
        padding-right: 10px;
        color: var(--textWhite);
    }
        .footer-right p a{
            color:var(--primaryTextColor)
        }
        .footer-right p i {
            padding-right: 10px;
        }
.copy-right {
    background: var(--bgWhite);
    color: var(--textColor);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
}

    .copy-right p {
        margin: 0;
        text-align: center;
        font-weight: 400;
    }

.home_popup_vid {
    display: inline-block;
    position: relative;
}

.popup_vid_icon {
    -webkit-animation: ripple-play 1s linear infinite;
    animation: ripple-play 1s linear infinite;
    background-color: var(--background);
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    height: 112px;
    left: calc(100% - 59px);
    padding: 18px;
    position: absolute;
    text-align: center;
    top: calc(100% - 65px);
    width: 112px
}

    .popup_vid_icon img {
        max-width: 77px;
        width: auto
    }

@-webkit-keyframes ripple-play {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 118, 164, .53), 0 0 0 15px rgba(21, 118, 164, .26), 0 0 0 30px rgba(21, 118, 164, .21);
    }

    to {
        box-shadow: 0 0 0 15px rgba(21, 118, 164, .19), 0 0 0 30px rgba(21, 118, 164, .17), 0 0 0 45px rgb(21, 118, 164 / 2%);
    }
}

@keyframes ripple-play {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 118, 164, .53), 0 0 0 15px rgba(21, 118, 164, .26), 0 0 0 30px rgba(21, 118, 164, .21);
    }

    to {
        box-shadow: 0 0 0 15px rgba(21, 118, 164, .19), 0 0 0 30px rgba(21, 118, 164, .17), 0 0 0 45px rgb(21, 118, 164 / 2%);
    }
}

.element-selector {
    animation: ripple-play 1s ease;
}


.plays {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.morevideo {
    text-align: center;
}

    .morevideo a {
        display: inline-block;
        background: var(--background);
        color: #fff;
        padding: 10px 25px;
        border-radius: 5px;
        margin-top: 40px;
        font-weight: 600;
        text-decoration: none;
    }

/*tree design css*/


.indicator {
    position: relative;
    padding-bottom: 25px;
}

    .indicator:before, .indicator:after {
        content: '';
        position: absolute;
        background: #f00;
        height: 3px;
        width: 20%;
        bottom: -20%;
    }

    .indicator:before {
        left: 30.75%;
        transform: rotate(-20deg);
    }

    .indicator:after {
        right: 30.75%;
        transform: rotate(20deg);
    }

tr:first-child .indicator:before, tr:first-child .indicator:after {
    bottom: -30%;
}

tr:first-child .indicator:before {
    left: 30.4%;
    transform: rotate(-15deg);
}

tr:first-child .indicator:after {
    right: 30.4%;
    transform: rotate(15deg);
}

tr:last-child .indicator {
    padding: 0;
}

    tr:last-child .indicator:before, tr:last-child .indicator:after {
        display: none;
    }

.treebox img {
    background: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important;
    padding: 10px;
    border-radius: 50%;
    max-width: 110px;
}

.indicator span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.indicator {
    font-size: 14px;
}

.text-wrap {
    max-width: 300px;
    position: relative;
    display: contents;
    transition: .5s;
}

.hover-box {
    display: none;
    position: absolute;
    transition: .5s;
    background: #f5f5f5;
    max-width: 250px;
    padding: 30px;
    border-radius: 5px;
    left: 44%;
}

/* Show the hover-box when the treebox is hovered */
.text-wrap:hover .hover-box {
    display: block;
    transition: .5s;
}

/*tree design css*/

/*login css*/

.text-danger {
    color: red;
}

.login-7 {
    width: 100%;
    position: static;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.validation-summary-errors ul{
    padding-left:0;
}
    .validation-summary-errors li{
        list-style-type:none;
    }
.field-validation-error span {
    line-height: 16px;
    display: inline-block;
    margin-top:5px;
}
.login-7 .form-section {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 0 35px rgb(0 0 0 / 10%);
    text-align: left;
    position: relative;
    z-index: 0;
}
    .login-7.reg .form-section {
        max-width: 560px;
    }

        .login-7 .form-section:before {
            content: "";
            width: 100%;
            height: 168px;
            position: absolute;
            top: 0;
            right: 0;
/*            background: url(../images/img-55.png);*/
            background-size: cover;
            z-index: -1;
            border-radius: 30px 30px 0 0;
        }

        .login-7 .form-section a {
            text-decoration: none;
        }

    .login-7 .logo img {
/*        height: 100px;*/
    }
.regLink a{
    color: #ee6f22;
}
.login-7 h3 {
    margin: 20px 0 35px;
    font-size: 24px;
    color: var(--textColor);
    font-weight: 500;
}
.login-7 .input-group-text {
    color: var(--primaryBgColor);
    position: absolute;
    left: -12px;
    top: 12px;
    font-size:19px;
}
.login-inner-form {
    width: 100%;
}

.login-7 .login-inner-form .form-group {
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
}

.login-7 .login-inner-form .form-group {
    margin-top: 35px;
}

.login-7 .login-inner-form .form-box {
    float: left;
    width: 100%;
    position: relative;
}

.login-7 .login-inner-form .form-control {
    padding: 14.5px 0;
    font-size: 16px;
    outline: none;
    background: transparent !important;
    color: #666666;
    font-weight: 400;
    border: none;
    border-bottom: solid 2px #bdbdbd;
    border-radius: 0;
    font-family: "Rubik", serif, sans-serif;
    /*width: calc(100% - 35px);*/
    padding-left: 35px;
}

.login-7 .login-inner-form .form-box i {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 21px;
    color: var(--primaryTextColor);
}

.login-7 .btn-primary {
    background: var(--background);
}

.login-7 .btn-lg {
    padding: 0 50px;
    line-height: 50px;
}

.login-7 .btn {
    box-shadow: none !important;
}

.login-7 .btn-theme {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    width: 100%;
    font-family: "Rubik", serif, sans-serif;
    border-radius: 3px;
}

.social-list {
    text-align: center;
}

.login-7 .social-list a {
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    color: rgb(255, 255, 255);
    margin: 0 12px 2px 0;
    border-radius: 50px;
}

    .login-7 .social-list a i {
        line-height: 50px;
    }

.login-7 .form-section a {
    text-decoration: none;
}

.login-7 .facebook-bg {
    background: #4867aa;
}

.login-7 .twitter-bg {
    background: #33CCFF;
}

.login-7 .google-bg {
    background: #db4437;
}

.login-7 .linkedin-bg {
    background: #2392e0;
}

.login-7 .form-section .form-check-input {
    width: 18px;
    height: 18px;
    position: relative;
    border: 2px solid #bdbdbd;
    border-radius: 0;
    background-color: #fff;
    top: 2px;
    outline: none;
}

.form-section p {
    margin-bottom: 0px;
    color:var(--textColor)
}

.login-7.reg .login-inner-form .form-box {
    float: left;
    width: 100%;
    position: relative;
}

    /*.login-7.reg .login-inner-form .form-box select
{
    padding-left:0px;
}*/
    .login-7.reg .login-inner-form .form-group {
        margin-bottom: 30px;
    }

/*login css*/

/*contact us*/

.Global-banner {
    height: auto;
    width: 100%;
    background: #f4faf4;
    padding: 100px 0px;
}

.global-bredcame ul {
    list-style-type: none;
    display: flex;
    float: right;
    margin: 0;
    padding: 0;
}

    .global-bredcame ul li {
        padding-right: 25px;
    }

        .global-bredcame ul li a {
            color: #333;
            text-decoration: none;
        }

.global-hadd h4 {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    color: #333;
}

.contact-text {
    height: auto;
    width: 100%;
    padding: 100px 0px;
}

.contact-left h2 {
    font-size: 16px;
    color: var(--background);
}

.contact-left h3 {
    font-size: 35px;
    font-weight: 700;
    color: #333;
}

.contact-left p {
    font-size: 18px;
    color: #333;
    padding: 15px 0px;
}

.address-box {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
}

.address-image {
    background: #f4faf4;
    border-radius: 50%;
    margin-right: 25px;
    padding: 35px;
}

    .address-image i {
        font-size: 28px;
        color: var(--background);
    }

.address-text h4 {
    font-weight: 600;
    margin: 0;
    color: #333;
}

.address-text p {
    padding: 0;
    padding-top: 10px;
}

.contact-left {
    padding-right: 50px;
}

.map iframe {
    width: 100%;
}

.portfoliotext2 h3 {
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 20px;
}
/*contact us*/

@media (max-width:576px){
    .login-7 .social-list a i {
        line-height: 40px;
    }

    .login-7 .social-list a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .login-7 .form-section{
        padding:35px;
    }
}