body {
    height: 100vh;
    background-color: #0081C9;
}
.burger {
    background-color: #0081C9;
}
span, p, a, h3 {
    
    font-family: 'Mooli', sans-serif;
}
.main {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #0081C9;
    border-radius: 30px 30px 0px 0px;
    margin: 10px 70px;
}
h3 {
    padding: 30px;
}
.img {
    height: 70vh;
    padding: 0;
}
.par {
    font-size: 20px;
}
.button {
    border: none;
    border-radius: 5px;
    padding: 10px;
    margin: 20px;
    background-color: black;
    opacity: 0.5;
    color: #fff;
}
.button:hover {
    background-color: #fff;
    color: #000000;
}
.contactBox {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.contactBox a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.contactBox a:hover {
  text-decoration: underline;
}

/* когда открыто */
.contactBox.active {
  display: flex;
}
@media all and (max-width: 1200px) {
    .main {
        margin: 12px 20px;
        padding: 10px;
    }
}

@media all and (max-width: 1000px) {
    .main {
        flex-wrap: wrap-reverse;
    }
    .h3 {
        font-size: 10px;
    }
    .par {
        font-size: 15px;
        padding: 20px;
    }
}

