:root {
    --body-background:rgb(255, 98, 98);
    --text-colour: rgb(255, 255, 255);
    --hover-dark: rgba(0, 0, 0, 0.400);
    --io-white-color: rgb(255, 255, 255);
    --io-dark-white-color: rgb(223, 223, 223);
    --io-dark-color:rgb(41, 41, 41);
    --io-dark-black: rgb(0, 0, 0);
    --io-dark-color-hover:rgb(93, 93, 93);
    --nav-button-background: rgb(25, 208, 49);
    --nav-button-text-color: rgb(255, 255, 255);
    --ihunter-brand-color: #332E2E;
    --ihunter-brand-hover-color: #231F1F;
    --repro-brand-color: #04183B;
    --repro-brand-hover-color: #0b285b;
    --font-family: 'Roboto', sans-serif; 
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--io-white-color);
}

p {
    font-weight: bold;
    font-family: var(--font-family);
    font-weight: 500;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: auto;
}

a {
    text-decoration: none;
    color:var(--io-dark-color)
}

a:hover {
    text-decoration: none;
    color:var(--io-dark-color-hover)
}

/* TOP NAVIGATION */

#nav-container {
    background-color: var(--io-white-color); /* Background color extends beyond container */
}

.nav-main {
    display: flex;
    height: 64px;
    max-width: 1200px;
    padding: 0 10%;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.nav-logo {
    height:64px;
    display:flex;
    align-items: center;
    padding:0px 10px;
}

.nav-logo img {
    max-height: 50px;
}

.nav-logo:hover {
    background-color: var(--io-dark-white-color);
}

.nav-items {
    display: flex;
    flex-grow: 1; /* Allow flex items to grow to fill available space */
    justify-content: flex-end;
    align-items: center;
}

.nav-icon {
    display: none;
}

.dropdown {
    display:none;
}

.button {
    min-width: 120px; /* Set a minimum width for the button */
    height: 64px;
    background-color: var(--io-white-color);
    color: var(--io-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}

.button:hover {
    background-color: var(--io-dark-white-color);
}

.button-ihunter {
    min-width: 120px; /* Set a minimum width for the button */
    height: 64px;
    background-color: var(--ihunter-brand-color);
    color: var(--io-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}

.button-ihunter:hover {
    background-color: var(--ihunter-brand-hover-color);
}

.button-ihunter img {
    height:25%;
    width:25%;
    margin-right:4px;
}

.button-repro {
    min-width: 120px; /* Set a minimum width for the button */
    height: 64px;
    background-color: var(--repro-brand-color);
    color: var(--io-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-repro:hover {
    background-color: var(--repro-brand-hover-color);
}

.button-repro img {
    height:25%;
    width:25%;
}

/* START - HERO BANNER */


.banner-background {
    margin: auto;
    overflow: hidden; /* Ensure that any child element exceeding the height is hidden */
    background-image: url('img/window-frame.jpg');
    background-size: cover;
}

.banner {
    position:relative;
    height: 100%;
    max-width: 1200px;
    display: flex;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.banner-background img {
    width: 100%;
    height: 100%;
    
}

.text-box {
    left:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px 20px 20px; /* Adjust the padding as needed */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    margin-top:15%;
    margin-bottom:15%;
    max-width: 650px; /* Set width to 100% to follow parent's width */
}

/* START - OUR PRODUCTS */

.products-container {
    background-color:var(--io-white-color);
}

.products {
    position:relative;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.products-title {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 44px;
    margin-bottom:64px;
}

.products-card {
    display:flex;
    align-items: flex-start;
    margin-bottom:120px;
}

.products-card-icon {
    display:flex;
}

.products-card-info-title-mobile {
    display:none;
}

.products-card img {
    height:120px;
    width:120px;
}

.products-card-info {
    display:flex;
    flex-direction: column;
    max-width:800px;
    margin-left:50px;
}

.products-card-info-title {
    font-size: 2.0em;
    margin-bottom: 10px;
    font-weight: 400;
}

.products-card-info-description {
    margin-bottom: 24px;
    font-weight: 400;
}

.products-card-link {
    font-size: 1.1em;
    font-weight: 700;
}

.products-card-app-badges {
    display: flex;
    align-items: center;
}

.products-card-app-badges img {
    margin-top:24px;
    margin-right:8px;
    height:100%;
    width:120px;
}

/* START OF ABOUT US */

.about-container {
    background-color:var(--io-white-color);
}

.about {
    position:relative;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.about-card {
    display:flex;
    align-items: flex-start;
    margin-bottom:120px;
}


.about-progress {
    display:flex;
    margin-bottom:120px;
    margin-top:34px;
    background-color:var(--io-white-color);
}



.about-textbox {
    display:flex;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: left;
    flex-direction: column;
    margin-top:64px;

}

.about-textbox-title {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
    margin-bottom:24px;
}

.about-textbox-progress {
    display:flex;
    flex-wrap: wrap;
}

.about-textbox-progress-item {
    margin-bottom: 25px;
}

.about-textbox-progress-title {
    font-size: 2.5em;
    font-weight: 500;
    margin-right: 64px;
}

.window {
    display: flex;
    width: 100%;
    height: 100%;
    flex-flow: 1;
    justify-content: center;
    align-items: center;

}

.window-frame {
    height:35vh;
    width:35vh;
}

.window-frame img {
    height:100%;
    width:100%;
    background-image: url('img/window-frame-2.jpg');
    /* Create the parallax scrolling effect */
    background-position: 50% 10% !important;
    background-attachment: fixed;
    /* background-position: right; */
    background-repeat: no-repeat;
    background-size: cover;
}

/* START OF FOOTER */

.footer-container {
    background-color:var(--io-dark-white-color);
}

.footer {
    display: flex;
    height: 164px;
    max-width: 1200px;
    padding: 0 10%;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom:8px;
}

.footer-copyright {
    font-size:0.7em;
}

.footer-right {
    display:flex;
    font-size: 1.1em;
    font-weight: 700;
}

.footer-link {
    display:flex;
    margin-left:15px;
}

.footer-dot {
    margin-left:15px;
    font-size: 1.1em;
    font-weight: 700;
    color: rgb(169, 169, 169);
}


/* START OF CONTACT US PAGE */

.contact-banner {
    position:relative;
    height: 240px;
    max-width: 1200px;
    display: flex;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.contact-banner-background {
    margin: auto;
    overflow: hidden; /* Ensure that any child element exceeding the height is hidden */
    background-image: url('img/window-frame.jpg');
    background-position: 50% 10% !important;
    background-size: cover;
}

.contact-container {
    background-color:var(--io-white-color);
}

.contact {
    position:relative;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.contact-title {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 44px;
    margin-bottom:64px;
}

.contact-card {
    display:flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom:120px;
}

#contact-email {
    display:flex;
    margin-bottom:24px;
}

#contact-name {
    display:flex;
    margin-bottom:52px;
}

#contact-message {
    display:flex;
    margin-bottom:34px;
}

input[type=text], select, textarea{
    width: 50%;
    padding: 12px;
    border:none;
    border-bottom:2px solid #7e7e7e;
    box-sizing: border-box;
    resize: none;
    font-family: var(--font-family);
}

textarea {
    height:124px;
    border:2px solid #7e7e7e;
}

textarea:focus, input:focus{
    outline: none;
}

#send-button {
    display:flex;
    border-radius: 0px;
    margin-bottom:120px;
}

#send {
    border-radius: 0px;
}

input[type=submit] {
    width: 100%;
    padding: 12px;
    border:none;
    box-sizing: border-box;
    font-family: var(--font-family);
    cursor:pointer;
    color:var(--io-white-color);
    background-color: var(--io-dark-color);
}

input[type=submit]:hover {
    width: 100%;
    padding: 12px;
    border:none;
    box-sizing: border-box;
    font-family: var(--font-family);
    cursor:pointer;
    background-color: var(--io-dark-color-hover);
}

.contact-success-title {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 44px;
    margin-bottom:24px;
}

.contact-success-card {
    margin-bottom:48px;
}

.success-button {
    height:32px;
    width:164px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: var(--io-dark-white-color);
    color:#b3b3b3;
    border-radius:4px;
    border:2px solid #b3b3b3;
    margin-bottom:200px;
}

.success-button img {
    height:18px;
    width:18px;
    margin-right:6px;
    fill:#b3b3b3;
}

/* START OF CAREERS PAGE */

.careers-banner {
    position:relative;
    height: 240px;
    max-width: 1200px;
    display: flex;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.careers-banner-background {
    margin: auto;
    overflow: hidden; /* Ensure that any child element exceeding the height is hidden */
    background-image: url('img/banner.jpg');
    background-position: 50% 10% !important;
    background-size: cover;
}

.careers-container {
    background-color:var(--io-white-color);
}

.careers {
    position:relative;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 0 10%;
    margin: auto;
    justify-content: space-between;
}

.careers-title {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 44px;
    margin-bottom:64px;
}

.careers-card {
    display:flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom:64px;
}


@media (max-width: 744px) {

    /* TOP NAVIGATION */

    #nav-main {
        display: flex;
        justify-content: flex-start;
        padding: 0 6%;
    }

    .nav-logo {
        margin: 0 auto; 
        position: absolute;
        flex: 0 1 auto;
        top:0px;
          /* NEW - Center flex item in the middle */
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-logo img {
        max-height: auto;
        width:140px
    }

    .nav-items {
        display: none;
    }

    body.dropdown-open .dropdown {
        display: flex;
        flex-direction: column;
      }

    .dropdown {
        position: absolute;
        top: 64px; /* Adjust this value to position the dropdown below the nav-main */
        right: 0; /* Adjust this value to position the dropdown horizontally */
        width:216px;
        height:256px;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        background-color: var(--io-dark-black);
        z-index: 999; /* Ensure dropdown is above other elements */
    }

    .button {
        width:100%;
    }

    .button-ihunter {
        width:100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;

    }

    .button-ihunter img {
        margin-right:-10px;
    }


    .button-repro {
        width:100%;
        justify-content: center;

    }

    .button-repro img {
        margin-right:-14px;
    }

    .nav-icon {
        display: flex;
        height: 32px;
        width: 32px;
        align-items: center;
        justify-content: center; 
        cursor: pointer;
        margin-left: auto;
    }

    .nav-icon svg {
        width: 24px; /* Set the desired width */
        height: 24px; /* Set the desired height */
        fill: var(--io-dark-color); /* Set the desired color */
    }
    
    /* END - TOP NAVIGATION */

    .products-title {
        margin-bottom:54px;
        font-size: 2.0em;
    }

    /* START - PRODUCTS - MOILE */
    

    .products-card {
        display:flex;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom:84px;
    }

    .products-card img {
        height:80px;
        width:80px;
    }

    .products-card-info {
        display:flex;
        flex-direction: column;
        max-width:800px;
        margin-left:0px;
        margin-top:12px;
    }

    .products-card-info-title-mobile {
        display:block;
        position:absolute;
        margin-left:92px;
        margin-top:22px;
        font-size: 2em;
        font-weight: 400;
    }

    .products-card-info-title {
        display:none;
    }

    .products-card-info-description {
        margin-top:8px;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .products-card-app-badges img {
        margin-top:20px;
        margin-right:8px;
        height:100%;
        width:120px;
    }


    .about-textbox-title {
        font-size: 2.0em;
    }

    .about-textbox-progress-title {
        font-size: 2.0em;
    }

    .footer {
        display: flex;
        height: 164px;
        max-width: 1200px;
        padding: 3% 10%;
        flex-direction: column;
        align-items: center;
        margin: auto;
        justify-content: center;
    }

    .footer-left {
        margin-bottom:32px;
    }

}

@media (max-width: 935px) {

    .about-progress {
        flex-direction: column-reverse;
    }

    .window {
        justify-content: center;
    }

    .window-frame {
        margin-bottom:32px;
    }

    .about-textbox {
        display:flex;
        left: 0;
        width: 100%;
        height: 100%;
        align-items: center;
        flex-direction: column;
        margin-top:0px;
    
    }

    .about-progress {
        display:flex;
        margin-bottom:34px;
        margin-top:34px;
    }

    /* CONTACT US PAGE */

    input[type=text], select, textarea{
        width: 100%;
        padding: 12px;
        border:none;
        border-bottom:2px solid #7e7e7e;
        box-sizing: border-box;
        resize: none;
        font-family: var(--font-family);
    }
    
    textarea {
        height:124px;
        border:2px solid #7e7e7e;
    }
    
    textarea:focus, input:focus{
        outline: none;
    }

}


@media (max-width: 400px) {
    .footer-right {
        font-size: 0.7em;
    }
}