.container {
    width: 100%;
    max-width: 100%;
}

.fade-me {
    animation: fade-me 2s forwards;
}

.slide-right {
    animation: slide-right 2s forwards;
    transform: translateX(-25%);
}

.slide-top {
    animation: slide-from-top 2s forwards;
    transform: translateY(-20%);
}

.slide-bottom {
    animation: slide-from-top 2s forwards;
    transform: translateY(20%);
}

.slide-left {
    animation: slide-left 2s forwards;
    transform: translateX(25%);
}

@keyframes fade-me {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-right {
    to {
        transform: translateX(0);
    }
}

@keyframes slide-left {
    to {
        transform: translateX(0);
    }
}

@keyframes slide-from-top {
    to {
        transform: translateY(0);
    }
}

@keyframes slide-top {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-480px);
    }
}

.hideme {
    opacity: 0;
}

BODY {
    background-color: #111;
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 20px;

}

.navbar-brand {
    font-family: "Bodoni Moda";
    font-size: 30px;
}

.header .navbar-nav .nav-link {
    font-size: 16px;
    margin-left: 30px;
    margin-top: 21px;
}

.header .navbar-nav {
    width: 100%;
}

.contact-background, .main-container {
    background-image: url('../images/orange-waves.png');
    background-position: right top;
    background-repeat: no-repeat;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.container-1366, .header .navigation {
    max-width: 1366px;
    margin: 0 auto;
}

.header .sign-up-button {
    align-content: flex-end;
    display: flex;
    margin-left: auto;

}

.header .sign-up-button A:HOVER, .white-button:HOVER {
    background-color: #000;
    color: #fff;
}

.header .sign-up-button A, .white-button {
    background-color: #fff;
    color: #000;
    font-family: "Bodoni Moda";
    font-size: 16px;
    display: block;
    max-width: 150px;
    min-width: 140px;
    text-align: center;
    min-height: 46px;
    line-height: 46px;
    text-decoration: none;
    border-radius: 2px;
    padding: 0;
    font-weight: bold;
}

h1 {
    font-family: "Bodoni Moda";
    font-size: 56px;
    margin-bottom: 20px;
}

h2 {
    font-family: "Bodoni Moda";
    font-size: 24px;
    margin-bottom: 30px;
}

.pt-100 {
    padding-top: 100px;
}

.body-container ul li i {
    background-color: #FAD481;
    border-radius: 100px 100px 100px 100px;
    padding: 5px;
    color: #000;
    margin-right: 15px;
    width: 30px;
    text-align:center;
}

.body-container ul li {
    margin-bottom: 20px;
}

.body-container p {
    margin-bottom: 30px;
}

.body-container ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 40px;
}

::placeholder {
    color: black;
    opacity: 1; /* Firefox */
    font-size: 14px;
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: black;
}

.contact-background input , .contact-background textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border:1px solid #ddd;
    max-height:200px;
    color:#000;
    font-size: 14px;

}
input[type="submit"].white-button {
    border:0;
    border-radius:4px;
    padding:0;
}

A { color: #fff ;}

footer { font-size: 14px }

.orange-container {
    background-image:url('../images/orange-waves.png');
    background-size: cover;
    color:#000;
}

.orange-container i , .wave-background i {
    background-color: #fff !important;
}

.wave-background {
    background-image: linear-gradient(270deg,rgba(250,212,129,0.65)0%,rgb(250,212,129)100%), url('../images/card-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color:#000;
    padding: 40px;
    border-radius:10px;
}