@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');

:root {
    --primary-color: #154993;
    --primary-color-hover: #2795b6;
    --primary-color-hover-1: #1E5FB8;


    /* Light Color */
    --bs-bg-light: #f7f7f7;
    --bs-bg-light-main: #ccc;
    --bs-black-rgb: #333;


    /* Dark Color */
    --bs-bg-dark: #282F36;
    --bs-bg-dark-main: #22282E;

}

.tooltip-primary {
    --bs-tooltip-bg: rgba(0, 0, 0, 0.85);
    --bs-tooltip-color: #ffffff;
    --bs-tooltip-opacity: 1;
    --bs-tooltip-border-radius: .5rem;
    --bs-tooltip-padding-x: .75rem;
    --bs-tooltip-padding-y: .5rem;
    --bs-tooltip-font-size: .875rem;
    --bs-tooltip-arrow-width: .8rem;
    --bs-tooltip-arrow-height: .4rem;
    --bs-tooltip-arrow-color: rgba(0, 0, 0, 0.85);
}


html[data-bs-theme="dark"] .tooltip-primary {
    --bs-tooltip-bg: #3D6AA6;
    --bs-tooltip-color: #ffffff;
    --bs-tooltip-opacity: 1;
    --bs-tooltip-border-radius: .5rem;
    --bs-tooltip-padding-x: .75rem;
    --bs-tooltip-padding-y: .5rem;
    --bs-tooltip-font-size: .875rem;
    --bs-tooltip-arrow-width: .8rem;
    --bs-tooltip-arrow-height: .4rem;
    --bs-tooltip-arrow-color: #3D6AA6;
}




.mode-switch {
    position: fixed;
    top: 6%;
    left: -1px;
    z-index: 9999;
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

#consentModal .modal-content {
    border-radius: 0;
}

.privacy-button {
    text-align: center;
    color: #ffffff;
    background-color: #154993;
    padding: 10px 40px;
    font-weight: 700;
    font-size: 16px;
    transition: .25s;
    border: none;
}

.privacy-button-cancel {
    text-align: center;
    color: #555;
    background-color: #f8f9fa;
    padding: 10px 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all .25s ease-in-out;
    border: 1px solid #ccc;
    cursor: pointer;
}

.mode-switch button {
    font-size: 20px;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mode-switch button:hover,
.mode-switch button:active,
.mode-switch button:focus {
    background: var(--primary-color) !important;
    color: #fff !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: block;
}

li {
    list-style: none;
}

body {
    font-family: "Alef", sans-serif;
    color: #666;
}

html[data-bs-theme="dark"] body {
    background: var(--bs-bg-dark-main);
}

.section_divider {
    height: 80px;
    width: 100%;
    background: var(--primary-color);
}

.mt-130px {
    margin-top: 130px;
}

.container {
    max-width: 1080px;
}

.heading-1 {
    font-weight: 400;
    border-bottom: 1px solid #cccccc;
    margin-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: #222222;
    font-size: 40px;
}

html[data-bs-theme="dark"] .heading-1 {
    color: var(--bs-bg-light-main);
}

.heading-2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}


html[data-bs-theme="dark"] .heading-2 {
    color: var(--bs-bg-light-main);
}

.heading-3 {
    color: #222222;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
}

html[data-bs-theme="dark"] .heading-3 {
    color: var(--bs-bg-light-main);
}


.heading-4 {
    color: #222222;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

html[data-bs-theme="dark"] .heading-4 {
    color: var(--bs-bg-light-main);
}



.para-1 {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 26px;
}

html[data-bs-theme="dark"] .para-1 {
    color: var(--bs-bg-light);
}

html[data-bs-theme="dark"] p,
html[data-bs-theme="dark"] ul {
    color: #dfdddd;
}


.read_more {
    color: var(--primary-color);
    font-size: 16px;
    display: inline-block;
}

html[data-bs-theme="dark"] .read_more {
    color: var(--primary-color-hover);
}


.read_more:hover {
    color: var(--primary-color-hover);
}

html[data-bs-theme="dark"] .read_more:hover {
    color: var(--primary-color);
}

/* Navbar Section */

.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px transparent;
    z-index: 100;
    transition: all linear 0.3s;
    border-bottom: 10px solid rgba(0, 0, 0, 0.2);
}

html[data-bs-theme="dark"] .navbar {
    background: var(--bs-bg-dark) !important;
    border-bottom: 10px solid rgba(255, 255, 255, 0.4);
}

.navbar.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px var(--red-primary) !important;
    animation: navbarScrollAnimation linear 0.25s;
}

@keyframes navbarScrollAnimation {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar-brand {
    height: 100px;
}

.navbar-brand img {
    height: 100%;
}

.navbar-nav {
    gap: 1.2rem;
}

.navbar-nav li a {
    font-weight: 400;
    font-size: 18px;
    color: var(--primary-color);
    display: flex;
    align-items: end;
    gap: 5px;
    transition: .25s;
}


html[data-bs-theme="dark"] .navbar-nav li a {
    color: var(--bs-bg-light-main);
}

.navbar-nav li a:hover {
    color: #444;
}

.navbar-nav li a.active {
    color: #444 !important;
}


html[data-bs-theme="dark"] .navbar-nav li a.active {
    color: var(--primary-color) !important;
}


/* Product */

.product-item .image {
    height: 200px;
}

.product-item .image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-item a {
    text-align: center;
    color: #ffffff;
    background-color: #154993;
    padding: 8px 0px;
    font-weight: 700;
    font-size: 18px;
    transition: .25s;
}

.product-item a:hover {
    background-color: #1E5FB8;
}


/* Product  End*/


/* Event*/

.event-item {
    background: #f5f4f4;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


html[data-bs-theme="dark"] .event-item {
    background: var(--bs-bg-dark);
}


.event-item a {
    background: #e2e2e2;
    color: #4c4c4c;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 15px;
    padding-inline: 25px;
    text-transform: uppercase;
    transition: .25s;
}


html[data-bs-theme="dark"] .event-item a {
    background: var(--bs-bg-dark-main);
    color: var(--bs-bg-light-main);
}


.event-item a:hover {
    background: #d0d0d0;
}

.social-list {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-list a {
    font-size: 23px !important;
    color: #A5A5A5 !important;
    background: linear-gradient(0deg, rgba(47, 47, 47, 1) 0%, rgba(66, 66, 66, 1) 85%);
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.social-list a.facebook:hover {
    color: #1877F2 !important;
}

.social-list a.whatsapp:hover {
    color: #4A9B4D !important;
}

.footer {
    background: #2d2d2d;
    border-top: var(--primary-color) 4px solid;
    margin-top: 40px;
    padding: 2rem;
}


html[data-bs-theme="dark"] .footer {
    background: var(--bs-bg-dark-main);
}

.footer-heading-1 {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-para-1 {
    font-size: 16px;
    color: #818181;
    margin-bottom: 20px;
    line-height: 26px;
}

.footer-link a {
    font-size: 16px;
    color: #818181;
    padding-block: 4px;
    transition: .25s;
    display: inline-block;
}

.footer-link a:hover {
    color: #ccc;
}

footer input,
#homehireus textarea {
    background: #333;
    border: 1px solid #333;
    border-radius: 2px;
    box-shadow: none;
    color: #999;
    display: block;
    font-size: 12px;
    margin: 0 0 12px;
    padding: 6px;
    transition: all 0.15s linear 0s;
    width: 100%;
}

#homehireus .send-message {
    background: var(--primary-color);
    border-radius: 2px;
    border: none;
    color: #fff;
    width: 100%;
    padding-block: 10px;
    transition: .25s;
}

#homehireus .send-message:hover {
    background: var(--primary-color-hover-1);
}

.copyright {
    background: #282828;
    border-top: 1px solid #181818;
    color: #818181;
    padding: 14px 0 8px;
    font-size: 16px;
}

html[data-bs-theme="dark"] .copyright {
    background: var(--bs-bg-dark-main);
}


input:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

.bg-breadcrumb {
    background: var(--primary-color);
    padding: 30px 0;
}

.bg-breadcrumb {
    background: var(--primary-color);
    padding: 30px 0;
}

.breadcrumb-item,
.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

/* Event End*/


/* Product  */

.product-side-nav li {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.product-side-nav li a {
    color: var(--primary-color);
    transition: all 0.25s;
    padding-right: 10px;
}

.product-side-nav li a:hover {
    color: var(--primary-color-hover);
}

.product-side-nav li a:hover {
    color: var(--primary-color-hover);
}

.product-bulet {
    padding-right: 16px;
}

.product-bulet li {
    list-style: circle !important;
    padding-right: 10px;
}

/* End Product  */


/* End Product  */

.footer-nav-image {
    margin-top: 40px;
}

.footer-nav-image-item {
    width: 100%;
    height: 200px;
    background: var(--bg-image-footer) no-repeat center/cover;
}

.footer-nav-image-item .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav-image-item .overlay .footer-nav-image-circle {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-nav-image-item .overlay .footer-nav-image-circle {
    color: #000;
    transition: all .25s;
    text-align: center;
    padding: 20px;
}

.footer-nav-image-item .overlay .footer-nav-image-circle:hover {
    color: var(--primary-color-hover);
}

/* End Product  */

/* Project  */

.project-items-conteiner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.project-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 20px;
}

.project-text a {
    background: #444;
    font-size: 12px;
    padding: 4px 13px 5px;
    color: #fff;
    text-align: center;
    margin-top: 8px;
    transition: 0.25s ease;
    text-decoration: none;
}

.project-text a:hover {
    background: #666;
    color: #ffd700;
}

.project-image {
    height: 180px;
    overflow: hidden;
}

.project-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* End Project  */

/* Product  */

.product1-item {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
    height: 100%;
}


html[data-bs-theme="dark"] .product1-item {
    background: var(--bs-bg-dark);
}

.product1-item .image {
    height: 200px;
}

.product1-item .image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product1-item a {
    color: #222222;
    font-weight: 700;
    font-size: 18px;
    padding-block: 10px;
    transition: .25s;
}

html[data-bs-theme="dark"] .product1-item a {
    color: var(--bs-bg-light);
    font-weight: 700;
    font-size: 18px;
    padding-block: 10px;
    transition: .25s;
}


.product1-item a:hover {
    color: var(--primary-color-hover);
}

html[data-bs-theme="dark"] .product1-item a:hover {
    color: var(--primary-color-hover);
}

.product1-item p {
    font-style: 16px;
    margin-bottom: 0;
}

html[data-bs-theme="dark"] .product1-item p {
    color: var(--bs-bg-light-main);
}

.access-item {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
    height: 100%;
}


html[data-bs-theme="dark"] .access-item {
    background: var(--bs-bg-dark);
}



.access-item .image {
    height: 200px;
}

.access-item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.access-item a {
    color: #222222;
    font-weight: 700;
    font-size: 18px;
    padding-block: 10px;
    transition: .25s;
}

html[data-bs-theme="dark"] .access-item a {
    color: var(--bs-bg-light);
    font-weight: 700;
    font-size: 18px;
    padding-block: 10px;
    transition: .25s;
}


.access-item a:hover {
    color: var(--primary-color-hover);
}

html[data-bs-theme="dark"] .access-item a:hover {
    color: var(--primary-color-hover);
}

.access-item p {
    font-style: 16px;
    margin-bottom: 0;
}

.section-image-top {
    height: 400px;
}

.section-image-top .img {
    height: 100%;
}

.section-image-top .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* End Product  */