
/* -----------------------------------

  1. Reset default browser styles

------------------------------------- */

@viewport{user-zoom: fixed;}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

iframe{width: 100%;}

b, strong{font-weight: bold !important;}

ul,
ol{
  list-style: none;
}

q{quotes: none;}

table, table td{ 
  padding: 0;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

img{
  vertical-align: top; 
  max-width: 100%;
}

embed{ vertical-align: top;}

input,
button{
  -webkit-appearance: none;
  outline: none;
}

button::-moz-focus-inner{border: 0;}

html{
  overflow-x: hidden;
}

html,body{height: 100%;}

/* ----------------------------------------
    Preloader
---------------------------------------- */

.milenia-preloader-circle,
.milenia-preloader {
  position: fixed;
  width: 260vw;
  height: 260vw;
  margin-left: -130vw;
  margin-top: -130vw;
  background-color: #fff;
  z-index: 50;
  border-radius: 50%;
  -webkit-transition-property: -webkit-transform;
          transition-property: transform;
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
  -webkit-transition-duration: 700ms;
          transition-duration: 700ms;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.milenia-preloader-circle {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.milenia-preloader {
  left: 50%;
  top: 50%;
}

.milenia-preloader-circle, .milenia-preloader.milenia-preloader--disappearing {
  -webkit-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
}

.milenia-preloader-circle--appearing {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* -----------------------------------

  2. Basic classes and elements 

------------------------------------- */

body{
  font: 16px/26px 'Source Sans Pro', sans-serif;
  color: #636363;
  position: relative;
}

.full-width{width: 100%;}

.wrapper{overflow: hidden;}

.relative{position: relative;}

.align-left{text-align: left;}

.align-center{text-align: center;}

.align-right{text-align: right;}

.f-left{float: left;}

.f-right{float: right;}

.hide{display: none;}

.show{display: block;}

.invisible{visibility: hidden;}

.hide{ 
  display: none!important;  
}

.show{ 
  display: block; 
}

.invisible{ 
  visibility: hidden; 
}

::selection{
  background: #1c1c1c;
  color: #fff;
}

::-moz-selection{
  background: #1c1c1c;
  color: #fff; 
}

::-o-selection{
  background: #1c1c1c;
  color: #fff; 
}

::-ms-selection{
  background: #1c1c1c;
  color: #fff;
}

::-webkit-scrollbar{
  width: 5px;
  background: #1c1c1c;
}

::-webkit-scrollbar-thumb{
  background: #1e46a5;
}

img{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.clearfix:after,
.row:after{
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: ".";
}

[class*="flex-row"]{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

[class*="flex-row"]:after{
  display: none;
}

[class*="flex-row"] > *{
  float: none;
}

.row.type-2{
  margin: 0 -30px;
}

.row.type-2 > *{
  padding: 0 30px;
}

row:not(.col-no-space){
  margin-bottom: -56px;
}

.row:not(.col-no-space) > [class*="col"]{
  padding-bottom: 56px;
}

/* -----------------------------------

  3. Typography

------------------------------------- */

h1,h2,h3,h4,h5{
  font-family: 'Roboto', sans-serif;
  color: #1c1c1c;
  line-height: 1.25em;
  font-weight: normal;
}

h1{
  font-weight: bold;
  font-size: 42px;
  color: #fff;
}

h2{
  font-size: 48px;
}

h3{
  font-size: 30px;
}

h4{
  font-size: 24px;
}

h5{
  font-size: 16px;
}

h1:not(:last-child){
  margin-bottom: 28px;
}

h2:not(:last-child){
  margin-bottom: 28px;
}

h3:not(:last-child){
  margin-bottom: 20px;
}

h4:not(:last-child){
  margin-bottom: 15px;
}

a,
button{
  transition: all .4s ease;
  text-decoration: none;
}

p:not(:last-child){
  margin-bottom: 30px;
}

.section-title{
  text-align: center;
  color: #222;
}

.section-title:not(:last-child){
  margin-bottom: 60px;
}

/* -----------------------------------

  4. Header

------------------------------------- */

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.logo{
  padding: 23px 0;
  padding-left: 40px;
}

  ul.menu{
    font-size: 0;
    margin: 0 -20px -10px
  }

    ul.menu > li{
      font-size: 14px;
      display: inline-block;
      margin: 0 20px 10px;
    }

      ul.menu > li > a{
        color: #1c1c1c;
        border-top: 2px solid transparent;
        text-decoration: none;
        line-height: 28px;
        display: block;
        letter-spacing: 1px;
        padding-top: 40px;
      }

      ul.menu > li.current > a,
      ul.menu > li:hover > a{
        color: #1e46a5;
        border-top-color: #1e46a5;
      }

/* buttons */

.btn{
  padding: 12px 30px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-align: center;
  background: #d72033;
  color: #fff;
  text-transform: uppercase;
  border-width: 1px;
  border-color: transparent;
  border-style: solid;
  border-radius:4px;
}

.btn:not(.btn-small):hover{
  background: #fff;
  border-color: #1e46a5;
  color: #1e46a5;
}

.btn.btn-big{
  padding: 40px 40px;
}

.btn.btn-medium{
  padding: 19px 65px;
}

.btn.btn-small{
  background: none;
  padding: 0;
  text-transform: uppercase;
  color: #1e46a5;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  opacity: 0.26;
}

/* -----------------------------------

  5. Content

------------------------------------- */

.media-holder{
  background: #fff;
  background-size: cover;
  background: url(../images/start.jpg) no-repeat center;
  padding-bottom: 45%;
  min-height: 700px;
  width: 100%;
  color: #333;
  position: relative;
}

.media-inner{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;

  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.media-inner p{
 
  font-size: 24px;
  line-height: 39px;
  color:#fff
}

.media-inner p:not(:last-child){
  margin-bottom: 38px;
}

.demo-section{
  overflow: hidden;
  position: relative;
  padding: 160px 0;
}

.section-bg-img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin-top: -10px;
}

.demo-bg-1{
  background: #f8f8f8;
}

.demo-bg-2{
  background: #1c1c1c;
}

.demo-bg-3{
  background: #1e46a5;
}

.demo-bg-2 p{
  opacity: 0.7;
}

.demo-bg-3 p{
  opacity: 0.75;
}

.text-color-white.demo-section .demo-title,
.text-color-white.demo-section .demo-title h2{
  color: #fff;
}

  .demo-section .demo-title:not(.align-left){
    text-align: center;
  }

  .demo-bg-2.demo-section .demo-title h2 span,
  .demo-bg-3.demo-section .demo-title h2 span,
  footer h2 span{
    border-bottom: 4px solid #ffd100;
  }

  h2 span{
    border-bottom: 3px solid #1c1c1c;
  }
  
  h3 span{
    border-bottom: 3px solid #ffd100;
  }

  .demo-section .demo-title:not(:last-child){
    margin-bottom: 70px;
  }

  .demo-homes{
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -45px;
  }

  .demo-homes .home-col{
    width: 50%;
    padding: 0 45px;
  }

  .demo-homes .demo-home{
    transition: 1s;
  }

  .demo-homes .demo-home:not(:last-child){
    margin-bottom: 170px;
  }

  .demo-homes .demo-home figure{
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow:    0px 0px 38px 0px rgba(0, 0, 0, 0.17);
    box-shadow:         0px 0px 38px 0px rgba(0, 0, 0, 0.17);
  }

  .demo-homes .demo-home:hover .demo-header > *{
    background-size: 100% 1px;
  }

  .demo-section .demo-header{
    padding-bottom: 18px;
  }

  .demo-section .demo-header > *{
    display: inline-block;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(-100%),#1c1c1c 1px);
    background-size: 0 0;
    background-position: bottom;

    -webkit-transition: all .5s cubic-bezier(.165,.84,.44,1);
    transition: all .5s cubic-bezier(.165,.84,.44,1);
  }

    .demo-header .home-count{
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1px;
      color: #858585;
    }

    .demo-header .home-title{
      font-style: italic;
      font-size: 20px;
      color: #1c1c1c;
      letter-spacing: -0.1px;
    }

.page-section{
  padding: 120px 0;
}

.wigh-bg{
  background: #f7f7f7;
}

figure.with-shadow{
  -webkit-box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow:    0px 3px 32px 0px rgba(0, 0, 0, 0.13);
  box-shadow:         0px 3px 32px 0px rgba(0, 0, 0, 0.13);
}

/* Booking */

.book-section:not(.list-type){
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;

  margin: 0 -15px -90px;
}

.book-section:not(.list-type) .book-col{
  width: 33.3333%;
  padding: 0 15px 90px;
}

.book-section:not(.list-type) .book-item{
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.book-item .book-desc{
  padding: 0 25px;
}

.book-section .book-title{
  color: #fff;
}

.book-section:not(.list-type) .book-item figure:not(:last-child){
  margin-bottom: 28px;
}

.book-section.list-type{
  text-align: center;
}

.book-section.list-type .book-item{
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  text-align: left;
  align-items: center;
  margin: 0 -40px -20px;
}

.book-section.list-type .book-item > *{
  padding: 0 40px 20px;
  width: 50%;
}

.book-section.list-type .book-col{
  max-width: 890px;
  display: inline-block;
}

.book-section.list-type .book-col:not(:last-child){
  margin-bottom: 90px;
}

.book-section.list-type .book-col:nth-child(2n) .book-item{
  flex-direction: row-reverse;
}

.book-section.list-type .book-item p span{
  font-weight: bold;
}

.book-section:not(:first-child){
  margin-top: 110px;
}

/* Features */

.features{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.features:not(:first-child){
  margin-bottom: 56px;
}

.feature-icon-col{
  border: 1px solid #dadada;
  padding: 50px 30px;
  text-align: center;
  width: 16.6666%;
  margin-left: -1px;
  margin-top: -1px;
}

  .features .feature-icon-item > span{
    min-height: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .features .feature-icon-item span:not(:last-child){
    margin-bottom: 18px;
  }

  .features .feature-icon-item{
    line-height: 24px;
    color: #1c1c1c;
  }

  .features .feature-icon-item p span{
    color: #858585;
  }

/* Plugins */

.plugins ul{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.plugins ul > li{
  width: 50%;
  padding: 15px;
}

  .plugins .plugin{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .plugins .plugin img{
    min-width: 80px;
  }

  .plugins .plugin p{
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    padding-left: 20px;
  }

/* -----------------------------------

  6. Footer

------------------------------------- */

.footer{
  background: url(../images/1920x585_bg1.jpg) no-repeat center;
  padding: 160px 15px 175px;
  text-align: center;
  background-size: cover;
  font-size: 18px;
}

  .footer h2{
    color: #fff;
    line-height: 60px;
  }

  .footer h2:not(:last-child){
    margin-bottom: 50px;
  }

/* -----------------------------------

  7. Resonsive

------------------------------------- */

@media (min-width: 1480px){

  .container.extra{
    max-width: 1380px;
  }

}

@media (max-width: 1200px) {

  .features .feature-icon-col{
    width: 25%;
  }

  .btn.btn-big{
    padding: 26px 30px;
  }

  .logo{
    padding-left: 10px;
  }

  p br,
  h1 br,
  h2 br{
    display: none;
  }

  ul.menu{
    margin: 0 -10px -5px;
  }

  ul.menu > li{
    margin: 0 10px 5px;
  }

}

@media (max-width: 992px) {

  .header{
    position: relative;
  }

  .features .feature-icon-col{
    width: 33.333%;
  }

  .book-section:not(.list-type) .book-col{
    width: 100%;
  }

  .header{
    display: block;
    text-align: center;
  }

  .header > *:not(:last-child){
    margin-bottom: 14px;
  }

  .logo{
    padding-left: 0;
  }

  ul.menu > li > a{
    padding-top: 10px;
  }

}

@media (max-width: 768px) {

  .book-section.list-type .book-item > *{
    width: 100%;
  }

  .book-section.list-type .book-item{
    display: block;
    text-align: center;
  }

  .demo-homes{
    margin: 0 -15px;
  }

  .demo-homes .home-col{
    padding: 0 15px;
  }

  .demo-homes .demo-home:not(:last-child) {
    margin-bottom: 70px;
  }

}

@media (max-width: 480px) {

  .features .feature-icon-col{
    width: 50%;
  }

  .plugins ul > li{
    width: 100%;
  }

  .media-holder h1{
    font-size: 42px;
    line-height: 50px;
  }

  .media-holder .media-inner .btn{
    display: none;
  }

}

@media (max-width: 320px) {

  .features .feature-icon-col{
    width: 100%;
  }

  .media-holder h1{
    font-size: 32px;
    line-height: 40px;
  }

}

/* -----------------------------------

  8. Hosting

------------------------------------- */

    .hosting{
  background: #14468c;
  padding: 60px 20px;
  text-align: center;
    background: url(../images/hosting.jpg);
    -webkit-background-size: inherit;
    background-size: inherit;
}

  .hosting h3{
  font:14px/20px 'Montserrat';
  font-family: 'Montserrat';
    margin-bottom: 35px;
    font-weight: 300;
	font-size: 28px;
	color:#3370ca;
    line-height: 45px;
  }

  .hosting .button{padding: 14px 50px;}

  


.btn.btn-host{
  padding: 25px 40px;
   background: #1374c6;
}

.btn.btn-host:hover{
  padding: 25px 40px;
   background: #1374c6;
   color:#d2e9fd;
   border-color:#fff;
}