/* start the navbar */
body {
  padding-top: 59px;
  font-family: sans-serif;
  background-color: #f2f2f2; }
  @media (max-width: 768px) {
    body {
      padding-top: 48px; } }

.nav {
  background-color: white;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%; }
  .nav .brand a {
    color: black;
    display: block;
    font-size: 50px; }
    @media (max-width: 768px) {
      .nav .brand a {
        font-size: 40px; } }
  .nav .link ul .lin a {
    display: block;
    color: black;
    padding: 20px 10px;
    transition: all .7s ease-in-out; }
    .nav .link ul .lin a:hover {
      background-color: brown;
      color: white; }
  .nav .link ul .lin:nth-of-type(5) {
    transition: all .7s ease-in-out;
    padding: 0 10px; }
    .nav .link ul .lin:nth-of-type(5) i {
      color: black;
      cursor: pointer;
      padding: 21px 0;
      transition: all .7s ease-in-out; }
    .nav .link ul .lin:nth-of-type(5):hover {
      background-color: brown;
      color: white; }
      .nav .link ul .lin:nth-of-type(5):hover i {
        color: white; }
  @media (max-width: 769px) {
    .nav .link {
      display: none; } }
  .nav .icon {
    padding: 14px 0;
    transition: all .7s ease-in-out;
    color: black; }
    .nav .icon i {
      cursor: pointer; }
    @media (max-width: 768px) {
      .nav .icon {
        display: block; } }
    .nav .icon:hover {
      background-color: orange;
      color: white; }

.linked {
  position: fixed;
  left: 0;
  top: 59px;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9); }
  .linked ul li a {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    color: orange;
    transition: all .7s ease-in-out; }
    .linked ul li a:hover {
      background-color: orange;
      color: white; }
  @media (max-width: 768px) {
    .linked {
      top: 46px; } }

/* end the navbar */
/* start the slidr */
.slid {
  background: url("../images/02.jpg") no-repeat center center fixed;
  background-size: cover; }
  .slid .overlo {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0; }
    .slid .overlo .text {
      margin: 30vh auto 0; }
      .slid .overlo .text h1 {
        margin: 0;
        font-size: 75px; }
        .slid .overlo .text h1 span {
          display: block;
          color: tomato; }
        @media (max-width: 768px) {
          .slid .overlo .text h1 {
            font-size: 40px; } }
      .slid .overlo .text p {
        color: #9B9B9B; }
      .slid .overlo .text a {
        text-transform: uppercase;
        color: #696969;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        background-color: yellow;
        margin-bottom: 140px; }
        @media (max-width: 768px) {
          .slid .overlo .text a {
            margin-bottom: 40px; } }
      .slid .overlo .text h5 {
        margin-bottom: 140px; }

/* end the slider */
/* start the places */
.places {
  position: relative;
  top: -100px;
  left: 0;
  overflow: hidden; }
  .places .place {
    position: relative;
    width: 15.8333333333%;
    height: 250px;
    top: 0;
    left: 0;
    float: left;
    overflow: hidden; }
    .places .place:not(:last-of-type) {
      margin-right: 1%; }
      @media (max-width: 1199px) {
        .places .place:not(:last-of-type) {
          margin-right: 0; } }
    @media (min-width: 769px) and (max-width: 991px) {
      .places .place:nth-of-type(odd) {
        margin-right: 2%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .places .place:nth-of-type(2), .places .place:nth-of-type(5) {
        margin-right: 1%;
        margin-left: 1%; } }
    .places .place img {
      width: 100%;
      height: 100%;
      position: relative;
      left: 0;
      top: 0;
      z-index: 2; }
    .places .place div {
      position: absolute;
      left: -106%;
      top: 0;
      z-index: 10;
      width: 100%;
      height: 100%;
      color: white;
      padding-top: 20%;
      transition: all .8s ease-in-out;
      background-color: rgba(0, 0, 0, 0.5); }
      @media (max-width: 991px) {
        .places .place div {
          padding-top: 5%; } }
      .places .place div span {
        display: block;
        margin-bottom: 10px; }
      .places .place div a {
        text-transform: uppercase;
        color: #696969;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        background-color: yellow;
        margin-bottom: 140px; }
    .places .place:hover div {
      left: 0; }
    @media (max-width: 768px) {
      .places .place {
        width: 100%;
        float: none;
        margin-bottom: 10px; } }
    @media (min-width: 769px) and (max-width: 991px) {
      .places .place {
        width: 49%;
        margin-bottom: 10px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .places .place {
        width: 32.6666666667%;
        margin-bottom: 10px; } }
  @media (max-width: 1199px) {
    .places {
      top: 0;
      padding: 20px 0; } }

/* end the places */
/* sart the where you want to go */
.where {
  background-color: rgba(242, 242, 242, 0.9); }
  .where .h1 {
    margin: 0;
    text-transform: uppercase; }
  .where input {
    display: inline-block;
    width: 50%;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    margin: 10px 0; }
  .where .butts {
    width: 60%;
    margin: auto;
    overflow: hidden; }
    .where .butts div:first-of-type {
      margin-bottom: 10px; }
      .where .butts div:first-of-type a {
        text-transform: uppercase;
        color: white;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        background-color: rgba(204, 204, 204, 0.9);
        transition: all .8s ease-in-out; }
        .where .butts div:first-of-type a:hover {
          background-color: darkorange; }
    .where .butts div:last-of-type a {
      text-transform: uppercase;
      color: black;
      background-color: white;
      padding: 10px;
      border-radius: 10px;
      display: inline-block;
      transition: all .8s ease-in-out; }
      .where .butts div:last-of-type a:hover {
        background-color: darkorange;
        color: white; }
    @media (max-width: 1199px) {
      .where .butts {
        margin: auto;
        width: 100%; }
        .where .butts div {
          float: none; } }
  .where .builds {
    margin-top: 50px;
    overflow: hidden;
    padding: 15px; }
    .where .builds .build {
      background-color: rgba(204, 204, 204, 0.3);
      width: 31.3333333333%;
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 6px 6px 15px 2px #CCC, -6px -6px 15px 2px #CCC; }
      .where .builds .build:nth-of-type(2), .where .builds .build:nth-of-type(5) {
        margin-right: 2%;
        margin-left: 2%; }
        @media (max-width: 991px) {
          .where .builds .build:nth-of-type(2), .where .builds .build:nth-of-type(5) {
            margin-right: 0;
            margin-left: 0; } }
      @media (min-width: 769px) and (max-width: 991px) {
        .where .builds .build:nth-of-type(even) {
          margin-left: 2%; } }
      .where .builds .build img {
        display: block;
        width: 100%; }
      .where .builds .build span {
        display: block;
        margin-bottom: 10px; }
      .where .builds .build a {
        text-transform: uppercase;
        color: #696969;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        margin-bottom: 10px;
        background-color: white;
        transition: all .8s ease-in-out; }
        .where .builds .build a:hover {
          background-color: darkorange;
          color: white; }
      @media (max-width: 768px) {
        .where .builds .build {
          width: 100%; } }
      @media (min-width: 769px) and (max-width: 991px) {
        .where .builds .build {
          width: 49%; } }

/* end the where you want to go */
/* start the explore */
.explore {
  padding: 50px 0;
  background-color: rgba(204, 204, 204, 0.6); }
  .explore .container > .h1 {
    margin-bottom: 100px; }
    @media (max-width: 991px) {
      .explore .container > .h1 {
        margin-bottom: 50px; } }
  .explore .explor .one {
    width: 45%;
    margin: 0 20px; }
    .explore .explor .one > h2 {
      margin-top: 0; }
    .explore .explor .one a {
      text-transform: uppercase;
      color: white;
      padding: 10px;
      border-radius: 10px;
      display: inline-block;
      background-color: rgba(204, 204, 204, 0.9);
      margin-top: 50px;
      transition: all .8s ease-in-out; }
      .explore .explor .one a:hover {
        background-color: darkorange; }
    @media (max-width: 991px) {
      .explore .explor .one {
        float: none;
        width: 100%;
        text-align: center;
        margin: 0 0; } }
  .explore .explor .two {
    width: 45%;
    margin: 0 20px;
    height: 550px;
    border: 10px solid darkorange; }
    .explore .explor .two > img {
      width: 100%;
      height: 100%;
      position: relative;
      top: -60px;
      left: -10px;
      display: block; }
      @media (max-width: 991px) {
        .explore .explor .two > img {
          top: 0;
          left: 0; } }
    @media (max-width: 991px) {
      .explore .explor .two {
        float: none;
        width: 100%;
        margin: 0 0;
        margin-top: 10px; } }

/* end the explore */
/* start the joureny */
.joureny {
  background-color: rgba(204, 204, 204, 0.6); }
  .joureny .curved {
    background: url("../images/025.jpg") no-repeat center center fixed;
    background-size: cover;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%; }
    .joureny .curved .overlo {
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      border-top-right-radius: 50%;
      border-top-left-radius: 50%;
      padding: 100px 0; }
      .joureny .curved .overlo .h1 {
        margin: 0;
        font-size: 50px; }
        @media (max-width: 768px) {
          .joureny .curved .overlo .h1 {
            font-size: 46px; } }
      .joureny .curved .overlo .container > a {
        text-transform: uppercase;
        color: white;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        background-color: rgba(204, 204, 204, 0.9);
        margin-top: 50px;
        transition: all .8s ease-in-out; }
        .joureny .curved .overlo .container > a:hover {
          background-color: darkorange; }
      .joureny .curved .overlo p a {
        display: inline-block;
        margin-left: 10px;
        color: darkorange; }
        .joureny .curved .overlo p a:hover {
          text-decoration: underline; }
      @media (max-width: 768px) {
        .joureny .curved .overlo .container {
          width: 100%; } }

/* end the joureny */
/* start the rights */
.right {
  padding: 50px;
  background-color: rgba(204, 204, 204, 0.9); }

/* end the rights */

/*# sourceMappingURL=home.css.map */
