:root {
    --primary-color: hsla(203, 100%, 13%, 1);
    --secondary-color: hsla(330, 86%, 17%, 1);
    --fruit-color: tomato;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;

    padding: 0;
    margin: 0;
}

.decotitles {
    text-transform: uppercase;
    display: inline;
    padding: 5px 20px;

    position: relative;

}

.decotitles::before,
.decotitles::after {
    content: '';
    width: 50px;
    height: 20px;

    position: absolute;
}

.decotitles::before {
    left: 0;
    bottom: 0;

    border-left: 3px solid var(--fruit-color);
    border-bottom: 3px solid var(--fruit-color);
}

.decotitles::after {
    right: 0;
    top: 0;

    border-right: 3px solid var(--fruit-color);
    border-top: 3px solid var(--fruit-color);
}


/* Start Stick Note Section */
.sticknotes a {
    /* background-color: steelblue; */
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    padding: 15px;
    border-radius: 0 10px 10px 0;
    z-index: 100;
    position: absolute;
    transition: left .3s;
}

.sticknotes .business {
    top: 260px;
    left: -80px;
    background-color: var(--primary-color);
}

.sticknotes .condo {
    top: 320px;
    left: -155px;
    background-color: var(--fruit-color);
}

.sticknotes .careers {
    top: 380px;
    left: -70px;
    background-color: var(--secondary-color);
}

.sticknotes a:hover {
    left: 0;
}

/* End Stick Note Section */

/* start header section */
header {
    height: 100vh;
    background: linear-gradient(30deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(../assets/images/netx/10.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Start Navbar */
.brandlogo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    border: 3px solid transparent;
}

.brandlogo:hover {
    border: 3px solid #00f0ff;
    box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff;
    transition: 0.3s ease-in-out;
}

.brandtext:hover {
    text-shadow: 0 0 10px #00f0ff,
        0 0 20px #00f0ff,
        0 0 40px #00f0ff,
        0 0 80px #00f0ff;
    transition: 0.3s ease-in-out;
}

.navbar-toggler {
    border-color: white;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    border-color: white;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar {
    background: linear-gradient(rgba(0, 0, 0, 0.3), var(--primary-color));
    padding: 10px 30px;
    transition: all .7s;
}

.navmenus {
    background: linear-gradient(rgba(0, 0, 0, 1), var(--primary-color));
    padding: 5px 30px;
}

.menuitems {
    color: #f4f4f4 !important;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color .5s;
}

.menuitems:hover {
    color: skyblue !important;
}

.menuitems:focus,
.menuitems:active,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
    color: #00f0ff !important;
    background-color: transparent !important;
    text-shadow:
        0 0 10px #00f0ff,
        0 0 20px #00f0ff,
        0 0 40px #00f0ff,
        0 0 80px #00f0ff;
}

/* End Navbar */

/* Start order now Section */
.ordernow {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../assets/images/netx/10.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ordernow .highspeed {
    text-shadow:
        0 0 10px #00f0ff,
        0 0 20px #00f0ff,
        0 0 40px #00f0ff,
        0 0 80px #00f0ff;
}

.ordernowcard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (min-width: 992px) {
    .highspeed {
        font-size: 2rem !important;
    }
}

/* End order now Section */

/* Start Adv Section */
.missions {
    background-color: var(--primary-color);
}

.fromlefts {
    animation-name: fromleftani;
    animation-duration: 3s;
}

.fromrights {
    animation-name: fromrightani;
    animation-duration: 3s;
}

@keyframes fromleftani {
    0% {
        transform: translateX(-120px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fromrightani {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* End Adv Section */

/* start plan and pack */
.planbtns {
    cursor: pointer;
}

.planbtns.active {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2.5px;
    text-decoration-color: var(--fruit-color);
}

.plandivs {
    display: none;
}

.plandivs.active {
    display: block;
}

/* end plan and pack */

/* Start service Section */
.furicons img {
    width: 70px;
    padding-top: 15px;
}

.furicons div:nth-of-type(even) {
    background-color: #f1f1f1;
}

/* End service Section */

/* start enough section */
.enoughimgdiv {
    overflow: hidden;
    border-radius: 5%;
    width: 150px;
    height: 150px;
    background-color: red;
}

.enoughimg {
    transition: transform .5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.enoughimg:hover {
    transform: scale(1.1);
}

/* end enough section */


/* Start Customers Section */
.customers {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 1)), url(../assets/images/netx/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.customers .customerimg {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.customers .customerfb {
    width: 80%;
    height: 100px;
    margin: auto;
}

/* End Customers Section */

/* start faq Section */
.faqbtn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faqbtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.faqbtn i {
    transition: transform 0.3s ease;
}

.faqbtn:hover i {
    transform: translateX(5px);
}

/* End faq Section */

/* Start Contect Section */
.locations {
    background-image: linear-gradient(100deg,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(0, 0, 0, 0.5) 30%,
            transparent 70%), url(../assets/images/netx/11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
}

/* End Contect Section */

/* Start Footer Section */
.footerlinks {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 13px;

    transition: all .3s;
}

.footerlinks:hover {
    color: orange;
    letter-spacing: 1px;
    border-bottom: 1px solid orange;
}

.footertitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00ccff;
    text-shadow:
        0 0 5px #00ccff,
        0 0 10px #00ccff,
        0 0 15px #0099cc;
}

/* Start Footer Section */

/* Start Back To Top  */
.btn-backtotops {
    background-color: #000;
    color: #0ff;
    padding: 12px 18px;
    border-radius: 12px;
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 1000;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #0ff;
    outline: none;
    box-shadow: 0 0 8px #0ff;
    transition: all 0.3s ease;
}

.btn-backtotops:hover {
    background-color: #00bcd4;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 12px #00bcd4, 0 0 25px #00bcd4, 0 0 40px #00bcd4;
}

/* End Back To Top  */