/*========================================================
                    CONTENT styles
=========================================================*/
#content {
  overflow: hidden;
}


/* Video section
========================================================*/
#home {
  padding: 0px 0 240px 0;
  position: relative;
  text-align: center;
}




#register {
  background: #3f447e;
}
/* Contact Form variables
========================================================*/
/* Contact Form Basic Styles 
========================================================*/
.mailform {
  position: relative;
}
button {
	border: none;
}
.mailform .buttons {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .mailform .buttons {
    display: inline-block;
    margin-right: 8px;
    padding: 20px 62px;
  }
}
@media only screen and (max-width: 479px) {
  .mailform .buttons {
    display: inline-block;
    margin-right: 8px;
    padding: 20px 22px;
  }
}
.mailform label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  margin-right: 29px;
  margin-top: 35px;
}
.mailform label.message {
  display: block;
  margin-right: 0;
}
.mailform .last {
  margin-right: 0;
}
.mailform fieldset {
  border: none;
}
@media only screen and (max-width: 1199px) {
  .mailform label {
    margin-right: 4px;
  }
}
@media only screen and (max-width: 979px) {
  .mailform label {
    margin-right: 0px;
    display: block;
  }
}

/* Contact Form Input 
========================================================*/
.mailform input[type='text'] {
  width: 358px;
  line-height: 44px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  padding: 8px 20px;
  outline: none;
  height: 58px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  margin: 0;
  color: #fff;
  border: 2px solid #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .mailform input[type='text'] {
    width: 308px;
  }
}
@media only screen and (max-width: 979px) {
  .mailform input[type='text'] {
    width: 100%;
  }
}

/* Contact Form Textarea 
========================================================*/
.mailform textarea {
  width: 100%;
  line-height: 24px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  padding: 8px 20px;
  margin-bottom: 20px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  resize: none;
  height: 100px;
  color: #fff;
  border: 2px solid #fff;
  text-transform: uppercase;
}

.mailform required {
  border: 1px solid yellow;
}


.handright {
    position: relative;
}
.handright:before {
    content: "\f000";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
/*--adjust as necessary--*/
    color: #000;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    left: 0;
}

/*  Registration 
========================================================*/
/**** Check box ****/
input[type="checkbox"]{
  display: none;
}
.checkbox {
  margin-bottom: 10px;
  margin-left: 16px;
}
.checkbox label {
  position: relative;
}
.checkbox label span {
	color: #fff;
}
/* Base styles for spans */
.checkbox span::before,
.checkbox span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* Check-boxes */
.checkbox span.checkbox::before {
  width: 30px;
  height: 30px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  left: -30px;
  box-sizing: border-box;
  transition: border-color .2s;
}
.checkbox span.checkbox:hover::before {
  border: 2px solid #ffbafc;
}
.checkbox span.checkbox::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 28px;
  left: -29px;
  top: -3px;
  color: transparent;
  transition: color .2s;
}
input[type="checkbox"]:checked + label span.checkbox::after {
  color: #fff;
}

