/********** Template CSS **********/
:root {
    --primary: #191d3a;
    --secondary: #191d3a;
    --light: #fff;
    --dark: #0E2E50;
}

* {
    font-family: "Rubik", sans-serif !important;
}

body {
    margin: 0;
    font-size: 1rem;
    color: #000;
    background-color: #fff;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/

.navbar .navbar-nav .nav-link {
    position: relative;
    margin: 0 20px;
    padding: 0 0 5px;
    color: #1A3F72;
    font-weight: 500;
    outline: none;
    transition: .1s;
}

.hero-navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .2);
    z-index: 999;
}

.hero-navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 35px;
    padding: 10px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    font-weight: 600;
    border-bottom: 3px solid #E3B829;
}

.hero-navbar .navbar-nav .nav-link:hover,
.hero-navbar .navbar-nav .nav-link.active {
    border-bottom: 3px solid #E3B829;
}

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.navbar-toggler {
    display: none;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 1px #fff;
}

@media (max-width: 991.98px) {

    .about-navbar .navbar-brand img {
        width: 15%;
    }

    .language img {
        width: 95%;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-toggler {
        display: inherit;
    }

    .sticky-top.navbar {
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }
    .sub-hero-navbar {
        background-color: black;
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

.navbar {
    position: fixed;
    padding-bottom: 0;
    width: 100%;
    top: 0;
    left: 0;
    background: #FFF;
    z-index: 999;
}

@media (min-width: 992px) {

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #E3B829;
        opacity: 0;
        transition: .5s;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #FFF;
    width: 50px;
}

.carousel-title {
    margin-top: 5rem;
    font-size: 4rem;
    color: #FFF;
    font-weight: lighter;
    text-shadow: 0 0 7px #fff;
}

.carousel-slide {
    padding: 1rem 3rem 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

.instrument-carousel {
    background: url(../img/black-blend.png) center;
    background-size: cover;
}

.landscaping-carousel {
    background: url(https://alhajeryco.com/images/upload/media/71f0e0b60c9dc67cd3c82c60833103cd.jpg), url(../img/black-blend.png) center;
    background-size: cover;
    background-blend-mode: darken;
}

.pets-carousel {
    background: url(https://alhajeryco.com/images/upload/media/3808c24e0d4bbc4bc8b3664784973dcf.jpg), url(../img/black-blend.png) center;
    background-size: cover;
}

.food-carousel {
    background: url(https://alhajeryco.com/images/upload/media/5c0ddd61d0e9b7aab8cbe0d4fe181688.jpg), url(../img/black-blend.png) center;
    background-size: cover;
}

.client-container {
    padding: 5rem 3rem 3rem 3rem;
    background: url(../img/client-background.png), url(../img/client-background-blend.png) center center;
    background-size: cover;
    background-blend-mode: darken;
    position: relative;
}

.client-container h1 {
    font-size: 3.5rem;
    font-weight: lighter;
}

.client-container p {
    font-size: 1.5rem;
}

.client-container * {
    color: white;
}

#client-background-line {
    position: absolute;
    top: -30px;
    right: 0;
}

.contact-us {
    position: relative;
}

.contact-us p {
    margin-bottom: 3px;
}

.contact-us img {
    float: right;
}

.copyright-footer {
    color: #707070;
}

.about-container {
    position: relative;
}


#about-card {
    position: absolute;
    top: 90px;
    right: 0;
}

#about-card h5 {
    color: #E3B829;
}

#about-card p {
    color: #707070;
    font-weight: lighter;
}

#about-card a {
    color: #1A3F72;
    font-weight: lighter;
}

#contact-image {
    position: absolute;
    right: 0;
    top: 0;
}

#contact-form {
    margin-top: -10rem;
    border-radius: 5px;
}

#contact-form-intro {
    color: #707070;
    font-weight: lighter;
    font-style: italic;
}

#map-card {
    margin-top: -10em;
    background-color: white;
    border-radius: 5px;
}

.contact-page-header {
    background: url(../img/contact-background.png) center;
    background-size: cover;
}

.contact-page-title {
    font-size: 2.5rem;
    color: #FFF;
    font-weight: lighter;
    text-shadow: 0 0 7px #fff;
}

.required {
    position: relative;
}

.required::after {
    content: '*';
    position: absolute;
    top: 8px;
    left: 80px;
    color: #f00
}

#email-input::after {
    left: 55px;
}

.submit-button {
    background-color: #E3B829;
    text-transform: uppercase;
    color: white;
    border-radius: 5px;
    margin-bottom: 2rem;
}


.page-header {
    margin-bottom: 6rem;
    padding: 15rem 0 8rem 0;
}


.about-page-header {
    background: url(../img/landscaping-background.png) center;
    background-size: cover;
}

.sector-page-header {
    background: url(../img/sectors-pets-background.png) center;
    background-size: cover;
}

.subsidiaries-page-header {
    background: url(../img/subsidiaries-background.png) center;
    background-size: cover;
}

.media-page-header {
    background: url(../img/media-background.png) center;
    background-size: cover;
}

.about-page-header, .sector-page-header, .subsidiaries-page-header {
    padding: 20rem 0 3rem 0;
}

.gallery-links {
    align-content: center;
}
.gallery-links button {
    font-size: 0.75rem;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    color: #707070;
    border: none;
    background-color: transparent;
}

.gallery-links .active{
    color: #E3B829;
}

.about-page-title {
    font-size: 2.5rem;
    color: #FFF;
    font-weight: lighter;
    background-color: #E3B829;
    padding: 1rem 5rem 1rem 2rem;
    width: fit-content;
}

.about-page-subtitle {
    color: #1A3F72;
    font-weight: lighter;
    background-color: #fff;
    padding: 1rem 6rem 1rem 2rem;
    width: fit-content;
}

.tab {
    padding-right: 0;
    border-right: 2px solid #ccc;
}

/* Style the buttons inside the tab */
.tab a {
    display: block;
    background-color: inherit;
    color: #ccc;
    padding: 8px 3rem 8px 8px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.tab a.active {
    color: #E3B829;
    border-right: 5px solid #E3B829;
}

.tab-title {
    font-size: 1rem;
    color: #E3B829;
}

.tab-details {
    font-size: 0.9rem;
    color: #707070;
}

.about-sectors-section {
    color: #707070;
    background-color: #f7f7f7;
    padding-bottom: 3rem;
}

.about-sectors-section h5 {
    font-weight: lighter;
    font-size: 1rem;
}

.sectors-title {
    font-size: 1.25rem;
    color: #E3B829;
    font-weight: 400;
}

.sectors-details {
    font-size: 0.9rem;
    font-weight: 100;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 0 0;
    }

    .page-header {
        padding: 8rem 0;
    }

    .about-page-header, .sector-page-header, .subsidiaries-page-header {
        padding: 8rem 0;
    }


    .about-container .img-fluid {
        display: none;
    }


    #about-card {
        position: inherit;
    }
}

.ceo-intro p {
    color: #707070;
    font-weight: lighter;
    font-style: italic;
}

.ceo-intro h5 {
    font-size: 1.25rem;
    font-weight: 400;
}

.ceo-intro h6 {
    font-weight: 400;
}

.link-button {
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #E3B829 !important;
    border: 2px solid #E3B829;
}

.carousel-numbers {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-numbers button{
    margin: 1rem 0.9rem;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 0.8rem;
}

@media (max-width: 768.98px) {

    .carousel-title {
        margin-top: 1rem;
        font-size: 2rem;
        color: #FFF;
        font-weight: lighter;
        text-shadow: 0 0 7px #fff;
    }

    .carousel-slide {
        padding: 0 3rem 0;
        width: 100vw;
        height: 55vh;
        margin: 0;
    }

    .carousel-slide p {
        font-size: 0.8rem;
    }

    .link-button {
        padding: 0.8rem;
        font-size: 0.7rem;
    }

    .link-button img {
        width: 15px;
    }

    .carousel-dark .carousel-indicators [data-bs-target] {
        width: 30px;
    }

    .carousel-numbers button {
        margin: 1rem 0.3rem;
        font-size: 0.7rem;
    }

    #map-card {
        margin-top: 0;
        background-color: white;
        border-radius: 5px;
    }

    .contact-logo-container {
        display: none;
    }

    #contact-image {
        display: none;
    }

    .shadow {
        box-shadow: none !important;
    }
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item img {
    padding: 15px;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
