.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

/* default - small devices*/

[class*="col"] {
    grid-column-end: span 12;
}

/* below 601px typically tablet*/


@media only screen and (min-width:601px) {

    .sm1 {
        grid-column-end: span 12;
    }

    .sm2 {
        grid-column-end: span 6;
    }

    .sm3 {
        grid-column-end: span 4;
    }

    .sm4 {
        grid-column-end: span 3;
    }

    .sm6 {
        grid-column-end: span 2;
    }

    .sm12 {
        grid-column-end: span 1;
    }
}


/* above 601px typically tablet*/


@media only screen and (min-width:601px) {


    .md1 {
        grid-column-end: span 12;
    }

    .md2 {
        grid-column-end: span 6;
    }

    .md3 {
        grid-column-end: span 4;
    }

    .md4 {
        grid-column-end: span 3;
    }

    .md6 {
        grid-column-end: span 2;
    }

    .md12 {
        grid-column-end: span 1;
    }
}


/* above 1025px typically desktop*/

@media only screen and (min-width:1025px) {
    .grid {
        max-width: 800px;
        margin: 0 auto;
    }

    .col1 {
        grid-column-end: span 12;
    }

    .col2 {
        grid-column-end: span 6;
    }

    .col3 {
        grid-column-end: span 4;
    }

    .col4 {
        grid-column-end: span 3;
    }

    .col6 {
        grid-column-end: span 2;
    }

    .col12 {
        grid-column-end: span 1;
    }
}

.rsp {
    max-width: 100%;
    height: auto;
}

h1 {
    font-family: "Prompt";
    font-weight: 600;
    font-size: 48px;
    color: #3C59A9;
}

h2 {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 24px;
    color: #5079E9;
}

.header {
    margin-top: 10px;
    display: flex;
}

.header img {
    margin-right: 20px;
    align-self: flex-end;

}

.headertext {
    display: flex;
    flex-direction: column;
    line-height: 2em;
    align-self: flex-end;
}

body {
    font-family: "Mulish";
    font-size: 20px;
    color: #464646;
}

.headertext h1,
h2 {
    margin: 0;
}

.alt {
    background: #ECECEC;
    border-radius: 10px;
}

input[type="radio"] {
    display: none;
}

label {
    color: #464646;
    background-color: #fff;
    border: 2px solid #D4D4D4;
    border-radius: 5px;
    font-size: 18px;
    padding: 15px 55px;
    margin: 0 40px;
    transition: all 0.3s;
}

label:hover {
    color: #464646;
    background-color: #f5f5f5;
    border-color: #c3c3c3;
}

input[type="radio"]:checked + label {
    color: #fff;
    background-color: #464646;
    border-color: black;
    padding: 20px 60px;
}

label:active {
    color: #464646;
    background-color: #f5f5f5;
    border-color: #c3c3c3;
    padding: 13px 53px;
}

.options {
    padding: 1% 5%;
    margin-top: 3%;
}

.ctr {
    text-align: center;
}

#submit {
    color: #fff;
    background-color: #5079E9;
    border: 2px solid #3b5bb2;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 50px;
    margin: 50px;
    transition: all 0.1s ease-out;
    font-family: "Prompt";
}

#submit:hover {
    color: #fff;
    background-color: #38539d;
    border: solid 2px #273b72;
}

#submit:active {
    color: #fff;
    background-color: #38539d;
    border: solid 2px #273b72;
    padding: 8px 48px;
}

.options p {
    margin-top: 70px;
    margin-bottom: 35px;
}

#destination {
    margin: 20px;
}

#destination img {
    border-radius: 5px;
    border: solid 2px;
    /*
    width=700px;
    height=500px;
*/
}

#destination p {
    font-size: 1.2em;
    font-family: "Prompt";
    margin-top: 10px;
}

.dest {
    padding: 1% 5%;
    margin-top: 2%;
}
