:root {
    --yellow-color: #FEA116;
    --light-color: #F1F8FF;
    --dark-color: #0F172B;
    --text-grey: #666565;
}
body {
    font-family: "Nunito", sans-serif;
}
html {
    scroll-behavior: smooth;
}
ul li {
    list-style: none;
}
#top-button {
    width: fit-content;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--yellow-color);
    cursor: pointer;
    z-index: 99999999;
    display: none;
}
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}
.main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: var(--yellow-color);
    border: 2px solid var(--yellow-color);
    padding: 0;
    border-radius: 2px;
}
.main-btn:hover {
    color: #fda623 !important;
    background-color: transparent !important;
    border: 2px solid var(--yellow-color) !important;
}
/* --- Landing Section --- */
.landing-section {
    background-image: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("../img/bg-hero.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* NavBar */
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    outline: none;
    font-size: 15px;
    color: var(--light-color) !important;
    transition: 0.5s;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.link-active {
    color: var(--yellow-color) !important;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}
.sticky-top {
    background-color: var(--dark-color) !important;
}
@media (max-width: 991px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark-color) !important;
    }
}

ul.dropdown-menu{
    background-color: #0f172be1 !important;
}
ul.dropdown-menu .dropdown-item{
    transition: 0.3s;
}
ul.dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--yellow-color) !important;
    letter-spacing: 1.5px;
}

.landing-content .landing-content-text {
    max-width: 550px;
}
.landing-content .landing-content-text h1 {
    font-size: 65px;
    max-width: 500px;
}
.landing-content img {
    animation: rotation 30s infinite linear ;
    width: 450px;
    max-width: 100%;
}
@media (max-width: 991px) {
    .landing-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .landing-content .landing-content-text {
        margin-bottom: 40px;
    }
    .landing-content .landing-content-text h1 {
        font-size: 50px;
    }
    .landing-content .landing-content-text button{
        margin: 0 auto;
    }
    .landing-content img {
        margin: 0 auto;
        padding: 0;
    }
}

ol.breadcrumb .breadcrumb-item,
ol.breadcrumb .breadcrumb-item a{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
}
ol.breadcrumb .breadcrumb-item a {
    color: var(--yellow-color);
}
ol.breadcrumb .breadcrumb-item:not(:last-of-type)::after {
    position: absolute;
    content: "/";
    color: white;
    padding-left: 7px;
}

/* -- Sevice Section -- */
.service-card {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: 0.5s;
}
.service-card:hover {
    background-color: var(--yellow-color);
    color: var(--light-color);
}
.service-card:hover p,
.service-card:hover i {
    color: var(--light-color) ;
}
.service-card i {
    color: var(--yellow-color);
}
.service-card h5 {
    font-weight: 900;
}
.service-card p {
    color: var(--text-grey) ;
}

/* About Section */
.section-title {
    font-family: 'Pacifico', cursive;
    color: var(--yellow-color);
    font-weight: 500;
    position: relative;
}
.section-title::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--yellow-color);
    transform: translate(10px);
    top: 50%;
}
.about-content h2 {
    font-weight: 800;
}
.about-content h2 i {
    color: var(--yellow-color);
}
.about-content p{
    color: var(--text-grey);
}
.about-content .about-number {
    border-left: 6px solid var(--yellow-color);
}

/* Menu Section */
.section-title-double h5 {
    position: relative;
    font-family: 'Pacifico', cursive;
    color: var(--yellow-color);
    font-weight: 500;
    width: fit-content;
    margin: 0 auto 10px;
}
.section-title-double h5::before,
.section-title-double h5::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    top: 55%;
    margin-top: -1px;
    background-color: var(--yellow-color);
}
.section-title-double h5::before {
    left: -55px;
}
.section-title-double h5::after {
    right: -55px;
}
.section-title-double h2 {
    font-weight: 900;
    font-size: 30px;
}
.menu-tabs {
    border-bottom: 1px solid #dee2e6;
    width: fit-content;
}
.menu-tab {
    position: relative;
    line-height: 10px;
    cursor: pointer;
    background-color: transparent !important;
}
.menu-tab.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--yellow-color);
    left: 0;
    bottom: 0;
}
.menu-tab i {
    color: var(--yellow-color) ;
}
.menu-tab span {
    color: var(--text-grey);
    font-size: 14px;
}
.menu-tab h6 {
    color: var(--dark-color);
    font-weight: 800;
}
.menu-item .menu-img {
    width: 102px;
    height: 80px;
    overflow: hidden;
}
.menu-item .menu-img img {
    transition: 0.3s;
}
.menu-item:hover .menu-img img {
    transform: rotate(5deg) scale(1.08);
}
.menu-item h5{
    font-weight: 900;
}
.menu-item span {
    font-weight: 900;
    color: var(--yellow-color);
    font-size: 20px;
}
.menu-item p {
    font-size: 14px;
    color: var(--text-grey);
}
.menu-item .menu-item-name {
    border-bottom: 1px solid #dee2e6;
}

/*  Team Section */
.team-member {
    height: calc(100% - 44px);
    transition: 0.5s;
}
.team-member:hover {
    height: 100%;
}
.team-member img{
    transition: 0.5s;
}
.team-member:hover img {
    transform: scale(1.1);
}
.member-social-icons a{
    background-color: var(--yellow-color);
    border-radius: 50% 50% 0 0;
    margin: 0px 2px;
    font-size: 17px;
    cursor: pointer;
    border: 2px solid var(--yellow-color);
    color: white;
    transition: 0.3s;
}
.member-social-icons a:hover {
    background-color: transparent;
    border: 2px solid var(--yellow-color);
    color: var(--yellow-color);
}

/* Testimonial Section*/
.testimonial-item {
    max-width: 450px;
}
.testimonial-item i {
    color: var(--yellow-color);
}
.testimonial-item h5 {
    font-weight: 900;
}
button.owl-next,
button.owl-prev {
    font-size: 60px !important;
    color: var(--yellow-color) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
button.owl-next {
    right: -40px;
}
button.owl-prev {
    left: -40px
}
@media (max-width: 768px) {
    button.owl-next,
    button.owl-prev {
        display: none;
    }
}

/* Footer Section */
.company-links li {
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}
.company-links li:hover {
    letter-spacing: 1px;
}
.company-links li::before{
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer-social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.footer-social-btn:hover {
    color: var(--yellow-color) !important;
}
.footer-email,
.footer-email:focus {
    border-color: var(--yellow-color);
}
.footer-email:focus {
    box-shadow: 0 0 0 .25rem rgba(254, 161, 22, 0.25) !important;
}
.copyright {
    color: white;
    text-align: center;
    border-top: 1px solid rgba(95, 95, 95, 0.514);
}

/* Form */
.form-control:focus {
    color: var((var(--dark-color)));
    border-color: #fcc067;
    box-shadow: 0 0 5px 0px #fea11670;
}


/* Animation */
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}