:root {
  --green: #2fae61;
  --blue: #3faad8;
  --dark-purple: #813bd9;
  --light-purple: #f7f1fd;
  --purple: #a268e1;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-family: "Lato", sans-serif;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding-top: 100rem;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
a,
ul {
  color: black;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select {
  -webkit-appearance: none;
  outline: none;
  font-family: inherit;
}

button,
.btn,
select {
  cursor: pointer;
}

.btn,
button,
.actionbg,
input {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
}

.btn:hover,
button:hover {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
}

.main {
  height: 100vh;
  width: 100%;
  position: relative;
}

.covid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 6vh;
  background-color: var(--light-purple);
}

.covid-container p {
  margin-left: 7.7rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  margin: 0 auto;
  width: 90%;
  height: 12vh;
  background-color: #fff;
  font-size: 1.5rem;
}

.logo {
  font-size: 2.5rem;
  font-family: "Lilita One", cursive;
}

.menu {
  width: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu li a {
  position: relative;
  font-weight: 700;
}

.user-panel {
  width: 28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.user-panel p {
  font-weight: 700;
}

.user-panel p:hover {
  color: var(--dark-purple);
}

.likes::before {
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5rem;
  font-weight: 400;
  content: "\f004";
}

.notif::before {
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5rem;
  font-weight: 400;
  content: "\f0f3";
}

.btn {
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.btn:hover {
  background-color: var(--dark-purple);
}

.hover-2:after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.3rem;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: var(--dark-purple);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.hover-2:hover:after {
  -webkit-transform: scaleX(1.1);
          transform: scaleX(1.1);
}

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  height: 70vh;
  margin: auto;
  background-color: var(--light-purple);
}

.main-container img {
  margin: 5rem;
  width: 40rem;
  z-index: 0;
}

.purple {
  background-color: var(--purple);
  border: 0.5rem solid var(--purple);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.purple:hover {
  background-color: #000;
  border: 0.5rem solid #000;
}

.cta-container {
  margin-left: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70rem;
  height: 35rem;
}

.cta-container a {
  font-size: 1.5rem;
  margin-top: 2rem;
  width: 15rem;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: 700;
}

.cta-container p {
  width: 50rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 3rem;
}

.cta-container h1 {
  font-family: "Lilita One", cursive;
  font-size: 3.5rem;
  line-height: 4rem;
}

.offers-container {
  position: absolute;
  padding: 0 5rem;
  bottom: 1rem;
  left: 35rem;
  width: 70rem;
  height: 12rem;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0rem 0.2rem 0.5rem rgba(66, 66, 66, 0.158);
          box-shadow: 0rem 0.2rem 0.5rem rgba(66, 66, 66, 0.158);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offers-container i {
  width: 10rem;
  font-size: 5rem;
  text-align: center;
  margin-top: -2rem;
  color: var(--dark-purple);
}

.offers-container i::after {
  color: #000;
  display: block;
  width: 10rem;
  position: absolute;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  font-family: "Lato", sans-serif;
}

.fa-hotel::after {
  content: "Hotels";
}

.fa-utensils::after {
  content: "Restaurants";
}

.fa-ticket-alt::after {
  content: "Things to do";
}

.fa-house-user::after {
  content: "Rentals";
}

.how-it-works {
  height: 100vh;
  background-image: url(./img/bg-2.jpg);
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}

.bigpad {
  height: 18rem;
}

.header {
  background-color: #2fae61;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: transparent;
}

.header h1 {
  font-size: 4rem;
  font-family: "Lilita One", cursive;
  position: relative;
}

.header h1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
  background-color: var(--dark-purple);
}

.works-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: auto;
}

.works-container {
  width: 30%;
  height: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: outline 0.2s ease-in;
  transition: outline 0.2s ease-in;
  padding: 5rem;
  outline: 0.5rem solid var(--dark-purple);
  background-color: var(--light-purple);
  border-radius: 1rem;
}

.works-container h3 {
  font-size: 2.5rem;
  color: #000;
  font-family: "Lilita One", cursive;
}

.works-container p {
  font-size: 1.5rem;
  margin-top: 2rem;
  font-weight: bold;
}

.works-container:hover {
  cursor: pointer;
  outline: 1.1rem solid var(--dark-purple);
}

.works-img {
  margin: auto;
  width: 70%;
  overflow: hidden;
}

.destinations {
  height: 100vh;
}

.card-container {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8rem;
}

.card-img {
  position: relative;
  width: 35rem;
  height: 23rem;
  overflow: hidden;
}

.card-img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-img img:hover {
  -webkit-transform: scale(1.05) rotate(0.02deg);
          transform: scale(1.05) rotate(0.02deg);
}

.like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  margin: 1rem;
  pointer-events: none;
}

.like i {
  font-size: 1.5rem;
  -webkit-filter: drop-shadow(0rem 0.2rem 0.5rem rgba(66, 66, 66, 0.158));
          filter: drop-shadow(0rem 0.2rem 0.5rem rgba(66, 66, 66, 0.158));
}

.card-text {
  margin-top: 2rem;
  height: 3rem;
}

.card-text h3 {
  font-size: 2rem;
  font-family: "Lilita One", cursive;
}

.why-us {
  height: 100vh;
  width: 90%;
  margin: auto;
  background-image: url(./img/bg.jpg);
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}

.mb {
  margin-bottom: 5rem;
}

.why-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30rem;
  width: 90%;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.why-container img {
  margin: 5rem;
  width: 40rem;
}

.why-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 20rem;
  width: 80rem;
  padding: 5rem;
}

.why-text p {
  width: 50rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 2.5rem;
}

.why-btn {
  margin-top: 4.5rem;
  height: 50rem;
}

.why-btn a:last-child {
  margin-left: 5rem;
}

.why-btn a {
  font-size: 1.5rem;
}

.transparent {
  color: var(--purple);
  background-color: transparent;
  border: 0.3rem solid var(--purple);
}

.transparent:hover {
  color: white;
  background-color: var(--purple);
}

.why-reasons {
  width: 90%;
  margin: auto;
  margin-top: 2rem;
  height: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reasons-container {
  height: 18rem;
  width: 23%;
  border-radius: 1.5rem;
  border: 0.5rem solid var(--purple);
  padding: 1rem 2rem;
}

.reasons-container h3 {
  font-size: 1.8rem;
  color: #000;
  font-family: "Lilita One", cursive;
}

.reasons-container p {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-top: 1rem;
  font-weight: 700;
}

.contact {
  height: 100vh;
  width: 90%;
  margin: auto;
}

.wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .wrapper {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .wrapper {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .wrapper {
    max-width: 1140px;
  }
}

.align-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 2em;
}

.w3l-workinghny-form {
  position: relative;
  z-index: 0;
  padding: 2em 0px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.workinghny-block-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr;
      grid-template-columns: 1.2fr 1fr;
  grid-gap: 70px;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login-form-content {
  padding: 2em 0em;
  height: 100%;
  width: 40rem;
}

.one-frm label {
  font-style: normal;
  font-size: 1.8rem;
  font-family: inherit;
  color: #343a40;
  display: block;
  margin-bottom: 0.5rem;
  margin-left: 1.5rem;
  font-weight: 700;
}

input {
  background: transparent;
  border: none;
  border: 0.3rem solid #f3f3f38e;
  color: #777;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  padding: 1.5rem 2rem;
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 3rem;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #f3f3f38e;
}

input:focus {
  background: transparent;
  border: 0.3rem solid var(--dark-purple);
  background-color: #d4d4d48e;
}

.btn-style {
  font-size: 18px;
  color: #fff;
  width: 100%;
  background: var(--dark-purple);
  border: none;
  height: 55px;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-style:hover {
  background: var(--dark-purple);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
}

::-webkit-input-placeholder {
  color: #777;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: inherit;
}

@media (max-width: 992px) {
  .workinghny-block-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 10px;
    width: 100%;
  }
  .login-form-content {
    padding: 0em 0em 2em 0;
  }
  .workinghny-left-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .logo a.brand-logo {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .w3l-workinghny-form {
    height: auto;
  }
}

@media (max-width: 667px) {
  .align-end {
    padding: 0em;
  }
}

@media (max-width: 480px) {
  .logo a.brand-logo {
    font-size: 35px;
  }
  h2 {
    font-size: 22px;
  }
}

@media (max-width: 415px) {
  .copyright {
    margin-top: 30px;
  }
}

/*-- //responsive design --*/
/*-- //form styling --*/
/*# sourceMappingURL=main.css.map */