/*#overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: -1;*/
/*    background: rgba(0, 0, 0, 0.1);*/
/*}*/

/*svg {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    z-index: 0;*/
/*}*/

/*!* -------SECTIONS CSS---------- *!*/
/*section {*/
/*    padding: 200px 0;*/
/*    text-align: center;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 110vh;*/
/*}*/

/*section:last-of-type {*/
/*    padding-bottom: 300px;*/
/*}*/

/*.bg-dark {*/
/*    color: #fff;*/
/*    background: rgba(0, 0, 0, 0.8) !important;*/
/*}*/

.navbar-nav li a {
    border-radius: 30px;
    transition: all 0.5s ease-in;
}

.navbar-nav li.active a {
    background: orangered;
    color: #fff !important;
}
.navbar-nav li.active a:hover {
    background: orangered;
    color: #fff !important;
}

@media (max-width: 768px) {
    /*section:first-of-type {*/
    /*    padding-top: 250px;*/
    /*}*/

    .fixed-top {
        padding: 5px;
        background-color: black !important;
        opacity: 0.9 !important;
        max-width: 100% !important;
    }

    .navbar-nav li a {
        padding-left: 20px !important;
    }
}

@media (min-width: 768px) {
    /*section:first-of-type {*/
    /*    padding-top: 100px;*/
    /*}*/


    .navbar-brand {
        display: none;
    }

    .navbar-nav li a {
        color: #fff;
        margin: 0;
        padding: 10px 20px !important;
    }
}

.btn-theme {
    background-color: orangered;
    border: 1px solid orangered;
    color: #fff;
}

.color-theme {
    color: orangered;
}

#home-slides {
    margin: 20px 0;
}

.btn-next {
    position: relative;
    
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: orangered;
    font-size: 20px;
    line-height: 50px;
    margin: 20px auto;
    animation: blink 1s ease-in-out alternate infinite;
}

.btn-next:hover {
    color: #FFF;
}

@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}



/*ul.cloud {*/
/*    list-style: none;*/
/*    padding-left: 0;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    line-height: 2.75rem;*/
/*    width: 450px;*/
/*}*/

/*ul.cloud a {*/
/*    !**/
/*		Not supported by any browser at the moment :(*/
/*		--size: attr(data-weight number);*/
/*		*!*/
/*    --size: 4;*/
/*    --color: orangered;*/
/*    color: var(--color);*/
/*    font-size: calc(var(--size) * 0.25rem + 0.5rem);*/
/*    display: block;*/
/*    padding: 0.125rem 0.25rem;*/
/*    position: relative;*/
/*    text-decoration: none;*/
/*    !**/
/*		For different tones of a single color*/
/*		opacity: calc((15 - (9 - var(--size))) / 15);*/
/*		*!*/
/*}*/

/*ul.cloud a[data-weight="1"] { --size: 1; }*/
/*ul.cloud a[data-weight="2"] { --size: 2; }*/
/*ul.cloud a[data-weight="3"] { --size: 3; }*/
/*ul.cloud a[data-weight="4"] { --size: 4; }*/
/*ul.cloud a[data-weight="5"] { --size: 6; }*/
/*ul.cloud a[data-weight="6"] { --size: 8; }*/
/*ul.cloud a[data-weight="7"] { --size: 10; }*/
/*ul.cloud a[data-weight="8"] { --size: 13; }*/
/*ul.cloud a[data-weight="9"] { --size: 16; }*/

/*ul[data-show-value] a::after {*/
/*    content: " (" attr(data-weight) ")";*/
/*    font-size: 1rem;*/
/*}*/

/*ul.cloud li:nth-child(2n+1) a { --color: orangered; }*/
/*ul.cloud li:nth-child(3n+1) a { --color: white; }*/
/*ul.cloud li:nth-child(4n+1) a { --color: white; }*/

/*ul.cloud a:focus {*/
/*    outline: 1px dashed;*/
/*}*/

/*ul.cloud a::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    width: 0;*/
/*    height: 100%;*/
/*    background: var(--color);*/
/*    transform: translate(-50%, 0);*/
/*    opacity: 0.15;*/
/*    transition: width 0.25s;*/
/*}*/

/*ul.cloud a:focus::before,*/
/*ul.cloud a:hover::before {*/
/*    width: 100%;*/
/*}*/

/*@media (prefers-reduced-motion) {*/
/*    ul.cloud * {*/
/*        transition: none !important;*/
/*    }*/
/*}*/