.boxs {
    width: 80%;
    height: max-content;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.mission {
    width: 40%;
    height: max-content;
    margin: 10px;
    border: none;
    padding: 35px 40px;
    transition: 0.5s;
}

.missionS {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    margin: auto auto;
    font-size: 2.5em;
    font-weight: 600;
}

.mission:hover {
    transform: translateY(-5%);
    box-shadow: 0px 10px 30px rgb(0 33 71 / 12%);
}

.missionP {
    width: 100%;
    margin: auto auto;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.5em;
    padding: 12px 10px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
}

.missionP a {
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    color: #000;
}

.missionP a:hover {
    cursor: pointer;
    color: #018dd3;
}

.msg {
    width: 80%;
    margin: 20px auto;
    padding: 10px 12px;
    text-align: center;
}

.msg h1 {
    font-size: 2.5em;
}

.msg p {
    text-align: center;
    padding: 10px 12px;
    font-family: 'Rubik', sans-serif;
    width: 60%;
    margin: 5px auto;
}

.form {
    width: 100%;
    height: 70vh;
    display: flex;
    margin: 20px auto;
}

form {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    width: 90%;
    box-shadow: 0px 10px 30px rgb(0 33 71 / 12%);
    margin: auto auto;
    height: max-content;
}

#form {
    width: 30%;
    height: 100%;
}

input,
textarea {
    width: 80%;
    margin: 10px auto;
    background-color: #dee0f3;
    color: #000;
    padding: 10px 12px;
    font-family: 'Rubik', sans-serif;
    font-size: 1.1em;
    border: none;
    border-radius: 10px;
    overflow: scroll;
}

#frame {
    width: fit-content;
    overflow: hidden;
}

textarea {
    height: 20vh;
    overflow-y: scroll;
}

input[type="submit"] {
    background-color: #38307c;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 999px) {
    .boxs {
        height: max-content;
        flex-wrap: wrap;
    }

    .msg p {
        width: 100%;
    }

    .mission {
        width: 100%;
        margin: 20px 0;
    }

    .missionS img {
        width: 30%;
    }

    .form {
        height: max-content;
        flex-direction: column;
        justify-content: space-between;
    }

    #frame {
        margin: 10px auto;
        width: 100%;
    }

    #form {
        width: 95%;
        margin: auto auto;

    }
}