/********** Template CSS **********/
:root {
    --primary: #2454D3;
    --secondary: #878473;
    --light: #FFFFFF;
    --dark: #000000;

    --btn-font-size: 16px;
    --form-btn-font-size: 18px;
    --menu-font-size: 16px;

    --border-radius-large: 100px;

    --font-weight-normal: 400;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 75px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600 !important;
}



/*---------------------------------------
Button              
-----------------------------------------*/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    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;
}


/*---------------------------------------
Spinner              
-----------------------------------------*/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



/*---------------------------------------
Navbar              
-----------------------------------------*/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .aboutImageContainer,
    .navbar-toggler {
        display: none;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -14px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/*---------------------------------------
Carousel              
-----------------------------------------*/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 991.98px) {
    .owl-nav {
        display: none !important;
    }
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.header-carousel .btn {
    font-size: 22px;
}

.header-carousel .btn:hover {
    opacity: 0.9;
}

.header-carousel .our-story-btn {
    background: var(--primary);
    color: var(--light);
}

.header-carousel .our-services-btn {
    background: var(--secondary);
    color: var(--light);
}



/*---------------------------------------
About Us              
-----------------------------------------*/
@media (min-width: 992px) {
    /* .container.about {
        max-width: 100% !important;
    } */

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.about-icons {
    color: var(--primary);
}


/*---------------------------------------
Services              
-----------------------------------------*/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    height: 480px;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item .img-container img {
    height: 240px !important;
}


/*---------------------------------------
Contact              
-----------------------------------------*/
@media (min-width: 992px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.contact-section textarea {
    height: 300px;
    resize: none;
}

.contact-section .contact-submit-button {
    background-color: var(--primary);
    color: var(--light);
}

.contact-section #errorDiv {
    font-size: 18px;
    display: none;
}

/*---------------------------------------
Footer              
-----------------------------------------*/
.site-footer {
    background-color: var(--dark);
    padding-top: 100px;
    padding-bottom: 100px;
}

.site-footer strong {
    color: var(--light);
}

.site-footer p,
.site-footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--btn-font-size);
}

.site-footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--btn-font-size);
    transition: all 0.3s;
}

.site-footer-link:hover {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

.opening-hours-list {
    margin: 0;
    padding: 0;
}

.opening-hours-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-normal);
    margin-bottom: 10px;
}

.opening-hours-list li .underline {
    background-color: rgba(255, 255, 255, 0.75);
    width: 35%;
    height: 1px;
    margin: 17px 15px 0 15px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--menu-font-size);
}

.copyright-text a {
    color: rgba(255, 200, 160, 0.75);
}

.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--primary);
    border-radius: var(--border-radius-large);
    color: var(--light);
    font-size: var(--menu-font-size);
    display: block;
    margin: 0 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: var(--light);
    color: var(--primary);
}

.social-icon-link span {
    display: block;
}




