:root {
    --theme-primary-color: rgba(255, 203, 52, 1);
    --theme-secondary-color: rgba(255, 255, 255, 1);

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

    --theme-primary-text-color: rgba(12, 29, 129, 1);
    ;
    --theme-secondary-text-color: rgba(255, 255, 255, 1);
}

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

@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;
}


/* own */
.btn-main-theme,
.btn-main-theme-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-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 {
    border: 1px;
    border-style: solid;
}

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

.btn-second {
    border: 1px solid white !important;
    background-color: transparent !important;
    color: white !important;
}

@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%;
    }
} */


.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);
}

.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: 80%;
}

@media (min-width: 1024px) {
    .bubble-box.me .box {
        background-color: var(--theme-primary-color);
        color: var(--theme-primary-text-color);
        width: 65%;
    }
}

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

/* 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;
}

.primary-theme section#hero {
    position: relative;
    width: 100%;
    background-image: url(../../img/sections/hero/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.primary-theme section#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.3;
}

.primary-theme section .huge-title {
    font-family: 'Agatho', 'Open Sans';
    font-size: 120px;
    color: var(--theme-secondary-color);
    /* font-weight: bolder; */
}

.primary-theme section .huge-title.two {
    color: var(--theme-primary-text-color);
    font-size: 80px;
}

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

.primary-theme section.hero .main-title .highlight {
    color: var(--theme-primary-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 .agatho {
    font-family: 'Agatho', 'Open Sans';
}

/* 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 {
    background: white;
    /* background: linear-gradient(0deg, rgba(1, 3, 18, 1) 0%, rgba(23, 24, 28, 1) 100%); */
    color: #000000;
}

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

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

@media (max-width: 724px) {
    #hero .huge-title {
        font-size: 48px;
    }
}

#how-it-work {
    background: var(--theme-primary-color);
}

#how-it-work .step-main {
    color: white;
    margin-bottom: 15px;
    font-weight: bolder;
}

#how-it-work .step-title {
    color: #0C1D81;
    font-size: 18px;
    margin-bottom: 5px;
}

#our-services .section-desc,
#our-strength .main-title,
#our-strength .card-desc,
#how-it-work .step-desc {
    color: #727AA8;
}

#how-it-work .step-border {
    position: relative;
}

#how-it-work .step-border:last-child {
    border-color: transparent;
}

@media (max-width: 767px) {
    #how-it-work .step-left-border-xs {
        border-left: 3px solid #fff;
        padding: 0px 0px 0px 20px;
    }

    #how-it-work .step-main {
        position: absolute;
        top: -20px;
    }

    #how-it-work .step-title {
        margin-top: 20px;
    }

    #how-it-work .step-desc {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    #how-it-work .step-top-border-lg {
        border-top: 3px solid #fff;
        padding: 40px 0 0;
    }
}

#how-it-work .step-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-54%, -60%);
}

@media (min-width: 768px) {
    #how-it-work .step-circle::before {
        left: 15px;
        transform: translate(-50%, -50%);
    }

    #how-it-work .step-left-border-xs:last-child .step-circle::before {
        transform: translate(-50%, -50%);
    }
}

#our-strength .main-title {
    font-size: 24px;
}

#our-services {
    background-image: url('../../img/sections/our-services/bg-mobile.png');
    background-repeat: round;
    background-size: cover;
}

@media (min-width: 1024px) {
    #our-services {
        background-image: url('../../img/sections/our-services/bg.png');
        background-repeat: no-repeat;
        background-size: cover;
    }
}

#our-services .section-title {
    font-size: 28px;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-contain {
    background-size: contain;
}

@media (max-width: 724px) {
    .btn-mobile-fix {
        max-width: 270px;
        width: 100%;
    }
}
