/* import fonts here */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* import fonts here */


/* basic css*/

/* for linear transtion */

.swiper__marquee__slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* for linear transtion */

:root {
    --primary-color: #D9D9D9;
    --secondary-color: #BBB;
    --white: #fff;
    --black: #000;
    --roboto-font: "Roboto", sans-serif;
    --crimpson-font: "Crimson Text", serif;
    --square-peg-font: "Square Peg", cursive;
    --transition: .5s;
}

body {
    font-family: var(--roboto-font);
    background-color: var(--black);
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--crimpson-font);
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

input,
textarea {
    outline: none;
}

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

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1340px;
    padding-inline: 30px;
    margin-inline: auto;
}

/* basic css */



/* extra css start here */

.section__title>span {
    border-radius: 10px;
    border: 1px solid var(--white);
    padding: 10px 16px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--white);
    transition: var(--transition);
}

.section__title a:hover {
    background: var(--white);
    color: var(--black);
}

.section__title h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    margin-bottom: 6px;
}

.section__title p {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

.section__title {
    padding-bottom: 90px;
}

/* extra css end here */



/* header area start here */

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding-block: 60px 20px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header__navigation ul {
    display: flex;
    gap: 40px;
}

.header__navigation ul li a {
    display: flex;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

/* hover,focus and active css */

.header__navigation ul li a.active {
    color: var(--white);
}

.header__navigation ul li a.active::after {
    transform: scaleX(1);
}

.header__navigation ul li a:hover,
.header__language__select .nice-select:hover span,
.header__language__select .nice-select:hover::after {
    color: var(--white);
}

.header__navigation ul li a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    width: 100%;
    transition: transform var(--transition);
}

.header__navigation ul li a:hover::after {
    transform: scaleX(1);
}

.call__number:hover svg path {
    stroke: var(--white);
    fill: var(--white);
}

.call__number svg,
.call__number path {
    transition: var(--transition);
}

.header__language__select .nice-select .option:hover,
.header__language__select .nice-select .option.focus,
.header__language__select .nice-select .option.selected.focus {
    backdrop-filter: blur(21px);
    background: rgba(189, 184, 184, 0.23);
    color: var(--white);
}


/* hover,focus and active css */

.header__extra {
    gap: 30px;
}

.header__language__select .nice-select span,
.header__language__select .nice-select ul li {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    transition: var(--transition);
}

.header__language__select .nice-select .list {
    width: 200px;
    background: rgb(150, 150, 150, .3);
    backdrop-filter: blur(6px);
    left: -70px;
}

.header__language__select .nice-select .option {
    min-height: unset;
    padding: 10px;
}

.header__language__select .nice-select::after {
    position: absolute;
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    border: none;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    font-size: 20px;
    color: var(--secondary-color);
}

.header__language__select .nice-select {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: unset;
    padding-right: 20px;
    width: 50px;
}

.header__language__select .nice-select.open::after {
    transform: translateY(-50%) rotate(-180deg);
}

/* header area end here */



/* hero area start here */

.hero__area {
    background: url(../img/hero-bg.png) no-repeat center center/cover;
    position: relative;
    height: 100vh;
}


.hero__text h1 {
    color: #D9D9D9;
    font-size: 80px;
    font-weight: 600;
    line-height: normal;
    margin-block: 4px;
}

.hero__text p {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 45px;
}

.hero__whatsup {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero__whatsup:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* hero area end here */



/* estate area start here */

.estate__area {
    padding-top: 200px;
    overflow: hidden;
}

.vertical__bar {
    width: 2px;
    height: 120px;
    background: rgba(139, 58, 58, 0.60);
    margin: 75px auto;
    margin-top: 25px;
    margin-bottom: 0;
}

.single__estate {
    padding-bottom: 100px;
    width: 30.4%;
}

.estate__text h5 {
    color: var(--white);
    font-family: var(--roboto-font);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 6px;
}

.estate__text p {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 27px;
}

.theme__btn1 {
    border-radius: 12px;
    border: 1px solid rgba(139, 58, 58, 0.60);
    background: rgba(139, 58, 58, 0.30);
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.theme__btn1:hover {
    background: rgba(139, 58, 58, .5);
    color: #fff;
}

.theme__btn1 .arrow__right {
    display: block;
    transition: var(--transition);
}

.theme__btn1:hover .arrow__right {
    transform: translateX(5px);
}

.estate__text {
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    z-index: 2;
}

.estate__top__bar {
    gap: 10px;
    border-radius: 6px;
    background: var(--black);
    padding: 12px 18px;
    justify-content: center;
    position: absolute;
    top: 25px;
    right: 52px;
    left: 52px;
    z-index: 2;
}

/* swiper sider */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper {
    border-radius: 10px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single__estate img:hover {
    transform: scale(1.2);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition) ease-in-out;
}

.mySwiper1 .swiper-button-prev::after,
.mySwiper1 .swiper-button-next::after {
    display: none;
}

.mySwiper1 .swiper-button-prev:hover,
.mySwiper1 .swiper-button-next:hover {
    background: rgba(255, 255, 255, .4);
}

.mySwiper1 .swiper-button-prev,
.mySwiper1 .swiper-button-next {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 22px;
    z-index: 9;
    transition: var(--transition);
}

/* swiper sider */

/* estate area end here */



/* promises area start here */

.promises__content {
    padding: 60px;
    background: #201F1F;
    border-radius: 12px;
}

.promise__area {
    padding-top: 75px;
    padding-bottom: 90px;
}

.single__promise {
    width: 30%;
}

.promise__title h2 {
    color: var(--white);
    font-family: var(--roboto-font);
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 6px;
}

.promise__gradiant__box h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: var(--white);
    font-family: var(--roboto-font);
    margin-bottom: 6px;
}

.promise__gradiant__box p,
.promise__title p {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.promise__gradiant__box {
    padding: 30px;
    height: 144px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.promise__gradiant__box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, #414141 0%, #201f1f 80%);
    border-radius: 12px;
    z-index: -2;
}

.promise__gradiant__box::after {
    position: absolute;
    content: '';
    background: #201F1F;
    border-radius: 12px;
    inset: 1px;
    z-index: -1;
}

/* promises area end here */



/* team area start here */

.team__area {
    padding-block: 90px;
    overflow: hidden;
}

.team__active .owl-item {
    transform: scale(0.8);
    transition: var(--transition);
}

.team__active .owl-item.center {
    transform: scale(1);
}

.team__member__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.owl-item.center .member__social:hover img {
    filter: brightness(240%);
}

.owl-item .member__social img {
    filter: brightness(90%);
    transition: var(--transition);
}

.team__member__info a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 6px;
    display: inline-block;
}

.team__member__info p {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
}


.team__active .owl-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #8B3A3A !important;
    border-radius: 100px;
}

.team__active .owl-dot.active {
    background: #451D1D;
}

.team__active .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-block: 45px 60px;
}

.member__social {
    display: block;
    width: 25px;
    position: absolute;
    top: 18px;
    right: 18px;
}

/* team area end here */



/* service area start here */

.service__area {
    padding-block: 180px;
    background: #201F1F;
    overflow: hidden;
}

.service__flex {
    margin-bottom: 60px;
    row-gap: 60px;
}

.single__service {
    width: 30%;
    padding: 39px 45px;
    position: relative;
    border-radius: 12px;
    z-index: 2;
}

.single__service .service__icon {
    margin-bottom: 30px;
    display: block;
}

.single__service h5 {
    color: var(--white);
    font-family: var(--roboto-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 6px;
    border-radius: 12px;
}

.single__service p {
    color: var(--secondary-color);
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.single__service::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to bottom, #414040 0%, #201f1f 75%);
    border-radius: 12px;
    z-index: -2;
}

.single__service::after {
    position: absolute;
    content: '';
    background: #201F1F;
    inset: 1px;
    border-radius: 12px;
    z-index: -1;
}

/* service area end here */



/* project area start here */

.project__area {
    padding-block: 180px;
    overflow: hidden;
}

.project__content__container {
    display: flex;
    flex-direction: column;
    gap: 190px;
}

.project__text span {
    display: inline-block;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    padding: 8px 16px;
    margin-bottom: 18px;
    font-size: 10px;
    text-transform: uppercase;
}

.project__text h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 6px;
}

.project__text p {
    color: var(--secondary-color);
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
}

.project__link .whatsup__link {
    border-radius: 10px;
    border: 1px solid rgba(139, 58, 58, 0.60);
    background: rgba(139, 58, 58, 0.15);
    padding: 14px 22px;
}

.project__link .whatsup__link:hover {
    border-color: rgba(139, 58, 58);
    background: rgba(139, 58, 58, .5);
}

.project__link a {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 22px;
    color: #E5E5E5;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 12px;
}

.project__link a:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.project__info {
    width: 54.7%;
}

.project__image {
    width: 37.5%;
}

.image__wrapper {
    border-radius: 12px;
}

.image__wrapper img {
    transition: transform var(--transition) ease-in-out;
}

.image__wrapper:hover img {
    transform: scale(1.2);
}

.camera__icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    top: 20px;
    right: 20px;
    position: absolute;
    transition: var(--transition);
}

.camera__icon:hover {
    background: rgba(255, 255, 255, .4);
}

/* project area end here */



/* about area start here */

.about__area {
    background: url(../img/about-bg.png) no-repeat center center/cover;
    padding-top: 180px;
}

.about__content .section__title p {
    color: var(--white);
}

.about__flex {
    row-gap: 60px;
}

.single__about {
    border-radius: 12px;
    padding: 45px 60px 60px 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 60%, rgba(255, 255, 255, 0.00) 100%);
    position: relative;
    z-index: 2;
    width: 47.7%;
    border: 1px solid rgba(255, 255, 255, .1);
}

.about__heading__info span {
    color: var(--white);
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 3px;
    display: block;
}

.about__heading__info p {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.single__about__heading {
    margin-bottom: 60px;
}

.single__about__text p {
    color: #D0D0D0;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 30px;
    min-height: 120px;
}

.about__more a {
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 12px;
    display: inline-flex;
    position: relative;
}

.about__more a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--white);
    bottom: 0;
    left: 0;
}

.about__group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 830px;
    margin: 0 auto;
    margin-top: 90px;
}

.about__group a {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    display: flex;
    gap: 6px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.about__vertical__bar {
    width: 2px;
    height: 180px;
    background: rgba(139, 58, 58, 0.40);
    margin: 0 auto;
    margin-top: 90px;
}

/* about area end here */



/* brand area start here */

.brand__area {
    padding-block: 90px 120px;
}

.brand__flex {
    row-gap: 60px;
}

.single__brand {
    width: 21.5%;
    height: 120px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #272727 0%, #000 80%);
    border-radius: 12px;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.single__brand img {
    transition: var(--transition);
}

.single__brand a:hover img {
    transform: scale(1.2);
}

.single__brand::after {
    position: absolute;
    content: '';
    inset: 1px;
    background: #000;
    border-radius: 12px;
    z-index: -1;
}

.brand__more {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 6px;
    display: inline-flex;
    border-bottom: 1px solid var(--secondary-color);
    margin-top: 90px;
}

.brand__more:hover {
    color: var(--white);
    border-color: var(--white);
}

/* brand area end here */



/* faq area start here */

.faq__area {
    background: #201F1F;
    padding-block: 180px;
}

.faq__area .section__title {
    max-width: 600px;
    margin: 0 auto;
}

.accordion__left {
    width: 46.6%;
}

.accordion__right {
    width: 46.6%;
}

.faq__accordion .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-size: 20px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq__accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.faq__accordion .accordion-item {
    background: transparent;
    padding: 30px 0;
    border: none;
    border-bottom: 1px solid #3F3F3F;
    border-radius: 0;
    margin-bottom: 30px;
}

.faq__accordion .accordion-body {
    padding: 0;
    padding-top: 6px;
}

.faq__accordion .accordion-body p {
    color: var(--secondary-color);
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.faq__accordion .accordion-item .accordion-button {
    color: var(--white);
    font-family: var(--roboto-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.more__faq {
    margin-top: 60px;
}

/* faq area end here */



/* contact area start here */

.contact__area {
    padding-block: 180px;
    overflow: hidden;
}

.contact__content {
    border-radius: 12px;
    background: #201F1F;
}

.single__contact {
    width: 50%;
}

.contact__form {
    padding: 90px;
}

.contact__wrapper {
    background: url(../img/contact-bg.png) no-repeat center center/cover;
    padding-block: 100px 143px;
    padding-inline: 90px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 100%;
}

.our__location h1,
.our__contact h1 {
    color: var(--white);
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
    font-family: var(--roboto-font);
    margin-bottom: 12px;
}

.our__location address p {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.our__contact__number a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.our__contact__number a:hover {
    color: var(--white);
}

.our__contact__number {
    gap: 10px;
}

.contact__form__title h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}

.contact__form__title p {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 45px;
}

.our__location,
.our__contact {
    border-left: 1px solid #494949;
    padding-left: 45px;
    position: relative;
}

.our__location::after,
.our__contact::after {
    position: absolute;
    content: '';
    width: 3px;
    background: var(--white);
    height: 38px;
    left: -2px;
    top: 0;
}

.our__contact__number span {
    display: flex;
}

.our__social a {
    color: var(--white);
    font-size: 20px;
}

.our__social {
    display: flex;
    gap: 20px;
}

.contact__form form label {
    color: #E5E5E5;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    display: block;
}

.input__container input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #E5E5E5;
    width: 100%;
}

.contact__form form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single__input {
    width: 48%;
}

.input__checkbox {
    gap: 12px;
}

.input__sumbit button,
.input__sumbit button svg {
    transition: var(--transition);
}

.input__sumbit button:hover svg {
    transform: translateX(5px);
}

.input__checkbox input {
    display: none;
}

.input__checkbox label {
    position: relative;
    padding-left: 28px;
}

.input__checkbox label::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.input__checkbox label::before {
    content: '';
    position: absolute;
    border-top: 2px solid var(--secondary-color);
    width: 15px;
    transform: rotate(140deg);
    left: 5px;
    top: 5px;
    background: #201F1F;
    z-index: 9;
    height: 7px;
    border-right: 2px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
}

.input__checkbox input:checked+label::before {
    opacity: 1;
    visibility: visible;
}

/* contact area end here */



/* footer area start here */

.footer__content {
    background: url(../img/footer-bg.png) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    gap: 210px;
    padding: 179px 119px 119px;
    margin: 0px 1px 0;
    position: relative;
    z-index: 9;
    border-radius: 12px;
    background-color: var(--black);
}

.footer__border {
    background: linear-gradient(to bottom, #262626 0%, #000 80%);
    border-radius: 12px;
    padding-top: 1px;
}

.footer__logo img {
    width: 87px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.footer__main h1 {
    color: var(--white);
    font-size: 32px;
    font-weight: 400;
    line-height: 55px;
}


.footer__privacy__menu {
    display: flex;
}

.footer__credit p,
.footer__privacy__menu a {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin-right: 24px;
}

.footer__privacy__menu a:hover {
    color: rgba(139, 58, 58, 1);
}

.language__menu {
    position: absolute;
    background: #111111;
    width: 230px;
    left: -186px;
    max-height: 0px;
    overflow: hidden;
    transition: .5s;
    bottom: 30px;
    border-radius: 12px;
}

.language__menu.open {
    max-height: 200px;
}

.footer__credit {
    padding: 0 85px;
}

.footer__dropdown {
    position: relative;
    cursor: pointer;
}

.language__menu ul li a {
    color: var(--secondary-color);
    padding: 10px;
    display: block;
    border-bottom: 1px solid #1b1a1a;
}

.language__menu ul li a:hover {
    color: var(--white);
    background: #402828;
}

.language__menu ul li:last-child a {
    border: none;
}

.angle__down__logo {
    margin-left: 3px;
    color: var(--secondary-color);
    display: inline-flex;
    width: 15px;
    height: 15px;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.language__dropdown:hover svg path {
    stroke: rgb(139, 58, 58);
}

.language__dropdown svg path {
    transition: var(--transition);
}

.language__dropdown:hover .angle__down__logo {
    color: rgba(139, 58, 58, 1);
}

.language__dropdown.active .angle__down__logo {
    transform: rotate(-180deg);
}

/* footer area end here */








/* offcanva start here */

.offcanvas-header {
    padding-top: 35px;
    padding-right: 20px;
}

.offcanva__open {
    background: transparent;
    border: none;
    color: #D9D9D9;
    font-size: 25px;
    height: 22px;
    width: 22px;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#offcanvasWithBothOptions {
    background: rgba(32, 31, 31, 1);
}

.offcanvas-body .header__navigation ul {
    flex-direction: column;
    gap: 0;
}

.offcanvas-body .header__navigation ul li a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body .header__navigation ul li a:hover {
    padding-left: 20px;
}

.offcanvas-body .header__navigation ul li a.active {
    padding-left: 20px;
}

.offcanvas-body .header__navigation ul li a::after {
    transform-origin: left;
}

.offcanva__close {
    background: transparent;
    border: 2px solid var(--white);
    width: 40px;
    height: 40px;
    color: var(--white);
    border-radius: 100px;
    font-size: 22px;
    transition: var(--transition);
}

.offcanva__close:hover {
    background: var(--white);
    color: var(--black);
}

.offcanvas-body {
    padding-top: 49px;
}

/* offcanva end here */



.swiper__marquee__slider {
    width: 100%;
}

.card__mobile__slider {
    margin-bottom: 60px;
}

.vbox-bottom {
    display: none !important;
}

.vbox-num {
    padding: 50px 100px;
}

.vbox-close {
    padding: 50px 100px;
}

.vbox-next {
    right: 100px;
}

.vbox-prev {
    left: 100px;
}

.estate__slider .swiper-slide .single__estate {
    width: 100%;
}

#scrollUp {
    right: 20px;
    bottom: 20px;
    background: rgba(139, 58, 58, 0.30);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #6D3333;
    color: #fff;
    font-size: 25px;
    border-radius: 12px;
}

#scrollUp:hover {
    background: rgba(139, 58, 58, .6);
}

.brand__extra__row .brand__extra__flex {
    max-height: 0px;
    overflow: hidden;
    transition: var(--transition);
}

.brand__extra__row.active .brand__extra__flex {
    max-height: 180px;
    padding-top: 60px;
}

.brand__sliders {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* tywriter css start here */

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.typewriter {
    color: #DDC991;
    font-family: var(--roboto-font);
    font-size: 32px;
    font-weight: 300;
    height: 50px;
    line-height: normal;
}

.loader__type.typewriter {
    color: #fff;
    font-family: var(--roboto-font);
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: #fff;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        background-color: transparent;
    }

    50% {
        background-color: #fff;
    }
}

/* typewriter css end here */




.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
}

/* Hide the loader smoothly */
.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}



.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.whatsup__fixed {
    bottom: 20px;
    background: rgba(139, 58, 58, 0.30);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #6D3333;
    color: #fff;
    font-size: 25px;
    border-radius: 12px;
    position: fixed;
    right: 80px;
    z-index: 999999;
}

.whatsup__fixed:hover {
    background: rgba(139, 58, 58, 0.6);
}
.about__area .section__smoke__effect {
	opacity: 0.07;
}
.section__smoke__effect {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .15;
}
.section__smoke__effect img{
    width: 100%;
    height: 100%;
}


.onlyfrmbl {
    display: none;
}


.about__area:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #000000 100%);
    bottom: 0px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 99999;
  }
  .about__content {
    position: relative;
    z-index: 9999999999999;
  }

  
.header__logo img {
	max-width: 200px;
}