@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
    background: #1c1e1d;
}

html {
    scroll-behavior: smooth;
}

body.is-loading {
    overflow: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1e1d;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #a42926;
    pointer-events: none;
    z-index: 1000000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.25s ease;
    opacity: 0;
}

.custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
    opacity: 0;
}

.cursor-smoke {
    position: fixed;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164, 41, 38, 0.45) 0%, rgba(164, 41, 38, 0.08) 55%, rgba(164, 41, 38, 0) 100%);
    filter: blur(1px);
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%) scale(1);
    animation: cursorSmoke 0.7s ease-out forwards;
}

@keyframes cursorSmoke {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -56%) scale(2.4);
    }
}

body.custom-cursor-enabled {
    cursor: none;
}

body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled [role="button"],
body.custom-cursor-enabled input[type="submit"],
body.custom-cursor-enabled input[type="button"] {
    cursor: none;
}

body.custom-cursor-enabled .custom-cursor,
body.custom-cursor-enabled .custom-cursor-ring {
    opacity: 1;
}

body.custom-cursor-enabled.cursor-hover .custom-cursor {
    transform: translate(-50%, -50%) scale(1.4);
}

body.custom-cursor-enabled.cursor-hover .custom-cursor-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(164, 41, 38, 0.95);
}

.preloader-spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #a42926;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px), (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-ring {
        display: none;
    }

    body.custom-cursor-enabled {
        cursor: auto;
    }

    body.custom-cursor-enabled a,
    body.custom-cursor-enabled button,
    body.custom-cursor-enabled [role="button"],
    body.custom-cursor-enabled input[type="submit"],
    body.custom-cursor-enabled input[type="button"] {
        cursor: pointer;
    }
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a,
button,
[role="button"],
input[type="submit"],
input[type="button"] {
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

a,
.card-box,
.services-box,
.perfect-box,
.gallery-img img,
.theme-btn {
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(164, 41, 38, 0.35);
}

.services-box:hover,
.perfect-box:hover,
.gallery-img:hover img {
    transform: translateY(-6px);
}

.gallery-img:hover img {
    filter: brightness(1.05);
}

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: "span";
    src: url(../fonts/fonnts.com-Span-Light.otf);
}


/***** Custom Classes *****/


h1 {
    font-family: "span";
    font-size: 56px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 0px;
    text-transform: uppercase;
}

h2 {
    font-family: "span";
    font-size: 47px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 0px;
    text-transform: uppercase;
}

h3 {
    font-family: "span";
    font-size: 35px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 0px;
}

h4 {
    font-family: "span";
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h5 {
    font-family: "span";
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h6 {
    font-family: "span";
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

p {
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.502);
    line-height: 1.714;
}


/*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 {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0;
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1.714;
    transition: color 0.35s ease;
}

.menuSec ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.menuSection a.theme-btn {
    margin-left: 50px;
}

/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.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: #d9d9d9;
}

.menuSec ul li a:hover::after,
.menuSec ul li a.active::after {
    transform: scaleX(1);
}

a {}

header {
    padding: 10px 0;
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid #ffffff2e;
}

a.theme-btn {
    background-color: rgb(164, 41, 38);
    border-radius: 50px;
    padding: 16px 25px !important;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

a.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 80%);
    transform: skewX(-22deg);
    transition: left 0.55s ease;
}

a.theme-btn:hover::before {
    left: 140%;
}

a.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(164, 41, 38, 0.35);
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    right: 7%;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*header css start */


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.container-fluid {
    max-width: 1470px;
}

.banner_text span {
    font-size: 14px;
    font-family: "Montserrat";
    color: rgb(164, 41, 37);
    text-transform: uppercase;
    line-height: 1.714;
    background: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-flex;
}

.theme-btn-white {
    background: #fff !important;
    color: rgb(164, 41, 38) !important;
    border: 1px solid;
}

a.theme-btn.theme-btn-bdr-white {
    border: 1px solid;
}

.carousel-inner {
    border-bottom: 10px solid #fff;
    overflow: visible;
}

.banner-btn.mt-3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-btn a {
    width: 190px;
    text-align: center;
}

.carousel-item>img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.banner-bottom {
    margin-top: -90px;
    position: relative;
    z-index: 99;
}

.banner-scoial {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 50px;
    width: 35%;
}

.banner-scoial ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-scoial a {
    border: 1px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: 0.5s;
    justify-content: center;
}

.banner-scoial a:hover {
    box-shadow: inset 0 50px 0 0 #ffffff;
    color: rgb(164, 41, 37);
}

.banner-scoial h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.banner-scoial .diverder {
    height: 1px;
    width: 33%;
    background: #ffffff4f;
}

.banner-num {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 55%;
    background: #1c1e1d;
    padding: 50px 10px;
    border-top: 10px solid #fff;
    border-left: 10px solid #fff;
    z-index: 99999;
}


.persentage-box h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.persentage-box p {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 10px;
}


.banner-num .col {
    border-right: 1px solid #ffffff2e;
}

/*banner css end*/


.all-section {
    padding: 100px 0;
}


.how-it-work-main span {
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #ffffff30;
    border-radius: 50px;
    padding: 10px 20px;
    letter-spacing: 2px;
    display: inline-flex;
    margin-bottom: 10px;
}

.how-it-work-main {
    border-bottom: 1px solid #ffffff38;
    padding-bottom: 20px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin: 0 -15px;
}

.grid>.col-lg-4,
.grid>.col-md-6 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.card-box {
    width: 100%;
    height: auto;
    padding: 28px;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    transition: border 0.3s ease;
    border-radius: 33px;
    border: 1px solid #ffffff21;
}

.card-box.center {
    aspect-ratio: 1 / 1;
}

/* Hover pe border red */
.card-box:hover {
    border: 1px solid #a42926;
}

.gradient-box {
    background-image: -webkit-linear-gradient(90deg, rgb(166, 42, 39) 0%, rgba(164, 42, 39, 0) 100%);
    border: unset;
}

/* moving red box */
.highlight {
    position: absolute;
    border-radius: 22px;
    /* background:linear-gradient(135deg,#ff3b3b,#3a0000); */
    transition: all .35s ease;
    z-index: 0;
}

.card-box>* {
    position: relative;
    z-index: 2
}

.step {
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;
    padding: 8px 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 14px;
    color: #fff;
    transition: 0.5s;
}

.title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #7f807f;
    border-bottom: 1px solid #ffffff14;
    padding-bottom: 10px;
}

.desc p {
    font-size: 14px;
}

.desc strong {
    display: block;
    font-size: 11px;
    margin-bottom: 6px;
    color: #fff;
    font-size: 13px;
}

/* center */
.center {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a42926;
}

/* Circle with outer border */
.circle-outer {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgb(164, 41, 38);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner circle */
.circle-inner {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 130px;
    height: 130px;
    position: absolute;
    border-radius: 50%;
}

/* After line on inner circle */
.circle-inner::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 12px solid transparent;
    /* border-top-color: #a12a27; */
    border-right-color: #a12a27;
    transform: rotate(var(--rotate, 0deg));
    transition: transform 0.4s ease;
}

.circle-outer::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 13px solid transparent;
    border-right-color: #a12a27;
    transform: rotate(var(--rotate-outer, 0deg)) scale(1.5);
    clip-path: polygon(76% 40%, 100% 0, 100% 98%, 76% 53%);
    transition: transform 0.4s ease;
}

.card-box:hover .step {
    border-color: #fff;
    box-shadow: inset 0 40px 0 rgb(164, 41, 38);
}

.desc h5 {
    font-size: 13px;
    color: #fff;
}

.card-box p {
    font-size: 14px;
    margin-top: 10px;
    color: #9b9b9b;
}

.card-box.gradient-box.bottoms {
    background-image: -webkit-linear-gradient(270deg, rgb(166, 42, 39) 0%, rgba(164, 42, 39, 0) 100%);
    /* background-image: linear-gradient(270deg, rgb(166, 42, 39) 0%, rgba(164, 42, 39, 0) 100%); */
}

.card-box.gradient-box.right {
    background-image: linear-gradient(to left, rgb(151 41 38 / 0%), rgb(151 41 38 / 0%), rgb(151 41 38));
}

.card-box.gradient-box.left {
    width: 100%;
    margin: 0 0 0 auto;
    background: linear-gradient(to right, rgb(151 41 38 / 0%), rgb(151 41 38 / 0%), rgb(151 41 38));
}

/* about :start */
section.about-wrap .row {
    border-radius: 30px;
    background-color: rgb(161, 42, 39);
    padding: 50px 30px;
}

section.about-wrap .row:hover img.about-img1 {
    width: 100%;
}

.about-text h6 {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    margin: 10px 0;
    border-bottom: 1px solid #ffffff4f;
    padding-bottom: 20px;
}

.about-text p {
    margin-top: 20px;
    text-align: justify;
}

.about-img img {
    width: 100%;
}

img.about-img2 {
    height: 590px;
    object-fit: cover;
    opacity: 0.22;
    border-radius: 20px;
}

.about-img {
    width: 95%;
    position: relative;
}



img.about-img1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 86%;
    transition: 0.5s;
}

p.white {
    color: #fff;
}

/* about :end */


.services-text img {
    width: auto;
}

.services-text h3 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ffffff38;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.services-text p {
    color: #fff;
}

.services-box {}

.services-box {
    position: relative;
}

.services-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 99;
}

.services-img img {
    height: 630px;
    object-fit: cover;
    border-radius: 20px;
    object-position: center;
}

.services-slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.services-slider {
    margin-top: 50px;
}


.services-slider .slick-slide.slick-current.slick-active.slick-center {
    width: 430px !important;
}

.services-slider .slick-track {
    margin-left: 16%;
}


.services-slider .slick-slide.slick-current.slick-active.slick-center .services-box .services-img {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}


.services-slider .slick-slide.slick-current.slick-active.slick-center .services-box .services-img img {
    height: 590px;
}


.services-slider .slick-slide.slick-current.slick-active.slick-center .services-text {
    bottom: 50px;
    left: 40px;
    width: 70%;
}


.services-slider .slick-slide.slick-current.slick-active.slick-center .services-img:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: 1;
    background-image: -webkit-linear-gradient(90deg, rgb(166, 42, 39) 0%, rgba(164, 42, 39, 0) 100%);
    width: 91%;
    height: 97%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}

.services-img {
    position: relative;
}

.services-img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(90deg, rgb(0 0 0 / 69%) 0%, rgba(164, 42, 39, 0) 100%);
    border-radius: 20px;
}

section.services-wrap.all-section .container-fluid {
    max-width: 100%;
}

.perfect-img img {
    width: 100%;
    border-radius: 30px;
    height: 400px;
    object-fit: cover;
}

.perfect-box h4 {
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    width: 219px;
    height: 48px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #a12a27;
    font-family: "Montserrat", sans-serif;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.perfect-box {
    position: relative;
}
.card-box.gradient-box:hover {
    border: unset;
}



.testimonials {
  padding: 80px 0px;
}

.container {
}

.subtitle {
  letter-spacing: 2px;
  margin-bottom: 30px;
  border-bottom: 1px solid #444;
  display: inline-block;
  padding-bottom: 5px;
}

.testimonial-card {
  border-radius: 8px;
  margin: 10px;
  opacity: 1;
}

.testimonial-card h3 {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.location {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "span";
}
.rating span {
    color: #ffffff47;
}

.testimonial-card p {
  font-size: 14px;
  color: #ccc;
  background: #232525;
  padding: 22px 10px;
}

.rating {
  margin-top: 15px;
  color: #f5a623;
}

/* Slick arrows */
.slick-prev:before,
.slick-next:before {
  color: #f5a623;
}

.gallery-img img {
    border-radius: 33px;
    height: 390px;
    object-fit: cover;
    width: 100%;
}

.gallery-img {
    margin-bottom: 20px;
}

.gallery-img.gallery-img-small img {
    height: 226px;
}

.gallery-text {
    text-align: center;
    position: absolute;
    top: 34%;
    left: 0;
    right: 0;
    width: 32%;
    margin: 0 auto;
}

.gallery-text h2 span {
    display: block;
}


section.gallery-wrap .row {
    position: relative;
}
.gallery-mar {
    margin-top: 83%;
}


.footer-sec {
    padding: 80px 0% 0;
    background: #0d0d0d;
}

.footer-newsletter form {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    justify-content: space-between;
    border-bottom: 1px solid #5d5d5d5c;
}

.footer-sec .footer-newsletter h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 40px
}

.footer-newsletter {
    margin-bottom: 60px
}

.footer-newsletter form input {
    width: 100%;
    border: none;
    color: #fff;
    background-color: transparent
}

.footer-newsletter form button {
    border: none;
    color: #ffffff94;
    background-color: transparent
}

.footer-newsletter form input::placeholder {
    color: #ffffff94
}

.footer-sec h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-support ul li a {
    color: #5d5d5d;
    font-weight: 500;
    font-size: 14px
}

.footer-copy-right-sec p {
    margin-bottom: 0;
    color: #ffffffa2;
    text-align: center !important;
}

.footer-copy-right-sec {
    padding: 20px 0;
    text-align: center;
}

.footer-latest-update ul {
    gap: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center
}

.footer-latest-update ul li a {
    gap: 20px;
    display: flex;
    color: #5d5d5d;
    font-size: 16px;
    align-items: baseline;
    justify-content: flex-start
}

.footer-support ul {
    line-height: 47px;
    column-count: 2
}

.footer-logo {
    border-left: 1px solid #5d5d5d5c;
    border-right: 1px solid #5d5d5d5c;
    padding: 60px 70px 80px;
    margin: 0 20px;
    text-align: center;
}

.footer-latest-update form input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background: #282828;
    border: none;
    text-transform: uppercase;
    color: #747474;
    font-weight: 500;
    border-radius: 8px
}

.footer-latest-update,
.footer-support {
    padding-top: 60px
}

.footer-logo h2 {
    margin-bottom: 0
}

.footer-logo p {
    margin: 15px 0;
    color: #5d5d5d;
}

.footer-logo ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px
}

.footer-logo ul li a:hover {
    background: #952926;
    color: #fff;
    transition: .5s;
    border: 2px solid #952926;
}

.footer-logo ul li a {
    border: 1px solid #ffffffcb;
    color: #ffffffcb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .5s
}

.footer-logo a img {
    width: 150px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px
}
.custom-border, .footer-copy-right-sec {
    border-top: 1px solid #5d5d5d5c;
}

section.gallery-wrap {
    padding-bottom: 50px;
}