/*!
---------------------------------------------- 
Project: TOPLOOK | One Page Parallax Template
Author URL: https://anismedia.com/toplook
Version: 1.0
Copyright: 2017 by:http://anismedia.com/
-----------------------------------------------
*/
/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */
/*   01 - Global                              */
/*   02 - Typography                          */
/*   03 - Preloader                           */
/*   04 - Navigation                          */
/*   05 - Banner                              */
/*   06 - Features                            */
/*   07 - Services                            */
/*   08 - Preview #1                          */
/*   09 - Preview #2                          */
/*   10 - Video                               */
/*   11 - Team                                */
/*   12 - Parallax                            */
/*   13 - Skills                              */
/*   14 - Counters                            */
/*   15 - Testimonials                        */
/*   16 - Pricing                             */
/*   17 - Portfolio                           */
/*   18 - Blog                                */
/*   19 - Parnters                            */
/*   20 - Google Map                          */
/*   21 - Contact                             */
/*   22 - Footer                              */
/*   23 - Back to Top                         */


/* 

    =========================================== 
        01 - GLOBAL CSS 
    =========================================== 

*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    height: 100%;
    background: #fff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title-bar {
    padding: 60px 0;
    text-align: center;
    width: 500px;
    margin: auto;
}

.title-bar h6 {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    color: #13b1cd;
}

.title-bar h4 {
    font-size: 25px;
    font-weight: 600;
    margin-top: 20px;
}
.btn-arrow {
    background-color: #13b1cd;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.18);
    padding: 20px 29px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 50%;
    /* Initial position */
    position: relative;
}
.btn-arrow:hover,
.btn-arrow:focus {
    background: #212121;
    color: #fff;
}
.fa-arrow-down {
    animation: moveUpDown 1s ease-in-out infinite;
}

/* Keyframes for up and down movement */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); 
    }
    100% {
        transform: translateY(0); 
    }
}


.btn {
    background-color: #13b1cd;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.18);
    padding: 13px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn:hover,
.btn:focus {
    background: #212121;
    color: #fff;
}

.divider {
    width: 70%;
    margin: auto;
}


/* 

    =========================================== 
        02 - TYPOGRAPHY CSS 
    =========================================== 

*/

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #6c7279;
}

h1 {
    font-size: 55px;
    font-weight: 600;
    color: #2d3033;
}

h2 {
    font-size: 30px;
    font-weight: 300;
    color: #2d3033;
}

h3 {
    font-size: 35px;
    font-weight: 300;
    color: #2d3033;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2d3033;
}

h5 {
    font-size: 16px;
    font-weight: 500;
    color: #2d3033;
}

h6 {
    font-size: 17px;
    font-weight: 600;
}


/* 

    ===========================================
        03 - PRELOADER CSS 
    =========================================== 

*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #212121;
}

.spinner {
    width: 40px;
    height: 40px;
    background-color: #13b1cd;
    margin: 100px auto;
    -webkit-animation: 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}


/* 

    =========================================== 
        04 - NAVIGATION CSS 
    =========================================== 

*/

#menu {
    padding: 40px 0;
    transition: all 0.5s ease;
}

.navbar-brand img {
    width: 100px;
    height: auto;
    /* margin-top: 5px; */
}

.navbar-brand .logo-dark {
    display: none;
    /* margin-top: -9px; */
}

.on .logo-light {
    display: none;
}

.on .logo-dark {
    display: block;
}

#menu.navbar-default {
    background: transparent;
    border: none;
}

#menu.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#menu.navbar-default .navbar-nav>li>a:hover {
    color: #13b1cd;
}

.on {
    background-color: #fff !important;
    padding: 15px 0 !important;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
    color: #333;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #13b1cd !important;
    background-color: transparent;
}

.on#menu.navbar-default .navbar-nav>li>a {
    color: #333;
}

.on#menu.navbar-default .navbar-nav a:hover {
    color: #13b1cd !important;
    background-color: transparent;
}

.navbar-toggle {
    background: #13b1cd;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: none;
    padding: 10px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #13b1cd;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggle:hover>.icon-bar {
    background-color: #fff;
}


/* Custom dropdown container */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

/* Custom dropdown menu hidden by default */
.custom-dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 207px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 0;
    margin-top: 0px;
}

/* Styling the dropdown menu links */
.custom-dropdown-menu li a {
    color: #333;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

/* Change background color on hover */
.custom-dropdown-menu li a:hover {
    background-color: #ddd;
    color: #000;
}

/* Styling for the dropdown toggle link */
.custom-dropdown > a {
    color: #333;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
}

/* Optional: style the caret arrow (if you want to add one) */
.custom-dropdown > a:after {
    content: ' ▼';
    padding-left: 5px;
}

/* Show the dropdown when hovering over the parent */
.custom-dropdown:hover .custom-dropdown-menu,
.custom-dropdown:focus-within .custom-dropdown-menu {
    display: block;
}

/* 

    =========================================== 
        05 - INTRO CSS 
    =========================================== 

*/

.intro {
    height: 100vh;
    position: relative;
}

#particles-js {
    height: 100%;
    background: url(../images/banner/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.intro .slogan{
    margin-top: 20%;
    text-align: center;
}
.intro .header-btn{
    margin-top: 7%;
    text-align: center;
}
.caption {
    position: relative;
    /* height: 100px; */
    width: 80%;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.caption h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 37px;
    font-weight: 400;
    line-height: 42px;
    margin: 20px auto;
    width: 870px;
}


.animate-text {
    opacity: 0;
    position: absolute; 
    width: 100%;
    text-align: center;
    top: 0; /* Align to the top of the container */
    left: 0;
    transition: opacity 1s ease-in-out;
}

/* Animation for the first line */
@keyframes fadeInOut1 {
    0% {
        opacity: 0; /* Start hidden */
    }
    20% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 1; /* Stay visible */
    }
    70% {
        opacity: 0; /* Fade out */
    }
    100% {
        opacity: 0; /* Stay hidden */
    }
}

/* Animation for the second line */
@keyframes fadeInOut2 {
    0% {
        opacity: 0; /* Start hidden */
    }
    30% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 1; /* Stay visible */
    }
    80% {
        opacity: 0; /* Fade out */
    }
    100% {
        opacity: 0; /* Stay hidden */
    }
}

/* Apply animations to the lines */
#line1 {
    animation: fadeInOut1 7s infinite;
}

#line2 {
    animation: fadeInOut2 7s infinite;
    animation-delay: 3s; 
}


/* 

    =========================================== 
        06 - FEATURES CSS 
    =========================================== 

*/

#features {
    padding-bottom: 60px;
}

.feature-box {
    padding: 20px 0;
}

.feature-icon {
    float: left;
    margin-right: 30px;
}

.feature-icon i {
    font-size: 40px;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.feature-text {
    overflow: hidden;
}

.feature-text h6 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feature-text p {
    width: 90%;
}

.feature-box:hover i {
    color: #13b1cd;
}


/* 

    =========================================== 
        07 - SERVICES CSS 
    =========================================== 

*/

#services {
    padding: 70px 0;
    background: url(../images/texture/1.jpg);
}

.service-box {
    height: 400px;
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 17px -4px rgba(176, 176, 176, 1);
    box-shadow: 0px 0px 17px -4px rgba(176, 176, 176, 1);
    transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out
}

.service-box i {
    font-size: 40px;
}

.service-box h6 a{
    text-transform: uppercase;
    margin: 30px 0;
    color: #212121;
    text-decoration: none;
}
.service-box p a{
    /* text-transform: uppercase; */
    /* margin: 30px 0; */
    color: #737373;
    text-decoration: none;
}


.service-box hr {
    width: 45px;
    height: 3px;
    background: #13b1cd;
    margin: 20px auto 20px;
}

.service-box:hover {
    background: #13b1cd;
    color: #fff;
}

.service-box:hover hr {
    background: #fff;
}

.service-box:hover p {
    color: #fff;
}
.service-box:hover a {
    color: #fff;
}

.blue {
    background: #13b1cd;
    color: #fff;
}

.blue p a{
    color: #fff;
}

.blue hr {
    background: #fff;
}


/* 

    =========================================== 
        08 - PREVIEW #1 CSS 
    =========================================== 

*/

#preview-1 {
    padding: 60px 0;
}

.preview-text {
    text-align: right;
}

.preview-text span {
    color: #737373;
}

#preview-1 .preview-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin-top: 20px;
}

.preview-img img {
    width: 100%;
    height: auto;
}


/* 

    =========================================== 
        09 - PREVIEW #2 CSS 
    =========================================== 

*/

#preview-2 {
    padding: 60px 0;
}

#preview-2 .preview-text {
    text-align: left;
}

.preview-text {
    padding: 20px 0;
}

#preview-2 .preview-text h2 {
    font-size: 30px;
    font-weight: 300;
}

#preview-2 .preview-text p {
    margin: 20px 0;
}


/* 

    =========================================== 
        10 - VIDEO CSS 
    =========================================== 

*/

#video {
    background-image: url(../images/video/1.jpg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    text-align: center;
}

#video .overlay {
    padding: 150px 0;
    background-color: rgba(19, 177, 205, 0.78);
}

#video h2 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
}

#video p {
    margin: 20px 0;
    color: #fff;
}

#video i {
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: solid 2px #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    color: #13b1cd;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#video i:hover {
    background: transparent;
    color: #fff;
    border: solid 2px #fff;
}


/* 

    =========================================== 
        11 - TEAM CSS 
    =========================================== 

*/

#team {
    padding-bottom: 60px;
}

.member {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.member img {
    width: 100%;
}

.member .overlay-content {
    position: absolute;
    bottom: -100%;
    margin: 0;
    opacity: 0;
    width: 100%;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    background: rgba(19, 177, 205, 0.78);
    color: #fff;
    padding: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.member .overlay-content h5,
.member .overlay-content p {
    margin: 0;
    padding: 0;
}

.member .overlay-content h5 {
    color: #fff;
}

.member .overlay-content p {
    font-style: italic;
    color: #fff;
}

.member:hover .overlay-content {
    opacity: 1;
    bottom: 0;
}

.member-info p {
    text-align: center;
    padding-top: 20px;
}

.member-social {
    text-align: center;
}

.member-social li {
    display: inline-block;
    margin: 0 10px;
}

.member-social li i {
    font-size: 20px;
    color: #13b1cd;
}


/* 

    =========================================== 
        12 - PARALLAX CSS 
    =========================================== 

*/

.parallax {
    background: url(../images/parallax/1.jpg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    margin: 0;
    padding: 200px 0;
}

.parallax-content h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}

.parallax-content span {
    color: #13b1cd;
    font-weight: 500;
}


/* 

    =========================================== 
        13 - SKILLS CSS 
    =========================================== 

*/

#skills {
    padding-bottom: 60px;
}

#skills .col-md-6 {
    padding: 0 60px;
}

.skillbar {
    position: relative;
    display: block;
    margin: 20px 0;
    width: 100%;
    background: #eee;
    height: 30px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    transition-property: width, background-color;
}

#skills span {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.skillbar-bar {
    height: 30px;
    width: 0px;
    background: #13b1cd;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.skill-bar-percent {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 11px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    color: rgba(0, 0, 0, 0.4);
}


/* 

    =========================================== 
        14 - COUNTERS CSS 
    =========================================== 

*/

#counters {
    padding: 60px 0;
}

.counter-value {
    font-size: 40px;
    font-weight: 600;
    color: #13b1cd;
}

.counter h6 {
    text-transform: uppercase;
}


/* 

    =========================================== 
        15 - TESTIMONIALS CSS 
    =========================================== 

*/

#testimonials {
    padding: 60px 0;
}

#owl-demo .item {
    margin: 3px;
}

#owl-demo .item {
    background: url(../images/texture/1.jpg);
    padding: 60px;
    margin: 30px;
}

#owl-demo .item img {
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

#owl-demo .item p {
    font-style: italic;
    width: 80%;
    margin: auto;
}

#owl-demo .item h6 {
    color: #13b1cd;
}


/* 

    =========================================== 
        16 - PRICING CSS 
    =========================================== 

*/

#pricing {
    padding-bottom: 60px;
}

#pricing a {
    text-decoration: none;
    color: #333;
}

.pricing-table {
    background: #fff;
    -webkit-box-shadow: 0 1.25rem 4rem rgba(34, 35, 36, 0.05);
    box-shadow: 0 1.25rem 4rem rgba(34, 35, 36, 0.05);
    padding: 20px;
    -webkit-transition: .5s;
    transition: .5s;
    height: 375px;
    margin-top: 10px;
}
.pricing-table:hover p {
    color: #fff;
   
}

.pricing-table .frame {
    padding: 50px;
    border: solid 5px #13b1cd;
    height: 338px;
}

.table-header i {
    font-size: 60px;
    color: #13b1cd;
}

.table-header h3 {
    font-size: 25px;
    font-weight: 600;
}

.table-price {
    padding: 10px 0;
}

.table-price h2 {
    font-size: 40px;
    font-weight: 700;
    color: #13b1cd;
}

.table-price span {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.table-features ul {
    list-style: none;
}

.table-features ul li {
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0;
    line-height: 25px;
}

.pricing-table:hover {
    background: #212121;
    color: #fff;
}

.pricing-table:hover span,
.pricing-table:hover h3 {
    color: #fff;
}


/* 

    =========================================== 
        17 - PORTFOLIO CSS 
    =========================================== 

*/

#portfolio .container {
    width: 100%;
}

#portfolio .no-padding {
    padding: 0;
    margin: 0;
}

#portfolio .item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #13b1cd;
}

#portfolio img {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#portfolio .overlay-content {
    opacity: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#portfolio .overlay-content h4 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
}

#portfolio .item:hover img {
    -webkit-opacity: 0.3;
    opacity: 0.3;
    -webkit-transform: scale(2.1);
    transform: scale(2.1);
}

#portfolio .item:hover .overlay-content {
    opacity: 1;
    top: 50%;
}


/* 

    =========================================== 
        18 - BLOG CSS 
    =========================================== 

*/

#blog {
    padding-bottom: 60px;
}

.blog-post {
    border-radius: 4px;
    -webkit-box-shadow: 0 1.25rem 4rem rgba(34, 35, 36, 0.05);
    box-shadow: 0 1.25rem 4rem rgba(34, 35, 36, 0.05);
}

.post-img {
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.post-img img:hover {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
}

.post-content {
    padding: 20px 0;
}

.post-content h6 {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    color: #13b1cd;
}

.post-link h2 {
    color: #333;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.35;
    width: 90%;
    margin: 10px auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.post-link:hover {
    text-decoration: none;
}

.post-link h2:hover {
    color: #13b1cd;
    text-decoration: none;
}

.post-content p {
    margin: 20px;
}

.post-info {
    padding: 10px 0;
}

.post-info span {
    color: #13b1cd;
}


/* 

    =========================================== 
        19 - PARTNERS CSS 
    =========================================== 

*/

#partners {
    padding: 30px 0;
}

#partners img {
    width: 150px;
    height: auto;
    opacity: 0.5;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#partners img:hover {
    opacity: 1;
}


/* 

    =========================================== 
        20 - GOOGLE MAP CSS 
    =========================================== 

*/

#map-container {
    width: 100%;
    background: #212121;
    height: 500px;
}

#map {
    height: 100%;
}


/* 

    =========================================== 
        21 - CONTACT CSS 
    =========================================== 

*/

#contact {
    padding: 60px 0;
    background: url(../images/texture/1.jpg);
}

#contact .form-control {
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: none;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
}

#contact .btn {
    width: 100%;
}

#contact .text-danger {
    color: #cc3300;
    text-align: left;
}


/* 

    =========================================== 
        22 - FOOTER CSS 
    =========================================== 

*/

footer {
    padding: 60px 0;
    background: #212121;
}

footer p {
    font-weight: 400;
    margin-top: 10px;
    color: #d0d0d0;
}

footer a {
    color: #13b1cd;
}

footer a:hover,
footer a:visited,
footer a:focus {
    color: #13b1cd;
    text-decoration: none;
}


/* 

    =========================================== 
        23 - BACK TO TOP CSS 
    =========================================== 

*/

#back-top {
    position: fixed;
    display: none;
    font-size: 30px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 7px 12px;
    bottom: 10px;
    right: 15px;
    width: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#back-top:active {
    background: none;
}

#back-top {
    display: block;
    text-decoration: none;
}

#back-top i {
    display: block;
}

#back-top:hover {
    background-color: #13b1cd;
}

/* Style for the dropdown container */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  li.dropdown {
    position: relative;
  }
  
  /* Hide the dropdown menu by default */
  ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  
  /* Style for each dropdown item */
  ul.dropdown-menu li {
    padding: 8px 16px;
  }
  
  ul.dropdown-menu li a {
    text-decoration: none;
    color: black;
  }
  
  /* Show the dropdown menu when hovering over the parent li */
  li.dropdown:hover .dropdown-menu {
    display: block;
  }
  

  