.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--second-color);
}
.contact h1, .contact p {
  color: var(--main-color);
}
.contact .contact-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact-form input[type=text], .contact .contact-form input[type=email], .contact .contact-form input[type=number], .contact .contact-form textarea, .contact .contact-form select {
  width: 50%;
  padding: 12px 20px;
  margin: 15px 0;
  display: inline-block;
  border: 1px solid black;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
  font-family: "Signika", sans-serif;
}
.contact .contact-form select {
  cursor: pointer;
}
.contact .contact-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.contact .contact-form textarea {
  height: 250px;
  resize: none;
}
.contact .contact-form #sent {
  width: 50%;
  background-color: black;
  color: var(--third-color);
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border: 2px var(--third-color) solid;
  border-radius: 5px;
  cursor: pointer;
}
.contact .contact-form #sent:active {
  background-color: var(--third-color);
  color: black;
}

.contact-footer {
  border-top: 2px solid var(--second-color);
  width: 100%;
  display: flex;
  background-color: var(--main-color);
  justify-content: start;
}
.contact-footer img {
  width: 120px;
  width: 120px;
}
.contact-footer .space {
  width: 800px;
}
.contact-footer .contact-menu {
  padding: 15px 35px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.contact-footer .contact-menu .contact-menu-navigation {
  display: flex;
  flex-direction: column;
}
.contact-footer .contact-menu .contact-menu-navigation li {
  -moz-column-gap: 15px;
       column-gap: 15px;
  display: flex;
}
.contact-footer .contact-menu .contact-menu-navigation li a {
  padding: 15px 0;
}
.contact-footer .contact-menu .contact-menu-navigation li a:hover {
  color: var(--third-color);
}

/*
.contact-footer{
    width: fill;
    padding: 20px 300px; 
    display: flex;
    background-color: var(--main-color);
    gap: 10px 20px;

    h2{
        color: var(--second-color);

    }
    img{
        width: 100px;
        width: 100px;
        margin-right: 850px;
    }
    .contact-menu{

        margin: 0 10px;
        .contact-menu-navigation{

            display: flex;
            flex-direction: column;
            li{
                margin: 5px 0px;
                a{
                color:var(--second-color);
                text-decoration: none;
                font-weight: 500;
                letter-spacing:1px

                }
                &:hover a{
                color: red;
                }
            }
        }

    }
    .contact-c ul li{
        display: flex;
        align-items: center;
        margin: 5px 0px;
        color:var(--second-color);
        gap: 1px;
    }
}
*/
@media (max-width: 1600px) {
  .contact-footer {
    /*img{
        margin-right: 650px;
    }*/
  }
  .contact-footer .space {
    width: 650px;
  }
}
@media (max-width: 1455px) {
  .contact-footer {
    /*img{
        margin-right: 450px;
    }*/
  }
  .contact-footer .space {
    width: 450px;
  }
}
@media (max-width: 1150px) {
  .contact .contact-form input[type=text], .contact .contact-form input[type=email], .contact .contact-form input[type=number], .contact .contact-form textarea, .contact .contact-form input[type=submit], .contact .contact-form select {
    width: 80%;
  }
  .contact-footer {
    /*img{
        margin-right: 350px;
    }*/
  }
  .contact-footer .space {
    width: 350px;
  }
}
@media (max-width: 1000px) {
  .contact-footer {
    /*img{
        margin-right: 250px;
    }*/
  }
  .contact-footer .space {
    width: 250px;
  }
}
@media (max-width: 750px) {
  .contact-footer {
    /*img{
        margin-right: 10px;
    }*/
  }
  .contact-footer .space {
    width: 10px;
  }
}
@media (max-width: 550px) {
  .contact .contact-form input[type=text], .contact .contact-form input[type=email], .contact .contact-form input[type=number], .contact .contact-form textarea, .contact .contact-form input[type=submit], .contact .contact-form select {
    width: 90%;
  }
  .contact-footer {
    flex-direction: column;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    /*img{
        margin-right: 0;
    }*/
  }
  .contact-footer .space {
    width: 0px;
    height: 0px;
  }
}/*# sourceMappingURL=contact.css.map */