.contact .contact-head b {
    font-weight: 700;
}
.contact .sticky {
    display: block;
    margin: 0 auto;
    width: 200px;
    padding: 16px;
    font-size: 14px;
    background-color: #F49607;
    color: #fff;
    /* box-shadow: 0 8px 17px 2px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%), 0 5px 5px -3px rgb(0 0 0 / 20%); */
}
.contact .sticky h3 {
    color: #fff;
}
.contact .sticky ul {
    margin: 0;
    padding: 0;
}
.contact .sticky ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    padding: 4px 0;
}
.contact .sticky ul img {
    display: inline-block;
    margin-right: 8px;
}
.contact .sticky ul li address {
    display: inline-block;
    margin: 0;
}
.contact .sticky ul li a {
    color: #fff;
}
.contact .sticky ul li a:hover {
    text-decoration: underline;
}
@media screen and (min-width:600px) {
    .contact .contact-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .contact .contact-head {
        flex: 1;
        padding-right: 8px;
    }
    .contact .contact-sticky {
        width: 50%;
    }
}
@media screen and (min-width:960px) {
    .contact .contact-sticky {
        width: 40%;
    }
}
@media screen and (min-width:1200px) {
    .contact .contact-sticky {
        width: 33%;
    }
}