:root {
    --primary-red: #E74C3C;
    --light-primary-red: #FCD0CC;
    --light-primary-red-hover: #fbbeb9;
    --secondary-orange: #cd493a;
    --subtle-red: #FDE5E3;
    --bs-darken-red: #7B2921;
    --bs-white: #FFFFFF;
    --bs-subtle-white: #F4F4F4;
    --bs-gray-500: #A1A5B7;
    --bs-gray-800: #3F4254;
    --bs-gray-700: #5E6278;
    --bs-gray-200: #F4F4F4;
    --bs-black-energeek: #212529 !important;
    --bs-black: #00000017;
    --bs-dark-energeek: #303030;
}

html {
    scroll-behavior: smooth !important;
}


body {
    font-family: "Inter", sans-serif;
    background: #F9F9F9;
}

/* begin::background */
.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.bg-primary-dark-red {
    background-color: var(--bs-darken-red) !important;
}

.bg-light-primary-red {
    background-color: var(--light-primary-red);
}

.bg-black-energeek {
    background-color: var(--bs-black-energeek) !important;
}

.bg-dark-energeek {
    background-color: var(--bs-dark-energeek) !important;
}

.bg-black-custom {
    background: var(--bs-black) !important;
}

.bg-gray-700 {
    background-color: var(--bs-gray-700) !important;
}

.bg-gray-200 {
    background-color: var(--bs-gray-200) !important;
}

.bg-subtle-red {
    background-color: var(--subtle-red) !important;
}

/* end::background */

.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-secondary-orange {
    background-color: var(--secondary-orange) !important;
}

.text-secondary-orange {
    color: var(--secondary-orange) !important;
}

.text-gray-800 {
    color: var(--bs-gray-800) !important;
}

.text-gray-700 {
    color: var(--bs-gray-700) !important;
}

.text-gray-500 {
    color: var(--bs-gray-500) !important;
}

.text-justify {
    text-align: justify;
}

.btn-primary-red {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.btn-light-primary-red {
    background-color: var(--light-primary-red);
    border-color: var(--primary-red);
    color: var(--primary-red);
    padding: 10px 20px;
}

.btn-primary-red:hover {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.btn-light-primary-red:hover {
    background-color: var(--light-primary-red-hover);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-pill {
    border-radius: 20px;
}

.hero-section {
    background: #F9F9F9;

    padding: 100px 0 80px 0 !important;
}

@media(max-width:991px) {
    .hero-section {
        padding-top: 70px !important;
        padding-bottom: 50px !important
    }

}

.about-section {
    background: #146C71
}

.services-section {
    background: #146C71
}

.team-section {
    background: #146C71
}

.blog-section {
    background: #146C71
}

.portfolio-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-orange) 100%);
}

.contact-section {
    background: #146C71
}

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.our-client img {
    filter: grayscale(100%);

}

.our-client img:hover {
    filter: unset !important;
}

.text-white {
    color: #fff !important;
}

.stats-section .text-muted {
    font-size: 14px !important;
}

.text-small-custom {
    font-size: 14px !important;
}

.navbar-nav .nav-item {
    padding: 15px 10px;
}

.navbar-nav .nav-item:last-child {
    padding-right: 0 !important;
}

.text-gray-custom {
    color: #A1A5B7;
}

.text-gray-500 {
    color: #A1A5B7;
}

.text-subgray-custom {
    color: #5E6278;
}

.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Maksimal 2 baris */
    -webkit-box-orient: vertical;
}

.navbar-nav .nav-link {
    font-size: 14px !important;
    color: #A1A5B7;
    padding: 5px 15px !important;
    font-weight: 500;
}

.navbar-nav .nav-item {
    padding: 0 5px !important;
}

@media(max-width:991px) {
    .navbar-nav .nav-link.active {
        background-color: var(--primary-red) !important;
        color: #fff !important;
        font-weight: 500;
        border-radius: 100px;
    }

    .navbar-nav .nav-item {
        padding: 5px 0 !important;
    }

    .navbar-nav .nav-link {
        padding: 5px 10px !important;
    }
}

@media(min-width:992px) {
    .navbar-nav .nav-link.active {
        background-color: var(--primary-red) !important;
        color: #fff !important;
        font-weight: 500;
        border-radius: 100px;
    }
}

@media(max-width:991px) {

    .hero-image-section {
        position: static !important;
        height: unset !important;
        padding-top: 0 !important;
    }

    .hero-image-section img {
        width: 100%;
    }
}


.show-on-mobile {
    display: none !important;
}

.show-on-desktop {
    display: block !important;
}

@media(max-width:991px) {
    .show-on-mobile {
        display: block !important;
    }

    .show-on-desktop {
        display: none !important;
    }
}

.vector-right-header {
    right: 0;
    width: 300px;

    z-index: 1;
}

.vector-left-header {
    left: 0;
    width: 400px;
    margin-bottom: 150px;
    z-index: 1;
}

@media(max-width:991px) {
    .vector-right-header {
        width: 200px;

    }

    .vector-left-header {
        width: 300px;
        left: 0;
        margin-bottom: 100px;
    }
}

@media(max-width:767px) {
    .vector-right-header {
        width: 150px;
    }

    .vector-left-header {
        width: 200px;
        left: 0;
        margin-bottom: 50px;
    }
}

@media (max-width:575px) {
    .vector-right-header {
        width: 100px;
    }

    .vector-left-header {
        width: 150px;
        left: 0;
        margin-bottom: 30px;
    }
}

.row-header .col-lg-4:first-child {
    padding-right: 10px;

    padding-left: 0 !important;
}

.row-header .col-lg-4:first-child .bg-primary-red {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.row-header .col-lg-4:last-child .bg-primary-red {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

}

.row-header .col-lg-4:nth-child(2) .bg-primary-red {
    border-radius: 10px;
}

.row-header .col-lg-4:last-child {
    padding-left: 10px;

    padding-right: 0 !important;
}

.row-header .col-lg-4 {
    padding: 0 10px;
}

@media(max-width:991px) {
    .row-header .col-lg-4 {
        padding: 0 !important
    }

    .row-header img {
        max-height: 200px !important;
        height: unset !important;
    }

    .row-header .text-white {
        font-size: 24px !important;
    }

    .row-header .col-lg-4 .bg-primary-red {
        border-radius: 0 !important;
    }
}


.row-header .col-lg-4 {
    transition: transform 0.3s ease;
}

.row-header .col-lg-4:hover {
    transform: translateY(-5px);
}

.border-red-energeek {
    border: 1px solid var(--primary-red);
}

.dot {
    display: inline-block;
    height: 10px !important;
    width: 10px !important;
    background-color: #fff;
    margin: 0 10px;
    border-radius: 50%;
}

.separator {
    border-top: 1px solid var(--bs-gray-700) !important;
    opacity: .8 !important;
    margin: 10px 0;
}


span.separator.separator-end {
    display: inline !important;
    border-right: 1px solid var(--bs-gray-700) !important;
    opacity: .8 !important;
    margin: 0 10px;
}

.cursor-pointer {
    cursor: pointer;
}