.active { /*navbar*/
    height: 75px;
    border-bottom: 2px solid var(--light-outstanding-accent);
}

.title{
    position: relative;
    height: 19vh;
    text-align: center;
    margin: -30px 0 75px 0;

    opacity: 0;
    animation: transIn 1.2s ease-out;
    animation-fill-mode: forwards;
}
.title .headline {
    text-align: center;
    margin: 0 0 0 0;
}
.title h2 {
    font-family: 'Roboto Slab', serif;
    color: var(--txt-color);
    text-transform: capitalize;
    font-size: 40px;
    margin: -45px 0 0 0;
}

.middle {
    display: flex;
    flex-direction: row;
}
.information{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.list {
    height: 50px;
    display: flex;
    align-items: center;
    color: var(--txt-color);
    margin-bottom: 30px;

    opacity: 0;
    animation: transIn 1.2s ease-out 0.3s;
    animation-fill-mode: forwards;
}

.information .list img {
    width: 20px;
    align-self: baseline;
    margin-right: 17px;
    align-self: center;
}
.list p {
    margin: 0;
    padding: 0 10px;
    font-size: 23px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}
.big-logo {
    opacity: 0;
    animation: transIn 1.2s ease-out;
    animation-fill-mode: forwards;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    width: 50%;
    opacity: 0;
    animation: transIn 1.2s ease-out 0.6s;
    animation-fill-mode: forwards;
}
form .field {
    padding: 12px;
    border: 1px solid var(--dark-accent);
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    background-color: var(--bg-color);
    color: var(--txt-color);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
}
form *:focus {
    border-color: var(--light-outstanding-accent);
    outline: none !important;
}

.send {
    border: 1px solid var(--txt-color);
    border-radius: 4px;
    background-color: var(--bg-color);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    font-size: 18px;
    color: var(--txt-color);
    padding: 12px;
    transition:  0.3s;
    cursor: pointer;
    /* -o-transition: all 0.3 ease;
    -ms-transition: all 0.3 ease;
    -moz-transition: all 0.3 ease;
    -webkit-transition: all 0.3 ease; */
}
.send:hover {
    
    border: 1px solid var(--light-outstanding-accent);
    background-color: var(--light-outstanding-accent);
    transition:  0.5s;
    font-weight: 800;
    /* -o-transition: all 0.3 ease;
    -ms-transition: all 0.3 ease;
    -moz-transition: all 0.3 ease;
    -webkit-transition: all 0.3 ease; */
}
.information img {
    width: 80%;
    align-self: center;
    margin: auto 0;
}

/*modal*/
.bg-modal {
    /* background-color: rgba(255, 255, 255, 0.219); */
    background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	display: none;
	justify-content: center;
    align-items: center;
    
}

.modal-contents {
	height: 300px;
	width: 400px;
    background-color: var(--bg-color);
	padding: 20px;
	position: relative;
    border-radius: 4px;
    /* border: 2px solid var(--light-outstanding-accent); */
    
    margin-top: 40px;
}
.middle-part {
    border-radius: 4px;
    border: 2px solid var(--light-outstanding-accent);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px;
    text-align: center;
    box-sizing: border-box;
}
    .close {
        cursor: pointer;
        width: 20px;
        position: absolute;
        top: 30px;
        right: 30px;
        margin: 0;
    }
    .logo-popup {
        width: 28%;
        margin-top: 0;
        background-color: var(--bg-color);
        transform: rotate(10deg);
        padding: 0 5px;
        border-radius: 100%;
        position: absolute;
        top: -41px;
    }
    .middle-part h1 {
        color: var(--txt-color);
        font-family: 'Roboto Slab', serif;
        margin-bottom: 15px;
        margin-top: 0;
    }
    .middle-part p {
        color: var(--txt-color);
        font-size: 23px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 2px;
        margin:0;
    }

@media (max-width: 1040px){
    .middle {
        flex-direction: column;
    }
    form {
        max-width: 100%;
        width: 100%;
    }
    .information {
        flex-direction: row-reverse;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 50px;
        width: 100%;
    }
    .list {
        margin-top: -60px;

    }
    .big-logo{
        display: none;
    }

    .headline {
        font-size: 20vw;
    }
    .title h2 {
        font-size: calc(23px + 2vw);
    }
}
@media (max-width: 700px) {
    .list p {
        font-size: calc(20px + 1vw);
        
    }
    .list {
        margin-top: 0px;
    }
}