@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #575757;
    --themeColor: #dfa5a4;
    --themeColor2: #cf908e;
    --headingColor: #d49695;
    --headingColor2: #151414;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--themeColor2);
}

a:hover,
a:focus {
    color: #393939;
    text-decoration: none;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 60px;
    margin: 0 0 0px;
    font-weight: 400;
    color: var(--white);
    font-family: 'Cinzel', serif;
}

h2 {
    font-size: 60px;
    margin: 0 0 0px;
    font-weight: 400;
    color: var(--headingColor2);
    font-family: 'Cinzel', serif;
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 400;
    font-family: 'Cinzel', serif;
    color: var(--headingColor2);
}

h4 {
    color: #000;
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Cinzel', serif;
}

h5 {
    color: #000;
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Cinzel', serif;
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    font-weight: 400;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 850px;
}

.theme-btn {
    padding: 0px;
    height: 50px;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    padding-left: 25px;
    border-radius: 5px;
    width: fit-content;
    align-items: center;
    background: transparent;
    text-transform: uppercase;
    color: var(--themeColor2);
    justify-content: space-between;
    border: 1px solid var(--themeColor2);
}

.theme-btn>span {
    top: 0px;
    left: 1px;
    width: 50px;
    height: 105%;
    display: flex;
    margin-left: 25px;
    border-radius: 5px;
    position: relative;
    align-items: center;
    justify-content: center;
    color: var(--headingColor2);
    background: var(--themeColor2);
    border: 1px solid var(--headingColor);
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 14px;
    font-weight: 500;
    padding: 40px 10px;
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--white);
}

.menuSec ul li a::before {
    left: 0;
    width: 0px;
    height: 2px;
    content: '';
    right: 100%;
    bottom: -1px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.menuSec ul li a.active::before,
.menuSec ul li a:hover::before {
    left: 0;
    right: 0;
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec ul li a:not(:hover)::before {
    left: auto;
    right: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSection {
    padding: 0px 4%;
    position: relative;
    border-bottom: 1px solid #ffffff5b;
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);
}

.menuSection::before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    opacity: 0.4;
    height: 100%;
    position: absolute;
    filter: brightness(1.1);
    background-image: url(../images/banner-before.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.header-right ul {
    gap: 30px;
    display: flex;
    position: relative;
    width: fit-content;
    align-items: center;
    margin: 0px 0px 0px auto;
    justify-content: flex-end;
}

.header-right ul::before {
    top: 0;
    bottom: 0;
    left: 50px;
    height: 1px;
    width: 30px;
    content: '';
    margin: auto;
    opacity: 0.4;
    position: absolute;
    background-color: var(--white);
}

.header-right ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 16px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
}

.header-right ul li a:hover {
    color: var(--black);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: 3.507px 7.19px 24px 0px rgba(0, 0, 0, 0.24);
}

.header-right ul li h5 {
    font-size: 16px;
    margin-left: -10px;
    color: var(--white);
}

.header-right ul li h5 span {
    display: block;
}

.menuSection .add-padding {
    z-index: 1;
    position: relative;
}

.menuSection .row {
    align-items: center;
}

.header-logo {
    display: flex;
    height: 23px;
    align-items: center;
    justify-content: flex-start;
}

.header-logo a,
.header-logo a img {
    height: 100%;
    width: fit-content;
    object-fit: contain;
}

/*header css start */


/*banner css start */

.main_slider {
    padding: 0px 4%;
    overflow: hidden;
    position: relative;
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);
}

.main_slider .add-padding::before {
    top: -5%;
    left: 15%;
    z-index: 1;
    width: 110%;
    content: "";
    height: 105%;
    position: absolute;
    background-image: url(../images/banner-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
}


.main_slider .add-padding {
    z-index: 1;
    min-height: 780px;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}


.main_slider::before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    opacity: 0.4;
    height: 100%;
    position: absolute;
    filter: brightness(1.1);
    background-image: url(../images/banner-before.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.banner_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.banner_img img {
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 98%;
    position: absolute;
    object-fit: contain;
}

.banner_text {
    z-index: 2;
    position: relative;
}

.banner_text h1 {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff67;
}

.banner_text h1::after {
    left: 100%;
    width: 35%;
    height: 1px;
    content: '';
    opacity: 0.5;
    bottom: -0.5px;
    position: absolute;
    background-color: var(--white);
}

.banner_text h1::before {
    left: 0;
    width: 35%;
    height: 1px;
    content: '';
    bottom: -1.5px;
    position: absolute;
    background-color: var(--white);
    animation: moveDot2 8s ease-in-out infinite;
}

.banner_text p {
    opacity: 0.5;
    font-size: 15px;
    color: var(--white);
}

.banner_text .theme-btn {
    margin-top: 20px;
    color: var(--white);
    border: 1px solid var(--white);
}

.banner_text .theme-btn span {
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--white);
}

.banner-follow {
    top: 100px;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    max-width: 450px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.banner-follow::before {
    top: 0;
    bottom: 0;
    left: 105%;
    width: 100%;
    z-index: -1;
    height: 1px;
    content: '';
    margin: auto;
    opacity: 0.5;
    position: absolute;
    background-color: var(--white);
}

.banner-follow ul {
    gap: 10px;
    z-index: 1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.banner-follow ul li a {
    z-index: 1;
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 16px;
    position: relative;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #ffffff98;
}

.banner-follow ul li a:hover {
    color: var(--black);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: 3.507px 7.19px 24px 0px rgba(0, 0, 0, 0.24);
}

.banner-follow h5 {
    z-index: 1;
    font-size: 16px;
    position: relative;
    color: var(--white);
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.banner-follow h5::before {
    top: 0;
    bottom: 0;
    height: 1px;
    right: 115%;
    content: '';
    width: 100px;
    margin: auto;
    opacity: 0.5;
    position: absolute;
    background-color: var(--white);
}

/*banner css end*/

/* banner-bottom-sec */

.banner-bottom-sec {
    padding: 100px 0px;
}

.banner-bottom-box {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e8e8e8;
}

.banner-bottom-box img {
    width: 38px;
    flex-shrink: 0;
    object-fit: contain;
}

.banner-bottom-box h5 {
    font-size: 16px;
}

.banner-bottom-box h5 span {
    display: block;
    font-size: 14px;
    font-family: 'Montserrat';
}

.banner-bottom-box.justify-content-end {
    border: none;
}


/* banner-bottom-sec */

/* custom-sec */

.custom-box-1 {
    padding: 50px;
    display: flex;
    overflow: hidden;
    min-height: 290px;
    position: relative;
    align-items: center;
    margin-bottom: 25px;
    justify-content: flex-end;
    background-color: #f0f0f0;
}

.custom-box-1 img {
    top: 0;
    left: 3%;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    object-position: left center;
}

.custom-box-1-text {
    z-index: 1;
    width: 90%;
    max-width: 350px;
    position: relative;
}

.custom-box-1-text h4 {
    margin-bottom: 10px;
    color: #252525;
}

.custom-box-1-text p {
    color: #8a8a8a;
    margin-bottom: 10px;
}

.custom-box-1-text a {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
}

.custom-box-1-text a i {
    font-size: 10px;
    color: #e1ac9f;
    margin-left: 15px;
}

.custom-box-2 {
    width: 100%;
    height: 320px;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
}

.custom-box-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-box-2 h4 {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 25px;
    max-width: 90%;
    text-align: center;
    width: fit-content;
    position: absolute;
}

.custom-box-2 h4 {
    bottom: 25px;
    position: absolute;
}

.custom-box-3 {
    width: 100%;
    display: flex;
    height: 600px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #dfd8d6;
}

.custom-box-3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.custom-box-3-text {
    top: 0;
    width: 100%;
    text-align: center;
    position: absolute;
    padding: 30px 25px;
}

.custom-box-3-text h4 {
    margin-bottom: 5px;
}

/* custom-sec */

/* product sec */

.product-sec {
    padding: 100px 4%;
}

.product-sec .section-heading {
    margin-bottom: 25px;
}

.product-box {
    overflow: hidden;
    margin-top: 25px;
    border-radius: 0px;
    transition: ease-out;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: 0px 21px 54px 0px rgba(0, 0, 0, 0.04);
}

.product-img {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 0px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: ease-out;
    object-position: center;
    transition-duration: 0.5s;
}

.product-img a {
    right: 35px;
    width: 60px;
    height: 60px;
    display: flex;
    bottom: -30px;
    color: #838383;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    transition: ease-out;
    justify-content: center;
    border: 2px solid #fff;
    transition-duration: 0.5s;
    box-shadow: 0px 11px 35px 0px rgba(182, 182, 182, 0.22);
    background-image: -webkit-linear-gradient(35deg, var(--white) 0%, var(--white) 100%);
}

.product-text {
    padding: 40px 25px 25px;
}

.product-text h4 {
    margin-bottom: 5px;
    transition: ease-out;
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.product-text p {
    font-weight: 500;
    color: #7c7c7c;
    margin-bottom: 15px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-text ul {
    display: flex;
    align-items: center;
    transition: ease-out;
    transition-duration: 0.5s;
    justify-content: space-between;
}

.boeiuos li i {
    color: #fd8f00;
    transition: ease-out;
    transition-duration: 0.5s;
}

.boeiuos {
    margin-bottom: 25px;
    padding-bottom: 15px;
    transition: ease-out;
    transition-duration: 0.5s;
    border-bottom: 1px solid #dadada;
}

.product-text li h6 {
    font-size: 20px;
    color: #838383;
    transition: ease-out;
    font-family: 'Cutmark';
    transition-duration: 0.5s;
}

.product-text li a {
    font-size: 14px;
    font-weight: 500;
    color: #7c7c7c;
    padding-left: 0px;
    transition: ease-in;
    transition-duration: 0.5s;
    font-family: 'Montserrat';
}

.product-text ul li span {
    font-weight: 500;
    color: #7c7c7c;
    transition: ease-out;
    transition-duration: 0.5s;
    font-family: 'Montserrat';
}

.product-text li a:hover {
    padding-left: 15px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-box:hover,
.product-box:hover .product-text {
    transition: ease-in;
    transition-duration: 0.5s;
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);
}

.product-box:hover .product-text a,
.product-box:hover .product-text h4,
.product-box:hover .product-text p,
.product-box:hover .product-text li span,
.product-box:hover .product-text h6 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-box:hover .product-img a {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);

}

/* product sec */

/* special-sec */

.special-sec {
    display: flex;
    padding: 100px 4%;
    min-height: 670px;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    background-image: url(../images/special-sec-bg.png);
    background-position: center right;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
}

.special-sec::before {
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #f2edea;
}

.special-text {
    max-width: 600px;
}

.special-text h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c5c1bf;
}

.special-text h2::before {
    left: 0;
    width: 35%;
    height: 1px;
    content: "";
    bottom: -1.5px;
    position: absolute;
    background-color: #111111;
    animation: moveDot2 8s ease-in-out infinite;
}

.special-text p {
    margin-bottom: 20px;
}

.special-text .theme-btn {
    color: #1f1e1e;
    border: 1px solid #c6c2bf;
}

.special-text .theme-btn span {
    color: #f3eeeb;
}

@keyframes moveDot2 {
    0% {
        left: 0;
    }

    50% {
        left: 65%;
    }

    100% {
        left: 0;
    }
}

/* special-sec */

/* about-sec */

.about-sec {
    padding: 100px 4% 0px;
}

.about-list {
    gap: 30px;
    display: flex;
    margin-top: 25px;
    align-items: center;
}

.about-list ul {
    width: 50%;
    position: relative;
}

.about-list ul li {
    padding-right: 35px;
    position: relative;
    margin-bottom: 25px;
}

.about-list ul::before {
    top: 5px;
    right: 0;
    width: 1px;
    content: "";
    height: 52%;
    position: absolute;
    background-color: #e7e7e7;
}

.about-list ul li::before {
    top: 5px;
    width: 6px;
    content: "";
    height: 6px;
    right: -2.5px;
    position: absolute;
    background-color: var(--themeColor2);
}

.about-list ul li h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-text {
    text-align: end;
}

.about-img {
    width: 100%;
    height: 450px;
    min-height: 100%;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-weight: 400;
    margin-bottom: 10px;
}

.about-text h2 span {
    display: block;
    font-size: 48px;
    margin-top: -10px;
    color: var(--themeColor2);
}

.about-text p {
    margin-bottom: 15px;
}

.about-text-content {
    width: 145%;
    position: relative;
    padding-left: 40px;
    background-color: var(--white);
}

.about-text-content::before {
    left: 0;
    content: "";
    width: 32%;
    bottom: 100%;
    height: 50px;
    position: absolute;
    background-color: var(--white);
}

.about-text-content .theme-btn {
    margin: 20px 0px 0px auto;
}

/* about-sec */

/*blog start*/

section.blog {
    padding: 20px 4% 100px;
}

.blog-txt {
    text-align: center;
    margin-bottom: 40px;
}

.blog-txt h2 {
    margin-bottom: 10px;
    color: #111111;
}

.blog-txt p {
    font-size: 14px;
    margin: 0 auto;
    width: 73%;
}

.blog-img {
    margin: 25px 0px;
    position: relative;
}

.blog-img a {
    display: block;
}

.blog-img img {
    width: 90%;
    height: 400px;
}

.blog-detail {
    top: 50%;
    right: -1%;
    width: 50%;
    height: auto;
    max-width: 230px;
    padding: 27px 15px;
    position: absolute;
    background: var(--white);
    transform: translateY(-50%);
    box-shadow: 0px 0px 25.28px 6.72px rgba(0, 0, 0, 0.06);
}

.blog-detail h5 {
    width: 90%;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 25px;
    color: var(--black);
    font-family: 'Montserrat';
}


.blog-detail h5 span {
    display: block;
}

.alignlist {
    display: flex;
    gap: 10px;
    justify-content: end;
    text-align: end;
    margin-left: 0;
}

.icons i {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--headingColor);
    border: solid 1px #b2b2b2;
}

.icons {
    gap: 10px;
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.blog-slider .slick-active {
    opacity: 1;
}

.blog-slider .slick-prev:before,
.blog-slider .slick-next:before {
    display: block;
    content: "";
    background: url(../images/arrow2.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1 !important;
    width: 75px;
    height: 45px;
    transition: 0.35s ease-in-out;
}

.blog-slider .slick-prev,
.blog-slider .slick-next {
    width: 75px;
    height: 45px;
    z-index: 2;
    bottom: -90px;
    top: unset;
}

.blog-slider .slick-prev {
    left: 0;
    right: 0px;
    /* transform: rotate(180deg); */
    margin: 0 auto;
    display: block;
    bottom: -90px;
    width: 18%;
}

.blog-slider .slick-next {
    right: 300px;
    width: 27%;
}

.blog-slider .slick-prev:before {
    transform: rotate(180deg);
}

.blog-slider .slick-prev:hover:before,
.blog-slider .slick-next:hover:before {
    filter: brightness(0);
}

.icons p {
    margin: 0;
    font-weight: 500;
    color: #666666;
}

/*blog end*/

/* Testimonial Section Start */

.client-sli .slick-slide {
    opacity: 1;
}

.client-sli .slick-prev,
.client-sli .slick-next {
    top: 2%;
}

.client-sli .slick-prev {
    left: -50px;
}

.client-box {
    margin: 0px 0;
}

.client-sli {
    position: relative;
    z-index: 1;
}

.client-box h6 {
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
}

.client-box .quotess {
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 20px;
    margin-left: 20px;
    position: relative;
    border-radius: 50%;
    align-items: center;
    margin-bottom: 50px;
    justify-content: center;
    animation: pulse 2s infinite;
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);
}


@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #dfa5a44f;
        box-shadow: 0 0 0 0 #dfa5a44f;
    }

    70% {
        -moz-box-shadow: 0 0 0 15px #dfa5a4a8;
        box-shadow: 0 0 0 15px #dfa5a4a8;
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #dfa5a44f;
        box-shadow: 0 0 0 0 #dfa5a44f;
    }
}



.client-box .quotess::before {
    z-index: 2;
    color: var(--white);
    font-size: 20px;
}

.slick-current .client-ineer-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 5%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #d29796;
    border-bottom: 0;
    margin-left: 20px;
    margin-bottom: 20px;
    transform: rotate(180deg);
    filter: drop-shadow(2px 4px 6px #00000021);
}

.slick-current .client-ineer-box {
    padding: 60px 30px;
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);
}

.client-ineer-box {
    z-index: 2;
    padding: 40px 30px;
    position: relative;
    border-radius: 10px;
    background-color: var(--white);
}

.client-ineer-box ul {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
}

.client-ineer-box ul li h4 {
    margin: 0;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.slick-current .client-ineer-box ul li h4 span {
    color: var(--white);
}

.slick-current .client-ineer-box ul li h4 {
    color: var(--white);
}

.slick-current .client-ineer-box ul li i {
    color: var(--white);
}

.client-ineer-box ul li h4 span {
    font-size: 19px;
    display: block;
    color: #000;
    text-transform: capitalize;
    margin-top: 0px;
}

.client-ineer-box ul li i {
    color: #ffb503;
    margin-right: 5px;
}

section.our-client-sec.themes-padd {
    padding: 80px 0;
}

section.our-client-sec.themes-padd .slick-track {
    margin-bottom: 30px;
}

.client-sli .slick-next {
    right: -20px;
}

.slick-current .client-ineer-box p {
    color: var(--white);
}

.slick-current .client-box {
    margin: 15px 0px;
}

.client-box {
    margin: 30px 0;
}

.client-ineer-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #0d0c0c;
}

section.our-client-sec h6 {
    font-size: 30px;
    color: #1f1f1f;
}

.progress {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 17%;
    height: 2px;
    margin: auto;
    display: block;
    overflow: hidden;
    position: absolute;
    border-radius: 5px;
    background-size: 0 100%;
    background-color: #e5e5e5;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease-in-out;
    background-image: linear-gradient(to right, #838383, #000000);
}

.client-slider .client-slider-number {
    position: relative;
    bottom: 0;
    left: 0;
}

.client-slider .client-sec:before {
    content: "";
    position: absolute;
    background: linear-gradient(287deg, #d62a3a, transparent);
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
}

.slide_counter h2 {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    height: 100%;
    gap: 270px;
    font-weight: 400;
}

span.start_number {
    margin-left: 0;
    font-size: 40px;
    font-weight: 600;
    color: #1c1b1a;
}

span.end_number {
    position: relative;
    bottom: 0;
    color: #b1b1b1;
    font-size: 35px;
    font-weight: 500;
}

.client-media ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 60px;
    margin: 0;
}

.client-media {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 15px 0 15px 28%;
}

.client-number {
    padding: 10px 0;
    position: relative;
}

.client-slider-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.client-slider-number button {
    width: 68px;
    height: 68px;
    border: none;
    display: flex;
    font-size: 20px;
    color: #3d2f27;
    border-radius: 50%;
    transition: ease-out;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition-duration: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.client-slider-number button:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}


/* Testimonial Section End */


/*Newletter Start*/

section.newletter-sec {
    background-image: -webkit-linear-gradient(35deg, var(--themeColor) 0%, var(--themeColor2) 100%);
    padding: 50px 2%;
}


.newletter-txt ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.newletter-txt ul li i {
    font-size: 60px;
    margin: 0 20px 0 0;
    color: var(--white);
}

.newletter-txt ul li p {
    margin: 0;
    color: var(--white);
}

.newletter-txt ul li h4 {
    margin: 0;
    font-size: 35px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

.newletter-in input {
    width: 100%;
    height: 60px;
    color: #000;
    padding: 0 30px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--white);
}

.newletter-in {
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.newletter-in form {
    width: 100%;
    max-width: 500px;
}

.newletter-in button {
    top: 2px;
    right: 0;
    border: 0;
    color: #fff;
    padding: 17px 50px;
    position: absolute;
    border-radius: 50px;
    background: #161616;
    text-transform: uppercase;
    border: 1px solid #161616;
}

.newletter-in input::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: #898989;
}

/*Newletter Start*/


/* footer */

a.top-navigator {
    right: 0;
    bottom: 0;
    width: 100px;
    height: 61px;
    display: flex;
    font-size: 25px;
    position: absolute;
    align-items: center;
    color: var(--white);
    justify-content: center;
    background: var(--themeColor);
}

a.top-navigator:hover {
    background: #000;
}



a.top-navigator i {
    transition: 0.3s all ease-in-out;
}

footer {
    z-index: 0;
    position: relative;
    padding: 100px 0 0 0;
    background-color: #0e0e0d;
}

.foot-bottom {
    margin-top: 40px;
    padding: 10px 7% 0px 4%;
    background: #090909;
}

.center-footer {
    padding: 0px 4%;
}


footer h5 {
    font-size: 22px;
    color: #cfcfcf;
    line-height: 40px;
    position: relative;
    padding-left: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer h5:before {
    top: 0;
    left: 0;
    width: 3px;
    content: "";
    height: 100%;
    position: absolute;
    background: var(--themeColor);
}

footer p {
    opacity: 0.5;
    font-size: 14px;
    margin: 0 0 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 24px;
    margin-right: 10px;
    box-shadow: 0 5px 15px 0px rgb(0 0 0 / 60%);
    transform: translatey(0px);
    transition: 0.3s all ease-in-out;
    overflow: hidden;
}


.social-links a:hover {
    background-color: var(--primary);
}

.quick-links a {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white);
    text-transform: uppercase;
}

.quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

a.foot-number {
    color: var(--white);
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'Cinzel';
}

.foot-number:hover {
    color: var(--primary);
}

a.req-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 0;
    border: 1px solid white;
    padding: 30px 40px;
    font-size: 16px;
    color: var(--white);
    transition: 0.3s all ease-in-out;
    margin-top: 20px;
}

a.req-btn:hover {
    background: var(--primary);
}

.foot-timing li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
    border-bottom: 1px solid #3c3c3c;
}

.foot-timing li span {
    font-size: 15px;
    color: #a8a8a8;
}

.foot-bottom p {
    color: #f9f9f9;
    text-align: end;
}

.footer-time ul li {
    gap: 20px;
    display: flex;
    align-items: center;
    padding: 10px 15px 10px 0px;
    justify-content: space-between;
    border-bottom: 1px solid #272726;
}

.footer-time ul li p {
    opacity: 0.5;
    margin-bottom: 0px;
    color: var(--white);
}

.footer-time ul li h6 {
    font-size: 16px;
    color: var(--themeColor);
}

.footer-about p {
    max-width: 280px;
}


/* footer */

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/