@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/***** General CSS *****/

html {
    overflow-x: hidden;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

i {
    font-family: FontAwesome !important;
    font-style: normal;
}

i::before {
    font-family: FontAwesome !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'trajan';
    src: url('../fonts/TrajanPro-Regular.ttf');
}

.heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 0 50px 0;
}

.heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4.1%;
    border-bottom: 1px solid #0000002b;
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.sec:hover .heading::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4.1%;
    width: 8%;
    height: 1px;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    transition: ease-in;
    transition-duration: 0.5s;
}

.sec:hover .heading::after {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.heading-icon-txt-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.heading-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 70px;
    object-fit: cover;
}

.heading-icon-txt-main h3 span {
    display: block;
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.sec {
    padding: 80px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.sec:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
    position: relative;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    /* Animation */
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 40px;
    border-radius: 100px;
    border: 1px solid #0000;
    transition: ease-in;
    transition-duration: 0.5s;
}


.theme1:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

@keyframes gradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.theme1::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    height: 0;
    width: 0;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover::before {
    height: 95%;
    width: 98%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-family: 'Poppins';
    color: #fff;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}









.theme2 {
    position: relative;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 40px;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}


.theme2:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

@keyframes gradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.theme2::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    /* Animation */
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    height: 0;
    width: 0;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover::before {
    height: 95%;
    width: 98%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    font-family: 'Poppins';
    color: #000;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}






/* Buttons Css Ends */

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'trajan';
    font-size: 65px;
    line-height: 70px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h2 {
    font-family: 'trajan';
    font-size: 55px;
    line-height: 60px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h3 {
    font-family: 'trajan';
    font-size: 45px;
    line-height: 50px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h4 {
    font-family: 'trajan';
    font-size: 35px;
    line-height: 40px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h5 {
    font-family: 'trajan';
    font-size: 24px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h6 {
    font-family: 'trajan';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

p {
    color: #000;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Poppins', serif;
    font-weight: 500;
    margin: 0;
    opacity: 0.5;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*Headers Css Starts */

header {
    padding: 20px 0;
}

.menuSec {
    padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.menu-box ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menu-box li ul {
    display: none;
}

.menu-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Poppins';
    color: #000;
    font-weight: 500;
    z-index: 0;
    transition: ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}

.menu-box ul li a:hover {
    color: #fff;
}

.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(36, 170, 219, 1) 0%, rgba(43, 182, 116, 1) 100%);
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background: linear-gradient(90deg, rgba(36, 170, 219, 1) 0%, rgba(43, 182, 116, 1) 100%);
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::after {
    height: 100%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
}

.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box ul ul ul {
    left: 100%;
    top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.header-links-main ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.header-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(36, 170, 219, 1) 0%, rgba(43, 182, 116, 1) 100%);
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-links a:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-links a::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    height: 48px;
    width: 48px;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-links a:hover::Before {
    height: 0;
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-links a i,
.header-links a img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
    background: linear-gradient(90deg, rgba(36, 170, 219, 1) 0%, rgba(43, 182, 116, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-links a:hover i {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-links a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(58deg) brightness(104%) contrast(106%);
    transition: ease-out;
    transition-duration: 0.5s;
}

/*Headers Css Ends */

/*Banner Css Starts */

section.banner-sec {
    /* height: 130vh; */
    padding: 50px 0;
}

.banner-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 40px;
    /* margin: 0 0 100px 0; */
}

.banner-txt-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.banner-heading {
    width: 64%;
    position: relative;
}

.banner-heading::before {
    content: '';
    position: absolute;
    top: 36%;
    left: 62%;
    border-bottom: 1px solid #66c4e43d;
    width: 23.5%;
}

.banner-heading:after {
    content: '';
    position: absolute;
    top: 36%;
    left: 77.4%;
    width: 8%;
    height: 1px;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
}

.banner-txt-ex {
    position: absolute;
    top: -40px;
    right: 0;
}

.banner-txt {
    width: 41%;
}

.banner-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card-main {
    perspective: 1200px;
    height: 100%;
}

.banner_card_slider .slick-active,
.banner_card_slider .slick-slide {
    opacity: 1;
}

.banner_card_slider .slick-slide {
    margin: 0px 5px;
    padding: 10px 0 0 0;
}

.banner-card-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.banner_card_slider .slick-active .banner-card-img {
    height: 510px !important;
}

.banner_card_slider .slick-current .banner-card-img {
    height: 555px !important;
}


.banner-card-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.banner-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner_card_slider .draggable {
    padding: 0 260px !important;
}

.banner_card_slider .slick-slide .banner-card-img {
    height: 450px;
}

.banner_card_slider {
    margin: 10px 0 0 0;
}

.banner_card_slider .slick-current {
    margin: -100px 5px 0 5px;
    padding: 170px 0 0 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    /* 5 cards ki jagah fixed */
    height: 605px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-card {
    position: absolute;
    width: 300px;
    /* height: 320px; */
    /* border-radius: 20px; */
    overflow: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease, left 0.6s ease;
    padding: 10px;
}

.center {
    margin: 0 0 0 0;
    height: 550px;
    left: 41%;
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}

.side-left {
    height: 520px;
    left: -19.5%;
    transform: scale(0.8);
    /* opacity: 0.8; */
    z-index: 2;
    margin: -100px 0 0 0;
    transform: scale(0.9) rotateX(-20deg) rotateY(390deg);
}

.side-right {
    height: 520px;
    left: 62%;
    transform: scale(0.8);
    /* opacity: 0.8; */
    z-index: 2;
    margin: -100px 0 0 0;
    transform: scale(0.9) rotateX(20deg) rotateY(390deg);
}

.far-left {
    height: 460px;
    left: 18px;
    transform: scale(0.8);
    /* opacity: 0.6; */
    z-index: 1;
    margin: 0px 0 0 0;
    transform: scale(0.9) rotateX(-20deg) rotateY(400deg);
}

.far-right {
    height: 460px;
    left: 79%;
    transform: scale(0.8);
    /* opacity: 0.6; */
    z-index: 1;
    margin: 0px 0 0 0;
    transform: scale(0.9) rotateX(10deg) rotateY(400deg);
}

.hidden {
    opacity: 0;
    pointer-events: none;
}


/*Banner Css Ends*/

/*Inner Banner Css Starts*/

section.inner-banner-sec {
    height: 60vh;
    padding: 50px 0;
    padding: 100px 0 50px 0;
}

section.inner-banner-sec .container,
section.inner-banner-sec .row,
section.inner-banner-sec .col-12,
section.inner-banner-sec .banner-txt-card-box,
section.inner-banner-sec .banner-box,
section.inner-banner-sec .banner-txt-main,
section.inner-banner-sec .banner-heading {
    display: flex;
    align-items: start;
    justify-content: center;
    height: 100%;
    width: 100%;
}

section.inner-banner-sec .banner-heading {
    align-items: start;
}

section.inner-banner-sec .banner-heading::before {
    display: none;
}

section.inner-banner-sec .banner-heading:after {
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
    width: 95%;
}

section.inner-banner-sec .banner-txt-ex {
    top: unset;
    bottom: 0;
    right: unset;
    left: 0;
}

/*Inner Banner Css Ends*/


/*Search Css Starts*/

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4sease;
    z-index: 999999999;
}


.search-popup.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box input {
    width: 60%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    background: #0000;
    /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); */
    transition: all 0.3sease;
    text-transform: capitalize;
    transition: ease-in;
    transition-duration: 0.5s;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: ease-out;
    transition-duration: 0.5s;
}

.search-box input:focus {
    background-color: #000;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.search-box input:focus::placeholder {
    color: var(--black);
    transition: ease-out;
    transition-duration: 0.5s;
}

.close-btn {
    padding: 8px 25px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: white;
    border-radius: 30px;
    transition: all 0.3sease;
    background: none;
    border: 1px solid var(--white);
    position: absolute;
    top: 20px;
    right: 20px;
}

/*Search Css Ends*/

/*About Us Sec Css Ends*/

section.about-sec {
    padding: 100px 0 80px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.about-sec:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

section.about-sec .row {
    position: relative;
}

.about-heading-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

.about-heading-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    border-bottom: 1px solid #0000002b;
    width: 90%;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.about-sec:hover .about-heading-main::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.about-heading-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    width: 9%;
    height: 1px;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    transition: ease-in;
    transition-duration: 0.5s;
}

section.about-sec:hover .about-heading-main::after {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.about-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #00000026;
    background-color: #fff;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.about-heading h3 span {
    display: block;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 580px;
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: -9%;
    right: 0;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    border: 3px solid #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px 0px #00000033;
    overflow: hidden;
}

.video-main video {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*About Us Sec Css Ends*/

/*Stories Sec Css Starts*/

.stories-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 50px;
    padding: 30px 20px;
    border: 1px solid #00000024;
    border-radius: 20px;
    /* overflow: hidden; */
    /* background-color: #fff; */
    /* box-shadow: 0 0 20px 0 #0000001f; */
}

.stories-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 370px;
    width: 40%;
    position: absolute;
    left: -30px;
}

.stories-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.stories-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 60%;
}

.stories-card-txt h6 {
    font-family: 'Poppins';
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

/*Stories Sec Css Ends*/

/*Product Sec Css Starts*/

.product-card-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    /* gap: 20px; */
    border-radius: 20px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #00000033;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-main:hover::before {
    height: 100%;
}

.product-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 20px;
    position: relative;
}

.product-card-price-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.slick-slide {
    margin: 0px 10px;
    opacity: 1;
}

.product-card-img-main {
    width: 100%;
}

.product-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 20px 20px;
}

.product-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-main:hover .product-card-img img {
    scale: 1.2;
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-card-price h4 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(36, 170, 219, 1) 0%, rgba(43, 182, 116, 1) 100%);
    border: 1px solid #0000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-btn a:hover {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    border: 1px solid #000;
    border-style: dashed;
}

.product-card-main:hover .product-card-btn a {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-card-btn a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    width: 17px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(58deg) brightness(104%) contrast(106%);
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-main:hover .product-card-btn a img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(86%) saturate(371%) hue-rotate(136deg) brightness(86%) contrast(93%);
    transition: ease-out;
    transition-duration: 0.5s;
}

.slick-active {
    opacity: 1;
}

.product-card-txt h5 {
    font-size: 23px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-txt p {
    font-weight: 400;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-main:hover .product-card-txt p {
    opacity: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-card-main:hover .product-card-txt * {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.slick-prev,
.slick-next {
    top: -90px;
    bottom: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid #26b48c;
    transition: ease-in;
    transition-duration: 0.5s;
}

.slick-prev:hover,
.slick-next:hover {
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-out;
    transition-duration: 0.5s;
}

.slick-prev::before,
.slick-next::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 25px;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7455%) hue-rotate(11deg) brightness(95%) contrast(89%);
}

.slick-prev::before {
    background-image: url('../images/product-left.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.slick-next::before {
    background-image: url('../images/product-right.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.slick-next {
    right: 0;
}

.slick-prev {
    left: unset;
    right: 4%;
}

/*Product Sec Css Ends*/

/*Gallery Sec Css Starts*/

section.gallery-sec {
    position: relative;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
}

.gallery-heading h3 {
    color: #fff;
}

.gallery-heading-main .heading-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(17%) saturate(2%) hue-rotate(74deg) brightness(105%) contrast(101%);
}

.gallery-heading-main::before {
    border-bottom: 1px solid #ffffff6e;
}

.gallery-heading-main::after {
    background-image: unset;
    background-color: #fff;
}

.gallery-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 345px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #fff;
    margin: 20px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.gallery-card-img:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.gallery-card-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.gallery-card-img a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.gallery-card-img:hover img {
    scale: 1.1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.gallery-mid {
    margin: 80px 0 0 0;
}

/*Gallery Sec Css Ends*/

/*Blog Sec Css Starts*/

.blog-card-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #0000001f;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-main:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-main:hover::before {
    height: 100%;
}

.blog-card-img-main {
    width: 100%;
    position: relative;
    z-index: 9;
}

.blog-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 315px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.blog-card-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.blog-card-img a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-main:hover .blog-card-img a img {
    scale: 1.1;
    transition: ease-out;
    transition-duration: 0.5s;
}


.blog-card-txt-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

.blog-card-txt-main {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    /* gap: 20px; */
    height: 270px;
    width: 100%;
}

.blog-card-txt-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.blog-card-main:hover .blog-card-txt-top * {
    opacity: 1;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-txt-top-user-date {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

.blog-card-txt-top-user h6,
.blog-card-txt-top-date h6,
.blog-card-txt-top-category a {
    font-family: 'Poppins';
    font-size: 12px;
    line-height: 20px;
    opacity: 0.7;
    text-transform: capitalize;
    color: #000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-txt-top-category {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.blog-card-txt-top-category a {
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-txt-top-category a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-txt-top-category a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 0 20px;
    width: 100%;
}

.blog-card-main:hover .blog-card-txt * {
    opacity: 1;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-txt h5 {
    font-size: 22px;
    line-height: 27px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-txt p {
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 10px 0 0 0;
    padding: 10px 20px 0 20px;
    width: 100%;
}

.blog-card-btn::Before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border-top: 1px solid #00000027;
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-main:hover .blog-card-btn::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-top: 1px solid #fff;
    width: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-main:hover .blog-card-btn::after {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 30px;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Poppins';
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    transition: ease-in;
    transition-duration: 0.5s;
}

.blog-card-btn a:hover::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-main:hover .blog-card-btn a {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-btn a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-bottom: 1px solid #000;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-main:hover .blog-card-btn a::before {
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.blog-card-btn a:hover::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

/*Blog Sec Css Ends*/

/*Testimonial Sec Css Ends*/

.testimonial_slider .draggable {
    padding: 0 480px !important;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
    /* box-shadow: 0 0 20px 0 #0000002b; */
    border: 1px solid #00000052;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.testimonial_slider .slick-center .testimonial-card {
    position: relative;
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    border: 1px solid #0000;
    height: 350px;
    transition: ease-in;
    transition-duration: 0.5s;
}


.testimonial-card-bototm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.testimonial-card-star ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.testimonial-card-star ul li a i {
    color: #f9ae0e;
}

.testimonial-card-star ul li:last-child a i {
    color: #e5e4e4;
}

.testimonial-card-txt p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.testimonial_slider .slick-center .testimonial-card .testimonial-card-txt p {
    color: #fff;
    opacity: 1;
}

.testimonial-card-user h6 {
    color: #fff;
}

.testimonial_slider .slick-prev {
    right: 12%;
}

.testimonial_slider .slick-next {
    right: 8%;
}

/*Testimonial Sec Css Ends*/


/* Footer css Starts */

footer {
    padding: 80px 0 0 0;
    background-color: #1f1f1f;
}

.footer-txt-heading h5,
.news-letter h5 {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 20px 0;
    font-weight: 300;
    text-transform: uppercase;
}

.footer-links1 ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    font-family: "Montserrat", system-ui;
    text-transform: uppercase;
    opacity: 0.5;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-links1 ul li a:hover {
    color: #24abda;
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-links-contact ul li {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
}

.footer-links-contact ul li i {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    color: #fff;
}

.footer-links-contact ul li a {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    opacity: 0.5;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-links-contact ul li a:hover {
    color: #24abda;
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-rights p a {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-rights p a:hover {
    color: #24abda;
    transition: ease-in;
    transition-duration: 0.2s;
}

.news-letter form {
    position: relative;
}

.news_in {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    background-color: #fff;
    padding: 0;
    height: 50px;
    border-radius: 100px;
    overflow: hidden;
}

.news_in input {
    width: 100%;
    background-color: #0000;
    border: none;
    padding: 10px 10px 10px 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    padding: 0 20px;
    height: 100%;
    font-family: 'Poppins';
}

.news_in input::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
}

.news_in i {
    font-weight: 400;
    color: #3d3d9c;
    font-size: 18px;
}

.footer-txt p {
    color: #fff;
    margin: 10px 0;
}

.socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.socials ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #797979;
    border-radius: 100px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.socials ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1f1f1f;
    height: 98%;
    width: 98%;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a:hover::before {
    height: 0;
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.socials ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    height: 0;
    width: 0;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a:hover::after {
    height: 100%;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.socials ul li a i {
    font-size: 17px;
    position: relative;
    z-index: 999999;
    color: #797979;
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a:hover i {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-rights p {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    opacity: 1;
    font-weight: 300;
}

.bottombar {
    margin: 20px 0 0 0;
    border-top: 1px solid #ffffff3b;
    padding: 20px 0;
}

.news-letter button.theme2 {
    width: 100%;
}

.news-letter button.theme2 span.btn-icon {
    width: 30%;
}

.news-letter button.theme2 span.btn-txt {
    width: 100%;
}

.footer-rights-img {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 30%;
    margin: 0 0 0 auto;
}

.news-letter p {
    color: #fff;
    margin: 20px 0;
}

.news-letter-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.footer-links1 ul {
    column-count: 2;
}

/* Footer css Ends */

/* About Us Page Css Starts */

section.inner-about-sec .about-txt-main {
    padding: 0;
    box-shadow: unset;
}

section.inner-about-sec .about-img {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
}

/* About Us Page Css Ends */

/* Poetry Page Css Starts */

section.inner-stories-sec.stories-heading {
    margin: 0 0 50px 0;
}

section.inner-stories-sec .stories-card-img {
    position: relative;
    left: unset;
    width: 35%;
    height: 550px;
    padding: 30px 20px;
    overflow: hidden;
    BORDER: 1px solid #00000026;
    border-radius: 20px;
}

section.inner-stories-sec .stories-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: -70px 0;
    position: absolute;
}

section.inner-stories-sec .stories-card {
    padding: 0;
    border: none;
    justify-content: space-between;
}

section.inner-stories-sec .stories-card-txt {
    width: 70%;
}

.inner-stories-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    overflow: hidden;
    height: 90px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-stories-btn a img {
    transition: ease-out;
    transition-duration: 0.5s;
}

.inner-stories-btn a:hover img {
    scale: 0.8;
    transition: ease-out;
    transition-duration: 0.5s;
}

/* Poetry Page Css Ends */

/* Artworks Page Css Starts */

section.inner-gallery-sec {
    background-image: none;
}

.gallery-card-img a img.gallery6 {
    height: 650px;
}

section.inner-gallery-sec .gallery-card-img-ex {
    height: 630px;
}

/* Artworks Page Css Ends */

/* Blog Details Page Css Starts */

section.blog-details-sec .blog-card-img {
    height: 375px;
}

section.blog-details-sec .blog-card-main {
    background-color: #0000;
    box-shadow: none;
    gap: 30px;
    border-radius: 0;
}

section.blog-details-sec .blog-card-txt-main {
    padding: 0;
    height: 100%;
}

section.blog-details-sec .blog-card-txt-top {
    padding: 0;
}

section.blog-details-sec .blog-card-txt {
    padding: 0;
}

section.blog-details-sec .blog-card-main::before {
    display: none;
}

section.blog-details-sec .blog-card-main:hover .blog-card-txt-top *,
section.blog-details-sec .blog-card-main:hover .blog-card-txt * {
    color: #000;
}

section.blog-details-sec .blog-card-txt p {
    opacity: 0.5;
}

/* Blog Details Page Css Ends */

/* Contact Us Page Css Ends */

.contact-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.contact-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.contact-link-box ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 40px;
}

.contact-link-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

.contact-link-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
}

.contact-link-heading h5 {
    font-size: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.contact-link a,
.contact-link h6 {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    opacity: 0.7;
}


.contact-link a {
    transition: ease-in;
    transition-duration: 0.5s;
}


.contact-link a:hover {
    color: #24aada;
    transition: ease-out;
    transition-duration: 0.5s;
}

.contact-form-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
}

.contact-form-box .contact-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-form-main input,
.contact-form-main textarea {
    width: 100%;
    padding: 0 20px;
    height: 50px;
    margin: 0 0 20px 0;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #0000;
    font-size: 14px;
    line-height: 1;
    font-family: 'Montserrat';
    color: #000;
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    font-size: 14px;
    line-height: 1;
    font-family: 'Montserrat';
    color: #000;
}

.contact-form-main textarea {
    height: 200px;
    padding: 20px;
}

.contact-btn button {
    width: 100%;
}

/* Contact Us Page Css Ends */


/*Account Page Css Starts*/

.password-box {
    position: relative;
    width: 100%;
}

.password-icon {
    position: absolute;
    top: 20%;
    right: 3%;
    cursor: pointer;
}

.account-form-main {
    padding: 40px 20px;
    border: 1px solid #00000040;
    /* box-shadow: 0 0 20px 0 #00000033; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.account-txt-input-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
    width: 100%;
}

.account-input {
    width: 100%;
}

.account-input input,
.password-box-input input {
    width: 100%;
    padding: 0 20px;
    height: 50px;
    border: 1px solid #0000003d;
    color: #000;
    font-family: 'Montserrat';
}

.account-txt h6 {
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 25px;
    color: #0000007a;
    font-weight: 500;
}

.password-box-input {
    width: 100%;
}

.account-agre label {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
    cursor: pointer;
}

.account-agre label p {
    color: #00000082;
    font-size: 16px;
    line-height: 25px;
}

.account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 0;
}

/*Account Page Css Ends*/



/*product detail page css start*/

.productdetailsec {
    padding: 100px 0 50px;
    position: relative;
    z-index: 1;
}

.productdetailtext h3 {
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0;
    color: #121212d4;
    font-weight: 300;
}

.productdetailtext ul {
    padding: 0;
    margin: 13px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.productdetailtext p {
    color: #1a1a1a;
    font-size: 15px;
    line-height: 31px;
    font-weight: 500;
    font-family: 'Montserrat';
    margin-bottom: 30px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 13px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-plus {
    font-size: 13px;
    margin: 0;
    top: -15px;
    right: 3px;
}

.productdetailtext .input-group input.form-control.input-number {
    width: 100%;
    margin: 0 auto;
    display: table;
    height: 50px;
    text-align: center;
}

.productdetailtext .input-group {
    width: 50%;
    margin: 0 0 34px;
}

.iconlist ul {}

.iconlist ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    list-style: none;
    margin-bottom: 4px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    font-family: 'Poppins';
}

.iconlist ul li>div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.iconlist ul li>div i {
    font-size: 16px;
    color: #cccccc;
}

.productdetailtext .input-group span.input-group-btn {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.productdetailsmallportion {
    position: relative;
    top: 0;
    z-index: 99;
}

.productdetailsmallportion img {
    margin: auto;
    width: 100%;
    /* border: 4px solid #E1E1E1; */
    height: 100%;
}

/* .productdetailsmallportion img:hover {
    border: 2px solid #2ab577;
}

.productdetailnav .slick-current .productdetailsmallportion img {
    border-color: #2ab577;
} */

/* .productdetailnav .slick-current .productdetailsmallportion:before {
    position: absolute;
    content: '';
    top: -16px;
    left: 0;
    right: 0;
    width: 90px;
    height: 50px;
    background: #2ab577;
    margin: 0 auto;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
} */

.productdetailsec .productdetailportion {
    height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.productdetailnav .slick-slide {
    opacity: 1;
    z-index: 9999;
    position: relative;
    margin-top: 20px;
}

.product-detail span {
    margin: 0;
}

.product-detail .num-in {}

.product-detail input.in-num {
    border: 1px solid #DADADA;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
}

.product-detail span {
    /* width: 50px !important; */
    /* border: 1px solid #E3E3E3; */
    /* border-radius: 5px; */
    /* height: 50px !important; */
    /* margin: 5px 0; */
}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
    background-color: #000;
}

.product-detail span:hover:before,
.product-detail span:hover:after {
    background-color: rgb(255, 255, 255) !important;
}

.num-block span:hover {
    background: linear-gradient(90deg, rgba(36, 170, 219, 1) 0%, rgba(43, 182, 116, 1) 100%);
}

.iconlist {
    margin-top: 20px;
}

/* .productdetailportion::before {
    position: absolute;
    content: '';
    width: 85%;
    height: 85%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 5px solid #fff;
} */

.quanity.product-detail h5 {
    font-size: 18px;
    color: #000;
    font-family: 'trajan';
    text-transform: uppercase;
    font-weight: 400;
}

ul.quan-count li {
    width: 30%;
}

ul.quan-count {}

.num-block {}

.iconlist ul {
    display: block;
    /* column-count: 2; */
    width: 100%;
    margin: 30px 0 0 0;
}

ul.disc-list {
    margin: 20px 0;
}

ul.disc-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px 0;
}

ul.disc-list li {
    font-size: 20px;
    color: #ac735d;
}

ul.disc-list p {
    font-size: 17px !important;
    color: #0e0e0f !important;
    font-family: 'saud' !important;
    padding: 0 !important;
}

.description li.nav-item {
    margin-right: 12px;
}

.description li.nav-item button {
    width: 200px;
    height: 60px;
    background-color: transparent;
    border-radius: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0e0e0f;
    font-family: "Syne", sans-serif;
}

.description li.nav-item .nav-link.active {
    border: unset;
    background: transparent;
    border-bottom: 2px solid #006df0;
}

.description .nav-tabs {
    border-bottom: 1px solid #F1F1F1;
    padding-bottom: initial;
    margin-bottom: 30px;
}

.description {
    padding: 80px 0;
}

.prod-detail-description img.bk-1 {
    position: absolute;
    bottom: 30%;
    right: 0;
    width: 6%;
}

.prod-detail-description img.bk-2 {
    position: absolute;
    top: 15%;
    left: -30px;
    width: 7%;
}

.description .tab-content p {
    color: #636363;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
}

.productdetailfor .slick-slide img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.productdetailsmallportion img {
    width: 160px;
    /* padding: 12px 20px; */
    transition: 0.5s;
    position: relative;
    z-index: 999999999999999;
    height: 130px;
    border-radius: 0;
    object-fit: cover;
}


/* skin 2 */

.skin-2 .num-in {
    border-radius: 60px;
    cursor: pointer;
}

.num-block span {
    width: 50%;
    display: block;
    height: 100%;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 37px;
    border: none;
    text-align: center;
    background-color: #f0f0f0;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 60%;
    height: 52px;
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
}

.product-detail input.in-num {
    border: 0;
    background-color: transparent;
    width: 45%;
    margin: 0 5px;
}

.productdetailsec .btn10 {
    color: white;
}


/* / skin 2 */

.statment-choose h6 {
    font-size: 17px;
    color: #1a1a1a8c;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Montserrat';
}

ul.quan-count h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #006df0;
}

ul.rate-reviews {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: start;
}

ul.rate-reviews li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px 0;
}

ul.rate-reviews li h6 {
    margin: 0;
    font-size: 12px;
    font-family: 'Montserrat';
    color: #250503;
}

ul.rate-reviews li:first-child i {
    color: #facc2b;
    font-size: 15px;
}


.price h5 del {
    font-size: 18px;
    color: #393939;
    font-family: 'Poppins';
    font-weight: 400;
}

.price h5 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000;
    margin: 10px 0;
    font-family: 'Montserrat';
}


/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "â˜…";
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}


/* Rating Stars */

.prod-detail-description {
    position: relative;
    padding: 80px 0;
}

.prod-detail-description .nav-tabs .nav-link {
    color: #0e0e0f;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    width: fit-content;
    padding: 15px;
    background: transparent;
    margin-right: 10px;
    border-radius: 0 !important;
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border-bottom: 3px solid #2ab577 !important;
    border: 0;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border-bottom: 3px solid #000 !important;
    border: 0;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    border: 1px solid #000;
    margin: 5px 0 20px;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid #000;
    margin: 5px 0 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    resize: none;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}

.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}

.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 20px 0;
    float: left;
}

.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}

.prod-detail-description .prd-review-input.give-review button {
    padding: 15px 40px;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 16px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
}

.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #989898;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}

.prod-detail-description ul.client-list-review h5 {
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
}

.prod-detail-description ul.client-list-review h6 {
    font-size: 16px;
    color: #666;
    font-family: "Montserrat";
}

.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #ffa600;
}

.prod-detail-description .client-info {
    margin-left: 15px;
}

.prod-detail-description .client-review-box p {
    font-size: 16px;
    color: #000;
    font-family: "Roboto";
}

.prod-detail-description .prd-det-review-form .row {
    align-items: center;
}

.prod-detail-description .prd-det-discription-content p {
    text-align: justify;
    font-size: 13px;
    color: #0b0c0c;
    font-family: "Montserrat";
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 10px;
}

.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 13px;
    font-weight: 400;
    padding-bottom: 10px;
}

/* ul.rate-reviews li:first-child {
    padding: 0 20px 0 0;
} */



/*  product Detail Review Section End */


/*product detail page css end*/



/*CART PAGE CSS*/

/* CART PAGE (updated to match mock) */
.shopping_cart {
    padding: 40px 0;
}

.shopping_cart_table {
    padding-right: 30px;
}

.cart-table {
    border-collapse: collapse;
}

.cart-table thead {
    border-bottom: 1px solid #e6e6e6;
}

.cart-table th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .04em;
    color: #6c6c6c;
    padding: 12px 0;
    text-align: left;
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

th.w-40 {
    width: 40%;
}

/* product cell */
.cart_box_product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart_product_img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.cart_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart_product_name h5 {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 600;
    color: #222;
}

/* material select */
.cart-table td select.material,
.cart-summary .address select,
.cart-summary .address input {
    width: 100%;
    height: 38px;
    border: 1px solid #e4e4e4;
    border-radius: 22px;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    appearance: auto;
}

/* quantity control */
.qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e4e4e4;
    border-radius: 22px;
    overflow: hidden;
    height: 38px;
}

.qty-btn {
    width: 36px;
    height: 100%;
    border: 0;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.qty-input {
    width: 46px;
    border: 0;
    text-align: center;
    font-size: 14px;
    outline: none;
    background: #fff;
}


.t_price {
    font-size: 14px;
    color: #222;
    margin: 0;
    font-family: 'Poppins';
}


button.remove {
    border: 0;
    background: none;
    cursor: pointer;
}

button.remove i {
    color: #a8a8a8;
    font-size: 18px;
}

/* table actions */
.cart_actions {
    display: flex;
    justify-content: end;
    gap: 14px;
    padding-top: 18px;
}

.btn {
    border-radius: 28px;
    padding: 10px 18px;
    border: 1px solid #d7d7d7;
    background: #fff;
    font-size: 14px;
}

.btn.ghost {
    color: #111;
}

.btn.muted {
    color: #7a7a7a;
    background-color: #7a7a7a30;
}

.cart-summary {
    border-left: 1px solid #f0f0f0;
    padding-left: 30px;
}

.cart-summary h3 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #111;
    font-weight: 700;
}

.summary-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #141414;
}

.summary-list li strong {
    color: #111;
    font-weight: 600;
}

.summary-list.total {
    border: 0;
    margin-top: 6px;
}

.summary-list.total li {
    font-weight: 700;
}

.shipping .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    margin: 4px 0 8px;
}

.chk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
}

.shipping .hint {
    font-size: 12px;
    color: #141414;
    margin: 6px 0 12px;
}

.address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select-wrap {
    position: relative;
}

.select-wrap .chev {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9a9a9a;
    display: none;
}

.btn.outline.small {
    padding: 8px 14px;
    font-size: 13px;
    border: 1px solid #dcdcdc;
    align-self: flex-start;
}


/* responsive */
/* @media (max-width: 991px) {
    .shopping_cart_table {
        padding-right: 0;
    }

    .cart-summary {
        border-left: 0;
        padding-left: 0;
        margin-top: 24px;
    }
} */


/*CART PAGE CSS END*/



/*CHECKOUT PAGE*/

.billing_form h3 {
    font-size: 55px;
    line-height: 1;
    color: #121212;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 700;
}

.billing_form label {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #7c7c7c;
    font-weight: 600;
}

.radiosss p {
    color: #000000ad;
    font-size: 13px;
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 45px;
    border: 1px solid #C4C4C4;
    margin-bottom: 20px;
    padding-left: 15px;
    font-family: 'Montserrat';
    background: transparent;
    border-radius: 0;
    font-weight: 500;
}

.billing_form input::placeholder {
    color: #b0b0b0;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    /* font-family: 'saud'; */
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    font-family: 'Roboto', sans-serif;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #700ea3;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #C4C4C4;
    border-radius: 0;
}

.cart_sidebar h3 {
    font-size: 25px;
    color: #121212;
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: normal;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: #121212;
    font-size: 25px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    text-transform: capitalize;
}

.cart_sidebar h5 span {
    float: right;
    color: #000;
}

.cart_sidebar h4 {
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: normal;
    padding-top: 0;
    /* font-family: 'saud'; */
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #2ab577;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
    font-family: 'Roboto', sans-serif;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
    font-family: 'Montserrat-Ultral';
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    border-radius: 0;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #ff2e98;
    font-family: 'Montserrat-Ultral';
}

.checkout_btn:hover {
    /* color: white; */
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 500;
    color: #000;
    font-size: 22px;
    margin-bottom: 30px;
    /* font-family: 'saud'; */
    font-weight: 600;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #2ab577;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
    background: none;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page.all-section.all-side {
    padding: 60px 0px 80px;
    position: relative;
}

.checkout_page .img-1 {
    position: absolute;
    left: -13%;
    top: 50%;
    width: 340px;
}

.checkout_page .img-2 {
    position: absolute;
    right: -7%;
    top: 60%;
    width: 230px;
    transform: rotate(200deg);
}

.billing_form {
    border: none;
    padding: 0;
}

section.checkout_page a.theme_btn {
    margin: 0 auto;
}

.checkout_page {
    position: relative;
    padding: 100px 0;
}

.checkout_page img.bk-1 {
    bottom: 20%;
    width: 7%;
}

.checkout_page img.bk-2 {
    bottom: 10%;
    width: 7%;
}

.h-sub-ex,
.h-sub-ex span {
    color: #000 !important;
    font-weight: 700 !important;
}

.product-card-txt-main {
    width: 100%;
}

/*Checkout End*/

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (min-width: 0px) and (max-width: 575px) {
    .about-img {
        height: 500px;
        width: 100%;
        top: -6%;
    }

    .about-heading-main {
        gap: 10px;
        width: 100%;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
    }

    .about-heading-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .about-txt-main {
        gap: 10px;
        padding: 15px 15px;
        border-radius: 10px;
    }

    h3 {
        font-size: 25px;
        line-height: 30px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
    }

    .about-txt {
        gap: 10px;
    }

    section.about-sec {
        padding: 50px 0 40px 0;
    }

    .theme1 {
        height: 45px;
        padding: 0 20px;
    }

    .theme1 span.theme1-txt {
        font-size: 12px;
    }

    .sec {
        padding: 20px 0;
    }

    .page-id-110 .vc_column_container>.vc_column-inner {
        padding-left: 0px;
        padding-right: 0px;
    }

    .gallery-mid {
        margin: 20px 0 0 0;
    }

    .heading {
        gap: 10px;
        margin: 0 0 20px 0;
        padding-bottom: 25px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .heading-icon-txt-main {
        display: flex;
        align-items: flex-start;
        justify-content: start;
        gap: 20px;
        flex-direction: column;
    }

    .heading-icon img {
        height: 50px;
        width: 50px;
        object-fit: contain;
    }

    .blog_slider .slick-prev,
    .blog_slider .slick-next {
        top: 50%;
        height: 25px;
        width: 25px;
        border-radius: 100px;
    }


    .blog_slider .slick-prev::before,
    .blog_slider .slick-next::before {
        height: 20px;
        width: 13px;
    }

    .blog_slider .slick-prev {
        left: -22px;
        right: unset;
        z-index: 1;
    }

    .blog_slider .slick-next {
        right: -17px;
    }

    .blog-card-txt-top-category {
        width: 50px;
    }

    .blog-card-txt-top-user-date {
        gap: 6px;
        width: 100%;
        align-items: center;
        justify-content: start;
    }

    .blog-card-txt {
        padding: 0 10px;
    }

    .blog-card-txt h5 {
        font-size: 16px;
        line-height: 22px;
    }

    .blog-card-txt-main {
        width: 100%;
        height: 250px;
        padding: 10px 0;
    }

    .testimonial_slider .draggable {
        padding: 0 0px !important;
    }

    .testimonial-card-txt {
        height: 200px;
        overflow-y: hidden;
    }

    .testimonial_slider .slick-prev,
    .testimonial_slider .slick-next {
        display: none !important;
    }

    footer {
        padding: 30px 0 0 0;
    }

    .socials {
        margin-bottom: 20px;
    }

    .footer-links1 ul li a {
        font-size: 12px;
        line-height: 20px;
    }

    .footer-links1 ul {
        column-count: 1;
        margin-bottom: 20px;
    }

    .footer-rights p {
        font-size: 12px;
        text-align: center;
    }

    .footer-rights-img {
        margin: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .footer-rights-img img {
        height: 20px;
    }

    .footer-links-contact ul li a {
        font-size: 12px;
        line-height: 20px;
    }

    .product-card-txt {
        padding: 15px;
    }

    .product-card-price h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .product-card-btn a {
        height: 40px;
        width: 40px;
    }

    .product-card-btn a img {
        height: 10px;
        width: 13px;
    }

    .slick-prev,
    .slick-next {
        top: 50%;
        width: 30px;
        background-color: #fff;
        height: 30px;
    }

    .slick-next {
        right: -23px;
    }

    .slick-prev::before,
    .slick-next::before {
        content: '';
        display: flex;
        align-items: center;
        justify-content: center;
        height: 12px;
        width: 15px;
    }

    .slider-card {
        width: 100%;
        display: none;
    }

    .slick-prev {
        left: -23px;
        right: 0;
        z-index: 2;
    }

    .slider-wrapper .center {
        left: 0;
        height: 390px;
        display: block;
    }

    .slider-wrapper {
        height: 445px;
    }

    .banner-txt-main {
        gap: 10px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    h1 {
        font-size: 30px;
        line-height: 35px;
    }

    .banner-heading {
        width: 100%;
    }

    .banner-txt {
        width: 100%;
    }

    .banner-txt-ex img {
        width: 50px;
        object-fit: contain;
    }

    .banner-txt-ex {
        top: -29px;
    }

    .video-main {
        height: 450px;
        border: 1px solid #fff;
    }

    .stories-card {
        gap: 20px;
        padding: 20px 15px;
        justify-content: start;
        flex-direction: column;
        align-items: flex-start;
    }

    .stories-card-img {
        align-items: center;
        justify-content: center;
        height: 250px;
        width: 100%;
        position: relative;
        left: 0px;
    }

    .stories-card-img img {
        object-fit: contain;
    }

    .stories-card-txt {
        width: 100% !important;
    }

    .stories-card-main {
        margin-bottom: 20px;
    }

    h5 {
        font-size: 20px;
    }

    .header-links-main ul {
        gap: 7px;
        justify-content: center;
    }

    .header-links-main .textwidget.custom-html-widget {
        gap: 7px;
    }

    .header-logo.wow.slideInLeft {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        justify-content: center;
    }

    .slicknav_nav a:hover {
        background: linear-gradient(to right, #24aadc, #46b7e0, #66c3e6, #68e6ab, #46b481, #2bb674);
        color: #fff;
    }

    section.inner-banner-sec {
        height: fit-content;
        padding: 40px 0 20px 0;
    }

    section.inner-banner-sec .banner-txt-ex {
        left: -45px;
    }

    .testimonial-card-star ul {
        gap: 3px;
    }

    .testimonial-card-star ul li i {
        font-size: 10px;
    }

    section.inner-stories-sec .stories-card-img {
        width: 100%;
        height: 300px;
    }

    section.inner-stories-sec .stories-card-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: -20px 0;
    }

    .woocommerce ul.products[class*=columns-] li.product,
    .woocommerce-page ul.products[class*=columns-] li.product {
        width: 90% !important;
        float: none !important;
        margin: 0 auto 20px !important;
    }

    .products .woocommerce ul.products[class*=columns-] li.product:nth-child(2n),
    .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
        float: none !important;
    }

    .product-detail .num-in {
        width: 100%;
        height: 40px;
        max-width: 100px;
    }

    ul.quan-count li {
        width: fit-content;
    }

    .product-detail ul.quan-count {
        gap: 10px;
    }

    .prod-detail-description {
        padding: 30px 0;
    }

    .productdetailsec .productdetailportion {
        height: 350px;
        margin-bottom: 20px;
    }

    .productdetailnav .slick-slide {
        margin: 10px 5px 0px;
    }

    .header-links a {
        width: 40px;
        height: 40px;
    }

    .header-links a::Before {
        width: 38px;
        height: 38px;
    }

    .productdetailsec {
        padding: 40px 0;
    }





}


/*Media Query End*/