@media only screen and (min-width: 900px) {
    .techLogo {
        width: 33.3%;
        height: 33.3%;
    }
}

@media only screen and (min-width: 1000px) {
    body {
        overflow-x: auto;
    }
    nav {
        padding: 12px 0;
    }
    .nav_links {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: space-between;
        width: fit-content;
        height: 100%;
        transform: none;
        transition: none;
        background: none;
        padding: 0 30px;
    }
    .nav_links li {
        opacity: 1;
    }
    .nav_links>li>a {
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
        padding: 10px 25px;
    }
    .nav_links>li>a::after {
        content: '';
        width: 0;
        height: 2px;
        background: dodgerblue;
        transition: width .4s;
    }
    .nav_links>li>a:hover::after {
        width: 100%;
        transition: width .4s;
    }
    .nav_links>li:nth-last-of-type(1)>a {
        margin: 0 10px;
        padding: 10px 20px;
        background-color: #404eed;
        color: white;
    }
    .nav_links>li:nth-last-of-type(1)>a:hover {
        background-color: #333ebd;
        transition: 0.2s;
    }
    .nav_links>li:nth-last-of-type(1)>a::after {
        content: none;
    }
    .burger {
        display: none;
    }
    .banner {
        padding: 7rem 4rem;
        margin-top: 0;
        justify-content: center;
        height: 63vh;
    }
    .hero_text_button {
        width: 50%;
    }
    .hero_text {
        font-size: 60px;
        text-shadow: 1px 1px 2px black;
    }
    .hero_text_alt {
        background-color: rgb(255, 89, 133);
    }
    .content {
        font-size: 19px;
    }
    .card {
        max-width: 350px;
    }
    .card_alt {
        max-width: 380px;
    }
    .techLogo {
        width: 25%;
        height: 25%;
    }
    .techLogo>img {
        max-width: 140px;
        max-height: 140px;
    }
    .techLogo2>img {
        max-width: 110px;
        max-height: 110px;
    }
    .techLogo3>img {
        max-width: 90px;
        max-height: 90px;
    }
    footer {
        text-align: left;
    }
    .foot {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .foot>div {
        width: 80%;
    }
    .foot:nth-of-type(2)>div {
        width: 45%;
    }
    .foot_1 {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }
    .foot_2 {
        text-align: center;
    }
    .banner_alt {
        height: 75vh;
    }
    .banner_alt>span {
        font-size: 60px;
    }
    .services {
        padding: 5rem 7rem;
    }
    .srv_container>img {
        width: 25rem;
    }
    .structure {
        display: flex;
        justify-content: center;
    }
    .structure_tbl_1 {
        width: 45%;
        margin: 0 5px;
    }
    .features {
        width: 45%;
    }
    .list_1>p {
        font-size: 16px;
    }
    .list_2 {
        font-size: 16px;
    }
    .feat_alt {
        margin-bottom: 0;
    }
    .location {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    #LocationMap {
        width: 70%;
        height: 300px;
    }
    .contact_info {
        width: 30%;
        padding-left: 2rem;
    }
    .contact_info>p {
        margin-bottom: 15px;
    }
    .career {
        margin: 0 auto;
        width: 73%;
    }
    .privacy {
        padding: 2rem 9rem;
    }
    .random {
        bottom: -1800px;
    }
}