/*
0 -600px: phone
600 - 900: tablet portrait 
900 -1200 : desktop landscape

1800 +: big screens
// media query lengths must be in em
  ORDER : Base > typography > general layout + grid >page layout> components
*/
/* ---------------------
        animations 
   ---------------------*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  padding: 1.5rem;
}
@media (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

.primary-heading {
  color: #fff;
  text-transform: uppercase;
}
.primary-heading--main {
  display: block;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 3rem;
  animation-name: moveInRight;
  animation-duration: 3s;
  animation-iteration-count: 3;
}
@media (max-width: 37.5em) {
  .primary-heading--main {
    font-size: 4.5rem;
    letter-spacing: 0.7rem;
  }
}
.primary-heading--sub {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: 0.6rem;
  animation-name: moveInLeft;
  animation-duration: 3s;
  margin-bottom: 3rem;
}
@media (max-width: 37.5em) {
  .primary-heading--sub {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }
}

.secondary-heading {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  background-image: linear-gradient(#d35400, #d35400);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 3px;
  transition: all 0.3s;
}
@media (max-width: 56.25em) {
  .secondary-heading {
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    padding: 0rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .secondary-heading {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding: 0rem 2rem;
  }
}
.secondary-heading:hover {
  transform: skewY(3deg) skewX(5deg) scale(1.2);
  text-shadow: 2.5rem 1rem 2rem rgba(0, 0, 0, 0.8);
}
@media (max-width: 56.25em) {
  .secondary-heading:hover {
    transform: skewY(3deg) skewX(5deg) scale(1);
  }
}
@media (max-width: 37.5em) {
  .secondary-heading:hover {
    transform: skewY(3deg) skewX(5deg) scale(1);
  }
}
.secondary-headingservices--heading {
  color: #fff;
}

.tertiary-heading {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.paragraph {
  font-size: 1.35rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 2rem;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.7;
  color: rgb(49, 42, 42);
  box-sizing: border-box;
}

.services--heading {
  color: #fff;
  margin-top: 0;
}

.u-center-text {
  text-align: center;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem;
}

.u-margin-bottom-small {
  margin-bottom: 2rem;
}

.u-margin-bottom-ver-small {
  margin-bottom: 1.5rem;
}

.default-font-size {
  font-size: 1.6rem;
}

.margin-left {
  margin-left: 3rem;
}

.margin-top {
  margin-left: 7rem;
}

.margin-top-medium {
  margin-bottom: 4rem;
}

.font-size {
  font-size: 1.4rem;
}

/* ---------------------
          Buttons
     ---------------------*/
.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30rem;
  padding: 1rem 3rem;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
.btn--white {
  background-color: #fff;
  color: rgb(252, 153, 5);
  text-align: center;
  display: inline-block;
}
.btn--white:hover {
  transform: translateY(-0.5rem);
  transition: transform 0.5s;
  box-shadow: 0rem 1rem 2rem rgba(0, 0, 0, 0.747);
}
.btn--white:hover::after {
  transform: scaleX(1.7) scaleY(2);
  opacity: 0;
}
.btn--green {
  background-color: rgba(59, 167, 59, 0.884);
  color: #fff;
  text-align: center;
  display: inline-block;
}
.btn--green:hover {
  transform: translateY(-0.5rem);
  transition: transform 0.5s;
  box-shadow: 0rem 1rem 2rem rgba(0, 0, 0, 0.747);
  background-color: rgba(250, 118, 2, 0.7137254902);
  transition: all 0.9s;
}
.btn--green:hover::after {
  transform: scaleX(1.7) scaleY(2);
  opacity: 0;
}
.btn:active {
  transform: translateY(-0.3rem);
  transition: transform 0.4s;
  box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.747);
}
.btn::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  border: none;
}
.btn--white::after {
  background-color: #fff;
  border: none;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
  transition: all 1s;
}

.btn-text:link, .btn-text:visited {
  color: #d35400;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #d35400;
  font-size: calc(1.6rem/1.2);
  transition: all 0.5s;
}
.btn-text:hover {
  background-color: #d35400;
  color: #fff;
  padding: 0.8rem;
  box-shadow: 0rem 1rem 2rem black;
  transform: translateY(-2px);
  border-radius: 5em;
  transform: skewY(2deg, 8deg);
}
.btn-text:active {
  box-shadow: 0rem 0.5rem 1rem black;
  transform: translateY(0rem);
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 2rem 8rem black;
  position: absolute;
  transition: all 0.3zzzzzzzzzzzzzs;
  z-index: 10;
  outline-offset: 1rem;
}
@media (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 31.333333%;
    box-shadow: 0 1rem 3rem black;
  }
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p1 {
    left: 2%;
    margin-right: 2rem;
    top: 2rem;
  }
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p3 {
    left: 2%;
    top: 2rem;
  }
}
.composition__photo:hover {
  transform: scale(1.5) translateY(-0.5rem);
  box-shadow: 0 3rem 10rem black;
  z-index: 20;
  border-radius: 300px;
  outline: 6px solid #d35400;
}
@media (max-width: 56.25em) {
  .composition__photo:hover {
    transform: scale(1.03) translateY(-0.5rem);
  }
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95rem);
}

@media (max-width: 37.5em) {
  .btn-text {
    margin-left: 1rem;
  }
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2em 4em black;
  transition: all 0.3s;
}
@media (max-width: 56.25em) {
  .feature-box {
    width: 80%;
    margin: 0 auto;
  }
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0rem;
  display: inline-block;
  background-image: linear-gradient(to right, #d35400, #d35400);
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 56.25em) {
  .feature-box__text {
    width: 75%;
    margin: 0 auto;
  }
}
.feature-box__image {
  width: 100%;
  height: 80px;
  margin-top: 1rem;
  display: inline-block;
}
@media (max-width: 56.25em) {
  .feature-box__image {
    height: 100px;
    width: 80%;
  }
}
.feature-box:hover {
  transform: scale(1.05) translateY(-1.5rem);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  height: 5rem;
  position: relative;
  margin-bottom: 10rem;
}
@media (max-width: 56.25em) {
  .card {
    margin-bottom: 80rem;
  }
}
@media (max-width: 37.5em) {
  .card {
    margin-bottom: 72rem;
  }
}
.card__side {
  background-color: #fff;
  height: 62rem;
  font-size: 2rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 109%;
  backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0rem 4rem 5rem #312a2a;
}
@media (max-width: 56.25em) {
  .card__side {
    width: 95%;
    margin-left: 1.5rem;
    height: 75rem;
  }
}
@media (max-width: 37.5em) {
  .card__side {
    width: 95%;
    margin-left: 1.5rem;
    height: 75rem;
  }
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(-180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, rgba(250, 118, 2, 0.7137254902), #d35400);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, rgba(10, 85, 10, 0.884), rgba(59, 167, 59, 0.884));
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, rgb(113, 113, 230), rgb(14, 14, 238));
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 30vh;
  background-blend-mode: color;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.card__picture-1 {
  background-image: linear-gradient(to right bottom, rgba(250, 118, 2, 0.7137254902), #d35400), url("/img/akwaaba.png");
}
.card__picture-2 {
  background-image: linear-gradient(to right bottom, rgba(59, 167, 59, 0.884), rgba(10, 85, 10, 0.884)), url("/img/akwaaba2.png");
}
.card__picture-3 {
  background-image: linear-gradient(to right bottom, rgb(113, 113, 230), rgb(14, 14, 238)), url("/img/temacenter.png");
}
.card__heading {
  font-size: 2.2rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  width: 75%;
  right: 2rem;
  top: 9rem;
}
.card_heading-span {
  padding: 1rem 0.5rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.card_heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(250, 118, 2, 0.7137254902), #d35400);
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.8rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 2px solid rgb(228, 220, 220);
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card__price-box {
  margin-bottom: 5rem;
  color: rgb(228, 220, 220);
}
.card__price-only {
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  color: rgb(228, 220, 220);
}
.card__price-value {
  font-size: 5rem;
  color: rgb(228, 220, 220);
  font-weight: 100;
  margin-bottom: 10rem;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.17;
  overflow: hidden;
}
.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  transform: skewX(-12deg);
}
@media (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 4rem;
    transform: skewX(0deg);
  }
}
@media (max-width: 37.5em) {
  .story {
    width: 100%;
    padding: 4rem;
    transform: skewX(0deg);
  }
}
.story > * {
  transform: skewX(12deg);
}
@media (max-width: 56.25em) {
  .story > * {
    transform: skewX(0deg);
  }
}
@media (max-width: 37.5em) {
  .story > * {
    transform: skewX(0deg);
  }
}
.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  -webkit-shape-outside: circle(40% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(12deg);
  position: relative;
}
@media (max-width: 56.25em) {
  .story__shape {
    transform: translateX(-3rem) skewX(0deg);
  }
}
@media (max-width: 37.5em) {
  .story__shape {
    transform: translateX(-3rem) skewX(0deg);
  }
}
.story__image {
  transform: scale(1);
  transition: scale 0.9s;
}
.story__text {
  transform: skewX(12deg);
}
@media (max-width: 56.25em) {
  .story__text {
    transform: skewX(0deg);
  }
}
@media (max-width: 37.5em) {
  .story__text {
    transform: skewX(0deg);
  }
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 2.3rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story:hover .story__caption {
  opacity: 100%;
  transform: translate(-50%, -50%);
}
.story:hover .story__image {
  opacity: 100%;
  transform: translate(-50%, -50%);
  transform: scale(1.5);
  transition: scale 0.9s;
  filter: blur(3px) brightness(80%);
}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__group--button {
  margin-top: 8rem;
  margin-left: 8rem;
  display: block;
}
.form__group--button_link {
  color: white;
  text-decoration: none;
}
.form__input {
  font-size: 1.2rem;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  font-family: inherit;
  margin-left: 5rem;
  width: 30%;
  border-bottom: 4px solid transparent;
  display: block;
  color: inherit;
}
.form__input:focus {
  outline: none;
  box-shadow: 0rem 3rem 5rem rgba(0, 0, 0, 0.6);
  border-bottom: 4px solid #d35400;
  border-bottom: 4px solid rgba(10, 85, 10, 0.884);
}
.form__input:focus:invalid {
  outline: none;
  box-shadow: 0rem 3rem 5rem rgba(0, 0, 0, 0.6);
  border-bottom: 4px solid #d35400;
}
.form__input::-webkit-input-placeholder {
  color: rgb(49, 42, 42);
}
.form__label {
  margin-left: 5rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-left: 7rem;
  display: block;
  transition: all 0.8s;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__radio-group {
  margin-left: 5rem;
  display: inline-block;
  width: 16%;
  float: left;
}
.form__radio-label {
  font-size: 1.6rem;
  position: relative;
  margin-left: 0.2rem;
}
.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.9s;
}
@media (max-width: 56.25em) {
  .popup {
    width: 100%;
    height: 1vh;
    margin-top: 19rem;
  }
}
@media (max-width: 37.5em) {
  .popup {
    width: 100%;
    height: 50vh;
    margin-top: 30rem;
  }
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup__close {
  color: #c0392b;
  position: absolute;
  right: 2.5rem;
  top: 0rem;
  font-size: 5rem;
  text-decoration: none;
  display: inline-block;
  background-color: rgb(228, 220, 220);
  border-radius: 300rem;
}
.popup__close:hover {
  color: rgba(59, 167, 59, 0.884);
}
.popup__content {
  width: 80%;
  background-color: #fff;
  box-shadow: 0rem 3rem 5rem rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.9s;
}
@media (max-width: 56.25em) {
  .popup__content {
    width: 95%;
    font-size: 3px;
  }
}
@media (max-width: 37.5em) {
  .popup__content {
    width: 95%;
    font-size: 3px;
  }
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__left {
  width: 33.333333%;
  display: table-cell;
}
@media (max-width: 37.5em) {
  .popup__left {
    width: 100%;
    display: block;
    height: 28vh;
  }
}
.popup__right {
  width: 65.6666666%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
@media (max-width: 37.5em) {
  .popup__right {
    width: 100%;
    padding: 1rem;
    display: block;
    vertical-align: middle;
  }
}
.popup__img {
  display: block;
  width: 100%;
  margin-bottom: 0px;
  image-rendering: pixelated;
}
@media (max-width: 37.5em) {
  .popup__img {
    width: 100%;
  }
}
.popup__video {
  display: block;
  width: 100%;
  margin-top: 0px;
}
@media (max-width: 37.5em) {
  .popup__video {
    width: 100%;
    visibility: hidden;
  }
}
/* ---------------------
        Header section
   ---------------------*/
.header {
  background-image: linear-gradient(to right top, rgba(250, 118, 2, 0.7137254902), rgba(250, 118, 2, 0.7137254902)), url("img/capecoast.jpg");
  background-size: cover;
  background-position: top;
  height: 95vh;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80vh);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80vh);
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.137);
  position: relative;
}
@media (max-width: 37.5em) {
  .header {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85vh);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85vh);
  }
}
.header__logo-box {
  position: absolute;
  top: 4rem;
  left: 4rem;
}
.header__logo {
  width: 30rem;
  height: 15rem;
}
.header__centered-text-box {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.section-about {
  background-color: rgb(228, 220, 220);
  padding: 20rem 0;
  margin-top: -20vh;
  padding-left: 3rem;
  padding-right: 3rem;
}

.features_section {
  padding: 5rem 0;
  background-image: linear-gradient(to right top, rgba(59, 167, 59, 0.884), rgba(59, 167, 59, 0.884)), url("img/icon-background.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  transform: skewY(-5deg);
  margin-top: -10rem;
}
.features_section > * {
  transform: skewY(5deg);
}

.section-tours {
  background-color: rgb(228, 220, 220);
  padding: 20rem 0 50rem 0;
  margin-top: -10rem;
}
@media (max-width: 37.5em) {
  .section-tours {
    margin-bottom: 0rem;
    padding: 20rem 0 0rem 0;
  }
}
@media (max-width: 56.25em) {
  .section-tours {
    margin-bottom: 0rem;
    padding: 20rem 0 0rem 0;
  }
}

.section-stories {
  padding: 20rem 0;
  margin-top: -20rem;
  position: relative;
}

.section-book {
  padding: 8rem 0;
  background-image: linear-gradient(to bottom right, rgba(59, 167, 59, 0.884), rgba(10, 85, 10, 0.884));
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url("/img/temacenter.png");
  background-size: 100%;
  height: 40rem;
  border-radius: 3px;
  box-shadow: 0rem 3rem 5rem rgba(0, 0, 0, 0.6);
}
@media (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%, transparent 65%), url("/img/temacenter.png");
    background-size: cover;
  }
}
.book__form {
  width: 100%;
  padding: 6rem;
}
@media (max-width: 37.5em) {
  .book__form__input {
    width: 10rem;
  }
}

.footer {
  background-color: rgb(49, 42, 42);
  padding: 7rem 0;
  font-size: 1.4rem;
  color: rgb(228, 220, 220);
}
@media (max-width: 56.25em) {
  .footer {
    padding: 0;
  }
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 0rem;
  }
}
.footer__logo {
  width: 20rem;
  height: auto;
}
.footer__navigation {
  border-top: 0.1px solid rgb(131, 124, 124);
  padding-top: 2rem;
  width: 86%;
  float: left;
  margin-left: 2rem;
}
@media (max-width: 56.25em) {
  .footer__navigation {
    width: 90%;
    text-align: center;
    font-size: 1rem !important;
  }
}
.footer__list {
  display: inline-block;
}
.footer__items {
  display: inline-block;
  padding-left: 2rem;
  text-align: left;
}
.footer__link {
  color: rgb(228, 220, 220);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.6s;
}
.footer__link:hover {
  color: rgba(250, 118, 2, 0.7137254902);
  box-shadow: 0 2em 4em #e4dcdc;
  transform: rotate(9deg);
  transform: scale(1.1);
}
.footer__copyright-text {
  border-top: 0.1px solid rgb(131, 124, 124);
  padding-top: 2rem;
  width: 88%;
  float: right;
  margin-right: 2rem;
}
@media (max-width: 56.25em) {
  .footer__copyright-text {
    padding: 0;
    float: right;
  }
}

.row {
  max-width: 114em;
  margin: 0 auto;
  margin-top: 0px;
}
.row:not(:last-child) {
  margin-bottom: 4rem;
}
@media (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 56.25em) {
  .row {
    max-width: 50rem;
  }
}
@media (max-width: 37.5em) {
  .row {
    max-width: 50rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  margin-top: 1rem;
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4rem;
  }
}
@media (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 6rem*2) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2* 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 6rem*3) / 4);
}
.row .col-2-of-4 {
  width: calc((100% - 6rem) / 4 * 2);
}
.row .col-3-of-4 {
  width: calc(3.25*((100% - 3 * 6rem)/4) + 6rem);
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  background-color: #fff;
  box-shadow: 0 2em 4em black;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .navigation__button {
    top: 4rem;
    right: 4rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  z-index: 1000;
  transition: transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.navigation__nav {
  height: 100vh;
  width: 0;
  position: fixed;
  background-color: rgba(59, 167, 59, 0.884);
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: -1;
  transition: all 0.8s;
  text-align: center;
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}
.navigation__link {
  display: inline-block;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 2rem 3rem;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all 0.5s;
}
.navigation__link:hover {
  background-position: 100%;
  color: #c0392b;
  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: 3.5rem;
  font-size: 1.2rem;
  text-align: center;
  color: #d35400;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 3px;
  background-color: #d35400;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  left: 0;
  position: absolute;
  transition: all 0.3s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: -0.8rem;
}
.navigation__button:hover .navigation__icon::after {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__link:hover .navigation__nav {
  opacity: 0em;
  width: 0%;
  z-index: 0;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-135deg);
}

/*# sourceMappingURL=style.css.map */
