:root {
    --tcf-color-primary: #f9b015;
    --tcf-color-secondary: #B90342;
}

@font-face {
    font-family: 'Gotham Rounded SSm';
    src: url('assets/fonts/GothamRndSSm-Book.woff2') format('woff2'),
        url('assets/fonts/GothamRndSSm-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.color-primary{
    color: #f99201;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Gotham Rounded SSm';
}

button {
    font-family: 'Gotham Rounded SSm';
}

[v-cloak] {
    display: none;
}

.bg-light-alpha {
    background-color: #f3f4f5 !important;
}

/* color */

.free-consultation {
    background: rgba(0, 0, 0, 0) url(assets/img/banner.webp) repeat scroll 0 0 / cover;
    /* height: 100vh; */
    position: relative;
    width: 100%;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* color: white; */
}

.free-consultation ::after {
    background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background-attachment: fixed;
    background-position: center center;
    background-size: auto auto;
    margin-left: 0;
    margin-right: 0;
}

.page-banner {
    background: rgba(0, 0, 0, 0) url("assets/img/banner.webp") repeat scroll 0 0 / cover;
    position: relative;
    width: 100%;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner::after {
    background: rgb(0, 0, 0) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap'); */

.rotate {
    transform: rotate(180deg);
    /* transition: transform 0.1s ease; */
}

.yuma-event-area {
    padding: 50px 0;
}

.yuma-event-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    margin: 15px 0;
    border: 3px dashed var(--tcf-color-primary);
    border-radius: 3px;
}

.yuma-event-icon {
    font-size: 36px;
    background: var(--tcf-color-primary);
    color: #fff;
    padding: 15px 20px;
}

.yuma-event-item h3 {
    color: #5d594e;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.yuma-event-item a {
    display: inline-block;
}

.yuma-event-item i {
    font-size: 36px;
    background: var(--tcf-color-primary);
    color: #fff;
    padding: 15px 20px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.accordion-button.no-arrow::after {
    display: none;
    /* Hide the arrow */
}

.header-mobile {
    transition: top 0.3s;
    z-index: 999;
}

.header-mobile.fixed {
    position: fixed;
    padding: 1.5px;
    background-color: whitesmoke;
    width: 100%;
    border-radius: 5px;
    top: 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

.header-mobile {
    position: relative;
}

/* Styles for mobile and tab views */
@media (max-width: 991.98px),
(max-width: 1199.98px) {
    #product-categories-section {
        display: none;
    }

    .mobile_title_start {
        margin-top: -25px;
    }
}

.title h3:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 40px;
    transform: translate(-50%);
    width: 50px;
    height: 3px;
    background-color: #f99201;
    border-radius: 3px;
}

/* modify header menu  */
#navbar-content a.nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
}

#navbar-content li.nav-item a.nav-link.active {
    background-color: var(--tcf-color-primary);
    color: white;
    padding-left: 25px !important;
    padding-right: 25px !important;
    border-color: transparent !important;
}

#navbar-content li.nav-item a.nav-link {
    font-size: 14px;
}

@media(min-width:1200px) {
    #navbar-content li.nav-item a.nav-link {
        font-size: normal;
    }
}

@media(min-width:1200px) {
    #navbar-content li.nav-item:nth-child(1) a.nav-link {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
}

#navbar-content a.nav-link:not(.dropdown-toggle):hover {
    border-bottom-color: #f6b333;
}

#navbar-content li.nav-item:nth-child(3) a.nav-link:hover {
    border-bottom-color: #f6b333 !important;
}

@media(min-width:992px) {
    #navbar-content li.nav-item a.nav-link {
        padding: 20px 10px !important;
    }

    header p {
        font-size: 14px;
    }
}

#navbar-content .dropdown a p:hover {
    color: var(--tcf-color-primary)
}

/* mobile menu modification */
.offcanvas-body a:hover,
.offcanvas-body li:hover {
    color: var(--tcf-color-primary);
}

/* product details page */
/* .product-details .img-item:not(:first-child) {
    margin-left: 12px;
}
.product-details .img-item {
    width: 100%;
    margin: 0;
    margin-top: 10px;
}
.product-details .img-select img {
    width: 100%;
}
@media(min-width: 992px){
    .product-details .img-select img {
        height: auto;
        max-height: 150px;
    }
} */

@media(min-width: 992px) {
    .social-icons {
        display: flex;
    }

    .social-icons li {
        padding: 0 !important;
    }

    .social-icons li:not(:last-child) {
        margin-right: 5px;
    }

    .social-icons li a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        font-size: 20px;
    }

    .social-icons li a:hover {
        border-color: currentColor;
    }

    .social-icons li a.facebook:hover {
        color: #106AFF;
    }

    .social-icons li a.twitter:hover {
        color: #24A3F1;
    }

    .social-icons li a.linkedin:hover {
        color: #0882BD;
    }

    .social-icons li a.youtube:hover {
        color: #FE0808;
    }
}

header .nav-item.dropdown.dropdown-mega .dropdown-menu {
    border-radius: 0;
    border: 0;
    /* border-top: 4px solid var(--tcf-color-primary); */
}

.logo-section .dropdown-menu {
    right: 0;
}

.logo-section svg {
    width: 40px;
    height: 40px;
}

.logo-section .location img {
    width: 40px;
    height: 40px;
}

.service .rounded {
    height: 100%;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 210px;
}

.text-tiny {
    display: inline-block;
    font-size: 11px !important;
    line-height: 11px;
}

.position-relative {
    position: relative !important;
}

.submenu {
    position: absolute;
    display: none;
    min-width: 150px;
    border-top: 4px solid var(--tcf-color-primary) !important;
    top: 100%;
    z-index: 9999;
    right: 0;
}

.tcf-user-profile:hover>ul.submenu {
    display: block;
}

.tcf-user-profile ul.submenu a {
    padding: 3px 7px;
}

.tcf-user-profile ul.submenu a:hover {
    background-color: #f5f5f5;
}

.fz-25 {
    font-size: 25px;
}

header h5,
header a p,
header *,
header a.nav-link {
    font-family: 'Gotham Rounded SSm';
}

/* shoppage sidebar */
#accordionFlushExample button {
    background-color: transparent !important;
}

#accordionFlushExample .accordion-item {
    border-bottom: 1px solid #dee2e6;
}

#accordionFlushExample .accordion-item:first-child {
    border-top: 1px solid #dee2e6;
}

.accordion-button {
    position: relative;
}

.accordion-button:not(.no-arrow)::before,
.accordion-button:not(.no-arrow)::after {
    position: absolute;
    height: 2px;
    width: 14px;
    background: rgb(5, 44, 101);
    right: 15px;
    z-index: 9999;
    content: '';
}

.accordion-button.collapsed:not(.no-arrow)::after {
    transform: rotate(90deg);
    ;
}

.accordion-button:not(.no-arrow)::after {
    transform: none;
}

#accordionFlushExample .accordion-item .accordion-body p {
    font-size: 14px;
    color: rgb(66, 83, 99);
}
.app-check * {
    font-family: normal;
}

/* project slider  */
.product-slider h4 {
	min-height: 43px;
}
/* featured product slider */
@media(min-width:992px) and (max-width:1200px) {
    .product-slider .featured-slider-button .btn-warning {
        font-size: 13px;
        padding: 10px;
    }
}


/* Product thumb slider */
#product-thumb-slider .img-item {
	margin: 10px 0 0 0;
}

#product-thumb-slider .img-item img {
	width: 100%;
	height: 70px;
    object-fit: cover;
}
@media(min-width:400px) {
    #product-thumb-slider .img-item img {
        height: 100px;
    }
}
@media(min-width:768px) {
    #product-thumb-slider .img-item img {
        height: 70px;
    }
}
@media(min-width:992px) {
    #product-thumb-slider .img-item img {
        height: 100px;
    }
}
@media(min-width:1320px) {
    #product-thumb-slider .img-item img {
        height: 120px;
    }
}
@media(min-width:992px){
    .product-details .img-showcase img {
        height: 400px;
    }
}
@media(min-width:1320px){
    .product-details .img-showcase img {
        height: 500px;
    }
}

/* book appintment */
#book-appointment::before,
#book-appointment::after{
    background-color: #fff !important;
}
/* schedule time */
.time_header_style {
        font-size: 17px !important;
        font-weight: normal !important;
}
.app-border.selected {
    background-color: var(--tcf-color-primary) !important;
}
.selected-date {
    background-color: var(--tcf-color-primary) !important;
}
.custom-select{
    background-color: var(--tcf-color-primary) !important;
}
.fc .fc-daygrid-day-number {
    color: #212529;
}
.selected-date .fc-daygrid-day-number {
    color: white;
}
.fc .fc-col-header-cell-cushion {
    color: #212529;
}
.fc .fc-button-primary {
    background-color: var(--tcf-color-primary);
    border-color: var(--tcf-color-primary);
}
#appointmentModal .form-control {
    padding: .4rem .75rem;
}
#book-now-modal-body {
    max-height: 350px;
    overflow-y: scroll;
}

.custom-dropdown-icon-booking{
    display: flex;
    align-items: center;
    height: 40px;
    width: 132px;
    background-color: var(--tcf-color-primary);
    border-radius: 5px;
    padding-right: 10px;
    justify-content: flex-end;
}
#booking-dropdown{
    position: absolute;
    display: flex;
    height: 40px;
    align-items: center;
    width: 132px;
    background-color: transparent !important;
}
@media (max-width: 768px) {
    .custom-drop-down {
      margin-top: 0 !important;
    }
  }
