body {
  padding-bottom: 2rem;
}

.navbar {
  margin-bottom: 2rem;
}

.navigation__button {
  background-color: white;
  height: 3rem;
  width: 3rem;
  position: fixed;
  top: 4rem;
  right: 7;
  border-radius: 50%;
  z-index: 2000;
  text-align: center;
  padding-top: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}
.navigation__background {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  position: fixed;
  top: 4rem;
  right: 7;
  background-image: radial-gradient(#7ed56f, #28b485);
  z-index: 1000;
  transition: transform 0.8s;
}
.navigation__nav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  transition: all 0.8s;
}
.navigation__list {
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.navigation__item {
  margin-top: 1rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 1rem;
  font-weight: 100;
  padding: 1rem 0.5rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(130deg, transparent 0%, transparent 50%, white 50%);
  background-size: 250%;
  transition: all 0.4s;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #7bb970;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}
.navigation__icon {
  position: relative;
  margin-top: 0.5rem;
  font-size: x-large;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(45deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-45deg);
}

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes moveInBottom {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
@-webkit-keyframes moveInLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.btn.main {
  display: flex;
  padding: 2rem;
}

.header {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 255, 0.5), rgba(255, 255, 0, 0.5)), url("main.PNG");
  background-position: cover;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto !important;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%) !important;
          clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%) !important;
}
.header .logo {
  position: relative;
  top: 4rem;
  left: 4rem;
  height: 4rem;
}
.header h1 {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.header h1 .primary--main {
  -webkit-animation-name: moveInLeft;
          animation-name: moveInLeft;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.header h1 .primary--sub {
  font-size: medium;
  -webkit-animation-name: moveInRight;
          animation-name: moveInRight;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
.header span {
  letter-spacing: 1rem;
}
.header .btn {
  margin-bottom: 10rem;
  border-radius: 4rem;
  margin-left: 42%;
  margin-top: 25%;
  padding: 0.6rem;
  box-shadow: white;
  color: black;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 4rem;
  background-color: rgb(207, 199, 186);
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.header .btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.header .btn:active {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.header .btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.header .btn::after:hover {
  background-color: white;
}
.header .btn-animated {
  -webkit-animation: moveInBottom 0.5s ease-out 0.75s;
          animation: moveInBottom 0.5s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.row-text {
  position: relative;
  font-size: 2rem;
  text-align: center;
  font-family: sans-serif;
  -webkit-text-stroke: 0.3vw #383d52;
  text-shadow: black;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.row-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  color: #4fed51;
  -webkit-text-stroke: 0vw #383d52;
  border-right: 2px solid #4fed51;
  overflow: hidden;
  -webkit-animation: animate 6s linear infinite;
          animation: animate 6s linear infinite;
}
@-webkit-keyframes animate {
  0% {
    width: 0;
  }
  70% {
    width: 100%;
  }
}
@keyframes animate {
  0% {
    width: 0;
  }
  70% {
    width: 100%;
  }
}

.secondary {
  background-image: linear-gradient(to right bottom, rgb(218, 218, 218), rgba(228, 240, 247, 0.8));
  padding-bottom: 25rem;
  width: 100%;
  margin-top: -15vh;
  height: auto;
  transform: skewY(-7deg);
}
.secondary > * {
  transform: skewY(7deg);
}
.secondary-content {
  font-style: italic;
  padding: 2rem;
  align-items: flex-start;
}
.secondary-heading {
  font-size: larger;
}

.btn-sub {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
  width: auto;
  padding: 0.5rem;
  border-radius: 1rem;
  font-style: italic;
  font-size: small;
  color: white;
  box-shadow: black;
  border-color: #28b485 !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  transition: all 0.3s;
}
.btn-sub:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right bottom, #7bb970, #2b8a6a);
}

.composition {
  position: relative;
  margin-top: 2rem;
}
.composition__photo {
  position: absolute;
  width: 45%;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  outline-offset: 0.3rem;
}
.composition__photo--p1 {
  left: 0px;
  top: -2rem;
}
.composition__photo--p2 {
  right: 6rem;
  top: 0rem;
}
.composition__photo--p3 {
  left: 20%;
  top: 4rem;
}
.composition__photo:hover {
  z-index: 20;
  transform: scale(1.05) translateY(0.5rem);
  box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.1);
  outline: 1.5rem solid rgb(110, 216, 96);
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.section-features {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 100, 131, 0.8)), url(moon.PNG);
  background-position: cover;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  transform: skewY(-7deg);
  margin-top: -6rem;
}
.section-features > * {
  transform: skewY(7deg);
}

.features-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  margin-top: 13rem !important;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  margin-top: 7rem;
  height: 75%;
  margin-left: 2rem;
  margin-right: 2rem;
  transition: all 0.3s;
}
.features-box__icon {
  color: rgb(112, 202, 135);
  font-size: 4rem;
  padding-bottom: 0.5rem;
  display: inline;
  background-image: linear-gradient(to right, rgb(230, 233, 230), rgb(85, 235, 80));
  -webkit-background-clip: text;
  color: transparent;
}
.features-box__card-header {
  font-size: medium;
}
.features-box__text {
  font-size: medium;
}
.features-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.features-box:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.features-box::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.section-card {
  background-image: linear-gradient(to right bottom, rgb(218, 218, 218), rgba(228, 240, 247, 0.8));
  height: 120vh;
  transform: skewY(-7deg);
  margin-top: 0rem;
}
.section-card > * {
  transform: skewY(7deg);
}
.section-card__heading {
  color: #28b485;
  text-align: center;
  padding-left: 1.5rem;
  padding-top: 5rem;
  font-size: larger;
  letter-spacing: 0.5rem;
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  margin-left: 6rem;
}
.card__pic {
  position: relative;
  background-size: cover;
  background-blend-mode: screen;
  height: 50%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.card__pic-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730), url(sea.jpg);
}
.card__pic-2 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa), url(forest.jpg);
}
.card__pic-3 {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485), url(snow.jpg);
}
.card__heading {
  font-size: small;
  position: absolute;
  font-weight: 300;
  color: white;
  top: 8rem;
  right: -0.5rem;
  width: 47%;
}
.card__heading_span {
  padding: -1rem 1.5rem;
}
.card__heading_span-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__heading_span-2 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card__heading_span-3 {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
}
.card__details {
  font-size: x-small;
  text-align: center;
  color: black;
  width: 84%;
  padding-left: 22px;
}
.card_side {
  color: rgb(231, 226, 226);
  background-color: white;
  font-size: 2rem;
  transition: all 0.8s ease;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  top: 0;
  left: 0;
  margin: 1.5rem;
  width: 12rem;
  height: 22rem;
  border-radius: 0.3rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card_side--front {
  background-color: white;
}
.card_side--back {
  transform: rotateY(180deg);
}
.card_side--back-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card_side--back-2 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card_side--back-3 {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
}
.card:hover .card_side--front {
  transform: rotateY(-180deg);
}
.card:hover .card_side--back {
  transform: rotateY(0);
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  color: white;
  margin-bottom: 8rem;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 3rem;
  font-weight: 100;
}
.card__btn {
  border-radius: 4rem;
  padding: 0.6rem;
  box-shadow: rgb(7, 7, 7);
  color: black;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 4rem;
  background-color: white;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
.card__btn:hover {
  color: black;
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.card__btn:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.card__btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.card__btn::after:hover {
  background-color: rgb(24, 23, 23);
}
.card__btn-animated {
  -webkit-animation: moveInBottom 0.5s ease-out 0.75s;
          animation: moveInBottom 0.5s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.card-section-btn {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
  margin-left: 41%;
  margin-top: 30%;
  width: 15%;
  padding: 0.7rem;
  border-radius: 2rem;
  font-style: italic;
  color: white;
  box-shadow: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.card-section-btn:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right bottom, #7bb970, #2b8a6a);
}

.section-card-btn {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
  margin-left: 41%;
  margin-top: 0%;
  width: 15%;
  padding: 0.7rem;
  border-radius: 2rem;
  font-style: italic;
  color: white;
  box-shadow: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  transition: all 0.3s;
}
.section-card-btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right bottom, #7bb970, #2b8a6a);
}

.stories {
  position: relative;
  background-image: linear-gradient(to right bottom, #7bb970, #2b8a6a);
  height: auto;
  margin-top: -4rem;
}

.story {
  width: 50%;
  z-index: 1;
  opacity: 0.9;
  height: 30vh;
  margin: 0 auto;
  padding-top: 20px;
  margin-top: 2rem;
  box-shadow: black;
  border-radius: 3px;
  padding: 3rem;
  text-align: left;
  background-color: white;
  box-shadow: black;
  transform: skewX(-12deg);
  position: relative;
}
.story > * {
  transform: skewX(12deg);
}
.story-shape {
  width: 0rem;
  height: 9rem;
  padding-right: 1rem;
  margin-left: 2rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.story-img {
  height: 135%;
  margin-top: 0;
  transform: translateX(-4rem) scale(1.4);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.5s;
}
.story-caption {
  position: absolute;
  padding-left: 3rem;
  top: 50%;
  left: 2%;
  transform: translate(-50%, 500%);
  color: white;
  font-size: medium;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.5s;
}
.story:hover .story-caption {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
  transform: translate(-50%, 109%);
}
.story:hover .story-img {
  transform: translateX(-4rem) scale(1);
  filter: blur(3px) brightness(80%);
}
.story:hover {
  color: black;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.bg-video {
  position: absolute;
  z-index: 1;
  opacity: 0.2;
}
.bg-video__content {
  top: 0;
  margin-top: -12rem;
  left: 0;
  width: 210vh;
  height: 800px;
}

.section_book {
  padding: 15rem, 0;
  background-image: linear-gradient(to right bottom, rgb(218, 218, 218), rgba(228, 240, 247, 0.8));
  height: auto;
}

.book {
  position: relative;
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(book.jpg);
  background-size: 100%;
  width: 70%;
  height: 50%;
  margin-left: 10rem;
  margin-top: 10rem;
  border-radius: 0.2rem;
  z-index: 1;
  opacity: 1;
  box-shadow: 0 1.5rem 4rem black;
}

.input {
  margin-left: 2rem;
  margin-top: 2rem;
  width: 18rem;
  border: white;
  font-size: xx-small;
  padding: 0.5rem;
}
.input:hover {
  border: white;
  border-bottom: solid #28b485;
  box-shadow: white;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}
.input:active {
  border: white;
  border-bottom: solid #28b485;
  box-shadow: white;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}

.form-check-label {
  font-size: x-small;
  cursor: pointer;
  position: relative;
  padding-left: 0.5rem;
}

.form-radio-button {
  position: absolute;
  height: 1.2rem;
  width: 1.2rem;
  border: 3px solid #2998ff;
  border-radius: 50%;
  display: inline-block;
  left: -22px;
  top: -2px;
}

.form-check-input:checked ~ .form-check-label .form-radio-button::after {
  opacity: 1;
}

footer {
  background: rgba(0, 0, 0, 0.815);
  overflow-x: hidden;
  padding: 14vmin 18vmin;
}

footer p > span {
  color: #ff512f;
}

footer input {
  border: none !important;
}

footer input::-moz-placeholder {
  color: white !important;
}

footer input:-ms-input-placeholder {
  color: white !important;
}

footer input::placeholder {
  color: white !important;
}

footer .input-group .input-group-text {
  background: var(--bggradient);
  border: none;
}

footer .column i {
  color: #dd2476;
}

/* It is Adjacent sibling combinator */
footer .column i + i {
  padding: 0 0.5em;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9999;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup__close:link, .popup__close:visited {
  position: absolute;
  color: rgb(83, 81, 81);
  top: 2.5rem;
  left: 16.5rem;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  padding-left: 42rem;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  height: 20rem;
  background-color: white;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  display: flex;
  border-radius: 2rem;
}
.popup__left {
  width: 35%;
}
.head-text {
  color: #28b485;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline;
  padding-top: 2rem;
  padding-left: 0.5rem;
  text-align: left;
  letter-spacing: 0.5rem;
  transition: all 0.2s;
}
.head-text:hover {
  transform: skewY(1deg) skewX(5deg) scale(1.1);
}

.card-pic {
  width: 20rem;
  height: 50%;
}

.section-card-btn-second {
  width: 35vh;
  padding-left: 28px;
  width: 10rem;
  margin-left: 26px;
  position: relative;
  margin-top: 2rem;
}

.story-main {
  margin-top: 5rem;
}

.story-heading {
  margin-left: 11rem;
  margin-top: 2rem;
}

.story-text {
  font-size: large;
}

@media (768px <= width <= 1200px) {
  .header {
    padding-bottom: 20rem;
  }
  .card-section-btn {
    position: absolute;
    top: 15rem;
    width: auto;
    align-items: center;
  }
  .card {
    margin-left: 2rem;
  }
  .section-card {
    height: 50vh;
  }
  .card-pic {
    width: 13rem;
  }
  .head-text {
    font-size: 1.4rem;
  }
  .popup__content {
    width: 74%;
  }
  .popup__close:link, .popup__close:visited {
    position: absolute;
    top: 1.5rem;
    left: 0.5rem;
  }
  .section-card-btn-second {
    width: 12vh;
    margin-top: 0rem;
  }
  .story {
    width: 74%;
    height: 17vh;
  }
  .section-card-btn {
    width: 24%;
  }
}
@media (600px <= width <= 768px) {
  .secondary {
    margin-top: -33vh;
  }
}
/* ==================================Media QUERY MOBILE SCREEN================================ *//*# sourceMappingURL=style.css.map */