* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    background-color: rgb(41, 51, 57);
}

/*--------For Desktop Devices--------*/
@media screen and (min-width:1200px) {

    .nav-bar {
        width: 100%;
        height: 60px;
        background-color: rgb(58, 71, 80);
        position: sticky;
        top: 0;
        left: 0;
    }

    .menu-option i {
        display: none;
    }

    .logo {
        display: flex;
    }

    .logo img {
        height: 60px;
        float: left;
    }

    .logo-heading {
        position: relative;
        margin: auto;
        margin-left: 10px;
        color: 	rgb(166, 211, 144);
        text-shadow: 2px 2px 3px rgb(105, 105, 105);
    }

    .links {
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        gap: 20px;
    }

    .link a {
        text-decoration: none;
        color: rgb(142, 142, 142);
        font-size: 1.5em;
        margin-bottom: 0;
    }

    .link a:hover {
        display: block;
        color: rgb(255, 255, 255);
    }

    .company {
        text-align: center;
        margin-top: 20px;
    }

    .company h1 {
        margin-top: 0;
        color: rgb(147, 147, 147);
    }

    .addresses {
        background-color: rgb(58, 71, 80);
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .address-container {
        display: flex;
        justify-content: space-between;
        width: 90%;
        margin-left: 20px;
    }

    .address-column {
        width: 45%;
    }

    .address img {
        width: 20px;
        float: left;
        height: auto;
        margin-top: 0;
        margin-right: 10px;
    }

    .address-content {
        overflow: hidden;
        display: inline-block;
    }

    .address a {
        text-decoration: none;
        color: rgb(197, 197, 197);
        font-size: 1.2em;
        font-weight: 1.5em;
        display: flex;
    }

    .social-links {
        display: flex;
        margin-left: 10px;
    }

    .social-link img {
        height: 30px;
    }

}

@media screen and (min-width: 769px) and (max-width: 1199px) {

    .nav-bar {
        width: 100%;
        height: 55px;
        background-color: rgb(58, 71, 80);
        position: sticky;
        top: 0;
        left: 0;
    }

    .menu-option i {
        display: none;
    }

    .logo {
        display: flex;
        margin-left: 10px;
    }

    .logo img {
        height: 55px;
        float: left;
    }

    .logo-heading {
        position: relative;
        margin: auto;
        margin-left: 10px;
        color: rgb(166, 211, 144);
        text-shadow: 2px 2px 3px rgb(105, 105, 105);
        font-size: 1.5rem;
    }

    .links {
        position: absolute;
        display: flex;
        gap: 18px;
        top: 15px;
        right: 20px;
    }

    .link a {
        text-decoration: none;
        color: rgb(142, 142, 142);
        font-size: 1.3em;
        margin-bottom: 0;
    }

    .link a:hover {
        display: block;
        color: rgb(255, 255, 255);
    }

    .company {
        text-align: center;
        margin-top: 20px;
    }

    .company h1 {
        margin-top: 0;
        color: rgb(147, 147, 147);
        font-size: 1.4rem;
    }

    .addresses {
        background-color: rgb(58, 71, 80);
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .address-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 95%;
        margin: 0 auto;
    }

    .address-column {
        width: 48%;
        margin-bottom: 15px;
    }

    .address img {
        width: 20px;
        float: left;
        height: auto;
        margin-top: 0;
        margin-right: 10px;
    }

    .address-content {
        overflow: hidden;
        display: inline-block;
    }

    .address a {
        text-decoration: none;
        color: rgb(197, 197, 197);
        font-size: 1.2em;
        font-weight: 1.5em;
        display: flex;
    }

    .social-links {
        display: flex;
        margin-left: 10px;
        margin-top: 10px;
        justify-content: center;
    }

    .social-link img {
        height: 30px;
        margin: 0 5px;
    }
}

/*--------For Mobile Devices--------*/
@media screen and (max-width:768px) {

    body {
        overflow-x: hidden;
    }

    .nav-bar {
        width: 100%;
        height: 50px;
        background-color: rgb(58, 71, 80);
        top: 0;
        left: 0;
    }

    .logo {
        display: flex;
        margin-left: 8px;
    }

    .logo img {
        height: 50px;
        float: left;
    }

    .logo-heading {
        position: relative;
        margin: auto;
        margin-left: 10px;
        color: rgb(166, 211, 144);
        text-shadow: 2px 2px 3px rgb(105, 105, 105);
    }

    .links {
        position: absolute;
        top: 50px;
        right: 0;
        padding: 5px 10px;
        background-color: rgb(50, 61, 69);
        border-bottom-left-radius: 10px;
        z-index: 10000;
        visibility: hidden;
        opacity: 0;
    }

    .link {
        margin-bottom: 10px;
    }

    .link a {
        text-decoration: none;
        color: rgb(197, 197, 197);
        font-size: 1.5em;
    }

    .menu-option i {
        position: absolute;
        top: 15px;
        right: 10px;
        font-size: 1.2em;
        color: white;
    }

    .company {
        text-align: center;
        margin-top: 20px;
    }

    .company h1 {
        margin-top: 0;
        color: rgb(147, 147, 147);
        font-size: 0.9em;
    }

    .addresses {
        background-color: rgb(58, 71, 80);
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .address-container {
        width: 90%;
        margin: 0 auto;
    }

    .address-column {
        width: 100%;
    }

    .address img {
        width: 20px;
        float: left;
        height: auto;
        margin-top: 0;
        margin-right: 10px;
    }

    .address-content {
        overflow: hidden;
        display: inline-block;
    }

    .address a {
        text-decoration: none;
        color: rgb(197, 197, 197);
        font-size: 1.2em;
        font-weight: 1.5em;
        display: flex;
    }

    .social-links {
        display: flex;
        margin-left: 20px;
    }

    .social-link img {
        height: 30px;
    }

}