#menu {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: #FF5300;
    position: fixed;
    top: 0;
    z-index: 1;
    padding: 18vw 10vw;
    visibility: hidden;
    opacity: 0;
    transition: 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: top;
    transform: scale(1, 0.1);
}

#close-menu {
    margin-bottom: 5vw;
    margin-left: 4vw;
}

#close-menu:before,
#close-menu:after {
    display: inline-block;
    content: ' ';
    height: 10vw;
    width: 0.4vw;
    background-color: #fff;
}

#close-menu:before {
    transform: rotate(45deg);
}

#close-menu:after {
    transform: rotate(-45deg);
}

#menu a {
    font-size: 7vw;
    color: #fff;
    font-family: 'Homemade Apple';
    display: block;
    padding: 7vw 0;
    text-align: left;
}

h1,
h4 {
    font-family: 'Homemade Apple';
}

#title {
    color: #EE8A9C;
    font-size: 11vw;
    text-align: center;
    padding-top: 50vw;
}

.heading {
    color: #fff;
    font-size: 4.5vw;
    line-height: 2;
    margin-top: 10vw;
}

p {
    font-family: 'Inclusive Sans';
    font-size: 3.5vw;
    color: #fff;
    line-height: 1.3;
    padding: 3vw 0;
}

header {
    width: 100%;
    padding-top: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    position: fixed;
    background-color: #0064BC;
    top: 0;
    z-index: 100;
}

header img {
    width: 32vw;
    transition: 0.4s;
}

#open-menu {
    font-family: 'Homemade Apple';
    color: #fff;
    font-size: 4.5vw;
    position: absolute;
    left: 10%;
    top: 50%;
}

.section {
    padding: 0 9vw;
}

#sec1img {
    width: 80%;
    transform: rotate(-20deg);
}

.sec2l h4 {
    clear: right;
}

#sec2img {
    width: 78%;
    transform: rotate(10deg);
    float: right;
    margin-bottom: 5vw;
}

#sec3img {
    width: 100%;
}

.images {
    margin-top: 10vw;
}

.images img {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.line {
    border: none;
    border-top: 1px solid #fff;
    margin: 5vw;
}

footer {
    text-align: center;
    font-size: 2.5vw;
    color: #9DBFC7;
    font-family: 'Inclusive Sans';
    margin: 5vw 0;
}