*html{
    margin: 0;
    padding: 0;
}

body {
    font-family : 'Montserrat', sans-serif;
    font-size   : 16px;
    line-height : 26px;
    color       : #fff;
    font-weight : 400;
    background: #333;
    margin: 0;
    }

/*--------------------------------------
 * 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: 4%;
    color: #fff;
}


/*-------------------------------------------------------------
 * HEADER
 *-------------------------------------------------------------*/
.header{
    margin-bottom: 50px;
}

/*-------------------------------------------------------------
 * HEADER
 *-------------------------------------------------------------*/
.content{
    margin: 50px 0 50px;
    text-align: center;
    display: block;
}


/*-------------------------------------------------------------
 * 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;
}



/*------------------
 * 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__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.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: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0rem;
    background-color: #efefef0f;
    text-align: center;
}


/*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-top: 10px;
    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;
}


.copyright li:last-child{
    border-left: 1px solid rgba(255,255,255,.2);
    padding-left: 12px;
}

/* contact form */
/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}


input::-webkit-input-placeholder { color: #555555;}
input:-moz-placeholder { color: #555555;}
input::-moz-placeholder { color: #555555;}
input:-ms-input-placeholder { color: #555555;}

textarea::-webkit-input-placeholder { color: #555555;}
textarea:-moz-placeholder { color: #555555;}
textarea::-moz-placeholder { color: #555555;}
textarea:-ms-input-placeholder { color: #555555;}

label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Contact Info ]*/
.container-contact-info100 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  padding: 15px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.wrap-contact-info100 {
  background: #ffffffcf;
  border-radius: 2px;
  position: relative;
  margin-top: 10px;
  padding: 25px 25px 25px 25px;
  
  justify-content: left;
  align-items: left;
  text-align: left;
  color: #000;

  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.5);
}

.wrap-contact-info-button100 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: -10px;
  padding-top: 25px;
}

/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 100%;  
  min-height: 85vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.container-contact100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.contact100-map {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wrap-contact100 {
  width: 800px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  margin-top: 55px;
  padding: 60px 25px 25px 25px;

  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}


.contact100-form-symbol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  background: #fff;
  top: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.contact100-form-symbol img {
  max-width: 49px;
}

.contact100-form-close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 24px;
  right: 10px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  background: #fff;
}
.contact100-form-close i {
  color: #555555ad;
  font-size: 32px;
}


/*==================================================================
[ Form ]*/

.contact100-form {
  width: 100%;
}

.contact100-form-title {
  width: 100%;
  display: block;
  font-family: OpenSans-Regular;
  font-size: 28px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 33px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  margin-bottom: 20px;
}

.wrap-input100.rs1 {
  width: calc((100% - 20px) / 2);
}

/*---------------------------------------------*/
.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: OpenSans-Regular;
  color: #333333;
  line-height: 1.2;
}

input.input100 {
  height: 50px;
  padding: 0 20px 0 25px;
  font-size: 16px;
}

textarea.input100 {
  min-height: 150px;
  padding: 25px 20px 15px 25px;
  font-size: 15px;
}

/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #ff8d00;
  border-radius: 2px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.eff-focus-selection {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: -10px;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 100px;
  height: 50px;
  background-color: #ff8d00;
  border-radius: 2px;

  font-family: OpenSans-Regular;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background-color: #333333;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 768px) {
  .wrap-input100.rs1 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 92px 15px 88px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 5px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: OpenSans-Regular;
  color: #c80000;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
