/*COLORS*/
#footer a:hover {
    color:rgb(206, 206, 206) !important;
}
.red1 {
    color: #ff0000;
}

.red2 {
    color: #740000;
}

.white {
    color: white;
}

.background-white {
    background-color: rgb(255, 255, 255);
}

.background-red {
    background-color: rgb(255, 0, 0);
}

.background-black {
    background-color: #000;
}

.background-profile {
    background: #1C140F;
}

.button-linear-red {
    background: linear-gradient(92.48deg, #fa0505 2.08%, #fd28287c 117.25%);
}

.button-linear-red:hover, .button-linear-red-active, .button-linear-red-active-mobile {
    cursor: pointer;
    background: linear-gradient(92.48deg, #fd28287c 2.08%, #fa0505 117.25%);
}

.subscribe-button {
    background: #dc0000;
    color: white;
    transition: 300ms;
}

.subscribe-button:hover {
    background: #810000;
}

/* Devices */
@media (min-width: 992px) {
    .only-mobile {
        display: none !important;
    }

    .only-desktop {
        display: flex !important;
    }
}

@media (max-width: 992px) {
    .only-mobile {
        display: block !important;
    }

    .only-desktop {
        display: none !important;
    }
}


/* ELEMENTS */
body {
    font-family: 'Poppins';
    font-weight: 400;
    background: #000;
    color: #ffffff;
}

.hero {
    scroll-margin-top: 130px;
}

a {
    color: white;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover,
a:hover {
    text-decoration: none;
    color: #ffffff;
}

.nav-item:hover,
.nav-item-active {
    border-bottom: 3px solid #ff0000;
    border-radius: 5px;
}

.nav-item-active-mobile {
    background-color: #fa0505;
}

.navbar-toggler .lnr {
    font-size: 2rem;
    font-weight: 800;
}

.modal-backdrop {
    z-index: 0;
}

.img-fluid {
    object-position: top;
    object-fit: cover;
    height: 100%;
}

.btn-icon .lnr {
    font-size: 30px;
    margin-right: 10px;
}

.style-carousel .owl-nav .lnr {
    display: block;
    font-size: 3vmin;
    font-weight: 900;
    margin-bottom: 15px;
}

.featherlight .featherlight-content {
    border: none;
    padding: 0;
}

.featherlight .featherlight-content {
    overflow: hidden ;
}

.featherlight-inner {
    height: 100vh;
    width: 100vw;
    max-width: 1000px;
    overflow: hidden;
}

/* CAROUSEL */
.style-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    opacity: 0;
    transition: 500ms;
}

.style-carousel .owl-nav:hover {
    opacity: 1;
}

.style-carousel .owl-prev,
.style-carousel .owl-next {
    width: auto;
    padding: 0 0.5em;
    height: 100%;
}

.style-carousel .owl-prev,
.style-carousel .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000008e;
    color: rgb(255, 255, 255);
}

.style-carousel .owl-item img {
    height: 100vh;
    max-height: 320px;
    max-width: 100%;
    object-fit: cover;
} @media (max-width: 480px) {
    .style-carousel .owl-item img {
        max-height: 45vw;
    }
}

.gallery-carousel {
    max-width: 640px;
}

.admin-carousel {
    max-width: none !important;
    max-height: none !important;
    padding: 0 2em;
}

.admin-carousel .owl-item img {
    max-height: 450px !important;
    max-width: 280px !important;
    object-fit: fill!important;
    height: auto;
    margin: auto;
}

.admin-carousel .owl-nav {
    position: relative !important;
    margin-top: 2em;
    justify-content: flex-end !important;
    opacity: 1 !important;
}  

@media (max-width: 767px) {
    .admin-carousel .owl-nav {
        justify-content: center !important;
    }  
}

.admin-carousel .owl-nav .lnr {
    font-size: 1.5em !important;
}

/* Particle JS */
#particles-js { 
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Loader Subscribe Form */
.loader4 {
    width:45px;
    height:45px;
    display:inline-block;
    padding:0px;
    border-radius:100%;
    border:5px solid;
    border-top-color:#ff0000;
    border-bottom-color:rgba(255,255,255, 0.3);
    border-left-color:#ff0000;
    border-right-color:rgba(255,255,255, 0.3);
    -webkit-animation: loader4 1s ease-in-out infinite;
    animation: loader4 1s ease-in-out infinite;
 }
 @keyframes loader4 {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
 }
 @-webkit-keyframes loader4 {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
 }