
/* test */

.nav .dropdown ul { display: block; position: absolute; left: 14px; top: calc(100% + 30px); margin: 0; padding: 10px 0; z-index: 99; opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 5px;
}

.nav .dropdown ul li {
    min-width: 150px;
    padding: 0 10px;
}

.nav .dropdown ul a {
    padding: 10px 10px;
    font-size: 14px;
    text-transform: none;
    color: #38448c;
}

.nav .dropdown ul a i {
    font-size: 12px;
}

.nav .dropdown ul a:hover,
.nav .dropdown ul .active:hover,
.nav .dropdown ul li:hover>a {
    color: #ee2211;
    background-color: #eee;
    border-radius: 5px;
}

.nav .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.nav .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .nav .dropdown .dropdown ul {
        left: -90%;
    }
    .nav .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}




#hero {
    width: 100%;
    height: 530px;
    background: #000;
    overflow: hidden;
    position: relative;
}

@media (max-height: 500px) {
    #hero {
        height: 150vh;
    }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.01);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 20px;
        line-height: 1.2;
    }
}

#hero p {
    width: 80%;
    font-size: 38px;
    line-height: 1.2;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
}

@media (max-width: 768px) {
    #hero p {
        font-size: 28px;
        line-height: 1.2;
    }
}

#hero .carousel-fade {
    overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#hero .carousel-indicators li {
    cursor: pointer;
    list-style-type: none;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    margin: 0 5px;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #3ec1d5;
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #3ec1d5;
}

