#section-main {
    height: 100vh;
    background-image: url('../images/lamp.jpg');
    background-size: 200%;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-duration: 0.5s;
    position: relative;
}

#section-main .drag-down-hint {
    display: inline-block;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    animation: get-down 1.3s linear infinite;
    background-color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

#section-photos {
    padding-top: 100px;
}

.photo-container:nth-child(n + 2) {
    margin-top: 80px;
}

#section-photos h3 {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 28px;
}

#section-photos p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 28px;
}

#section-photos img {
    width: 100%;
    margin-top: 20px;
}


#section-infrastructure {
    padding-top: 50px;
}

#section-infrastructure h2 {
    line-height: 1.5625rem;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.infrastructure-feature-list-container {
    margin-top: 50px;
    background-color: #2B4263;
    color: white;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 40px;
}

.infrastructure-feature-list:nth-child(n + 2) {
    margin-top: 20px
}

.infrastructure-feature-list li {
    padding: 7px 0;
    font-size: 14px;
}

.infrastructure-feature-list li:nth-child(n + 2) {
    margin-top: 20px;
}



#section-lets-be-partners {
    margin-top: 100px;
    padding-top: 50px;
    text-align: center;
}

#section-lets-be-partners h2 {
    font-weight: bold;
    font-size: 1.5rem;
}

#section-lets-be-partners p {
    margin-top: 20px;
    line-height: 28px;
}

form {
    width: 100%;
    margin-top: 35px;
}

.input-container:nth-of-type(n + 2) {
    margin-top: 20px;
}

input {
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    border-radius: 15px;
    border: none;
    outline: none;
}

input[type="text"] {
    padding: 25px 0;
    background-color: #E7E7E7;
    margin-top: 5px;
    font-size: 16px;
}

input[type="submit"] {
    padding: 30px 0;
    margin-top: 30px;
    background-color: #6ab2c3;
    /*background: linear-gradient(to right, #3a7885 0%, #6ab2c3 30%, #6ab2c3 70%, #3a7885);*/
    background: linear-gradient(to right, #2b4263, #c73336);
    background-size: 200%;
    background-position-x: 100%;
    transition-property: background-position-x;
    transition-duration: 1s;
    text-transform: uppercase;
    color: white;
    -webkit-appearance: none;
    font-size: 16px;
    letter-spacing: 0.3px;
    font-weight: 600;
}

input[type="submit"]:hover {
    background-position-x: 0%;
    cursor: pointer;
}

.input-error-message {
    opacity: 0;
}

@media (min-width: 500px) {
    #section-main .drag-down-hint {
        bottom: 60px;
    }
}

@media (min-width: 800px) {
    #section-infrastructure {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .infrastructure-feature-list-container {
        display: flex;
        padding-left: 60px;
    }

    .infrastructure-feature-list:nth-child(n + 2) {
        margin-top: 0;
    }

    .infrastructure-feature-list:first-child {
        width: 30%;
        padding-left: 10%;
    }

    .infrastructure-feature-list:nth-child(2) {
        width: 40%;
        padding-left: 10%;
    }

    .infrastructure-feature-list:last-child {
        width: 30%;
        padding-right: 10%;
    }


    #section-lets-be-partners p {
        width: 59.33333%;
        margin-left: auto;
        margin-right: auto;
    }

    form {
        width: 59.33333%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 960px) {
    #section-lets-be-partners h2 {
        font-size: 3rem;
    }
}

@keyframes get-down {
    0% {
        transform: translate(-50%, 0);
    }

    100% {
        transform: translate(-50%, 50%);
    }
}

@keyframes flicker1 {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75%, to {
        opacity: 1;
    }
}

@keyframes flicker2 {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}