#map {
    height: 100%;
}


#contact {
    background-color: #4c9e9e;
}

iframe {
    width: 100%;
    height: 24em;
    transition: 0.2s;
}

.header {
    font-family: "Hind-SemiBold", sans-serif;
    font-size: 3em;
    color: rgb(0, 0, 0);
    transition: 0.2s;
}

.contact {
    margin-top: 2em;
    margin-inline: 26em;
}

.contact > hr {
    margin-top: 0.5em;
    margin-bottom: 1.0em;

    opacity: 0.5;
}

#phone, #address {
    display: flex;
    align-items: center;
}

#phone > i, #address > i {
    color: rgb(0, 0, 0);
    margin-right: 0.5em;
}

#phone > span, #address > span {
    font-family: "Hind-Light", sans-serif;
    color: rgb(10, 10, 10);
}

#phone > span > span, #address > span > span {
    color: rgb(0, 0, 0);
    font-family: "Hind-Regular", sans-serif;
    margin-right: 0.15em;
}

.infos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* display: flex;
    justify-content: space-between; */
}

.infos form#contactForm input[type="text"],
.infos form#contactForm input[type="email"],
.infos form#contactForm input[type="file"],
.infos form#contactForm textarea {
  width: 100%;
  padding: 8px 10px 5px;
  margin-bottom: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: border-color 0.3s, background-color 0.3s;
}

.infos form#contactForm input:focus,
.infos form#contactForm textarea:focus {
  border-color: #007bff;
  background-color: #fff;
  outline: none;
}

/* Przycisk */
.infos form#contactForm button {
  background-color: #007bff;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
}

.infos form#contactForm button:hover {
    background-color: #0056b3;
}

.infos form #formAlert {
    display: block;
    color: #2e862e;
    text-align: center;
    background: #49bd4938;
    padding: 10px 5px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}


@media (min-width:100px) {
    iframe {
        height: 15em;
    }
    .infos {
        grid-template-columns: repeat(1, 1fr);
    }
    .header {
        font-size: 1.0em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 3em;
    }
    #phone, #address {
        font-size: 0.55em;
    }
}

@media (min-width:320px) {
    iframe {
        height: 15em;
    }
    .infos form {
        margin-top: 30px;
    }
    .header {
        font-size: 1.4em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 10%;
    }
    #phone, #address {
        font-size: 0.9em;
    }
}

@media (min-width:425px) {
    iframe {
        height: 17em;
    }
    .header {
        font-size: 1.4em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 10%;
    }
    #phone, #address {
        font-size: 1.0em;
    }
}

@media (min-width:576px) {
    iframe {
        height: 19em;
    }
    .header {
        font-size: 1.5em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 6em;
    }
    #phone, #address {
        font-size: 0.8em;
    }
}

@media (min-width:768px) {
    iframe {
        height: 24em;
    }
    .infos form#contactForm input[type="text"],
    .infos form#contactForm input[type="email"],
    .infos form#contactForm input[type="file"],
    .infos form#contactForm textarea,
    .infos form#contactForm button,
    .infos form#contactForm label {
        font-size: 20px;
    }
    .header {
        font-size: 1.9em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 8%;
    }
    #phone, #address {
        font-size: 1.2em;
    }
}

@media (min-width:992px) {
    iframe {
        height: 24em;
    }
    .infos form#contactForm input[type="text"],
    .infos form#contactForm input[type="email"],
    .infos form#contactForm input[type="file"],
    .infos form#contactForm textarea,
    .infos form#contactForm button,
    .infos form#contactForm label {
        font-size: 22px;
    }
    .header {
        font-size: 2.0em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 10%;
    }
    #phone, #address {
        font-size: 1.4em;
    }
}

@media (min-width:1700px) {
    iframe {
        height: 24em;
    }
    .infos {
        grid-template-columns: repeat(2, 1fr);
    }
    .infos form#contactForm input[type="text"],
    .infos form#contactForm input[type="email"],
    .infos form#contactForm input[type="file"],
    .infos form#contactForm textarea,
    .infos form#contactForm button,
    .infos form#contactForm label {
        font-size: 16px;
    }
    .header {
        font-size: 3em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 26em;
    }
    #phone, #address {
        font-size: 1em;
    }
}

@media (min-width:1900px) {
    iframe {
        height: 24em;
    }
    .header {
        font-size: 3em;
    }
    .contact {
        margin-top: 2em;
        margin-inline: 22%;
    }
}

@media (min-width:2000px) {
    .contact {
        margin-top: 2em;
        margin-inline: 33%;
    }
    footer {
        position: absolute;
        bottom: 0;
        margin-bottom: -15em;
        width: 100%;
    }
}
