 * {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 10px;
    padding-top: 20px;
}

nav {
    padding: 10px;
    text-align: center;
}



.slider__left {
    background-image: linear-gradient(90deg, #00A7E3 0%, #0076BD 35%);
}

.slider__right {
    position: absolute;
    width: 40%;
    height: 100%;
    top: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slider__container {
    max-width: 1160px;
    padding: 0 20px;
    margin:0 auto;
}

.content {
    max-width: 680px;
    padding-bottom: 20px;
}

.content p {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5em;
}

.content .last-child::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: white;
    margin-top: 25px;
}

.strongs strong {
    color: white;
    text-decoration: underline;
    display: block;
    margin-bottom: 12px;
    margin-top: 20px;
}

.strongs li {
    color: white;
    list-style: none;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 7px;
}

.strongs li:before {
    content: '• '
}

.mainWord {
    color: white;
    font-weight: bold;
    font-size: 138px;
    position: relative;
    z-index: 10;
    left:-12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 100px;
    display: block;
}

footer {
    max-width: 1160px;
    padding: 50px 20px;
    margin: 0 auto;
}

.infos {
    display: flex;
    max-width: 350px;
}

.infos img {
    margin-right: 20px;
    width: 43px;
    flex: 1 0 43px;
}

.infos strong {
    display: block;
    font-size: 19px;
    color: #39A9DC;
    margin-bottom: 10px;
}

.infos p {
    color: #546D79;
    font-size: 14px;
    line-height: 1.5em;
}

.contact {
    color:#546D79;
    margin-left: 100px;
}

.contact p {
    line-height: 1.6em;
    font-size: 12px;
}

.contact a {
    color: #546D79;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.footer__wrapper {
    display: flex;
}

.hide-desktop {
    display: none !important;
}

/* RESPONSIVE */
@media screen and (max-width: 1160px) {
    .slider__right {
        display: none;
    }

    .content {
        max-width: none;
    }

    h2 {
        font-size: 28px;
    }

    .mainWord {
        display: none;
    }

    .hide-desktop {
        display: block !important;
    }


}

 @media screen and (max-width: 700px) {
     .footer__wrapper {
         flex-direction: column;
     }

     .infos {
         display: block;
         width: 100%;
         max-width: none;
         margin-bottom: 20px;
         text-align: center;
     }

     .infos img {
         display: block;
         margin: 0 auto 10px ;
     }

     .contact {
         margin-left: 0;
         text-align: center;
     }
 }
