:root {
    --theme-primary-color: #c3a489;
    --theme-secondary-color: rgba(255, 255, 255, 1);

    --theme-primary-bg-color: rgba(251, 249, 245, 1);
    --theme-secondary-bg-color: rgba(255, 255, 255, 1);
    --theme-main-bg-color: rgba(251, 249, 245, 1);

    --theme-primary-text-color: rgba(0, 0, 0, 1);
    --theme-secondary-text-color: rgba(0, 0, 0, 1);
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
        url('fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('fonts/OpenSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agatho';
    src: url('fonts/AgathoRegular.woff2') format('woff2'),
        url('fonts/AgathoRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* own */
.btn-main-theme,
.btn-secondary-theme,
.btn-main-theme-outline,
.btn-main-secondary-outline {
    border-radius: 1.75rem !important;
    border: 0;
}

.btn-main-theme {
    background-color: var(--theme-primary-color) !important;
    color: var(--theme-primary-text-color) !important;
}

.btn-secondary-theme {
    background-color: var(--theme-secondary-color) !important;
    color: var(--theme-secondary-text-color) !important;
}

.btn-main-theme-outline {
    border-color: var(--theme-primary-color) !important;
    background-color: transparent !important;
    color: var(--theme-primary-color) !important;
}

.btn-main-theme-outline.with-border,
.btn-secondary-theme-outline.with-border {
    border: 1px;
    border-style: solid;
}

@media (max-width: 724px) {
    .btn-main-theme-outline {
        background-color: #000000 !important
    }
}

.bg-main {
    background-color: var(--theme-main-bg-color);
}

.main-gradient {
    background: #F5F7FB;
}

.second-gradient {
    background: rgba(248, 247, 252, 1);
    background: linear-gradient(90deg, rgba(248, 247, 252, 1) 100%);
}

@media (min-width: 1024px) {
    .main-gradient {
        background: linear-gradient(180deg, rgba(245, 247, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .bg-main.main-gradient {
        background: linear-gradient(180deg, rgba(245, 247, 251, 1) 0%, var(--theme-main-bg-color) 100%);
    }

    .second-gradient {
        background: #FFFFFF;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 60%, rgba(236, 230, 232, 1) 70%, rgba(248, 247, 252, 1) 100%);
    }
}

.box-shadow-bottom {
    box-shadow: -1px 149px 48px 35px rgba(0, 0, 0, 0.24) inset;
}

.box-shadow-center {
    --transform-x: -10%;
    --transform-y: -35%;
    background: var(--theme-secondary-color);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, var(--theme-secondary-color) 15%);
    width: 480px;
    height: 470px;
    border-radius: 50%;
    border-width: 1px;
    border-color: rgb(255, 224, 87);
    transform: translate(var(--transform-x), var(--transform-y));
    box-shadow: 0rem 0rem 15rem 4rem rgb(255, 224, 87) inset;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* @media (min-width: 1600px) {
    .box-blue-shadow-center {
        --transform-y: -45%;
    }
} */

.bubble-box .box {
    border: var(--theme-primary-color) 1px solid;
    border-radius: 30px;
    position: relative;
}

.bubble-box .box::after {
    content: "";
    position: absolute;
    bottom: -20px;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #0c0c1d transparent transparent transparent;
}

.bubble-box.you .box {
    background-color: var(--theme-primary-bg-color);
}

.bubble-box.you .box::after {
    left: 20px;
    border-top-color: var(--theme-primary-color);
    z-index: 1;
}

.bubble-box.you .box::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 22px;
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: var(--theme-primary-bg-color) transparent transparent transparent;
    z-index: 2;
}

.bubble-box.me .box {
    background-color: var(--theme-primary-color);
    color: var(--theme-primary-text-color);
    width: 90%;
}

.bubble-box.me .box::after {
    right: 20px;
    border-top-color: var(--theme-primary-color);
}

@media (min-width: 1024px) {
    .bubble-box.me .box {
        width: 70%;
    }
}

/* theme */
body.primary-theme {
    background-color: var(--theme-primary-bg-color);
    color: var(--theme-secondary-text-color);
    font-family: 'Open Sans';
}

/* header */
.primary-theme header .nav {
    --bs-nav-link-padding-x: 2rem;
    --bs-nav-link-padding-y: 0.75rem;
    text-transform: uppercase;
}

.primary-theme header .nav.nav-pills {
    --bs-nav-pills-border-radius: 0;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: transparent !important;
}

.primary-theme header .nav .nav-link,
.primary-theme header .nav .nav-link:focus,
.primary-theme header .nav .nav-link:hover {
    --bs-link-color: #fff;
    --bs-nav-link-color: #fff;
    --bs-nav-link-hover-color: #fff;
}

.primary-theme header .nav .nav-link.btn-main-theme {
    background-color: var(--theme-primary-color);
    border-radius: 1.25rem;
}

/* footer */
.primary-theme footer {
    font-size: 1.25rem;
}

.primary-theme footer a {
    color: var(--theme-secondary-text-color);
    text-decoration: none;
}

/* header.container-fluid {
    background-image: url(../../img/sections/heros/hero.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 -100px;
} */

.primary-theme section#hero {
    background-image: url(../../img/sections/heros/hero.png);
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
    .primary-theme section#hero {
        min-height: 60vh;
    }
}

@media (min-width: 1440px) {
    .primary-theme section#hero {
        min-height: 80vh;
        background-position: 0 80%;
    }
}

.primary-theme section#hero .bg-image {
    right: 0;
    left: 0;
    top: -118px;
    z-index: -1;
    width: 100%;
    background-image: url(../../img/sections/heros/hero.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.primary-theme section .huge-title {
    font-size: 32px;
    color: var(--theme-secondary-color);
    font-family: 'Agatho', 'OpenSans-Regular', 'Courier New', Courier, monospace;
}

@media (min-width: 1024px) {
    .primary-theme section .huge-title {
        font-size: 52px;
    }
}

@media (min-width: 1440px) {
    .primary-theme section .huge-title {
        font-size: 78px;
    }
}

.primary-theme section.hero .bg-image img {
    visibility: hidden;
}

.primary-theme section.hero .main-title .highlight {
    color: var(--theme-secondary-color);
}

.primary-theme section.hero .main-title .highlight.two {
    color: var(--theme-secondary-color);
}

/* hero - bg-white */
.primary-theme section.hero.bg-white,
.primary-theme section.hero.bg-main {
    color: var(--theme-primary-text-color);
}

.primary-theme section#our-services {
    background-image: url(../../img/sections/our-services/our-services.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: 0 -118px; */
}

@media (min-width: 1024px) {
    .primary-theme section#our-services {
        min-height: 50vh;
    }
}

@media (min-width: 1440px) {
    .primary-theme section#our-services {
        min-height: 70vh;
        background-position: 0 80%;
    }
}

.primary-theme .hero#our-services .bg-image {
    right: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    background-image: url(../../img/sections/our-services/our-services.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.primary-theme .hero#our-services .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 100%;
}

.primary-theme .hero#our-services .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.primary-theme .hero#our-services .service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: black;
    padding: 1rem 0.5rem;
}

.primary-theme .hero#our-services .service-text h5 {
    /* font-weight: 700; */
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.primary-theme .hero#our-services .service-text p {
    font-size: 0.75rem;
    margin: 0;
    color: rgba(111, 111, 111, 1);
    text-transform: capitalize;
}

@media (min-width: 1440px) {
    .primary-theme .hero#our-services .service-text {
        bottom: 30px;
        width: 70%;
        padding: 1.5rem 1rem;
    }

    .primary-theme .hero#our-services .service-text h5 {
        font-size: 24px;
    }

    .primary-theme .hero#our-services .service-text p {
        font-size: 0.95rem;
    }
}

.primary-theme section#faq {
    background-image: url(../../img/sections/faqs/faq.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: 0 -118px; */
}

@media (min-width: 1024px) {
    .primary-theme section#faq {
        min-height: 50vh;
    }
}

@media (min-width: 1440px) {
    .primary-theme section#faq {
        min-height: 70vh;
        background-position: 0 80%;
    }
}

.primary-theme .hero#faq .bg-image {
    right: 0;
    left: 0;
    z-index: -1;
    background-image: url(../../img/sections/faqs/faq.png);
}

.primary-theme .hero#why-choose-us .main-bg {
    background-image: url(../../img/sections/why-choose-us/why_choose_us.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 25vh;
    background-position: 0% 50%;
}

@media (min-width: 1440px) {
    .primary-theme .hero#why-choose-us .main-bg {
        min-height: 100vh;
    }
}

/* hero - bg-white with-gradient*/

/* others */
@media (min-width: 1400px) {
    .display-7 {
        font-size: 4rem;
    }
}

@media (min-width: 1600px) {
    .display-7 {
        font-size: 5rem;
    }
}

/* carousel */
.carousel-indicators {
    position: relative;
    justify-content: left;
    margin-left: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--theme-primary-bg-color);
    height: 3px;
    border: 2px solid var(--theme-primary-bg-color);
    border-radius: 5px;
    width: 20px;
}

.carousel-indicators .active {
    opacity: 1;
    width: 60px;
}

.carousel-control-next {
    transform: translate(50%, 0);
}

.carousel-control-next-icon {
    background-image: url('../../img/arrownext.svg');
}

#contact-us .box {
    background: linear-gradient(to bottom, #c3a489 0%, #000000 100%);
}

#contact-us-form input.form-control,
#contact-us-form textarea.form-control,
#contact-us-form select.form-control {
    background-color: transparent;
    color: black;
}

#contact-us-form select.form-control {
    border-color: var(--theme-primary-color);
}

.with-contain-no-repeat-bg-image {
    background-size: contain;
    background-repeat: no-repeat;
}

.z--1 {
    z-index: -1;
}

.font-family-Agatho {
    font-family: 'Agatho', 'OpenSans-Regular', 'Courier New', Courier, monospace !important;
}
