@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800;900&display=swap');

:root {
    --main-color: #000;
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey; */
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 0
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    min-width: 400px;
}

/* ---------- */
/* --Header-- */
/* ---------- */

#check {
    z-index: 3;
    display: none;
}

#nav_box {
    display: none;
}

header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    padding: 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

header img {
    width: auto;
    height: 50px;
    /* padding: 10px; */
    border-radius: 5px;
    display: flex;
    margin-top: 13px;
    opacity: 25%;
    position: absolute;
    left: 177px;
    z-index: -1;
}

.navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
}

.navigation a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
    white-space: nowrap;
}

.navigation a:hover {
    background: var(--main-color);
    color: rgb(255, 255, 255);
}

header span {
    color: white;
}

header .logo {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    display: flex;
}

.dropdown {
    float: right;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 8px 20px;
    /* background-color: white; */
    margin: 0;
    letter-spacing: 1px;
    white-space: nowrap;
    font-weight: 500;
    background: none;
    border-radius: 5px;
    width: 142px;
    background: var(--main-color);
    color: white;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: var(--main-color);
    color: white;
    transition: 0.3s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 142px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgb(255, 255, 255);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    margin: 5px;
    border-radius: 0px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}


.navigation .dropdown .dropdown-content .link:hover {
    background-color: var(--color);
    color: rgb(255, 255, 255);
}

.scolling {
    background-color: white;
    box-shadow: 0 1px 1px rgb(0 0 0 / 8%), 0 2px 2px rgb(0 0 0 / 12%), 0 4px 4px rgb(0 0 0 / 16%), 0 8px 8px rgb(0 0 0 / 5%);
    transition: box-shadow 0.5s;
}

.scroll_at_top {
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%), 0 0px 0px rgb(0 0 0 / 0%), 0 0px 0px rgb(0 0 0 / 0%), 0 0px 0px rgb(0 0 0 / 0%);
    transition: box-shadow 0.5s;
}


@media (max-width: 1501px) {

    header {
        padding: 20px 30px;
        min-width: 380px;
    }

    #navbar .navigation {
        display: none;
    }

    #nav_box {
        display: flex;
        background-color: white;
        padding: 13px;
        border-radius: 5px;
        font-size: 25px;
        cursor: pointer;
        transition: 0.3s;
        transition-property: color;
    }

    label .close-btn {
        display: none;
    }

    #check:checked~header .navigation {
        z-index: 5;
        position: fixed;
        background: rgba(255, 255, 255, 0.9);
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    #check:checked~header .navigation a {
        font-weight: 700;
        /* margin-right: 0; */
        /* margin-bottom: 50px; */
        letter-spacing: 2px;
    }

    #check:checked~header label .menu-btn {
        display: none;
    }

    #check:checked~header label .close-btn {
        z-index: 5;
        display: block;
        position: relative;
    }

    .dropdown .dropbtn {
        font-weight: 700;
    }

    /* header img {
        width: 17rem;

    } */
}

/* ------------- */
/* --Section 1-- */
/* ------------- */

.section_1 .background_image {
    height: 100vh;
    width: 100%;
    /* background-color: #f5832a; */
    background: url(wallpaper/1.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.section_1 .background_image .main-text {
    margin: auto;
    width: 1200px;
    text-align: center;
}

.section_1 .background_image .main-text .title-hover {
    font-size: 100px;
    font-weight: 900;
    /* color: var(--main-color); */
    /* font-family: 'Audiowide', "Poppins", cursive; */
    /* font-style: italic; */
    /* -webkit-text-stroke: 0.1px #008cff; */
    text-shadow: 0px 1px 4px #fff;
    margin-bottom: 200px;
}

.section_1 .background_image .main-text .main-list ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    background: none;
}

.section_1 .background_image .main-text .main-list ul li {
    list-style-type: none;
    font-size: 20px;
    background-color: #00000000;
    /* cursor: pointer; */
}

.section_1 .background_image .main-text .main-list ul li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.767);
    font-weight: 500;
    background-color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    width: 220px;
    display: inline-block;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: 0.3s;

}

.section_1 .background_image .main-text .main-list ul li .active_link {
    color: white;
    background-color: var(--color);
}

.section_1 .background_image .main-text .main-list ul li .highlight:hover {
    color: white;
    background-color: var(--color);
}

@media (max-width: 1400px) {
    /* .section_1 .background_image {
        background: url(../image/software_background.png) fixed center;
        background-repeat: no-repeat;
        background-size: unset;
    } */

    .section_1 .background_image .main-text .main-list ul {
        flex-direction: column;
    }

    .section_1 .background_image .main-text .title-hover {
        font-size: 45px;
    }
}

/* .title-hover {
    animation: title-hover 5s infinite;
} */

@-webkit-keyframes title-hover {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes title-hover {
    0% {
        opacity: 0;
        -moz-transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes title-hover {
    0% {
        opacity: 0;
        -o-transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes title-hover {
    0% {
        /* opacity: 0; */
        transform: translateY(0px);
    }

    50% {
        /* opacity: 1; */
        transform: translateY(-40px);
    }

    100% {
        /* opacity: 1; */
        transform: translateY(0);
    }
}

/* ------------- */
/* --Section 2-- */
/* ------------- */

.section_2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0px auto;
    /* gap: 60px; */
    padding: 80px;
    line-height: 34px;
    border-top: 10px solid var(--main-color);
    border-bottom: 5px solid var(--main-color);
    align-items: center;
    justify-content: space-evenly;
}

.section_2 .text {
    max-width: 600px;
}

.section_2 .text h2 {
    text-align: left;
    color: #000000;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 30px;
}

.section_2 .img-format {
    border-radius: 10px;
    width: auto;
    height: 450px;
    align-self: center;

}

@media (max-width: 1400px) {
    .section_2 {
        flex-direction: column;
        gap: 30px;
        padding: 80px 30px;
    }

    .section_2 .img-format {
        height: 300px;
    }

    .section_2 .text,
    .section_2 .text h2 {
        text-align: center;
    }

}

/* ------------- */
/* --Section 3-- */
/* ------------- */

.section_3 {
    height: 600px;
    width: 100%;
    background: url(wallpaper/2.jpg) fixed center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

/* ------------- */
/* --Section 4-- */
/* ------------- */
.section_4 {
    margin: 0px auto;
    gap: 60px;
    padding: 80px;
    line-height: 34px;
    border-top: 5px solid var(--main-color);
    border-bottom: 10px solid var(--main-color);
    align-items: center;

}

.section_4 h2 {
    text-align: center;
    color: #000000;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 30px;
}

.mySlides {
    display: none;
    padding: 30px 80px;
    gap: 30px;
}

.mySlides_img {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    object-fit: contain;
    margin: auto;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: auto;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 150px;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.336);

}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.mySlides_text {
    /* margin-left: 30px; */
    /* color: #f2f2f2; */
    font-size: 15px;
    padding: 8px 12px;
    /* position: absolute; */
    bottom: 8px;
    width: 100%;
    text-align: center;
    align-self: baseline;
}

.mySlides_text h3 {
    text-align: center;
    font-weight: 300;
    color: #000000;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 50px;
    margin-bottom: 20px;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #000000;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #000000;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

@media (max-width: 1000px) {
    .mySlides {
        flex-direction: column;
        align-items: center;
        padding: 30px 40px;
    }

    .section_4 {
        padding: 80px 30px;
    }
}



/* ------------- */
/* --Section 5-- */
/* ------------- */
.section_5 {
    padding: 200px;
    background: url(wallpaper/3.jpg) fixed center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

/* ------------- */
/* --Section 6-- */
/* ------------- */

.section_6 {
    margin: 0px auto;
    gap: 30px;
    padding: 80px;
    line-height: 34px;
    border-top: 10px solid var(--main-color);
    /* border-bottom: 0px solid var(--main-color); */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section_6 h2 {
    text-align: center;
    color: #000000;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 60px;
    /* margin-bottom: 30px; */
}

.products {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* overflow-y: scroll; */
    overflow-x: scroll;
    max-width: 1200px;
}

.box {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 10px;
    border: 1.5px solid rgb(214, 214, 214);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.image {
    display: flex;
    background-color: rgb(234, 236, 238);
    /* width: 100%; */
    height: 200px;
    border-top-left-radius: 7.5px;
    border-top-right-radius: 7.5px;
    z-index: -0;
}

.image a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.image img {
    width: auto;
    height: 200px;
    margin: auto 0px;
    border-radius: 5px;
}

.gallery-text {
    margin-top: 20px;
    padding: 0px 20px;
    width: 300px;
}

.gallery-text h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-text p {
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
}


.btn_button {
    color: white;
    text-decoration-line: none;
    background-color: var(--main-color);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
}

@media (max-width: 1000px) {
    .section_6 {
        padding: 80px 30px;
    }

}

/* ------------- */
/* --Section 7-- */
/* ------------- */

.section_7 {
    margin: 0px auto;
    gap: 30px;
    padding: 80px;
    line-height: 34px;
    /* border-top: 10px solid var(--main-color); */
}

.section_7 h2 {
    text-align: center;
    font-weight: 300;
    color: #000000;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 30px;
}

.section_7_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
}

.section_7_container p {
    width: 300px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.section_7_container p span {
    font-size: 18px;
    font-weight: 300;
}

.section_7_container p i {
    margin-right: 15px;
}

@media (max-width: 1000px) {
    .section_7 {
        padding: 80px 30px;
    }

    .section_7_container {
        flex-direction: column;
        gap: 30px;
    }

    .section_7_container p {
        width: unset;
    }

}

/* ------------------ */
/* --Section why us-- */
/* ------------------ */

.section_why-us {
    border-top: 5px solid var(--main-color);
    border-bottom: 5px solid var(--main-color);
    /* background: black; */
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: url(wallpaper/4.jpg) fixed center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.section_why-us h2 {
    color: #000;
    font-weight: 1000;
    text-align: center;
    font-size: 2.4rem;
    text-shadow: 0px 1px 4px #fff;

}

.section_why-us .flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


.section_why-us .flex-container .why-us-box {
    color: white;
    display: flex;
    flex-direction: column;
    width: 300px;
    text-align: center;
    background-color: #00000056;
    padding: 30px;
    border-radius: 10px;
    align-self: baseline;
    gap: 20px
}

.section_why-us:hover>.flex-container .why-us-box {
    background-color: var(--main-color);
    transition: 0.8s;
}

.section_why-us .flex-container .why-us-box i {
    font-size: 30px;
}

.section_why-us .flex-container .why-us-box p {
    line-height: 34px;

}

@media (max-width: 1200px) {
    .section_why-us .flex-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: auto;
    }

    .section_why-us .flex-container .why-us-box {
        margin: auto;
    }
}

/* ----------------------- */
/* --Section peripherals-- */
/* ----------------------- */
.section_peripherals {
    border-top: 10px solid var(--main-color);
    border-bottom: 10px solid var(--main-color);
    padding: 50px 80px;
    background: url(wallpaper/5.jpg) fixed center center;
    background-position: 0px 90px;
    background-repeat: no-repeat;
    background-size: cover;
}


.section_peripherals:hover>p {
    transition: 0.8s;
    background-color: var(--main-color);
}

.section_peripherals:hover>ul li {
    transition: 0.8s;
    background-color: var(--main-color);
}

.section_peripherals h2 {
    color: #000;
    font-weight: 1000;
    text-align: center;
    font-size: 2.4rem;
    text-shadow: 0px 1px 4px #fff;
    margin-bottom: 20px;
}

.section_peripherals p {
    background-color: #00000056;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 30px auto;
    line-height: 34px;
    color: white;
}

.section_peripherals ul {
    display: grid;
    grid-template-columns: auto auto auto;
    list-style-position: inside;
    grid-gap: 30px;
    margin-top: 30px;
    width: 100%;
    margin: auto;
    max-width: 1200px;
}

.section_peripherals li {
    background-color: #00000056;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.color-white {
    color: white;
    text-shadow: 0px 1px 4px #000;
}

@media (max-width: 1200px) {
    .section_peripherals {

        padding: 50px 40px;

    }

    .section_peripherals ul {
        grid-template-columns: auto auto;
    }

}

@media (max-width: 500px) {
    .section_peripherals {

        padding: 50px 40px;

    }

    .section_peripherals ul {
        grid-template-columns: auto;
    }

}

.hyperlink-1{
    color: black;
}
