@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    font-family: "Ubuntu", sans-serif;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 2rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 2rem;
}

.h-100 {
    height: 100%;
}


header {
    width: 100%;
    /* padding: 0 1rem; */
    background-color: #444444;
}

footer {
    width: 100%;
    height: 300px;
    background-color: #353333;
    color: rgba(242, 242, 242, 0.5);
}

h1 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 500;
}

.logo-box {
    display: flex;
    align-items: center;
    height: 56px;
}

.logo {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
}

.container {
    width: 100%;
    padding: 0 16px;
}

.elements {
    --gap: 1rem;
    --columns: 1;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--gap);
}

.element {
    width: 100%;
    border-radius: 1rem;
    background-color: antiquewhite;
}

.element__link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1rem;
    text-decoration: none;
}

.element__img {
    max-width: 100px;
    width: 100%;
    max-height: 100px;
    height: auto;
    object-fit: contain;
}

.element__name {
    color: black;
    font-size: 1.3rem;
    line-height: 1.6rem;
    margin-left: 1rem;
}

.element__name--no-img {
    margin-left: 0;
}

.city-map {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 1rem;
}

.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: .75rem;
    padding: 0;
    list-style: none;
}

.address-list__link {
    display: block;
    padding: .85rem 1rem;
    border-radius: .75rem;
    background-color: antiquewhite;
    color: #000;
    text-decoration: none;
}

.address-list__link:hover {
    text-decoration: underline;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 2rem 0 1rem;
}

.footer__logo {
    display: flex;
    width: 100%;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
}

.footer__copyright {
    width: 100%;
    text-align: right;
}

.footer__inform {
    width: 100%;
    font-size: .8rem;
    align-self: flex-end;
}

/*** media queries ***/

/* sm */
@media (min-width: 640px) {
  
}

/* md */
@media (min-width: 768px) {

}

/* lg */
@media (min-width: 1024px) {
  
}

/* xl */
@media (min-width: 1280px) {
  
}

/* 2xl */
@media (min-width: 1536px) {
  
}
