#container {
    width: 90%;
    margin-top: 40px;
    margin-left: 5%;
    background-color: #262626;
}

#contacts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.single-contact {
    display: flex;
    flex-direction: column;
    margin: 35px 0 0 0;
}

.contact-icon {
    color: #EC7969;
}

.contact-text {
    margin: 15px 0px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
}

.designation-text {
    color: #EC7969;
}

#line {
    height: 5px;
    width: 90%;
    margin: 40px 5%;
    background-color: #EC7969;
}

#address-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 40px;
}

#address-text {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
    width: 30%;
    text-align: center;
    margin: 0;
    line-height: 35px;
}

#address-title {
    color: #EC7969;
    font-size: 25px;
    font-weight: 600;
}

#map-qr-img {
    max-width: 140px;
    max-height: 140px;
}

@media screen and (max-width:414px){
    #container {
        width: 100%;
        margin-left: 0;
    }
    #contacts-container {
        width: 95%;
        margin-left: 5%;
        flex-direction: column;
        align-items: start;
    }
    .contact-text {
        font-size: 17px;
        margin: 10px 0;
    }
    #address-container {
        flex-direction: column;
    }
    #address-text {
        font-size: 17px;
        width: 95%;
    }
    #address-title {
        font-size: 20px;
    }
    #map-qr-img {
        margin-top: 20px;
    }
}