@-webkit-keyframes BigS {
    from {
        width: 50px;
        height: 50px;
    }
    to {
        width: 52.5px;
        height: 52.5px;
    }
}

@-webkit-keyframes BigRS {
    from {
        width: 52.5px;
        height: 52.5px;
    }
    to {
        width: 50px;
        height: 50px;
    }
}
@keyframes Big {
    from {
        width: 50px;
        height: 50px;
    }
    to {
        width: 52.5px;
        height: 52.5px;
    }
}
@keyframes BigR {
    from {
        width: 52.5px;
        height: 52.5px;
    }
    to {
        width: 50px;
        height: 50px;
    }
}

/* Section 6 */
.section6 {
    background-image: url('https://d1s0utqm8q1db1.cloudfront.net/images/Website-Home-BlueWash-Photo.jpg');
    height: auto;
    min-height: 1200px;
    background-size: cover;
}
.section6 .textContainer h3 {
    font-family: 'Gotham Book';
    color:white;
    letter-spacing: 2px;
    font-size: 1vw;
    text-transform: uppercase;
}
.section6 ul {
    width: 280px;
    height: auto;
    margin: 0 auto;
    margin-top:40px;
}
.section6 ul li {
    float:left;
    position: relative;
}
.section6 img {
    width: 50px;
    height: auto;
    margin:0 20px;
    animation: BigR .25s linear;
    -webkit-animation: BigRS .25s linear;
}
.section6 img:hover {
    animation: Big .25s linear;
    animation-fill-mode: forwards;
    animation-direction: normal;
    -webkit-animation: BigS .25s linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-direction: normal;
}

.section6 .container {
    margin-top: 90%;
}
.section6 .container p {
    font-size: 1vw;
    font-family: 'Gotham Book';
    letter-spacing: .2em;
    color:white;
    margin: 0; 
    padding: 0;
}
.section6 a {
    color:white;
}
.section6 a:hover {
    color: #4e757e;
}
.textContainer {
    text-align: center;
    width:100%;
    margin:auto;
}
.container {
   text-align: center;
   width:100%;
   margin:auto;
}

@media only screen and (min-width: 3840px) {
    .section6 {
        padding-top: 400px;
    }

}

@media only screen and (min-width: 1920px) and (max-width: 3839px) {
    .section6 {
        min-height: 1700px;
        padding-top: 300px;
    }
}

@media only screen and (max-width: 900px) {
    .section6 {
        min-height: 500px;
        padding-top:80px;
    }
    .section6 .container p {
        font-size: 1.2em;
    }
    .section6 .textContainer h3 {
        font-size: 3vw;
    }
}

@media only screen and (max-width: 700px) { 
    .section6 {
        padding-top: 17%
    }
    .section6 .container {
        margin-top: 120%;
    }
    .section6 .textContainer h3 {
        font-size: 3vw;
    }
}

@media only screen and (max-width: 240px) {
    .section6 .container {
        margin-top:170%;
    }
}