/********** Template CSS **********/
:root {
    --primary: #F3BD00;
    --secondary: #363636;
    --light: #F3F6F8;
    --dark: #131313;
    --shadow: #1312121e;
    --spacer: 50;
    --danger: #f02727;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.my-auto {
    margin: auto 0;
}

.mx-auto {
    margin: 0 auto;
}

.ml-1 { margin-left: (var(--spacer) * 0.25) !important; }
.ml-2 { margin-left: (var(--spacer) * 0.5) !important; }
.ml-3 { margin-left: var(--spacer) !important; }
.ml-4 { margin-left: (var(--spacer) * 1.5) !important; }
.ml-5 { margin-left: (var(--spacer) * 3) !important; }

p {
    font-size: 14px;
    font-weight: 500; 
}

.align-content-center { align-content: center; }

.h-100 { height: 100%; }

.fs-12 { font-size: 12px !important; }
.fs-14 { font-size: 14px !important; }
.fs-18 { font-size: 18px !important; }
.fs-20 { font-size: 20px !important; }
.fs-22 { font-size: 22px !important; }
.fs-24 { font-size: 24px !important; }
.fs-32 { font-size: 32px !important; }
.fs-42 { font-size: 42px !important; }
.fs-48 { font-size: 48px !important; }
.fs-64 { font-size: 64px !important; }
.fs-86 { font-size: 86px !important; }
.fs-100 { font-size: 100px !important; }
.fs-200 { font-size: 200px !important; }
.f-impact { font-family: Impact, "Franklin Gothic Bold", "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif"; }


.text-red { color: red !important; }
.text-dark { color: var(--dark) !important; }

.text-bold {
    font-weight: bold;
}

h1,h2,h3,h4,h5 {
    color: var(--dark);
}

svg [data-color="1"] {fill: var(--dark);}
svg [data-color="2"] {fill: var(--dark);}

.w-25 { min-width: 25% !important; }
.w-50 { min-width: 50% !important; }
.w-75 { min-width: 75% !important; }
.w-100 { min-width: 100% !important; }

.transition-025s { transition: .25s; }
.transition-05s { transition: .5s; }
.transition-1s { transition: 1s; }
.hover-scale-110:hover { transform: scale(1.1); }
.hover-scale-120:hover { transform: scale(1.2); }

.link {
    display: inline-block;
    cursor: pointer;
}

@media (max-width: 991px) {
    .dsm-block {display:block !important;}
}

@media (min-width: 992px) {
    .dmd-block {display:block !important;}
}

.box-shadow {
    box-shadow: 2px 2px 20px rgba(0,0,0,.2);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 8px;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 30px;
    height: 30px;
}

.btn-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border: 1px solid;
}

.btn-target {
    color: var(--light) !important;
    background-image: linear-gradient(90deg, red, rgba(0,0,0,0));
    background-color: var(--primary);
    padding: 10px 20px;
}

.btn-target:hover {
    background-color: red;
}

.btn-link:hover {
    color: var(--primary) !important;
}

.btn-wallpaper01 {
    position: relative;
    padding: 15px 25px;
    width: 140px;
}

@media (min-width: 1361px) {
    .btn-wallpaper01 {
        bottom: 133px;
        right: -239px;
    }
}

@media (min-width:769px) and (max-width: 1368px) {
    .btn-wallpaper01 {
        bottom: 121px;
        right: -214px;
    }
}

/*** Navbar ***/
.navbar-container {
    position: sticky;
    top: 0px;
    z-index: 1020;
    background-color: var(--light);
    padding: 5px 5% 0;
    height: 90px;
    transition: 1s;
}

.navbar.sticky-top {
    padding: 0;
    width: 100%;
    margin: 3px 0 0;
    border-radius: 10px;
    background-color: var(--dark);
    box-shadow: 3px 3px 15px rgba(0,0,0,.75) !important;
}

.topbar {
    display: flex;
}

.navbar-brand h2 {
    color: var(--light) !important;
}

.navbar-container .topbar a, .navbar-container .topbar p { 
    margin: auto 5px; 
}

.navbar .navbar-brand,
.navbar a.btn {
    margin-right: 15px;
}

.navbar .navbar-collapse {
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 10px;
    padding: 25px 0;
    color: var(--light);
    font-weight: 900;
    text-transform: uppercase;
    outline: none;
    transition: .25s;
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-logo {
    width: 200px;
}

.navbar-toggler {
    color: var(--primary);
    font-size: 32px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .nav-item .dropdown-menu {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 2px solid var(--primary) !important;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    color: var(--light);
    transition: .5s;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 5px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        background-color: var(--dark);
        display: block;
        border: none;
        margin-top: 0;
        top: 70%;
        opacity: 0;
        height: 60px;
        visibility: hidden;
        transition: .25s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        height: 86px;
        visibility: visible;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    justify-content: center;
}

.carousel-control-prev-shadow,
.carousel-control-next-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s;
}
.carousel-control-prev-shadow {
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.carousel-control-next-shadow {
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.carousel-control-prev-shadow:hover,
.carousel-control-next-shadow:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 70vh;
    }
}

@media (min-width: 769px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 90vh;
    }
}

.wallpaper01 {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/wallpaper01.png) left top no-repeat;
    background-size: cover;
}

.wallpaper02 {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/wallpaper02.png) right top no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -55px;
        z-index: 1;
    }
}

/*** Plans ***/
.plan {
    border-radius: 20px;
    padding: 0 20px;
}

.plan .bonus {
    position: relative;
    transform: rotate(-20deg);
    background: linear-gradient(to right, red, var(--primary));
    height: 80px;
    width: 80px;
    top: -35px;
    right: -170px;
    border-radius: 50%;
}

.plan .bonus p {
    padding: 16px 0;
    color: var(--light);
    font-weight: bold;
    margin: 0;
}

.plan .mbps {
    line-height: .7;
    font-weight: bold;
}

.plan .bar {
    background: linear-gradient(to right, red, var(--primary));
    height: 13px;
    width: 100%;
}

.plan .details .upload svg {
    transform: rotate(180deg);
}

.plan .details .description {
    color: var(--dark);
}

.plan .adiction {
    margin-top: 10px;
    color: var(--dark);
}

.plan .assign {
    position: relative;
    top: -30px;
}

.plan .bottom .price {
    line-height: .1;
}

.plan .top, .plan .details, .plan .bottom { 
    position: relative; 
    transition: .5s;
}
.plan .top { top: -18px; }
.plan .details { opacity: 0; top: -50px;}
.plan .bottom { top: -50px; }

.plan .top.open { top: -45px; }
.plan .details.open { opacity: 1; }
.plan .bottom.open { top: -20px; }

/*** Downloads ***/
.down {
    border-radius: 20px;
    padding: 30px 20px;
}

.down .bar {
    background: linear-gradient(to right, red, var(--primary));
    height: 13px;
    width: 100%;
}

.down .mbps {
    line-height: .7;
    font-weight: bold;
}

.down .adiction {
    margin-top: 10px;
    color: var(--dark);
}

.down .top, .down .bottom { 
    position: relative; 
    transition: .5s;
}



/*** About ***/
.about span.title{
    color: var(--dark);
    margin: 0;
    position: relative;
    bottom: -5px;
    line-height: .7;
}

.about-navbar {
    position: relative;
    top: -83px;
    background-color: var(--light);
    border-radius: 10px;
    border-bottom: 2px solid var(--primary);
}

.about-navbar .link {
    padding: 15px 20px;
    color: var(--dark);
    font-weight: bold;
    transition: .5s;
}

.about-navbar .link:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.about-toggler {
    margin-left: 85% !important;
}


.about-img {
    min-height: 50vh;
    background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url(../img/wallpaper04.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: 0 0px;
}

.value, .value h1 {
    color: var(--light);
}

.value svg [data-color="1"], .value svg [data-color="2"] {
    fill: var(--primary);
}

.value-img {
    background-image: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,.6), rgba(0,0,0,.6), rgba(0,0,0,1)), url(../img/wallpaper05.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: 0 0px;
}

/*** Testimonial ***/
.testimonial .comment {
    border-radius: 15px;
    height: 240px;
    text-align: left;
    background-color: var(--light);
    transition: .5s;
    margin-bottom: 20px;
    position: relative;
}
.testimonial .comment:hover { transform: scale(1.1); }

.testimonial .comment .name {
    position: absolute;
    bottom: 20px;
}

.testimonial .icon {
    width: 15%;
    height: 10%;
}

.testimonial .icon1 { transform: rotate(180deg); }
.testimonial .icon2 { margin-left: auto; }

.testimonial svg.icon1 [data-color="1"], .testimonial svg.icon1 [data-color="2"] {
    fill: var(--shadow);
}
.testimonial svg.icon2 [data-color="1"], .testimonial svg.icon1 [data-color="2"] {
    fill: red;
}

.testimonial-carousel .owl-dots {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    max-width: 350px;
}

/*** Contact ***/
.contact {
    background-color: var(--dark);
    margin-bottom: -82px;
}

.contact .button {
    color: var(--light);
    border: 2px solid var(--light);
    border-radius: 10px;
    padding: 15px;
    height: 100px;
    cursor: pointer;
    transition: .5s;
    text-align: center;
    margin-top: 20px;
}

.contact .button:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: scale(1.05);
}

.contact .button span {
    position: relative;
    top: 33%;
}

.contact-img {
    width: 100%;
    position: relative;
    top: -80px;
    background-image: url(../img/wallpaper06.png);
    background-attachment: scroll;
    background-size: cover; 
    background-position: top right;
    border-radius: 25px;
}

.contacts .info {
    width: 100%;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    color: var(--dark);
    transition: .5s;
    text-align: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.contacts .info input, .contacts .info textarea {
    border: 0;
    border-radius: 7px;
    border-bottom: 3px solid var(--primary);
    padding: 20px 10px 5px 10px;
    font-size: 22px;
    color: var(--dark);
    background-color: var(--light);
    transition: .5s;
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
    width: 100%;
}

.contacts .info .input {
    position: relative;
    padding: 5px;
}

.contacts .info .input label {
    transition: .5s;
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--secondary);
    cursor: initial;
}

.contacts .info .input label.active {
    font-size: 14px;
    top: 12px;
}

.contacts .info input:focus ~ label, .contacts .info textarea:focus ~ label {
    color: var(--light);
}

.contacts .info input:focus, .contacts .info textarea:focus {
    color: var(--light);
    background-color: var(--secondary);
}

.contacts a.info:hover {
    transform: scale(1.05);
    background-color: var(--dark);
    color: var(--light);
}

.contacts .info:hover {
    background-color: var(--dark);
    color: var(--light);
}

.contacts .info button {
    padding: 15px;
    width: 100%;
}

.contacts .info button:hover {
    transform: scale(1.025);
}

.alertSuccess {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--primary);
    color: var(--dark);
    position: absolute;
    bottom: -85px;
    opacity: 0;
    border-bottom: 3px solid var(--dark);
    transition: .5s;
}

.alertSuccess.active {
    bottom: 120px;
    opacity: 1;
    animation: ping_pong .4s infinite alternate;
}

.alertFailure {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--danger);
    color: var(--light);
    position: absolute;
    bottom: -85px;
    opacity: 0;
    border-bottom: 3px solid var(--primary);
    transition: .5s;
}

.alertFailure.active {
    bottom: 120px;
    opacity: 1;
    animation: ping_pong .4s infinite alternate;
}
  
@keyframes ping_pong {
    from {
        transform: translateY(22px);
    }
    to {
        transform: translateY(0);
    }
}


/*** Footer ***/
.footer {
    position: fixed;
    border-top: solid 2px var(--primary);
    background: var(--dark);
    transition: .5s;
}

.footer a {
    color: var(--primary);
}

.footer a:hover {
    color: var(--light);
}

/*** Title ***/
.title {
    position: relative;
}

.title .text {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
}

.title-img {
    min-height: 45vh;
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,.6)), url(../img/wallpaper07.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: 0 0px;
}

/*** 404 ***/
.e404 {
    background-color: red;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 80vh;
}

.e404-img {
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,.6)), url(../img/wallpaper08.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center right;
}