:root {
    --white: #fff;
    --black: #000;
    --theme-color: #7D3825;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #000;
    overflow-x: hidden;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
    .container {
        max-width: 1366px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #E0E0E0;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: #ffff;
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
    padding: 2rem;
    background: #fff;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    border-radius: 25px;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 25px;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--white);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

/*ThemeBtn CSS Start*/
.themeBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 35px;
    border: 2px solid var(--theme-color);
    background-color: var(--theme-color);
}

.themeBtn i {
    font-size: 2rem;
    transition: 0.3s ease-in-out;
}

.themeBtn:hover i {
    transform: rotate(360deg);
}

.themeBtn:hover {
    color: var(--theme-color);
    background-color: transparent;
    border: 2px solid var(--theme-color);
}

/*ThemeBtn CSS End*/
/*Home Page CSS Start*/
.banner {
    position: relative;
}

.banner .overlay {
    position: absolute;
    top: 16rem;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .overlay .bannerContnt h2 {
    font-size: 2.9rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
    margin: 0;
}

.banner .overlay .bannerContnt h2 span {
    border-bottom: 5px solid var(--theme-color);
}

.banner .bannerContnt p {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 500;
    margin: 1.4rem 0;
}

.banner .playBtn {
    position: absolute;
    top: 80%;
    left: 80%;
    transform: translate(-80%, -80%);
    background: #fff;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.6rem;
    transition: 0.3s ease-in-out;
}

.banner .playBtn i {
    color: #000;
}

.banner .playBtn:hover {
    box-shadow: 0px 0px 12px 3px #ffffffa1;
}

.secHeading {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

/*Home Page CSS End*/

/*Need Help CSS Start*/
.needBox {
    background-color: var(--theme-color);
}

.needContnt {
    margin-left: 3rem;
}

.logoSec {
    display: flex;
    align-items: center;
    gap: 2rem 0;
    flex-wrap: wrap;
}

.logoSec img {
    width: 25%;
    object-fit: contain;
    height: 80px;
}

.logoRow {
    align-items: center;
    margin: 6rem 0 0;
}

.logoRow [class*='col-'] + [class*='col-'] {
    border-left: 2px solid #3d3d3d;
}

.logoRow h2 {
    width: 70%;
}

/*Need Help CSS End*/

/*ThemeBtn2 CSS Start*/
.themeBtn2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 35px;
    border: 2px solid var(--white);
    background-color: transparent;
    margin: 2rem 0;
}

.themeBtn2 i {
    font-size: 2rem;
    transition: 0.3s ease-in-out;
}

.themeBtn2:hover i {
    transform: rotate(360deg);
}

.themeBtn2:hover {
    color: var(--white);
    background-color: var(--theme-color);
    border: 2px solid var(-- #fff);
}

/*ThemeBtn2 CSS End*/

/*About Section CSS Start*/
.abtSec {
    background-color: #1A0000;
}

.abtSec h2::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    background-color: var(--theme-color);
    width: 20%;
    height: 6px;
}

.aboutImg {
    position: absolute;
    top: 17%;
    left: 42%;
    border: 10px solid #1a0000;
}

.abtSec p {
    color: #fff;
    font-weight: 600;
    line-height: 2.3;
    margin: 2em 0;
}

.abtLogo {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.abt-img-contnt h4 {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    width: 45%;
    text-align: center;
    background: var(--theme-color);
    padding: 2rem 1rem;
}

.abt-img-contnt {
    position: absolute;
    bottom: 6.6rem;
}

/*About Section CSS End*/

/*Service Section CSS Start*/
.serviceSec {
    padding: 0;
}

.serviceSec h2::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    background-color: var(--theme-color);
    width: 20%;
    height: 6px;
}

.serviceSec ul {
    display: flex;
    align-items: center;
    gap: 0.5rem 0;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.serviceSec ul li {
    font-size: 1.375rem;
    color: #fff;
    font-weight: 500;
    width: 50%;
}

.serviceSec ul li img {
    padding-right: 0.5rem;
}

.serviceBtn {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.serviceBtn .serNum {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.serviceBtn .serNum:hover {
    color: var(--theme-color);
}

/*Service Section CSS End*/

/*Work Section CSS Start*/
.workSec {
    background-color: #1A0000;
    padding-bottom: 6rem;
}

.work-content h4 {
    font-size: 1.875rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    margin-bottom: 2rem;
}

.work-content {
    margin: -6rem 4rem 0;
}

.work-content p {
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0;
}

.workSlider .slick-prev:before {
    content: "←";
    font-size: 2rem;
    border: 2px solid #fff;
    padding: 0.2rem 1rem;
    border-radius: 50px;
}

.workSlider .slick-prev {
    left: auto;
    right: 25rem;
    top: -6rem;
    transform: none;
}

.workSlider .slick-next:before {
    content: "→";
    font-size: 2rem;
    border: 2px solid #fff;
    padding: 0.2rem 1rem;
    border-radius: 50px;
}

.workSlider .slick-next {
    right: 20rem;
    top: -6rem;
    transform: none;
}

/*Work Section CSS End*/

/*Buy Section CSS Start*/
.buySec {
    background-image: url("../images/buyBg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
}

.buySec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #7d3825e3;
}

.buy-price {
    position: absolute;
    right: 0rem;
    bottom: 2rem;
}

.buy-one {
    margin: -3rem;
}

.buySec .serviceBtn {
    margin: 0;
}

.buy-one img {
    border: 10px solid #fff;
    border-radius: 50%;
}

/*Buy Section CSS End*/

/*Reviews Section CSS Start*/
.reviewSec {
    background: #1A0000;
    z-index: -1;
    padding: 10rem 0 20rem;
}

.reviewsBox .user {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.reviewsBox p {
    font-weight: 400;
}

.reviewsBox h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1rem 0;
}

/*Reviews Section CSS End*/
/*Contact Section CSS Start*/
.contactSec {
    margin: -20rem 0 0;
}

.contactSec .getForm {
    background: var(--theme-color);
    padding: 2rem 0;
}

.contactSec input {
    margin: 2rem 0;
    width: 100%;
    height: 3rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffffff38;
    padding-left: 1rem;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.contactSec input::placeholder {
    color: #fff;
}

.contactSec textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffffff38;
    padding-left: 1rem;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.contactSec textarea::placeholder {
    color: #fff;
}

/*Contact Section CSS End*/

/*Footer CSS Start*/
footer ul li {
    color: #fff;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

footer ul li a {
    display: block;
    color: #fff;
    font-weight: 600;
}

footer ul li a:hover {
    color: var(--theme-color);
}

footer ul {
    margin: 2rem 0;
}

footer h4 {
    font-size: 1.6rem;
    font-weight: 700;
}

.copyRight p {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.copyRight {
    background: var(--theme-color);
    padding: 2rem 0 0.5rem;
}

/*Footer CSS End*/

/*Inner Pages Start*/
.abtInner {
    padding-bottom: 16rem;
}

.workInner {
    padding-bottom: 20rem;
}

.workInner figure {
    margin: 1rem 0;
}

.contactIner {
    padding-bottom: 18rem;
}

.contactInfo {
    text-align: center;
}

.contactInfo h4 {
    font-weight: 600;
    margin-top: 1rem;
}

.contactInfo a, .contactInfo p {
    color: #939393;
    font-size: 1.125rem;
}

/*Faqs Page CSS start*/
/*faqs inner page css start*/
.faqSec {
    padding: 6rem 0 18rem;
}

.faqSec .secTitle {
    text-align: center;
    margin-bottom: 3rem;
}

.faqSec .secTitle h2 {
    color: #fff;
}

.faqSec #accordion {
    border: 1px solid #3a3a3a;
    border-radius: 50px;
    background: #3a3a3a;
}

.faqSec #accordion .card {
    border: none;
    border-bottom: 1px solid #3a3a3a;
    border-radius: 50px;
    padding: rem 1rem;
    background: #3a3a3a;
}

.faqSec #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    border: 0;
    font-size: 1.25rem;
    text-align: left;
    border-radius: 5px;
    /* background-color: #363636; */
    text-decoration: none;
    overflow: hidden;
    padding-left: 1.7rem;
    border-bottom-left-radius: 0;
}

.faqSec #accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--height);
    margin-right: 2rem;
    font-size: 1.875rem;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    /* background: var(--primary); */
}

.faqSec #accordion .card .btn-link i::before {
    content: "\f068";
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #fff;
    /* background: #232323; */
}

.faqSec #accordion .card + .card {
    margin-top: 0;
}

.faqSec #accordion .card .card-body {
    padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1.83em;
    margin: 0;
    line-height: 33px;
}

/*Faqs Page CSS End*/
/*Inner Pages End*/

.loadarSec {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #3a0906 39%, #7d3825 90%);
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 1111111;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    animation: animateBg;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes animateBg {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: bisque; */
    transform: rotate(calc(18deg * var(--i)));
}

.loader span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(15px * (var(--i) / 20));
    height: calc(15px * (var(--i) / 20));
    border-radius: 50%;
    background-color: #fff;
}

.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #ddd;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 11111111;
}

.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #fff;
    opacity: .75;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 11111111;
}

footer {
    padding: 3rem 0;
}

section.abtSec.abtInner.serviceSec ul li {
    font-size: 1rem;
}