/**
 *  Body
 */

body {
    background: #001727;
    font-family: "Poppins";
    color: #fff;
}

a {
    color: #231f20;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

a:hover,
a:focus,
a:active {
    color: #231f20;
    text-decoration: none;
}

/**
 *  Layout
 */

.wrapper {
    width: 100%;
    overflow: hidden;
}

.container-fluid {
    max-width: 2400px;
}

.section {
    padding: 250px 0;
    text-align: center;
}

.bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
}

/**
 *  Section cover
 */

.section-cover {
    padding: 0;
    position: relative;
}

.scrollTo {
    font-family: "Montserrat";
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #001727;
    display: block;
    margin: 0 auto;
    width: 500px; height: 110px;
    line-height: 106px;
    border-radius: 5px;
    background: #84d4f5;
    background-image: -webkit-linear-gradient(top, #84d4f5, #2ca5cb); 
    background-image:         linear-gradient(to bottom, #84d4f5, #2ca5cb);
    position: absolute;
    bottom: 60px; left: 50%;
    margin: 0 0 0 -250px;
    z-index: 2;
}

.scrollTo:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 25px;
    border-color: #2ca5cb transparent transparent transparent;
    position: absolute;
    left: 50%; bottom: -24px;
    margin-left: -25px;
}

/**
 *  Section cta
 */

.section-cta {
    padding: 250px 0 0;
}

.section-cta .cta {
    display: table;
    width: 100%;
}

.section-cta .cta > * {
    display: table-cell;
    vertical-align: top;
    padding: 0 18px;
}


/**
 *  Section About
 */

.section-about {
    background-color: #00121f;
    background-image: -webkit-linear-gradient(top, #001727, #00121f); 
    background-image:         linear-gradient(to bottom, #001727, #00121f);
}

.section-about .title {
    font-family: "Montserrat";
    font-size: 70px;
    font-weight: 700;
    margin: 0;
}

.section-about .title:after {
    content: "";
    width: 155px;
    height: 4px;
    background: #00a8c7;
    display: block;
    margin: 65px auto 70px auto;
}

.section-about p {
    font-size: 45px;
    font-weight: 300;
    margin-bottom: 60px;
}

.section-about p:last-child {
    margin-bottom: 0;
}

.player {
    margin-bottom: 250px;
    position: relative;
    box-shadow: 0 46px 158px rgba(0,0,0,0.3);
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}

.poster img {
    width: 100%;
}

.poster:after {
    content: "";
    width: 280px; height: 280px;
    background: transparent url('../img/play.png') no-repeat 0 0;
    position: absolute;
    top: 50%; left: 50%;
    margin: -140px 0 0 -140px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.poster:hover:after {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

/* comming soon - ( main.js ) */

/*.player {
    cursor: initial;
}

.player:before {
    content: "Coming soon...";
    position: absolute;
    bottom: 15%; left: 0;
    z-index: 2;
    width: 100%;
    font-family: "Montserrat";
    font-size: 70px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    color: white;
}

.player:after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    z-index: 1;
    width: 100%;
    background: black;
    opacity: 0.5;
}

@media (max-width: 1280px){
    .player:before {
        bottom: 15%; left: 0;
        font-size: 50px;
    }
}

@media (max-width: 1024px){
    .player:before {
        bottom: 15%; left: 0;
        font-size: 35px;
    }
}

@media (max-width: 480px){
    .player:before {
        bottom: 10%; left: 0;
        font-size: 24px;
    }
}*/


/**
 *  Section Testimonials
 */

.section-testimonials {
    background: #0d2230;
}

blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

blockquote:before {
    content: "“";
    font-family: "Montserrat";
    font-size: 400px;
    line-height: 1;
    font-weight: 700;
    color: #5c6d77;
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto 80px auto;
}

blockquote p {
    font-family: "Montserrat";
    font-size: 90px;
    font-weight: 700;
    margin: 0 0 100px;
}

blockquote footer {
    font-family: "Montserrat";
    font-size: 32px;
    font-weight: 700;
    color: #5c6d77;
    text-transform: uppercase;
}

blockquote footer:before {
    display: none;
}

.slick-arrow {
    width: 51px;
    height: 94px;
    margin-top: -46px;
    text-indent: -9999em;
}

.slick-prev {
    background: transparent url('../img/prev.png') no-repeat 0 0;
    left: 0;
}

.slick-next {
    background: transparent url('../img/next.png') no-repeat 0 0;
    right: 0;
}

.slick-dots {
    display: none !important;
}

/**
 *  Section Contact
 */

.section-contact {
    background: #192f3d;
    padding: 170px 0;
}

.section-contact h4 {
    font-family: "Montserrat";
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 50px 0;
}

.section-contact .btn {
    background: #001d33;
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: white;
    padding: 38px;
    width: 100%;
    max-width: 600px;
}

.follow .fa {
    width: 110px; height: 110px;
    border-radius: 5px;
    color: white;
    text-align:center;
    display: inline-block;
    margin: 0 20px 20px 20px;
    font-size: 44px;
    line-height: 110px;
}

.fa-facebook {
    background: #3460a1;
}

.fa-twitter {
    background: #28aae1;
}

.fa-instagram {
    background: #404040;
}

.fa-youtube-play {
    background: #d11e2b;
}

/**
 *  Section Footer
 */

.section-footer {
    padding: 90px 0;
    background: #273a47;
}

.section-footer img {
    margin: 0 auto;
}

.section-footer .small {
    font-size: 11px;
    margin: 30px 0 0 0;
}

.section-footer p a {
    display: inline-block;
    color: #fff;
    margin: 0 5px;
}

/**
 *  Responsive
 */

@media (max-width:1920px) {
    /* layout */
    .section {
        padding: 125px 0;
    }
    /* cover */
    .scrollTo {
        font-size: 12px;
        width: 250px; height: 55px;
        line-height: 53px;
        bottom: 30px; left: 50%;
        margin: 0 0 0 -125px;
        z-index: 2;
    }
    .scrollTo:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12px 12px 0 12px;
        border-color: #2ca5cb transparent transparent transparent;
        position: absolute;
        left: 50%; bottom: -12px;
        margin-left: -12px;
    }
    /* cta */
    .section-cta {
        padding: 125px 0 0;
    }
    /* about */
    .section-about .title {
        font-size: 35px;
    }
    .section-about .title:after {
        content: "";
        width: 155px;
        height: 4px;
        margin: 32px auto 35px auto;
    }
    .section-about p {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .player {
        box-shadow: 0 20px 20px rgba(0,0,0,0.15);
        margin-bottom: 125px
    }
    .poster:after {
        content: "";
        width: 160px; height: 160px;
        margin: -80px 0 0 -80px;
        background-size: cover;
    }
    /* testimonials */
    blockquote:before {
        content: "“";
        font-size: 200px;
        width: 90px;
        height: 90px;
        margin: 0 auto 40px auto;
    }
    blockquote p {
        font-size: 45px;
        margin: 0 0 50px;
    }
    blockquote footer {
        font-size: 16px;
    }
    .slick-arrow {
        width: 25px;
        height: 46px;
        margin-top: -23px;
        background-size: 25px 46px;
    }
    /* contact */
    .section-contact {
        padding: 85px 0;
    }
    .section-contact h4 {
        font-size: 16px;
        margin: 0 0 25px 0;
    }

    .section-contact .btn {
        font-size: 12px;
        padding: 19px;
        max-width: 300px;
    }

    .follow .fa {
        width: 55px; height: 55px;
        margin: 0 5px 10px 5px;
        font-size: 24px;
        line-height: 56px;
    }
    /* footer */
    .section-footer {
        padding: 45px 0;
    }

}

@media (max-width: 1024px) {
    /* layout */
    .section {
        padding: 60px 0;
    }
    /* cta */
    .section-cta {
        padding: 60px 0 0 0;
    }
    .section-cta .cta > * {
        padding: 0 10px;
    }
    /* about */
    .player {
        margin-bottom: 60px;
    }
    .poster:after {
        width: 100px;
        height: 100px;
        margin: -50px 0 0 -50px;
    }
    /* testimonials */
    blockquote p {
        font-size: 30px;
    }
    /* contact */
    .section-contact .btn {
        padding: 10px;
    }
    .follow .fa {
        width: 40px; height: 40px;
        line-height: 45px;
        margin: 0 5px 10px 5px;
        font-size: 20px;
    }
    .section-footer img {
        width: 145px; height: 56px;
    }
}

@media (max-width: 768px) and (max-height: 1024px) {
    .section-cover {
        min-height: 420px !important;
    }
    .scrollTo {
        bottom: 15px;
    }
}

@media (max-width: 767px){
    .bg {
        position: relative
    }
    /* cover */
    .section-cover {
        display: none;
    }
    /* cta */
    .section-cta {
        padding: 0;
        margin-top: -24px;
    }
    .section-cta .cta,
    .section-cta .cta > * {
        display: block;
    }
    .section-cta a {
        max-width: 230px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-cta a + a {
        margin-top: 15px;
    }
    /* About */
    .player {
        box-shadow: 0 23px 75px rgba(0,0,0,0.15);
    }
    .poster:after {
        width: 70px;
        height: 70px;
        line-height: 70px;
        margin: -35px 0 0 -35px;
    }
    .section-about .title {
        font-size: 25px;
    }
    .section-about .title:after {
        width: 75px;
        margin: 28px auto 28px auto;
    }
    .section-about p {
        font-size: 16px;
    }
    /* Testimonials */
    .section-testimonials {
        padding: 50px 0;
    }
    blockquote p {
        font-size: 25px;
        margin-bottom: 30px;
    }
    blockquote footer {
        font-size: 12px;
    }
    blockquote:before {
        font-size: 150px;
        width: 66px;
        height: 66px;
        margin: 0 auto 30px auto;
    }
    .slick-arrow {
        display: none !important;
    }
    .slick-dots {
        display: block !important;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    .slick-dots li {
        display: inline-block;
    }
    .slick-dots li button {
        padding: 0;
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #c8b5a7;
        border: none;
        text-indent: -999em;
        margin: 50px 17px 0 17px;
    }
    .slick-dots li.slick-active button {
        background: #3a2d36;
    }
    .slick-dots li.slick-active button:focus {
        outline: 0;
    }
    /* Contact */
    .section-contact {
        padding:0 0 60px 0;
    }
    .section-contact h4 {
        margin: 60px 0 32px 0;
    }
    .section-contact .btn {
        padding: 18px 10px;
    }
    /* Footer */
    .section-footer {
        padding: 50px 0;
    }
    .section-footer .small {
        font-size: 9px;
        margin: 30px 0 0 0;
    }
}