*html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    background: #333;
    background: url(../img/law-bg.jpg) center right no-repeat;
    background-size: cover;
    margin: 0;
    min-height: 100vh;
}

/*--------------------------------------
 * TYPOGRAPHY  
 *--------------------------------------*/

h1 {
    font-size: 60px;
    line-height: 1;
    margin: 0
}

h2 {
    font-size: 24px;
    font-weight: normal;
}

/*--------------------------------------
 * LINK STYLE 
 *-------------------------------------- */

a {
    color: #fff;
    text-decoration: none;
}

a,
a:active,
a:focus,
a:active {
    text-decoration: none;
    outline: none
}

a:hover,
a:focus {
    text-decoration: none;
}

/*-------------------------------------------------------------
 * Main Wraper
 *-------------------------------------------------------------*/

.wraper {
    padding: 0 4%;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/*-------------------------------------------------------------
 * HEADER
 *-------------------------------------------------------------*/

.header {
    padding-top: 4%;
}

/*-------------------------------------------------------------
 * Countdown
 *-------------------------------------------------------------*/

.countdown-wrapper {
    margin: 20px 0 50px;
}

#back-countdiown {
    padding: 0;
}

#back-countdiown li {
    display: inline-block;
    margin-right: 15px;
    min-width: 150px;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, .7);
    border-radius: 2%;
    position: relative;
}

@media screen and (max-width:600px) {
    #back-countdiown li {
        width: 40%;
        margin-bottom: 20px;
    }
}

#back-countdiown li:last-child {
    margin-right: 0
}

#back-countdiown li span {
    display: block;
    font-size: 50px;
    padding: 35px;
    font-weight: 700;
}

#back-countdiown li p {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    padding: 10px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .7);
}

#back-countdiown li span:hover {
    cursor: pointer;
}

/*-------------------------------------------------------------
 * Subscribe 
 *-------------------------------------------------------------*/

.subscribe {
    margin: 50px 0 50px;
    text-align: center;
    display: block;
}

.subscribe-form {
    width: 40%;
    position: relative;
}

@media screen and (max-width:768px) {
    .subscribe-form {
        width: 100%;
    }
}

.subscribe-form input[type="email"] {
    border: 2px solid rgba(255, 255, 255, .5);
    height: 50px;
    line-height: 50px;
    width: 100%;
    background: transparent;
    border-radius: 3px;
    padding: 0 130px 0 20px;
    font-size: 18px;
    display: inline-block;
    box-sizing: border-box;
    color: #fff;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form input[type="submit"] {
    cursor: pointer;
    background: #F36B6B;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 0 20px;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}

.subscribe-form input[type="submit"]:hover {
    background: #CA5151;
}

.subscribe-form::-webkit-input-placeholder {
    color: #fff;
}

/*------------------
 * Image Background
 *------------------*/

/*------------------
 * Video Background
 *------------------*/

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 767px) {
    .fullscreen-bg {
        background: url('../img/videoframe.jpg') center center / cover no-repeat;
    }
    .fullscreen-bg__video {
        display: none;
    }
}

/*-----------------------
 * Footer
 *-----------------------*/

.footer {
    position: relative;
    display: flex;
    bottom: auto;
    left: auto;
    flex-direction: column;
    margin-top: auto;
}

/*social-links*/

.social-links ul {
    margin: 0;
    padding: 0;
}

.social-links li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.social-links li a {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.social-links li a:hover {
    color: #fff;
}

/*copyright*/

.copyright {
    margin: 10px 0 20px;    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    padding: 0;
    line-height: 1;
}

.copyright a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.copyright li {
    display: inline-block;
    margin-right: 10px;
}