@import url("lato_font.css");
@import url("animations.css");
@import url("mobile.css");
@import url("../css/font-awesome/css/font-awesome.min.css");

/*each page style*/
@import url("pages.css");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

h1:before, p:after , div:after , nav:after {
  content: "";
  display: table;
  clear: both;
}

body {
  font-family: 'Lato', arial;
  color: #333;
  background: #000;
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

img {
  width: 100%;
  margin: 0;
  padding: 0;
}

.alert {
  display: none;
  position: fixed;
  z-index: 1000;
  margin-top: 46px;
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px;
}
.alert.success {  
  background: rgba(9,167,0,0.8);
}
.alert.danger {
  background: rgba(255,0,0,0.8);
}
.not_verified {
  color: #ffffff;
  padding: 3px;
  margin-top: 8px;
  font-style: italic;
  background: rgba(255,0,0,0.7);
}
.not_verified:before {
  content: "";
  display: table;
  position: absolute;
  margin-top: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-bottom: 8px solid rgba(255,0,0,0.7);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.align_left {
  text-align: left;
}
.align_right {
  text-align: right;
}
.center_image {
  position: relative;
  margin-top: 50%;
  padding: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.padding_text {
  padding: 20px;
}

/* Base for label styling */
input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
label.label_box {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

/* checkbox aspect */
label.label_box:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 17px; height: 17px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}
/* checked mark aspect */
label.label_box:after {
  content: '✔';
  position: absolute;
  top: 3px; left: 4px;
  font-size: 18px;
  line-height: 0.8;
  color: #505050;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* checked mark aspect changes */
label.not_checked:after {
  opacity: 0;
  transform: scale(0);
}
label.checked:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="checkbox"]:disabled:not(:checked) + label:before,
input[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
input[type="checkbox"]:disabled + label {
  color: #aaa;
}

/* hover style just for information */
label:hover:before {
  border: 1px solid #4778d9!important;
}


/* Header */
#header_background {
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
}
.centered {  
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#video_bg {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  background-image: url("../images/layer.gif");
  position: absolute;
  z-index: 1;
}
.header_quote {
  position: absolute;
  z-index: 2;
  color: #FFF;
  font-size: 48px;
  width: 500px;
  text-align: center;
}
.header_text {  
  font-size: 3rem;
  font-weight: 300;
}
.arrow {
  position: fixed;
  bottom: 0;
  left: 50%;
  margin-left: -40px;
  width: 80px;
  height: 80px;
  background-image: url("../images/down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 11;
  cursor: pointer;
}
/*Nav Menu*/
.menu_wrapper {
  width: 100%;
  background: rgb(0,0,0);
  color: #FFF;
  position: fixed;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.lines {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  z-index: 1000;
  position: absolute;
}
#loading_line {
  width: 0%;
  height: 3px;
  background: #FFF;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
#goto_header {
  float: left;
  cursor: pointer;
}
#main_menu {
  width: 100%;
  position: relative;
  padding: 30px 0;
  font-size: 13px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#main_menu > ul {
  list-style: none;
  float: right;
  padding: 5px 0 5px 0;
}
#main_menu li {
  float: left;
}
#main_menu a {
  text-decoration: none;
  color: #FFF;
  display: block;
  padding: 0px 15px 0px 15px;
  text-transform: uppercase;
}
#main_menu a:hover {
  -webkit-transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
  color: #AEAEAE;
}
.active_menu {
  color: #AEAEAE !important;
}
#menus li {
  border-right: 1px solid #AEAEAE;
}
#menus li:last-child {
  border-right: 0;
}
/*Dropdown Menu Contact*/
.dropdown-menu__contact {
  width: 250px;
  margin-top: 8px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(-205px);
  -moz-transform: translateX(-205px);
  -ms-transform: translateX(-205px);
  transform: translateX(-205px);
}
.dropdown-menu__contact:before {
  content: "";
  display: table;
  position: absolute;
  top: -8px;
  left: 217px;
  width: 0;
  height: 0;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.dropdown-menu__body {
  padding: 10px;
  background: #fff;
  border-left: 1px solid #949494;
  border-right: 1px solid #949494;
}
#phone_wrapper:after {
  content: "* optional";
  position: relative;
  color: green;
  text-align: center;
  width: 100%;
}
input[type="text"], select {
  width: 100%;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid #AEAEAE;
  outline: none;
}
input[type="text"]:focus, select:focus {
  border-bottom: 3px solid #02a8c6;
}
textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-family: 'Lato', 'san-serif';
  border: 0;
  resize: none;
  outline: none;
  font-size: 0.8rem;
  border-bottom: 1px solid #AEAEAE;
}
textarea:focus {
  border-bottom: 3px solid #02a8c6;
}
.btn-submit {
  background: #949494;
  text-align: center;
}
.dropdown-menu__footer > button[type="submit"], .form-advertise__footer > button[type="submit"]{
  padding: 10px !important;
  cursor: pointer;
  outline: none;
  border: 0;
  color: #fff;
  width: 100%;
}
.dropdown-menu__footer > button[type="submit"]:hover, .form-advertise__footer > button[type="submit"]:hover {
  color: #fff !important;
}
.dropdown-menu__footer > button[type="submit"]:active, .form-advertise__footer > button[type="submit"]:active {
  background-color: #FFF;
  border-color: #AEAEAE;
  color: #333 !important;
}

/*Main Content*/
#main {
  position: relative;
  overflow-y: scroll;
  margin-top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  -webkit-transition: margin-top 0.5s ease-in-out, opacity 0.8s ease-in-out;
  -moz-transition: margin-top 0.5s ease-in-out, opacity 0.8s ease-in-out;
  transition: margin-top 0.5s ease-in-out, opacity 0.8s ease-in-out;
}
.container {
  margin: 0 150px 0 150px;
  text-align: center;
}
.content_wrapper {
  padding-top: 86px;
  color: #FFF;
}
.content_wrapper .divider {
  padding: 30px 0 30px 0;
}
.main_title {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 20px;
}
.preface_text {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 200;
}
.preface_link {
  font-size: 1rem;
  line-height: 3rem;
}
.preface_link a {
  text-decoration: none;
  color: #01afce;   
}
.preface_link a:hover {
  text-decoration: underline;
}
.content {
  position: relative;
  pointer-events: none;
  z-index: 1;
}
.main_over {
  position: relative;
  pointer-events: auto;
  z-index: 1;
  background: #fff;
  color: #333;
}
.parallax_cover {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.parallax_item {
  min-height: 400px;
  height: 400px;
  margin: 0;
  background-size: cover;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-position: 50% 50%;
}
.parallax_item .container {
  width: 100%;
  margin: 0 auto !important;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("../images/layer.gif");
  color: #fff;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#parallax_section1 {
  background-image: url('../images/festive.jpg');
}
#parallax_section2 {
  background-image: url('../images/zegna.jpg');
}
#parallax_section3 {
  background-image: url('../images/bulgari.jpg');
}
/*Section Content*/
.image_cover {
  position: absolute;
  margin-top: -306px;
  margin-left: 13px;
  z-index: 1;
  overflow: hidden;
  width: 360px;
  height: 200px;
}
.resp_image {
  padding: 20px;
}
.resp_image > iframe {
  outline: none;
  -webkit-border: none;
  -moz-border: none;
  border: none;
  border: 0;
}
.resp_text {  
  padding: 0 20px 0 20px;
}
.section_text_right {
  text-align: left;
}
.section_text_left {
  text-align: right;
}

/*Footer*/
footer {
  background: #333;
  bottom: 0;
  position: fixed;
  z-index: 0;
  width: 100%;
  color: #FFF;
  font-size: 0.8rem;
  pointer-events: auto;
  display: none;
}
.footer .container {
  text-align: left;
}
.footer_transparent {
  background: transparent;
  position: relative;
  pointer-events: none !important;
}
.footer_header {
  font-weight: 400;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.nav_footer {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.nav_footer ul {
  list-style: none;
  position: relative;
}
.nav_footer li {
  float: left;
  margin-right: 20px;
}
.nav_footer a {
  color: #01afce;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 10px 0 10px 0;
  display: block;
  text-transform: uppercase;
}
.nav_footer a:hover {
  text-decoration: underline;
  color: #FFF;
}
.footer {
  margin: 20px 0 20px 0;
}
.mails ul {
  list-style: none; 
}
.mails a {
  color: #01afce;
  text-decoration: none;
}
.mails a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer_shadow {
  box-shadow: inset 0 10px 10px rgba(0,0,0,0.75);
  height: 20px;
  position: absolute;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.copyright {
  display: inline-block;
  margin-top: 20px;
}