/*
* Dorguzen Framework - SeoMaster Theme Stylesheet
* Based on the SeoMaster template by ThemeWagon / HTML Codex
*/


:root {
    --site-theme: #fd7e14; /* app theme is orange */
    --bs-primary: var(--site-theme);
}

.nav-item {
    color: var(--site-theme);
}

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

/*--------hero section-------*/
.hero-header .btn-light {
    color: var(--site-theme);
} 
.hero-header .btn-outline-light:hover {
    color: var(--site-theme);
}
/*---------------------------*/

/*----testimonial section----*/
.testimonial .btn-outline-light:hover {
    color: var(--site-theme);
}

.testimonial .text-primary {
    color: #fff !important;
}
/*---------------------------*/


/* our team section */
.text-primary {
    color: var(--site-theme) !important;
}

.bg-primary, .btn-primary {
    background-color: var(--site-theme) !important; 
    border-color: var(--site-theme);
}


.bg-primary:hover, .btn-primary:hover {
    border-color: #fff;
}


.btn-outline-primary  {
    color: var(--site-theme); 
    border-color: var(--site-theme);
}

.btn-outline-primary:hover {
    background-color: var(--site-theme) !important; 
    border-color: var(--site-theme);
}

/* back-to-top button */
.bi-arrow-up::before {
    content: "\f148";
}

/* the slash between breadcrumb items */
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.team-item:hover {
    background-color: var(--site-theme); 
}

.testimonial-carousel .testimonial-item { 
    background-color: #fff !important;
    color: var(--site-theme) !important;
}

.testimonial-carousel::after {
    height: 100% !important;
}

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


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

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

.btn-social {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    margin-right: 8px;
}


/*** 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 {
    margin-right: 30px;
    padding: 25px 0;
    color: #000; /*#FFFFFF;*/
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    outline: none;
}

/* when a nav link is either active or hovered over  */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--site-theme) !important; /* --bs-primary */
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
        color: #444444;
    }
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light.sticky-top {
    top: 0;
    z-index: 999;
    background-color: #fff !important;
}

.navbar-light.sticky-top .navbar-nav .nav-link {
    color: #444444;
}

.navbar-light.sticky-top .navbar-brand h1 {
    color: var(--bs-primary);
}


/*** Hero / Jumbotron ***/
.hero-header {
    
    padding-top: 120px;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: var(--bs-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
}


/*** Service ***/
.service-item {
    background: var(--bs-light);
    transition: .5s;
}

.service-item:hover {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}


/*** Project ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--bs-dark);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: .5s;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.3);
}

.portfolio-item .portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 29, 39, .7);
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-item:hover {
    margin-top: -10px;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 2;
}

.testimonial-carousel:hover .owl-nav {
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 1px solid;
    border-image: linear-gradient(to right, var(--bs-primary), transparent) 1;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--bs-light);
    border-image: linear-gradient(to right, var(--bs-dark), transparent) 1;
}


/*** Footer ***/
.footer .btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .7);
    font-weight: normal;
    text-decoration: none;
    transition: .3s;
}

.footer .btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn-link:hover {
    letter-spacing: 1px;
    /*box-shadow: none;
    color: #FFFFFF;*/
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .7);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.footer .footer-menu a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/*** Back To Top ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Cookie Consent ***/
#consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: #333;
    color: #fff;
    text-align: center;
    z-index: 1000;
    font-size: 14px;
}

#consent-popup a {
    color: #aad4f5;
}

.consent-hidden {
    display: none !important;
}


/*** Side Menu ***/
#side-menu {
    width: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-x: hidden;
    transition: width .3s ease;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    padding-top: 60px;
}

#side-menu a {
    padding: 10px 15px;
    display: block;
    color: #444;
    text-decoration: none;
    font-size: 15px;
}

#side-menu a:hover {
    color: var(--bs-primary);
}


/*** Alerts / Notifications ***/
.alert.exceptions,
.alert.warnings,
.alert.danger,
.alert.notices,
.alert.success {
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 5px;
}

.alert.exceptions { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert.warnings   { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert.danger     { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert.notices    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert.success    { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }


/*** General Utilities ***/
.fs-9 {
    font-size: 0.9rem;
}

.page-wrapper {
    min-height: 100vh;
}





/*----------RATING STARS STYLING --------*/
.stars-outer {
    display: inline-block;
    position: relative;
    font-family: FontAwesome;
}

.stars-outer::before {
    /*each of our icons should appear five times inside a table row hence the repetition of their unicode*/
    content: "\f006 \f006 \f006 \f006 \f006";
}

/*Style the internal body of the star-a width of 0 will make the body blank, and so white in colour*/
.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    /*width: 0;*/
}

.stars-inner::before {
    /*each of our icons should appear five times inside a table row hence the repetition of their unicode*/
    content: "\f005 \f005 \f005 \f005 \f005";
    /*Style the internal body of the star-a width of 0 as above will make the body blank and thus white; otherwise give it a golden color
    Note that it is the width of this '.stars-inner' that we will manipulate to create fractions of stars-for example;
    making '.stars-inner' 50% wide will reveal half of it*/
    color: #f8ce0b;
}

/* side menu close button */

.btn-close {
    filter: invert(48%) sepia(90%) saturate(1000%) hue-rotate(350deg);
}

.btn-close:hover {
    filter: none;
    background-color: var(--site-theme);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
}

.btn-close-white:hover {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
    background-color: transparent !important;
}

