@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

:root {
    --backgroundColor: #2b2b2b;
    /* --backgroundColor: rgb(20, 20, 20); */
    --greyBG: #929292;
    --whiteBG: #e0e0e0;
    --headerColor: rgb(36, 36, 36);
    --footerColor: rgb(20, 20, 20);
    --orangeAccent: rgb(255, 115, 0);
    --greenAccent: rgb(65, 255, 65);
    --dropdownBG: #f9f9f9;
    --dropdownBGHover: #4d4d4d;
    --dropdownText: black;
    --dropdownTextHover: #f5f5f5;
    --downloadButton: rgb(207, 82, 24);
    --textWhite: white;
    --textDarkWhite: rgb(226, 226, 226);
    --textBlack: rgb(14, 14, 14);
    --bannerDarkBG: rgb(58, 58, 58);
    --bannerLightBG:  rgb(206, 206, 206); 
    --pluginTextBG: rgb(27, 27, 27);
}

body {
    margin: 0;
    background-color: var(--backgroundColor);
    user-select: none;
}

.BG {
    
    position: absolute;
    background-size: cover;
    width: 100%;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

@font-face {
    font-family: 'voidDSP_font';
    src: url('/src/hemi.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

#menuButton {
    position: absolute;
    padding: 12px 20px;
    margin-left: 16px;
    text-align: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
    transition: 0.3s;
    display: none;
    z-index: 9999;
}

/* @media (max-width: 1300px) {
    #menuButton {
        display: block;
    }
} */

nav {
    width: 100%;
    align-items: center;
    /* justify-content: space-between; */
    user-select: none;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    background-color: var(--headerColorf);
    position: absolute;
    z-index: 9997;
    max-height: 55px;
    /* background-color: red; */
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 0 22px;
    z-index: 0;
}

nav ul li a {
    text-decoration: none;
    color: rgb(197, 197, 197);
    font-size: 20px;
    letter-spacing: 2px;
    transition: 0.1s;
}
  
@media (max-width: 1300px) {
    nav ul li {
        margin: 0;
        border-bottom: 1px solid rgb(128, 128, 128);
        background-color: rgb(58, 58, 58);
        padding: 7px 15px;
        display: none;
        transition: 0.3s;
        /* background-color: blue; */
        z-index: 0;
    }

    nav ul li:hover {
        background-color: #4d4d4d;
    }

    ul {
        list-style-type: none;
        background-color: var(--headerColor);
        padding: 0;
        margin: 0;
        width: 87px;
        margin-top: 55px;
        transition: 0.3s;
        transform: translateY(-100%);
    }

    nav ul li a {
        font-size: 16px;
        letter-spacing: 1px;
        padding-right: 15px;
        padding-top: 6px;
        padding-bottom: 6px;
        
    }

    .dropdownBlocker {
        width: 90px;
        background-color: var(--headerColor);
        height: 55px;
        position: absolute;
        z-index: 9998;
    }
}

@media (max-width: 500px) {
    nav {
        background-color: var(--footerColor);
    }

    .dropdownBlocker {
        background-color: var(--footerColor);
    }
}
  
nav ul li a:hover {
    color: var(--orangeAccent);
}

nav ul li:nth-child(2) a {
    /* color: red; */
    outline: none;
    margin: 0;
}

@media (max-width: 1300px) {
    nav ul li:nth-child(3) a.special {
        padding-right: 40px;
    }
}

#dropdown {
    padding-bottom: 17px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dropdownBG);
    min-width: 90px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transform: translateX(-15%) translateY(15%);
    font-family: 'Poppins', sans-serif;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: var(--dropdownText);
    padding: 5px 12px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 15px;
}

#webDropdown {
    transform: translateX(-30%) translateY(42%);
}

@media (max-width: 1300px) {
    .dropdown-content {
        transform: translateX(71.5%) translateY(-26%);
    }

    #webDropdown {
        transform: translateX(78%) translateY(-77%);
    }
}

.dropdown-content:nth-child(2) a {
    border-bottom: 1px solid #383838;
}

.dropdown-content a:hover {
    background-color: var(--dropdownBGHover);
    color: var(--dropdownTextHover);
}

/* Show the dropdown menu on hover */
nav ul li:nth-child(2) a:hover + .dropdown-content {
    display: block;
}

nav ul li:nth-child(3) a:hover + .dropdown-content {
    display: block;
}

.dropdown-content:hover {
    display: block;
}

#mainTitle {
    text-align: center;
    float: center;
    width: 100%;
    margin-top: 0;
    /* background-color: red; */
    font-family: 'voidDSP_font';
    font-size: 20px;
    color: rgb(218, 218, 218);
    position: absolute;
    z-index: -1;
    background-color: var(--footerColor);
    padding-top: 16px;
    padding-bottom: 16px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--textDarkWhite);
    text-align: center;
    font-size: 46px;
    letter-spacing: 3px;
    margin: 0;
}

@media (max-width: 500px) {
    h1 {
        font-size: 26px;
    }
}

@media (min-width: 501px) and (max-width: 1250px) {
    h1 {
        font-size: 28px;
    }
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--textDarkWhite);
    text-align: center;
}

span {
    color: var(--orangeAccent);
}

footer {
    text-align: center;
    background-color: var(--footerColor);
    color: #dbdbdb;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.scrolling-text-container {
    background-color: rgb(194, 194, 194);
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Hide the overflow */
    white-space: nowrap;
}

.scrolling-text {
    animation: marquee 3s linear infinite;
    display: flex;
    letter-spacing: 4px;
    margin: 0;
}

.scrolling-text p {
    padding: 0 20px;
    margin: 0;
    font-family: 'voidDSP_font';
}

.scrolling-text2 {
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif; 
    color: black; 
    letter-spacing: 2px;
    text-align: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0.5%); /* Start from the right edge */
    }
    100% {
        transform: translateX(-12.2%); /* Scroll to the left edge */
    }
}

.pluginImages {
    display: flex;
    max-width:580px;
    align-items: center;
    height: 750px;
}

/* plugins page */
.pluginImg {
    filter: drop-shadow(0px 12px 20px rgba(0,0,0,0.4));
    /* padding-right: 249px; */
    padding-left: 51px;
}

/* .pluginImg.second{

} */

.pluginText {
    color: var(--textWhite);
    text-align: center;
    /* background-color: rgb(139, 139, 139); */
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--pluginTextBG);
    /* filter: drop-shadow(0px 12px 20px rgba(0,0,0,0.4)); */
    position:absolute;
    width: 20%;
    margin-left: 40%;
    margin-right: 40%;
}

@media (max-width: 500px) {
    .pluginImages {
        display: inline-block;
        text-align: center;
    }

    .pluginImg {
        padding-right: 0;
        padding-left: 0;
        max-width:50%;
        margin-left: 25%;
        margin-right: 25%;
    }

    .pluginText {
        width: 81%;
        margin-left: 9%;
        margin-right: 9%;
    }
}

@media (min-width: 501px) and (max-width: 900px) {
    .pluginText {
        width: 60%;
        margin-left: 20%;
        margin-right: 20%;
    }
}

@media (min-width: 900px) and (max-width: 1400px) {
    .pluginText {
        width: 40%;
        margin-left: 30%;
        margin-right: 30%;
    }
}

.aboutContainer {
    padding-bottom: 85px;
}

.about {
    color: var(--textWhite);
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    transform: translateY(-10%);
}

.pluginText h2 {
    font-size: 55px;
    padding: 0;
    margin: 0;
}

.pluginText h5 {
    font-size: 22px;
    font-weight: lighter;
    margin: 0;
    padding: 0;
}

.pluginText h6 {
    width: 350px;
    font-size: 14px;
    font-weight: lighter;
    margin: 0;
    padding: 0;
}

.pluginText p {
    padding: 0;
    margin: 0;
    font-size: 14px;
    width: 91%;
    text-align: left;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 32px;
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 3px;
}

.pluginText p span {
    text-align: center;
    text-decoration: underline;
    font-weight: bold;
}

a {
    text-decoration: none;
}

a .downloadButton {
    /* background-color: rgb(32, 111, 163); */
    background-color: var(--downloadButton);
    color: #ebebeb;
    margin-top: 20px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 3px;
    font-size: 23px;
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: bold;
    filter: drop-shadow(0px 12px 20px rgba(0,0,0,0.4));
}

a .downloadButton:hover {
    cursor: pointer;
    background-color: #d6d6d6;
    /* color: rgb(32, 111, 163); */
    color: var(--downloadButton);
}

.pluginSeparator {
    text-align: center;
    background-color: rgb(20, 20, 20);
    margin: 0;
    padding: 0;
    height: 1px;
    margin-left: 3%;
    margin-right: 3%;
}

@media (max-width: 500px) {
    .pluginText h2 {
        font-size: 45px;
        padding: 0;
        margin: 0;
    }

    .pluginText h5 {
        font-size: 19px;
    }

    .pluginSeparator {
        /* margin-top: 50px;
        margin-bottom: 30px; */
        position: relative;
    }

    .pluginSeparator.first {
        margin-top: 155px;
        margin-bottom: 10px;
    }

    .pluginSeparator.second {
        margin-top: -130px;
        margin-bottom: 10px;
    }
}


.keypadzContainer {
    margin-left: auto;
    margin-right: auto;
    width: 45%;
}

.keypadzImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border: 1px solid var(--textDarkWhite);
    cursor: pointer;
    transition: .3s ease;
    width:100%;
}

.keypadzImg:hover {
    filter: blur(3px) brightness(0.7);
}

@media (max-width: 500px) {
    .keypadzContainer {
        width: 80%
    }
}

.keypadzText, .featList {
    color: var(--textWhite);
    font-family: Arial, Helvetica, sans-serif;
}

.keypadzText p {
    font-size: 20px;
    text-align: center;
    margin-left: 37%;
    margin-right: 37%;
}

.featList {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
    text-align: center;
}

.featList h4 {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .keypadzText p {
        margin-left: 9%;
        margin-right: 9%;
    }

    .featList {
        width: 80%;
    }
}

/* .privacyPolicy {
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.privacyPolicy p {
    font-family: Arial, Helvetica, sans-serif;
}

.privacyPolicy a {
    color: yellow;
}
 */

 .bannerContainer {
	width:100%;
    height:435px;
    text-align: center;
    padding-top: 2.9%;
    position: relative;
}

.pluginBanner {
	width:100%;
    height:100%;
    object-fit:cover;
}

#smallBanner {
    display: none;
}

@media only screen and (max-width: 500px){
    #smallBanner {
        display: block;
        margin-top: 35px;
        
    }    
    
    .pluginBanner {
        display: none;
    }

    .bannerContainer {
        width:100%;
        height:200px;
        padding-bottom: 45px;
    }
}

.bannerText {
    /* text-align: center;
    width: 40%; */
    background-color: var(--bannerDarkBG);
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    padding: 10px 0px;
    color: var(--textWhite);
    width: 17%;
    /* margin-left: 3.6%; */
    border-radius: 0 5px 0 0;
}

@media (max-width: 750px) {
    .bannerText {
      text-align: center;
      width: 100%;
      margin-left: 0;
      border-radius: 0;
    }
}

.pluginDataContainer {
    display: flex;
}

.pluginData {
    /* background-color: rgb(20, 20, 20); */
    width: 93%;
    height: auto;
    /* border: 2px solid white; */
    margin-left: 3.5%;
    margin-right: 3.5%;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.pluginData h1 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: -10px;
    text-align: left;
}

.pluginData p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: var(--textWhite);
}

.pluginData:nth-child(2) {
    margin-left: -22px;
    margin-right: -22px;
}

@media (max-width: 500px) {
    .pluginDataContainer {
        display: block;
    }

    .pluginData {
        width: 80%;
        height: auto;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 0;
        margin-bottom: 0;
        padding: 5%;
    }

    .pluginData:nth-child(2) {
        /* background-color: red; */
        margin-left: 5%;
    }
}

.osLogos {
    width: 100%;
    /* background-color: red; */
    padding-top: 10px; 
    padding-bottom: 10px;
    display: inline-flex;
    /* cursor: pointer; */
}

.osLogos a {
    cursor: pointer;
    color: var(--textWhite);
    font-family: Arial, Helvetica, sans-serif;
    padding-top:6px;
    margin-left: -29px;
    padding-left: 37px;
}

.osLogos a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.osLogoOpacity {
    opacity: 0.8;
  }

.osLogos svg {
    width: 5%;
    fill: var(--textWhite);
    /* margin-right: 40px;
    margin-right: 10px; */
    /* padding-right: 8px; */
    height: 25px;
}

@media (max-width: 500px) {
    .osLogos svg {
        width: 6%;
        height: 29px;
    }
}

@media (max-width: 1300px) and (min-width: 501px) {
    .osLogos svg {
        width: 8%;
        height: 29px;
    }
}

.priceContainer {
    text-align: center;
    font-size: 18px;
}

.priceText {
    text-decoration: line-through;
    color: var(--textWhite);
}

@media (max-width: 500px) {
    .priceContainer {
        font-size: 12px !important;
    }
}

.specTitle {
    font-weight: bolder;
}

#darkmodeButton {
    position: absolute;
    color: white;
    font-size: 20px;
    padding: 16px 20px;
    right: 0;
    margin-right: 16px;
    cursor: pointer;
    transition: 0.3s;
}

#darkmodeButton:hover {
    color: var(--orangeAccent);
}

@media (max-width: 1400px) {
    #darkmodeButton:hover {
        color: white;
    }
}






/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    /* display: inline-block; */
    display: none;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* 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) {
    .text {font-size: 11px}
  }



  #slide {
    width: 270%;
  }

  @media (max-width: 500px) {
    #slide {
        width: 90%;
    }
    
    .text {
        bottom: 15px;
    }

    .BG {
        display: none;
    }
  }




button {
    max-width: 320px;
    display: flex;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    gap: 0.75rem;
    color: rgb(65, 63, 63);
    background-color: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin: auto;
    /* box-shadow: 1px 1px inset rgb(39, 39, 39), -1px -1px inset rgb(39, 39, 39); */
    position: relative;
}

button a {
    color: rgb(53, 53, 53);
}

button:hover {
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.719);
}

button:hover a {
    color: #fff;
}




 
#contact-form {
    text-align: center;
    position: relative;
}

.formText {
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

input {
    height: 30px;
    font-size: 18px;
}

input, #message {
    width: 90%;
    outline: none;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 3px;
    background-color: #ebebeb;
    border: 1px solid #2b2b2b;
}

#submitButton {
    max-width: 320px;
    display: flex;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    gap: 0.75rem;
    color: rgb(65, 63, 63);
    background-color: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#submitButton:hover {
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.719);
    color: #fff;
}





.homepageDataContainer {
    display: flex;
}

.homepageData {
    /* background-color: rgb(20, 20, 20); */
    width: 90%;
    height: auto;
    /* border: 2px solid white; */
    margin-left: 3.5%;
    margin-right: 3.5%;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
    color: white;
    text-align: center;
    position: relative;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0;
    padding-top: 14%;
}

.homepageData h1 {
    color:#fff93f;
    font-size: 45px;
}

.homepageData h2 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.homepageData p {
    font-size: 15px;
    color: var(--textWhite);
    font-size: 17px; color:
    white;
    /* font-weight: lighter; */
    margin-top: 0;
}

.homepageData:nth-child(2) {
    margin-left: -22px;
    margin-right: -22px;
}



@media (max-width: 1600px) {
    .homepageData h1 {
        font-size: 35px;
    }

    .homepageData h2 {
        font-size: 20px;
    }

    .homepageData p {
        font-size: 15px;
    }

    .formText {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .homepageDataContainer {
        display: block;
    }

    .homepageData {
        width: 80%;
        height: auto;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .homepageData h1 {
        font-size: 40px;
    }

    .homepageData h2 {
        font-size: 25px;
    }

    .homepageData:nth-child(2) {
        /* background-color: red; */
        margin-left: 5%;
    }
}