@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/***** General CSS *****/
body {
    word-break: break-word;
    font: 15px/25px "Poppins", sans-serif;
    color: #000;
    overflow-x: hidden;
    background-image: url(../images/body-bg.png);
    font-family: montserrat;
    background-size: cover;
}

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #b7b6d5;
}

a:hover {
    transition: all 0.2s ease-in-out;
}

img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    transition: all 0.5s ease;
    outline: none;
}

select,
input,
textarea {
    appearance: auto;
    background: transparent;
    border: 1px solid #c77271;
}

/***** Font Files *****/
@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "MIDNIGHT";
    src: url(../fonts/MIDNIGHT.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Cangste";
    src: url(../fonts/Cangste.otf);
    font-weight: 400;
    font-style: normal;
}



/***** Custom Classes *****/
select {
    background: #fff url("../images/arrow.png") no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
    color: #575757;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
    padding: 80px 0;
}

.flexRow,
.flexCol {
    display: flex;
    align-items: center;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "MIDNIGHT";
    text-transform: capitalize;
    margin: 0 0 10px;
}

h1 {
    font-size: 198px;
    line-height: normal;
    color: #ffffff;
    font-weight: 500;
}

h2 {
    font-size: 85px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
}

h3 {
    font-size: 54px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
}

h4 {
    font-size: 32px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
}

h5 {
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
}

h6 {
    font-size: 19px;
    line-height: normal;
    color: #000;
    font-weight: 500;
}

p {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    color: #2b2b2b;
    font-family: "Montserrat", serif;
}

/* Menu */
.nav ul {
    list-style: none;
    text-align: center;
}

.nav ul li a {
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    transition: all 0.5s;
    position: relative;
}

section.header .nav.stroke {
    display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
    transition: 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    width: 0%;
    content: ".";
    color: transparent;
    background: #000000;
    height: 2px;
    transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
    width: 100%;
}

/* Buttons */
.btn-1 {
    padding: 5px 7px 5px 25px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 56px;
    color: #fff;
    font-family: 'Montserrat';
    gap: 10px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    font-weight: 500;
    border: 1px solid #b7b6d5;
    border-width: 2px;
    border-color: #b7b6d5;
    border-style: solid;
    height: 57px;
    width: fit-content;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.btn-1::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 56px;
    background-color: #000;
    transition: 0.3s ease-in-out;
    content: '';
    z-index: -2;
}

.btn-1::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    border-radius: 56px;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
    transition: 0.3s ease-in-out;
    content: '';
    z-index: -1;
}

.btn-1:hover::before {
    width: 100%;
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.btn-1:hover {
    transition: 0.3s ease-in-out;
    color: #fff;
}

.btn-1:hover span {
    transition: 0.3s ease-in-out;
    background: #fff;
}

.btn-1:hover span img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(37%) saturate(920%) hue-rotate(325deg) brightness(94%) contrast(94%);
}

.btn-1 span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
}

.btn-1 span img {
    width: auto !important;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Header */
.hdr_logo a img {
    object-fit: scale-down;
    padding: 20px 0;
    display: block;
}

ul#menu {
    justify-content: space-between;
    display: flex;
    align-items: center;
    height: 100%;
}

ul#menu a {
    color: #4b484c;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease-in-out;
}

.hdr_logo a {
    font-family: "MIDNIGHT";
    font-size: 28px;
    display: block;
    width: fit-content;
    color: #fff;
}

section.header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.menu-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}


.menu-bar {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.menu-button span {
    margin-right: 10px;
    font-size: 18px;
    font-family: montserrat;
    color: #fff;
}

.menu-button .icon {
    border: 1px solid #c1c2e1;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 12px;
}

.menu-button .icon div {
    background-color: white;
    height: 2px;
    margin: 7px auto;
    width: 90%;
}

/* Fullscreen Overlay Menu */
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: hidden;
    transition: 0.5s;
    z-index: 999;
}

.overlay-content {
    position: relative;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    transform: translateY(-50%);
}

.overlay-content a {
    padding: 10px;
    font-family: "MIDNIGHT";
    text-decoration: none;
    font-size: 66px;
    line-height: normal;
    color: white;
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover {
    color: #de6544e0;
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 60px;
    text-decoration: none;
    color: white;
    z-index: 999;
}

.hdr-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.menu-button .icon div:nth-child(1) {
    width: 70%;
    margin: 2px 0 2px auto;
}

.menu-button .icon div:nth-child(3) {
    width: 50%;
    margin: 3px 0 3px auto;
}

.menu-button .icon div:nth-child(2) {
    width: 100%;
    margin: 3px 0 3px auto;
}

.transparent {
    color: #fff;
    font-size: 198px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    -webkit-text-fill-color: transparent;
}

/* Banner */
.banner_sec {
    /* background-image: url(../images/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    height: 100vh;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

.banner_sec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background: linear-gradient(0deg, #c1c2e1 40%, #b7b6d5 90%);
    overflow: hidden;
}


/*.banner_sec::before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    content: '';*/
/*    z-index: -1;*/
/*    background: linear-gradient(0deg, rgb(185 52 43) 40%, rgba(222, 101, 68, 0.8799894957983193) 90%);*/
/*    overflow: hidden;*/
/*}*/

.banner_text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    position: relative;
    z-index: 9;
    gap: 10%;
}

img.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.circle-image {
    width: 62%;
    height: 120%;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-image img {
    object-fit: fill;
    height: 100%;
    width: auto;
    object-position: bottom;
    border-radius: 50%;
}


.circle-image::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000db;
    content: '';
    border-radius: 50%;
}

.circle-image::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 7px solid #e76c49;
    content: '';
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.banner-art-image {
    position: absolute;
    width: 36%;
    margin: 0 auto;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 81%;
    background-image: url(../images/banner-art-bordert.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-art-image img {
    height: 84.52%;
    width: 70.3%;
    margin: 0 auto;
    display: block;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
}

.banner-bottom-text {
    width: 100%;
    margin: 0 0 5% 0 !important;
}


.follow {
    text-align: right;
}


ul.follow-list {
    justify-content: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.follow-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

ul.follow-list li a:hover {
    transition: 0.3s ease-in-out;
    background: linear-gradient(0deg, #c1c2e1 40%, #b7b6d5 90%);
    border-color: #fff;
}

ul.follow-list li a:hover i {
    transition: 0.3s ease-in-out;
    color: #fff;
}

ul.follow-list li a i {
    color: #fff;
}

.follow p {
    color: #fbf2f1;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.banner-bottom-para p {
    width: 43%;
    color: #fff;
}

/*.banner-bottom-para p {*/
/*    width: 43%;*/
/*    color: #e0a29d;*/
/*}*/

.animated-stroke {
    font-size: 198px;
    color: #fff;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: -100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: strokeReveal 7s ease infinite;
}

@keyframes strokeReveal {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

span.white-line {
    width: 90px;
    background: #e5e6fa;
    display: block;
    height: 1px;
    color: #fff;
}


.about_text h2 span {
    display: block;
    font-size: 59px;
}

.banner-slider {
    position: relative;
    z-index: 999;
}

.banner-slider .slick-list {
    height: 100%;
}

.banner-slider .slick-slide {
    display: block;
    position: relative !important;
}

.banner-slider .slick-track {
    height: 100%;
}

.banner-slider .slick-active {
    opacity: 1;
}

.banner-slider button.slick-prev,
.banner-slider button.slick-next {
    width: 250px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9f22ef;
    border-radius: 70%;
}

.banner-slider button.slick-prev {
    left: -170px;
    z-index: 99;
}


.banner-slider button.slick-next {
    right: -170px;
}


.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
    color: #ffffff;
    font-size: 12px;
    content: '';
    background-image: url(../images/right-arrow.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 20px;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 800;
    left: 20px;
    position: absolute;
    font-size: 30px;
}

.banner-slider .slick-prev:before {
    transform: rotate(180deg);
}

.banner-slider button.slick-prev::before {
    right: 20px;
    position: absolute;
    left: unset;
}

.banner-slider .slick-prev.slick-disabled:before,
.banner-slider .slick-next.slick-disabled:before {
    opacity: 1;
}

.slide-counter {
    position: absolute;
    bottom: 21%;
    left: 4.5%;
}

.slide-counter span {
    font-size: 34px;
    font-family: "MIDNIGHT";
    color: #e5e6fa;
}

/* banner start */

/* section start */

.about_text h2 {
    margin: 0 0 20px 0;
}

.about_text p {
    margin: 0 0 20px 0;
}

.about_image {
    position: absolute;
    top: 50%;
    left: 0;
    width: 92%;
    height: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-frame {
    position: relative;
    z-index: 1;
}

.about_image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover !important;
}

.about-frame img {
    height: 450px;
    width: 75%;
    margin: 0 auto;
    display: block;
    object-fit: fill;
    transform: rotate(-9deg);
}

section.about_sec {
    padding: 200px 0 100px 0;
}

.about-frame::before {
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 130%;
    background-image: url(../images/about-frame-bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    z-index: -1;
}


/* section end */

/* section start */
.art-image {
    position: absolute;
    width: 89%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.art-box {
    position: relative;
    z-index: 1;
    margin: 0 70px;
}

.art-image img {
    height: 100% !important;
}


.art-slider .slick-slide {
    opacity: 1 !important;
}

.slick-slide.slick-current.slick-active.slick-center .art-boox-text {
    opacity: 1;
    z-index: 9;
}

.art-boox-text {
    position: absolute;
    bottom: 40px;
    left: -70px;
    z-index: 99;
    padding: 30px 50px;
    background: #1a0d0c;
    width: fit-content;
    color: #fff;
    opacity: 0;
    z-index: -1;
}

.art-boox-text * {
    color: #fff;
}

.art-box img {
    height: 450px;
    object-fit: fill;
}


ul.banner_navs.banner_navs1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: absolute;
    right: 21.5%;
    z-index: 99;
}

ul.banner_navs.banner_navs1 button {
    width: 50px;
    height: 50px;
    border: #e5e6fa;
    background: linear-gradient(0deg, #c1c2e1 40%, #b7b6d5 90%);
    color: #fff;
}


ul.banner_navs.banner_navs1::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 70%;
    background: #fff;
    content: '';
}

.art-slider::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    content: '';
    background: #fbf7f1;
    z-index: -11;
}

.art-slider {
    padding: 100px 0 0 0;
    background: #fbf7f1;
    position: relative;
    z-index: 1;
}

section.art-sec {
    padding: 80px 0 150px 0;
}


.custom-dots {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: fit-content;
    position: absolute;
    z-index: 99;
    left: 16.5%;
    top: 16%;
    justify-content: center;
    align-items: center;
}

.dot {
    font-family: "MIDNIGHT";
    background: transparent;
    padding: 0px 10px;
    border-radius: 0;
    cursor: pointer;
    font-size: 42px;
    line-height: normal;
}

.dot:hover {
    color: #b7b6d5;
}

.art-box {
    position: relative;
}

/* section end */

/* section start */


.paint-card-image img {
    height: 500px;
    box-shadow: 0 0 20px 0 #00000038;
}

ul.stars {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
    gap: 5px;
}

ul.stars i {
    color: #f39f1e;
    font-weight: 900;
}

a.arrow {
    border-radius: 50%;
    border: 1px solid #b7b6d5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #faf6f0;
}

a.arrow img {
    object-fit: scale-down;
}

.paint-card-text {
    margin: 20px 0 0 0;
}

/* section end */

/* section start */
.drop-sec {
    position: relative;
    z-index: 11;
    padding: 80px 0 0 0;
}

.drop-sec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
    overflow: hidden;
}

.drop-sec::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 14%;
    content: '';
    z-index: -1;
    background: #000;
}

form.drop-form {
    padding: 70px 50px;
    background: #faf6f0;
}

.form-control {
    margin: 0 0 20px 0 !important;
    height: 50px;
    background: transparent;
    border: navajowhite;
    border-bottom: 1px solid #afaca8;
    border-radius: 0;
    color: #4a484a;
    font-size: 14px;
    font-family: montserrat;
    text-transform: uppercase;
    font-weight: 500;
}

.form-control::placeholder {
    color: #4a484a;
    font-size: 14px;
    font-family: montserrat;
    text-transform: uppercase;

}


textarea.form-control {
    height: 170px;
    padding: 140px 0 0 0;
}

.drop-box h2 {
    font-size: 116px;
    color: #fff;
}

.form-control:focus {
    color: #4a484a;
    background-color: #0000;
    border-color: #cf583d;
    outline: 0;
    box-shadow: unset;
}

.circle {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 100vmax;
    margin: -50px 0 0 0;
}

.logo-bot {
    width: 73px;
    height: 180px;
    background: url("../images/banner-sm.png");
    background-size: contain;
    border-radius: 100vmax;
    background-position: center;
    top: 90%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    z-index: 999;
}

.text {
    width: 100%;
    height: 100%;
    font-family: consolas;
    color: #fff;
    font-size: 14px;
    animation: textRotation 8s linear infinite;
    font-family: 'MIDNIGHT-SERENITY';
    transform: rotate(223deg);
}


.text span {
    position: absolute;
    left: 50%;
    font-size: 18px;
    transform-origin: 0 86px;
    font-family: 'MIDNIGHT';
    text-transform: uppercase;
}


.circle-box {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
    margin: -130px 0 0 0;
}


/* section end */

/* section start */

section.why-choose-sec {
    padding: 200px 0 100px 0;
}

.why-frame img {
    transform: rotate(10deg);
}

.why-frame1::before {
    width: 100px;
    height: 100px;
    left: -60px0;
    top: unset;
    bottom: -60px;
}

.why-frame1 {
    position: absolute;
    top: 40%;
    left: 4%;
}

.why-choose-box {
    position: relative;
}

.why-frame1 img {
    height: 310px;
    width: 100%;
}

img.why-dot {
    position: absolute;
    bottom: -70px;
    width: auto;
    right: 90px;
    z-index: -91;
}

ul.choose-list li {
    position: relative;
    z-index: 1;
    padding: 0 0 0 30px;
}

ul.choose-list li::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/check.png);
}

/* section end */


/* Testimonial Section Start */



.our-client-sec .head-effect::after {
    width: 50%;
}

.client-sli .slick-slide {
    opacity: 1;
    outline: none;
}

.client-sli .slick-prev,
.client-sli .slick-next {
    top: 2%;
}

.client-sli .slick-prev {
    left: -50px;
}

.client-box {
    margin: 20px 0 !important;
}

.curr-sli {
    position: relative;
    z-index: 1;
}

.curr-sli::after {
    content: '';
    position: absolute;
    left: 0;
    top: 9%;
    border: 0.1px dashed #706d68;
    width: 100%;
    z-index: -1;
}

.client-sli .slick-prev:before {
    content: '\f053';
    font-weight: 600;
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: 0;
    height: 50px;
    width: 50px;
    color: #fff;
    background-color: #000;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.client-sli .slick-next:before {
    content: '\f054';
    font-weight: 600;
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: 0;
    height: 50px;
    width: 50px;
    color: #fff;
    background-color: #a2a279;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.client-box h6 {
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
}

.client-box .quotess {
    margin-left: 20px;
    position: relative;
    left: 0;
    top: 0;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #e5e6fa;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.client-box .quotess::after {
    content: '';
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
}

.client-box .quotess::before {
    z-index: 2;
    color: #fff;
    font-size: 20px;
}

.client-ineer-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 5%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #faf6f0;
    border-bottom: 0;
    margin-left: 20px;
    margin-bottom: 20px;
    transform: rotate(180deg);
    /* filter: drop-shadow(2px 4px 6px #00000021); */
}

.client-ineer-box {
    z-index: 2;
    background-color: #fff;
    padding: 60px 30px;
    position: relative;
    /* box-shadow: 0 0 10px 0 #00000022; */
    background: #faf6f0;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #00000038;
}

.client-ineer-box ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.client-ineer-box ul li h4 {
    color: #b7b6d5;
    font-size: 22px;
    margin: 0;
    font-family: 'Montserrat';
    line-height: 1.2;
    text-transform: capitalize;
    font-weight: 500;
}

.client-ineer-box ul li h4 span {
    font-size: 14px;
    display: block;
    color: #8c8b8b;
    text-transform: capitalize !important;
    margin-top: 0px;
    font-weight: 500;
    /* font-family: 'Montserrat'; */
}

.client-ineer-box ul li i {
    color: #ffb503;
    margin-right: 5px;
}

section.our-client-sec.themes-padd {
    padding: 80px 0 00;
    position: relative;
}

section.our-client-sec.themes-padd .slick-track {
    margin-bottom: 30px;
}

h2.themes-h2.head-effect {
    font-size: 62px;
    color: #000;
    margin: 0 0 5px;
}

.client-sli .slick-next:hover:before,
.client-sli .slick-prev:hover:before {
    background: #a2a279;
}

.client-sli .slick-next {
    right: -20px;
}

.client-ineer-box p {
    font-size: 14px;
    color: #7c7c7cc2;
    margin: 0;
    width: 92%;
}

section.our-client-sec img.testi-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 600px;
}

/* .client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box {
    background-color: #000;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box ul li h4 {
    color: #fff;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box p {
    color: #fff;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box ul li h4 span {
    color: #fff;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box::before {
    border-top-color: #000;
} */


.text_center.heading.topbar p {
    width: 80%;
    margin: 0 auto;
}

/* Testimonial Section End */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */


/* section end */
/* footer */

footer {
    background: #171717;
    padding: 60px 0;
    background-size: cover;
}

footer h2 {
    font-size: 54px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 30px;
    border-bottom: 1px solid #9898988c;
    display: inline-flex;
    font-family: "Cangste";
}

.ftr-links {
    padding: 80px 40px;
    border-right: 1px solid #ffffff73;
    height: 100%;
}

.ftr-links ul li a {
    color: #ffffffd6;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.ftr-links ul {
    column-count: 2;
}

footer .row {
    border: 1px solid #ffffff73;
}

.nestletter {
    padding: 60px 50px;
}

.nestletter p {
    color: #d8d8d8;
    width: 90%;
    margin-bottom: 25px;
    font-size: 13px;
    margin-top: 15px;
    text-transform: capitalize;
}

.nestletter input {
    width: 100%;
    padding: 10px;
    background: #33302e;
    border: unset;
    border-radius: 40px;
    color: #e3e3e2;
    height: 60px;
    border: navajowhite;
    font-weight: 500;
}

.nestletter form {
    position: relative;
}

.nestletter form button::after {
    background-color: transparent;
}

.nestletter form button {
    font-size: 14px;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    border-radius: 30px;
    padding: 15px 30px;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
    gap: 8px;
    width: fit-content;
    align-items: center;
    justify-content: center;
    bottom: 0;
    text-transform: capitalize;
}


footer .container-fluid {
    padding: 0 7%;
}

.ftr-icons {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff73;
}

.ftr-icons ul {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    margin: 0;
}

.ftr-icons h2 {
    font-size: 54px;
    margin: 0;
}

.bottom-ftr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 50px;
    height: 100%;
    border-top: 1px solid #ffffff73;
}

.bottom-ftr p {
    margin: 0;
    color: #fff;
}

button.btn-ftr span i {
    color: #fff;
    background: #000;
    font-size: 20px;
    transform: rotate(-45deg);
    height: 60px;
    width: 60px;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

button.btn-ftr {
    background: transparent;
    border: unset;
    border-radius: 100px;
}

.footer-payment {
    border-top: 1px solid #ffffff73;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-logo {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    padding: 35px 40px;
    border-top: 1px solid #ffffff73;
}

.nestletter h2 {
    margin: 0 0 5px;
}

.ftr-icons h2 {
    font-size: 32px;
    border: 0;
}

.nestletter input::placeholder {
    color: #e3e3e2;
    text-transform: capitalize;
}

.footer-logo img {
    width: 100px;
}

ul.follow-list1 li a {
    color: #4c4c4c;
    border-color: #4c4c4c;
}

ul.follow-list1 li a i {
    color: #4c4c4c;
}

/* footer */

/* instagram sec */

.instagram_sec {
    padding: 80px 0px 0;
}

.instagram_sec .theme-heading>a>i {
    background: #ff9776;
    color: #8f3f23;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 40px;
    border-radius: 50%;
    font-size: 30px;
}

.insta_slider .slick-slide {
    opacity: 1;
}

.insta_slider img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.instagram_sec .theme-heading {
    margin-bottom: 60px;
}

.insta_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta_box>a {
    position: absolute;
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
    bottom: 0;
}

.fa-quote-left-alt:before,
.fa-quote-left:before {
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
}

.insta_box>a>i {
    font-size: 40px;
    transition: 0.3s ease-in-out;
    transform: scale(0);
    color: #fff;
}

.insta_box:hover>a {
    height: 100%;
}

.insta_box:hover>a>i {
    transform: scale(1.2);
    transition-delay: 0.3s;
}

.insta_slider .slick-slide {
    margin: 20px 10px;
}

.insta-heading {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-heading img {
    object-fit: cover;
    width: 46px;
    margin: -10px 0 0 0;
}

.insta-heading h3 {
    margin: 0;
    color: #000;
}

html {
    overflow-x: hidden !important;
}

/* instagram sec */
.custom-dots span.dot {
    display: block;
    width: fit-content;
}

.art-slider-box {
    position: relative;
}

.dot.active {
    background: none;
    background-image: linear-gradient(to bottom, #b7b6d5, #b7b6d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    border-bottom: 4px solid #b7b6d5;
}

/* Index Page end */

/* InnerPage Aboutus start */

section.inner_banner_sec {
    height: 550px;
}

.inner-banner_text h1 {
    font-size: 106px;
    line-height: 90px;
}

.inner-banner_text {
    align-items: center;
    justify-content: center;
    gap: 0;
}

.inner-circle-image {
    height: 170%;
}

.inner-banner_text p {
    color: #ffffff;
    width: 40%;
    text-align: center;
}

.abt-para {
    margin: 50px 0 0 0;
}

.abt-para p {
    margin: 0 0 20px 0;
}

.abt-para1 {
    margin: 100px 0 0 0;
}

section.inner-why-choose-sec {
    padding: 60px 0 0px 0;
}

/* InnerPage Aboutus end */


/* InnerPage Login start */

section.login {
    padding: 70px 0px;
}

.login-txt form input {
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    padding: 16px 40px 16px 20px !important;
    color: #000;
    font-weight: 400;
    border: 1px solid #0000002b;
    background: transparent;
    text-transform: capitalize;
    height: auto;
}

.login-txt form input::placeholder {
    color: #c7c7c7;
    text-transform: capitalize;
}

.login-txt form input:focus {
    box-shadow: none;
    border: 1px solid #0000002b;
}

.login-txt h3 {
    font-size: 39px;
    text-align: center;
    line-height: 40px;
    margin: 0 0 40px 0;
    font-weight: 200;
    color: #000;
}

.password-box {
    position: relative;
}

.password-box-input input {
    padding: 10px 40px 10px 20px;
}

.password-icon {
    position: absolute;
    top: 20%;
    right: 3%;
}

.password-icon span {
    color: #000;
    cursor: pointer;
}

.login-txt {
    padding: 45px 25px 35px;
    background-color: #f8f6f3;
    /* box-shadow: 0 0 3px 0 #00000038; */
}

.login-txt ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

li.head {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

.login-txt ul li {
    display: flex;
    gap: 7px;
    font-weight: 400;
    color: #b6b5b5;
}

.login-txt form button {
    width: 100%;
    color: #fff;
    /* border-radius: 30px; */
    padding: 15px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    background: linear-gradient(0deg, rgba(222, 101, 68, 0.8799894957983193) 40%, rgb(185 52 43)90%);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

.login-txt ul.justify-content-start {
    gap: 10px;
}

li.head-ex {
    text-decoration: underline;
}

.inner_banner_sec .banner_text h1 {
    font-size: 72px;
}

a.user {
    border-radius: 50%;
    border: 1px solid #b7b6d5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #faf6f0;
}

li.head.head-ex {
    color: #000;
}

/* InnerPage Login end */


/*contact */

.contact-pag-form form {
    position: relative;
}

.contact-pag-form .form-group {
    position: relative;
}

.contact-pag-form .form-group::after {
    content: '';
    height: 53px;
    width: 10px;
    position: absolute;
    left: 40px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 55px;
    border: 1px solid #d2d0cc;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: 'Montserrat';
    display: flex;
    border-radius: 0;
    text-transform: capitalize;
    background: #f8f6f3;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}

.contact-pag-form form input.form-control::placeholder {
    color: #909091;
    text-transform: capitalize;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
    font-size: 15px;
    padding-left: 55px;
    padding-top: 13px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: none;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    border-radius: 0;
    background: #f8f6f3;
}

.contact-pag-form .email {
    padding: 0;
}

.contact-pag-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.contact-pag-form form textarea.form-control::placeholder {
    color: #909091;
    text-transform: capitalize;
}

.contact-pag-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-pag-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 1px solid #b7b6d5;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cicle-icon img {
    margin: 0 auto;
}

.contact-info {
    background: transparent;
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 10px;
    border: 1px solid #c6c6c6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f8f6f3;
}

.contact-main-sec h4 {
    font-size: 70px;
    color: #000000;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec p {
    font-size: 16px;
    color: #000;
    margin-bottom: -5%;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 17px;
    color: #000000;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    font-family: roboto;
}

.contact_text p {
    font-size: 16px;
    line-height: 25px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 500;
    font-family: 'Montserrat';
    letter-spacing: 1px;
}

.contact_text p a {
    font-size: 22px;
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    margin-top: 3px;
    display: block;
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text {
    font-size: 15px;
    color: #8b8b8b;
}

.contact_text p a.email-text:hover {
    color: #8b8b8b;
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 18px;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.b-img img {
    border-radius: 20px;
}

.contact-pag-form .form-group i {
    position: absolute;
    top: 20px;
    left: 13px;
    font-size: 20px;
    background: linear-gradient(0deg, #b7b6d5 40%, #b7b6d5 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-pag-form {
    margin-top: 0;
}

.contact-pag-form button {
    margin-top: 5%;
    width: fit-content;
    border: none;
}

button.theme_btn img {
    width: 30%;
}

.paint-card {
    margin: 20px 0;
}


/*contact end*/

/* InnerPage Painting Details  start */


.art-box.paint-det-image img {
    height: 630px;
    object-fit: fill;
}

.paint-det-image .art-image img {
    object-fit: cover;
}

.paint-det-image {
    margin: 0;
}

.paint-det-text {
    padding: 30px 0 0 0;
}

ul.paint-det-list {
    column-count: 2;
    margin: 0 0 20px 0;
}

ul.paint-det-list p {
    margin: 0 0 5px 0;
    font-size: 15px;
}

ul.follow-list1 li a {
    color: #938f88;
    border-color: #938f88;
}

/* InnerPage Painting Details end */


/* InnerPage Cart start */
.num-block.skin-2 {
    display: grid;
}

.quanity.product-detail {
    margin: 20px 0;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
    border-radius: 0;
}

.shopping_cart_table table tbody td .t_price {
    font-size: 27px;
    font-weight: 600;
    font-family: 'blasteet';
    font-family: 'Montserrat';
    color: #000;
    margin: 0;
    text-align: center;
}

th.w-40 {
    width: 35%;
    text-align: left !important;

}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: #000;
}


.minus,
.plus {
    font-size: 2rem;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
}

.minus.dis {
    color: #000;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #007bff;
    color: #007bff;
}

#number {
    font-size: 1rem;
    width: 2rem;
    text-align: center;
    border: navajowhite;
}

.cart_recipt {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_recipt>a {
    padding: 10px 30px;
    border: 1px solid #b8b8b8;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #151414;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.cart_recipt>a i {
    margin-right: 10px;
}

.recipt {
    width: 30%;
}

.cart_product_img img {
    width: 100%;
    object-fit: scale-down;
}

.recipt li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #b8b8b8;
    font-family: 'American-Captain';
    font-size: 21px;
    color: #000;
    font-weight: 500;
}

.recipt li span {
    font-size: 16px;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
}

.payment_card {
    padding: 50px 20px;
    border-radius: 12px;
    background: #01143c;
}

.payment_card h3 {
    font-size: 31px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    padding-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #303f60;
}

.credit_paypal a {
    padding: 10px 18px;
    border: 1px solid #303f60;
    border-radius: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    justify-content: space-between;
}

.table-responsive table {
    max-width: 1200px;
    width: 100% !important;
    overflow-x: auto;
}

.credit_paypal a img {
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
    filter: brightness(0);
}

.credit_paypal {
    padding-bottom: 20px;
    border-bottom: 1px solid #303f60;
}

.payment_card form label {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    width: 100%;
    height: 50px;
    border: none;
    color: #fff !important;
    border-bottom: 1px solid #303f60;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form select {
    width: 100%;
    height: 50px;
    border: none;
    color: #000;
    border-bottom: 1px solid #303f60;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form input::placeholder {
    color: #fff;
}

.expiry_cvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment_card a.theme-btn {
    justify-self: center;
}

.expiry_date {
    width: 70%;
}

.cvv_box {
    width: 26%;
}

.month_year {
    display: flex;
    justify-content: space-between;
}

.month_year select {
    width: 48% !important;
    appearance: auto;
}

.month_year select option {
    color: #000;
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}


.skin-2 .num-in {
    border: 2px solid #ccc;
    height: 60px;
    width: 185px;
    float: left;
    display: flex;
    border-radius: 0;
    cursor: pointer;
    align-items: center;
    justify-self: center;
    justify-content: space-around;
    background: #f8f6f3;
}

.skin-2 .num-in span {
    width: 20px;
    display: flex;
    height: 20px;
    float: left;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    font-size: 16px;
    border-radius: 50%;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
    font-family: 'Helvetica';
}

.skin-2 .num-in input {
    float: left;
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
}

/* .skin-2 .num-in span:before {
  content: '';
  position: absolute;
  background-color: #667780;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
} */

.add-to-cart {

    position: relative;

    padding: 120px 0px;

}



.add-to-cart thead {

    background: linear-gradient(0deg, rgba(222, 101, 68, 0.8799894957983193) 40%, rgb(185 52 43) 90%);

    color: #fff;

    border-radius: 0px;
}



.add-to-cart .table>thead>tr>th {

    border-bottom: 0;

    padding-left: 20px;

    padding-bottom: 25px;

    padding-top: 25px;

    text-align: left;

}



.table-space {

    display: flex;

    align-items: center;

}



.add-to-cart thead tr th {

    font-size: 21px;

    color: #fff;

    font-family: 'MIDNIGHT';

    font-weight: 400;

    line-height: 20px;

    text-transform: capitalize;
}



.add-to-cart thead tr th:first-child {

    border-top-left-radius: 0;

    border-bottom-left-radius: 0;
}



.add-to-cart thead tr th:last-child {

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;
}



.table-space h3 {

    text-transform: capitalize;

    font-size: 15px;

    color: #333333;

    font-weight: 500;

    margin-bottom: 5px;

    font-family: 'Roboto';

    font-weight: 600;

    line-height: 20px;
}



.table-space span {

    font-size: 16px;

    text-transform: uppercase;

    font-weight: 500;

    color: #000;

    font-family: 'Cerebrisans Regular';

}



.product-img {

    align-items: center;

    display: flex;

    width: 100%;

    height: 100%;

    border-radius: 10px;

    margin-right: 20px;

    justify-content: center;
}



.no-space {

    display: block;

    margin-left: 15px;

}



.product-img img {

    width: 90%;

    border-radius: 0;

    border: 2px solid #d5d5d5;

    margin: 10px 0;

    height: 120px;

    object-position: center;

    object-fit: fill;
}



.add-to-cart input {

    width: 100%;

    text-align: center;

    height: 49px;

    border-radius: 6px;

    border: 1px solid #eeeeee;

    font-size: 23px;

    color: #000;

    font-weight: 500;

    margin-top: 24px;

    background-color: #f7f7f7;

}



.add-to-cart a {

    font-size: 18px;

    display: block;

    text-align: center;

    padding-top: 9px;

    color: rgba(0, 0, 0, 0.50);

    font-weight: 500;

    text-decoration: none;

    color: #333;
}



.add-to-cart h4 {

    font-size: 18px;

    font-weight: 500;

    color: #333333;

    text-align: center;

    margin-top: 40px;

    font-family: montserrat;
}



.table {

    width: 100%;

    max-width: 100%;

    margin-bottom: 20px;

}



tr.space {

    border-bottom: 1px solid #d9d9d9;
}



a.remove {

    color: #fff;

    font-size: 29px;

    padding: 0px 15px;

    border: none;

    margin-top: 25px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(0deg, rgba(222, 101, 68, 0.8799894957983193) 40%, rgb(185 52 43) 90%);
}



.proceed a {

    color: #d7573f;

    font-family: 'MIDNIGHT';

    text-align: left;

    font-size: 23px;

    font-weight: 600;

    text-transform: capitalize;
}



.proceed i {

    margin-left: 10px;

}



.proceed .checkout-btn {

    font-family: 'MIDNIGHT';

    border: none;

    padding: 16px;

    border-radius: 0;

    background: linear-gradient(0deg, rgba(222, 101, 68, 0.8799894957983193) 40%, rgb(185 52 43) 90%);

    width: 100%;

    font-size: 20px;

    font-weight: 500;

    margin-top: 4px;

    border-radius: 0;

    text-align: center;

    text-transform: capitalize;

    color: #fff;

    background: linear-gradient(0deg, rgba(222, 101, 68, 0.8799894957983193) 40%, rgb(185 52 43) 90%);
}



.or-amazon {

    margin-top: 50px;

    position: relative;

    /* top: 25px; */

    padding: 30px 50px;

    border-radius: 5px;

    background-color: #f9f9f9;

    border: 1px solid #c0c0c0;
}



.or-amazon p {

    width: fit-content;

    font-size: 15px;

    font-family: 'Montserrat';

    position: absolute;

    background: #f9f9f9;

    top: -18px;

    left: 50%;

    padding: 5px 20px;

    color: #000;

    display: block;

    text-transform: uppercase;

    transform: translateX(-50%);

    border: 1px solid #c0c0c0;
}



.or-amazon img {

    width: 80%;

}



.or-amazon a {

    text-decoration: none;

    text-align: center;

}



.total-section {

    border: 1px solid #c0c0c0;

    padding: 47px 40px;

    background-color: #f8f6f3;
}



.total-section li {

    font-size: 20px;

    padding-bottom: 20px;

    font-family: montserrat;

    color: #828282;

    font-weight: 400;
}



li.color-change {

    color: #000;

    text-transform: uppercase;

    font-size: 22px;

    font-weight: 600;

    margin: 0;

    font-family: 'MIDNIGHT';
}



.total-section li span {

    float: right;

    font-weight: 500;
}



.ship-estimate {

    padding: 10px 40px;

    margin-top: 10px;

    border: 1px solid #c0c0c0;

    background-color: #f7f7f7;

    margin-top: 140px;
}



.ship-estimate ul {

    margin-top: 20px;

    margin-bottom: 30px;
}



.ship-estimate li {

    color: #000;

    text-transform: capitalize;

    font-size: 22px;

    font-weight: 500;

    margin: 0 0 10px 0;

    font-family: 'MIDNIGHT';
}



.ship-estimate .grey-style {

    color: #828282;

    font-size: 20px;

    font-family: montserrat;

    font-weight: 500;

    text-transform: capitalize;
}


/* InnerPage Cart end */

/* InnerPage Checkout start */
.billing_form {

    padding: 40px;

    /*background-color: #0e194a;*/

}



.billing_form h3 {

    margin-bottom: 30px;

    font-size: 31px;

    color: #000;

    margin: 0;

    margin-bottom: 20px;

    text-transform: capitalize;

    line-height: 40px;

    font-weight: 500;

    font-family: "MIDNIGHT";
}



.billing_form label {

    font-size: 14px;

    color: #7c7c7c;

    line-height: 20px;

    font-weight: 600;

    font-family: 'Montserrat';
}





input[type="text"]::placeholder {

    font-size: 14px;

    color: #7c7c7c;

    font-weight: 500;

    line-height: 14px;

}



.radiosss p {

    color: #7c7c7c;

    font-size: 12px;

    font-weight: 400;

    font-family: 'Montserrat';

}





.billing_form input {

    width: 100%;

    height: 45px;

    border: 1px solid #c5c5c5;

    margin-bottom: 20px;

    padding-left: 15px;

    background-color: #faf9f7;

    border-radius: 0px;

    font-size: 14px;

    color: #7c7c7c;

    line-height: 20px;

    font-weight: 500;

    font-family: montserrat;
}



.billing_form input::placeholder {

    font-size: 14px;

    color: #7c7c7c;

    line-height: 20px;

    font-weight: 400;

    font-family: 'Poppins';



}



.cart_sidebar .cart_lst li:not(:last-child) {

    margin-bottom: 14px;

    /* font-family: 'Montserrat'; */

    color: #7c7c7c;

    font-family: 'Montserrat';
}



.cart_sidebar .cart_lst li {

    font-size: 14px;

    color: #000;

    font-weight: 500;

}



.cart_sidebar .cart_lst li span {

    float: right;

    text-transform: uppercase;
}





.cart_sidebar .cart_lst li:last-child {

    font-size: 24px;

    font-weight: 500;

    color: #000;

    font-family: "MIDNIGHT";

    text-transform: capitalize;
}







.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;



}



.thankyou_txt h3 i {

    font-size: 40px;

    margin-right: 15px;

}



.order_det h5 {

    font-size: 20px;

    color: #7c7c7c;

    font-weight: 400;



}



.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;



}



.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;



}



.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;
    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: #4b902c;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #b7b7b7;
    border-radius: 0px;
    background: #faf9f7;
}

.cart_sidebar h3 {
    font-size: 24px;
    color: #000;
    margin-top: 0px;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "MIDNIGHT";
}

.cart_sidebar button {
    border: none;
    padding: 12px 117px;
    color: #fff;
    border-radius: 0;
    font-size: 19px;
    font-family: montserrat;
    margin-top: 20px;
    display: block;
    background: linear-gradient(0deg, rgba(222, 101, 68, 0.8799894957983193) 40%, rgb(185 52 43) 90%);
    border-radius: 30px;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: #000;
    font-size: 23px;
    border-bottom: 1px solid #373a33;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    font-family: "MIDNIGHT";
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    font-family: "MIDNIGHT";
}

.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: 600;
    /* color: #000; */
    /* font-family: 'Montserrat'; */
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #c4c4c4;
    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 #b3332a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
    font-family: 'Nova Square';
}

.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;
}

.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;
}

.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: 14px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);
    text-transform: uppercase;
    border-radius: 100px;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}

ul.shipping-ul {
    border-bottom: 1px solid #000;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-family: "MIDNIGHT";
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.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: 6px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #bf3e32;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: none;
    margin-left: 0;
    /* padding: 10px; */
    background-color: transparent;
}

.radiosss-payments {
    border-bottom: 1px solid #e9e9e9;
}

.billing_form {
    border: none;
    padding: 20px;
    border-radius: 7px;
}

.language-currency i {
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(10px, -50%);
}

section.checkout_page {
    background-image: url(../images/cont-bg.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.ship-to {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ship-to img {
    width: 30px;
    object-fit: scale-down;
}

.ship-to a {
    color: #ffff;
}


.table-space p {
    font-weight: 700;
    color: #000;
}

h5.h-sub.txt_black {
    font-family: montserrat;
    font-size: 18px;
}

/* InnerPage Checkout end */
/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1365px) {
    body .woocommerce-product-gallery__image {
        padding: 53px;
        background-size: contain;
        max-width: 900px;
        margin: auto;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        object-fit: cover !important;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        height: 400px !important;
    }

    body .summary.entry-summary span.woocommerce-Price-amount.amount {
        font-size: 25px;
        line-height: 30px;
    }

    body .summary.entry-summary {
        width: 100% !important;
        margin-top: 25px;
    }

    .quantity .text {
        transform: rotate(0);
    }

    body .qib-button-wrapper {
        display: flex !important;
        float: none;
    }

    body .summary.entry-summary form.cart button.single_add_to_cart_button.button.alt {
        background: #fb2740;
        color: #fff;
        padding: 14px 30px;
        width: fit-content;
        left: 0;
        float: left;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    .inner-circle-image {
        height: 90%;
        aspect-ratio: 1 / 1;
    }

    .animated-stroke {
        font-size: 65px !important;
    }

    .circle-image {
        width: 65%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .slide-counter {
        bottom: 26%;
        left: 4.5%;
    }

    .banner-slider .slick-prev:before,
    .banner-slider .slick-next:before {
        left: 13px;
    }

    .banner-slider button.slick-prev {
        left: -170px;
    }

    .banner-slider button.slick-prev::before {
        right: 12px;
    }

    .banner-slider button.slick-prev,
    .banner-slider button.slick-next {
        width: 231px;
        height: 280px;
    }

    h2 {
        font-size: 44px;
    }

    .about_text h2 span {
        font-size: 30px;
    }

    .about-frame::before {
        left: -10%;
        width: 110%;
    }

    section.art-sec {
        padding: 0px 0 70px 0;
    }

    .custom-dots {
        left: 7.5%;
    }

    .dot {
        font-size: 25px;
    }

    .art-box {
        margin: 0 60px;
    }

    body ul.products.columns-3 li.product {
        width: 46%;
        margin-top: 0px;
    }

    .drop-box h2 {
        font-size: 70px;
        color: #fff;
    }

    .circle-box {
        margin: 30px 0 0 0;
    }

    .circle-box {
        margin: 20px 0 80px 0;
        position: relative;
        bottom: 15px;
    }

    section.why-choose-sec {
        padding: 70px 0 60px 0;
    }

    .logo-bot {
        width: 60px;
        height: 95px;
        top: 71%;
        left: 46%;
        z-index: 999;
    }

    ul.choose-list h6 {
        margin: 0 0 10px !important;
    }

    h6 {
        font-size: 16px;
    }

    body .topbar {
        padding: 0 0 0px 0;
    }

    .client-ineer-box {
        padding: 40px 20px;
    }

    footer .container-fluid {
        padding: 0 4%;
    }

    .ftr-icons {
        padding: 30px 20px;
        ;
    }

    .ftr-icons ul {
        gap: 15px;
    }

    ul.follow-list li a {
        width: 38px;
        height: 38px;
    }

    .ftr-links {
        padding: 70px 20px;
    }

    footer h2 {
        font-size: 45px;
        padding-bottom: 15px;
    }

    .drop-sec::after {
        height: 200px;
    }

    section.about_sec {
        padding: 100px 0 100px 0;
    }

    .overlay-content a {
        padding: 5px;
        font-size: 30px;
    }

    body .woocommerce-product-gallery__image {
        padding: 38px;
        background-size: contain;
        max-width: 600px;
        margin: auto;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        object-fit: cover !important;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        height: 264px !important;
    }

    body .summary.entry-summary span.woocommerce-Price-amount.amount {
        font-size: 25px;
        line-height: 30px;
    }

    body .summary.entry-summary {
        width: 100% !important;
        margin-top: 25px;
    }

    .quantity .text {
        transform: rotate(0);
    }

    body .qib-button-wrapper {
        display: flex !important;
        float: none;
    }

    body .summary.entry-summary form.cart button.single_add_to_cart_button.button.alt {
        background: #fb2740;
        color: #fff;
        padding: 14px 30px;
        width: fit-content;
        left: 0;
        float: left;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .inner-circle-image {
        height: 90%;
        aspect-ratio: 1 / 1;
    }

    .animated-stroke {
        font-size: 65px !important;
    }

    .circle-image {
        width: 65%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .slide-counter {
        bottom: 6%;
        left: 4.5%;
    }

    .banner-slider .slick-prev:before,
    .banner-slider .slick-next:before {
        left: 13px;
    }

    .banner-slider button.slick-prev {
        left: -170px;
    }

    .banner-slider button.slick-prev::before {
        right: 12px;
    }

    .banner-slider button.slick-prev,
    .banner-slider button.slick-next {
        width: 231px;
        height: 280px;
    }

    h2 {
        font-size: 44px;
    }

    .about_text h2 span {
        font-size: 30px;
    }

    .about-frame::before {
        left: -10%;
        width: 110%;
    }

    section.art-sec {
        padding: 0px 0 70px 0;
    }

    .custom-dots {
        left: 7.5%;
    }

    .dot {
        font-size: 25px;
    }

    .art-box {
        margin: 0 60px;
    }

    body ul.products.columns-3 li.product {
        width: 46%;
        margin-top: 0px;
    }

    .drop-box h2 {
        font-size: 70px;
        color: #fff;
    }

    .circle-box {
        margin: 30px 0 0 0;
    }

    .circle-box {
        margin: 20px 0 80px 0;
        position: relative;
        bottom: 15px;
    }

    section.why-choose-sec {
        padding: 70px 0 60px 0;
    }

    .logo-bot {
        width: 60px;
        height: 95px;
        top: 71%;
        left: 46%;
        z-index: 999;
    }

    ul.choose-list h6 {
        margin: 0 0 10px !important;
    }

    h6 {
        font-size: 16px;
    }

    body .topbar {
        padding: 0 0 0px 0;
    }

    .client-ineer-box {
        padding: 40px 20px;
    }

    footer .container-fluid {
        padding: 0 4%;
    }

    .ftr-icons {
        padding: 30px 20px;
        ;
    }

    .ftr-icons ul {
        gap: 15px;
    }

    ul.follow-list li a {
        width: 38px;
        height: 38px;
    }

    .ftr-links {
        padding: 70px 20px;
    }

    footer h2 {
        font-size: 45px;
        padding-bottom: 15px;
    }

    .drop-sec::after {
        height: 200px;
    }

    section.about_sec {
        padding: 100px 0 100px 0;
    }

    .overlay-content a {
        padding: 5px;
        font-size: 30px;
    }

    .banner_sec {
        height: 680px;
    }

    .banner-art-image img {
        height: 285px;
        width: 200px;
    }

    body .woocommerce-product-gallery__image {
        padding: 38px;
        background-size: contain;
        max-width: 600px;
        margin: auto;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        object-fit: cover !important;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        height: 264px !important;
    }

    body .summary.entry-summary h1.product_title.entry-title {
        font-size: 40px;
    }

    body ul.paint-det-list {
        width: 95%;
        columns: 1;
    }

    body .summary.entry-summary form.cart button.single_add_to_cart_button.button.alt {
        background: #fb2740;
        color: #fff;
        padding: 14px 30px;
        width: fit-content;
        left: 0;
        float: left;
    }

    body .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward {
        float: none;
    }

    .instagram_sec {
        padding: 40px 0px 0;
    }

    body .summary.entry-summary span.woocommerce-Price-amount.amount {
        font-size: 25px;
        line-height: 30px;
    }

    body .summary.entry-summary {
        width: 100% !important;
        margin-top: 25px;
    }

    .quantity .text {
        transform: rotate(0);
    }

    body .qib-button-wrapper {
        display: flex !important;
        float: none;
    }




}

@media only screen and (min-width: 520px) and (max-width: 767px) {

    .circle-image img {
        object-fit: contain;
    }

    section.header {
        padding: 10px 0;
        position: relative;
        background: #b1b0ce;
    }


    .hdr-bar {
        flex-direction: column;
    }

    .menu-bar {
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    a.user {
        width: 40px;
        height: 40px;
    }

    .menu-button span {
        margin-right: 5px;
        font-size: 14px;
    }

    .hdr_logo a img {
        object-fit: contain;
        padding: 10px 0 20px;
    }

    .banner-art-image img {
        height: 145px;
        width: 101px;
        object-fit: cover;
    }

    .banner-art-image {
        width: 145px;
        height: 175px;
    }

    .animated-stroke {
        font-size: 30px !important;
        text-align: center;
    }

    .banner-bottom-para p {
        width: 100%;
    }

    .banner-slider button.slick-prev,
    .banner-slider button.slick-next {
        width: 99px;
        height: 100px;
        border-radius: 54%;
    }

    .banner-slider button.slick-prev {
        left: -73px;
        z-index: 99;
    }

    .banner-slider .slick-prev:before,
    .banner-slider .slick-next:before {
        width: 15px;
        left: 4px;
        height: 7px;
    }

    .banner-slider button.slick-prev::before {
        right: 5px;
        position: absolute;
        left: unset;
    }

    .circle-image {
        width: 80%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .banner-slider button.slick-next {
        right: -75px;
    }

    .slide-counter {
        bottom: 15px;
        left: 1.5%;
    }

    p {
        font-size: 12px;
        line-height: 20px
    }

    span.white-line {
        width: 50px;
    }

    ul.follow-list li a {
        width: 30px;
        height: 30px;
    }

    ul.follow-list li a i {
        font-size: 12px;
    }

    .banner_sec {
        height: 450px;
    }

    section.about_sec {
        padding: 50px 0 40px 0;
    }

    .about-frame img {
        height: 450px;
        width: 96%;
        transform: rotate(-3deg);
    }

    h2 {
        font-size: 40px;
    }

    .about_text h2 span {
        font-size: 25px;
    }

    .about_text {
        margin-top: 25px;
    }

    .btn-1 span {
        height: 30px;
        width: 30px;
    }

    .btn-1 {
        padding: 3px 5px 3px 18px;
        font-size: 12px;
        line-height: 20px;
        height: 45px;
    }

    .auto {
        width: 100% !important;
    }

    .art-box {
        margin: 0 0px;
    }

    .art-box img {
        height: 345px;
        object-fit: fill;
    }

    .custom-dots {
        flex-direction: row;
        left: 0;
        top: 1%;
        right: 0;
        margin: auto;
    }

    .dot {
        font-size: 25px;
    }

    .dot.active {
        border-bottom: 2px solid #b7b6d5;
    }

    .art-slider {
        padding: 70px 0 0 0;
    }

    .art-boox-text {
        bottom: 20px;
        left: -10px;
        padding: 25px 40px;
    }

    .art-boox-text h5 {
        margin-bottom: 0;
    }

    .sec ul.products.columns-3 li.product {
        width: 100%;
    }

    .paint-card-image img {
        height: 300px;
    }

    ul.stars li {
        margin-top: 0 !important;
    }

    h4 {
        font-size: 20px;
    }

    a.arrow {
        width: 35px;
        height: 35px;
    }

    a.arrow img {
        width: 15px;
    }

    .pt_8,
    .pb_8,
    .py_8,
    .sec {
        padding: 40px 0;
    }

    .drop-sec {
        padding: 40px 0 0 0;
    }

    .drop-box h2 {
        font-size: 35px;
    }

    .drop-form {
        padding: 30px 20px;
    }

    .form-control {
        height: 40px;
        font-size: 12px;
    }

    textarea.form-control {
        height: 90px;
        padding: 60px 0 0 0;
    }

    .circle-box {
        align-items: center;
        justify-content: center;
        margin: 0px 0 0 0;
    }

    .drop-sec::after {
        width: 100%;
        height: 180px;
    }

    .logo-bot {
        width: 45px;
        height: 75px;
        top: 69%;
        left: 50%;
        z-index: 999;
    }

    .text span {
        font-size: 14px;
        transform-origin: 0 70px;
    }

    .circle {
        width: 110px;
        height: 150px;
        margin: 0;
    }

    section.why-choose-sec {
        padding: 40px 0 40px 0;
    }

    .about_text h2 {
        margin: 0 0 10px 0;
    }

    ul.choose-list li::before {
        width: 13px;
        height: 13px;
    }

    ul.choose-list li {
        padding: 0 0 0 18px;
    }

    ul.choose-list h6 {
        margin: 0 0 10px !important;
    }

    h6 {
        font-size: 12px;
    }

    .why-frame img {
        transform: rotate(6deg) !important;
    }

    .about-frame.why-frame1 {
        max-width: 118px;
        max-height: 125px;
    }

    .about-frame.why-frame1 img {
        height: 128px;
    }

    .about-frame.why-frame {
        height: 350px;
    }

    .about-frame.why-frame img {
        height: 345px;
    }

    .why-choose-box {
        max-width: 300px;
        margin: auto;
        margin-top: 40px;
    }

    .text_center.heading.topbar p {
        width: 100%;
        margin: 0 auto;
    }

    .topbar {
        padding: 0 0 0px 0 !important;
    }

    .client-ineer-box {
        padding: 25px 15px;
    }

    .client-ineer-box ul {
        gap: 10px;
        margin: 0 0 10px 0;
        flex-direction: column;
    }

    .client-sli .slick-slide {
        margin: 0px 5px;
    }

    body .vc_column_container>.vc_column-inner {
        padding-left: 0px;
        padding-right: 0px;
    }

    h3 {
        font-size: 25px;
    }

    .insta-heading img {
        width: 27px;
        margin: -7px 0 0 0;
    }

    .ftr-links {
        padding: 40px 20px 0px;
    }

    .nestletter {
        padding: 20px 20px;
    }

    footer h2 {
        font-size: 25px;
        letter-spacing: 1px;
    }

    .ftr-links ul li a {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .nestletter p {
        width: 100%;
        margin-bottom: 15px;
        font-size: 12px;
        margin-top: 10px;
    }

    .nestletter input {
        width: 100%;
        padding: 10px;
        height: 46px;
        font-size: 12px;
    }

    .ftr-icons {
        gap: 15px;
        padding: 25px 20px;
        flex-direction: column;
    }

    .nestletter h2 {
        padding-bottom: 15px;
    }

    .footer-logo {
        display: flex;
        padding: 25px 20px;
        align-items: center;
        justify-content: center;
    }

    .bottom-ftr {
        align-items: center;
        padding: 10px 20px;
        justify-content: center;
    }

    .bottom-ftr p {
        text-align: center;
    }

    footer {
        padding: 40px 0 20px;
    }

    .overlay-content a {
        padding: 5px;
        font-size: 20px;
    }

    section.inner_banner_sec.banner_sec {
        height: 300px;
    }

    .inner-banner_text p {
        width: 85%;
    }

    .inner-banner_text h1 {
        line-height: 50px;
    }


    .woocommerce-product-gallery__image {
        padding: 16px;
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 227px;
        margin: auto;
    }

    .woocommerce-product-gallery__image.flex-active-slide a img,
    .woocommerce-product-gallery__image a img {
        height: 97px !important;
    }

    .contact-main-sec h4 {
        font-size: 30px;
        line-height: 30px;
    }

    .contact-pag-form form input.form-control {
        height: 45px;
        font-size: 12px;
        padding-left: 40px;
        margin-top: 5px;
    }

    .contact-pag-form .form-group::after {
        height: 39px;
        width: 10px;
        left: 32px;
        top: 3px;
        background-size: contain;
    }

    .contact-pag-form .form-group i {
        top: 15px;
        left: 9px;
        font-size: 14px;
    }

    form.hf-form.hf-form-155 {
        margin-bottom: 35px;
    }

    .contact-info {
        gap: 15px;
        padding: 20px 10px;
    }

    .cicle-icon i {
        font-size: 18px;
        height: 50px;
        width: 50px;
    }

    .contact_text p a {
        font-size: 14px;
        margin-top: 0px;
    }

    .contact-main-sec h2 {
        font-size: 12px;
        line-height: 20px;
    }

    .contact_text p a.email-text {
        font-size: 12px;
    }

    .contact-main-sec {
        padding: 40px 0 0px;
    }

    .about-frame::before {
        position: absolute;
        top: 0%;
        left: -15%;
        width: 120%;
        height: 108%;
    }

    section.inner_banner_sec.banner_sec .circle-image {
        width: 50%;
        height: auto;
        aspect-ratio: 1 / 1;
    }


    body .woocommerce-product-gallery__image {
        padding: 20px;
        background-size: contain;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        object-fit: cover !important;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        height: 90px !important;
    }

    body .summary.entry-summary h1.product_title.entry-title {
        font-size: 40px;
    }

    body ul.paint-det-list {
        width: 95%;
        columns: 1;
    }

    body .summary.entry-summary form.cart button.single_add_to_cart_button.button.alt {
        background: #fb2740;
        color: #fff;
        padding: 14px 30px;
        width: fit-content;
        left: 0;
        float: left;
    }

    body .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward {
        float: none;
    }

    .instagram_sec {
        padding: 40px 0px 0;
    }

    body .summary.entry-summary span.woocommerce-Price-amount.amount {
        font-size: 25px;
        line-height: 30px;
    }

    body .summary.entry-summary {
        width: 100% !important;
        margin-top: 25px;
    }

    .quantity .text {
        transform: rotate(0);
    }

    body .qib-button-wrapper {
        display: flex !important;
        float: none;
    }

}

@media only screen and (min-width: 0px) and (max-width: 519px) {

    .circle-image img {
        object-fit: contain;
    }

    section.header {
        padding: 10px 0;
        position: relative;
        background: #b1b0ce;
    }


    .hdr-bar {
        flex-direction: column;
    }

    .menu-bar {
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    a.user {
        width: 40px;
        height: 40px;
    }

    .menu-button span {
        margin-right: 5px;
        font-size: 14px;
    }

    .hdr_logo a img {
        object-fit: contain;
        padding: 10px 0 20px;
    }

    .banner-art-image img {
        height: 145px;
        width: 101px;
        object-fit: cover;
    }

    .banner-art-image {
        width: 145px;
        height: 175px;
    }

    .animated-stroke {
        font-size: 30px !important;
        text-align: center;
    }

    .banner-bottom-para p {
        width: 100%;
    }

    .banner-slider button.slick-prev,
    .banner-slider button.slick-next {
        width: 99px;
        height: 100px;
        border-radius: 54%;
    }

    .banner-slider button.slick-prev {
        left: -73px;
        z-index: 99;
    }

    .banner-slider .slick-prev:before,
    .banner-slider .slick-next:before {
        width: 15px;
        left: 4px;
        height: 7px;
    }

    .banner-slider button.slick-prev::before {
        right: 5px;
        position: absolute;
        left: unset;
    }

    .circle-image {
        width: 80%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .banner-slider button.slick-next {
        right: -75px;
    }

    .slide-counter {
        bottom: 15px;
        left: 1.5%;
    }

    p {
        font-size: 12px;
        line-height: 20px
    }

    span.white-line {
        width: 50px;
    }

    ul.follow-list li a {
        width: 30px;
        height: 30px;
    }

    ul.follow-list li a i {
        font-size: 12px;
    }

    .banner_sec {
        height: 450px;
    }

    section.about_sec {
        padding: 50px 0 40px 0;
    }

    .about-frame img {
        height: 450px;
        width: 96%;
        transform: rotate(-3deg);
    }

    h2 {
        font-size: 40px;
    }

    .about_text h2 span {
        font-size: 25px;
    }

    .about_text {
        margin-top: 25px;
    }

    .btn-1 span {
        height: 30px;
        width: 30px;
    }

    .btn-1 {
        padding: 3px 5px 3px 18px;
        font-size: 12px;
        line-height: 20px;
        height: 45px;
    }

    .auto {
        width: 100% !important;
    }

    .art-box {
        margin: 0 0px;
    }

    .art-box img {
        height: 345px;
        object-fit: fill;
    }

    .custom-dots {
        flex-direction: row;
        left: 0;
        top: 1%;
        right: 0;
        margin: auto;
    }

    .dot {
        font-size: 25px;
    }

    .dot.active {
        border-bottom: 2px solid #b7b6d5;
    }

    .art-slider {
        padding: 70px 0 0 0;
    }

    .art-boox-text {
        bottom: 20px;
        left: -10px;
        padding: 25px 40px;
    }

    .art-boox-text h5 {
        margin-bottom: 0;
    }

    .sec ul.products.columns-3 li.product {
        width: 100%;
    }

    .paint-card-image img {
        height: 300px;
    }

    ul.stars li {
        margin-top: 0 !important;
    }

    h4 {
        font-size: 20px;
    }

    a.arrow {
        width: 35px;
        height: 35px;
    }

    a.arrow img {
        width: 15px;
    }

    .pt_8,
    .pb_8,
    .py_8,
    .sec {
        padding: 40px 0;
    }

    .drop-sec {
        padding: 40px 0 0 0;
    }

    .drop-box h2 {
        font-size: 35px;
    }

    .drop-form {
        padding: 30px 20px;
    }

    .form-control {
        height: 40px;
        font-size: 12px;
    }

    textarea.form-control {
        height: 90px;
        padding: 60px 0 0 0;
    }

    .circle-box {
        align-items: center;
        justify-content: center;
        margin: 0px 0 0 0;
    }

    .drop-sec::after {
        width: 100%;
        height: 180px;
    }

    .logo-bot {
        width: 45px;
        height: 75px;
        top: 69%;
        left: 50%;
        z-index: 999;
    }

    .text span {
        font-size: 14px;
        transform-origin: 0 70px;
    }

    .circle {
        width: 110px;
        height: 150px;
        margin: 0;
    }

    section.why-choose-sec {
        padding: 40px 0 40px 0;
    }

    .about_text h2 {
        margin: 0 0 10px 0;
    }

    ul.choose-list li::before {
        width: 13px;
        height: 13px;
    }

    ul.choose-list li {
        padding: 0 0 0 18px;
    }

    ul.choose-list h6 {
        margin: 0 0 10px !important;
    }

    h6 {
        font-size: 12px;
    }

    .why-frame img {
        transform: rotate(6deg) !important;
    }

    .about-frame.why-frame1 {
        max-width: 118px;
        max-height: 125px;
    }

    .about-frame.why-frame1 img {
        height: 128px;
    }

    .about-frame.why-frame {
        height: 350px;
    }

    .about-frame.why-frame img {
        height: 345px;
    }

    .why-choose-box {
        margin: auto;
        max-width: 300px;
        margin-top: 40px;
    }

    .text_center.heading.topbar p {
        width: 100%;
        margin: 0 auto;
    }

    .topbar {
        padding: 0 0 0px 0 !important;
    }

    .client-ineer-box {
        padding: 25px 15px;
    }

    .client-ineer-box ul {
        gap: 10px;
        margin: 0 0 10px 0;
        flex-direction: column;
    }

    .client-sli .slick-slide {
        margin: 0px 5px;
    }

    body .vc_column_container>.vc_column-inner {
        padding-left: 0px;
        padding-right: 0px;
    }

    h3 {
        font-size: 25px;
    }

    .insta-heading img {
        width: 27px;
        margin: -7px 0 0 0;
    }

    .ftr-links {
        padding: 40px 20px 0px;
    }

    .nestletter {
        padding: 20px 20px;
    }

    footer h2 {
        font-size: 25px;
        letter-spacing: 1px;
    }

    .ftr-links ul li a {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .nestletter p {
        width: 100%;
        margin-bottom: 15px;
        font-size: 12px;
        margin-top: 10px;
    }

    .nestletter input {
        width: 100%;
        padding: 10px;
        height: 46px;
        font-size: 12px;
    }

    .ftr-icons {
        gap: 15px;
        padding: 25px 20px;
        flex-direction: column;
    }

    .nestletter h2 {
        padding-bottom: 15px;
    }

    .footer-logo {
        display: flex;
        padding: 25px 20px;
        align-items: center;
        justify-content: center;
    }

    .bottom-ftr {
        align-items: center;
        padding: 10px 20px;
        justify-content: center;
    }

    .bottom-ftr p {
        text-align: center;
    }

    footer {
        padding: 40px 0 20px;
    }

    .overlay-content a {
        padding: 5px;
        font-size: 20px;
    }

    section.inner_banner_sec.banner_sec {
        height: 300px;
    }

    .inner-banner_text p {
        width: 85%;
    }

    .inner-banner_text h1 {
        line-height: 50px;
    }


    .woocommerce-product-gallery__image {
        padding: 16px;
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 227px;
        margin: auto;
    }

    .woocommerce-product-gallery__image.flex-active-slide a img,
    .woocommerce-product-gallery__image a img {
        height: 97px !important;
    }

    .contact-main-sec h4 {
        font-size: 30px;
        line-height: 30px;
    }

    .contact-pag-form form input.form-control {
        height: 45px;
        font-size: 12px;
        padding-left: 40px;
        margin-top: 5px;
    }

    .contact-pag-form .form-group::after {
        height: 39px;
        width: 10px;
        left: 32px;
        top: 3px;
        background-size: contain;
    }

    .contact-pag-form .form-group i {
        top: 15px;
        left: 9px;
        font-size: 14px;
    }

    form.hf-form.hf-form-155 {
        margin-bottom: 35px;
    }

    .contact-info {
        gap: 15px;
        padding: 20px 10px;
    }

    .cicle-icon i {
        font-size: 18px;
        height: 50px;
        width: 50px;
    }

    .contact_text p a {
        font-size: 14px;
        margin-top: 0px;
    }

    .contact-main-sec h2 {
        font-size: 12px;
        line-height: 20px;
    }

    .contact_text p a.email-text {
        font-size: 12px;
    }

    .contact-main-sec {
        padding: 40px 0 0px;
    }

    body .woocommerce-product-gallery__image {
        padding: 20px;
        background-size: contain;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        object-fit: cover !important;
    }

    body .woocommerce-product-gallery__image.flex-active-slide a img,
    body .woocommerce-product-gallery__image a img {
        height: 90px !important;
    }

    body .summary.entry-summary h1.product_title.entry-title {
        font-size: 40px;
    }

    body ul.paint-det-list {
        width: 95%;
        columns: 1;
    }

    body .summary.entry-summary form.cart button.single_add_to_cart_button.button.alt {
        background: #fb2740;
        color: #fff;
        padding: 14px 30px;
        width: fit-content;
        left: 0;
        float: left;
    }

    body .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward {
        float: none;
    }

    .instagram_sec {
        padding: 40px 0px 0;
    }

    body .summary.entry-summary span.woocommerce-Price-amount.amount {
        font-size: 25px;
        line-height: 30px;
    }

    body .summary.entry-summary {
        width: 100% !important;
        margin-top: 25px;
    }

    .quantity .text {
        transform: rotate(0);
    }

    body .qib-button-wrapper {
        display: flex !important;
        float: none;
    }

    .paint-det-sec .woocommerce-notices-wrapper .woocommerce-message {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .paint-det-sec .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward {
        width: fit-content;
    }
}


/*Media Query End*/