*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
 
}
@media (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

.header__heading-content {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.header__main-heading {
  -webkit-animation: moveInRight 1s ease-in;
          animation: moveInRight 1s ease-in;
}

.header__sub-heading {
  -webkit-animation: moveInLeft 1s ease-in;
          animation: moveInLeft 1s ease-in;
}

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

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.header {
  height: 95vh;
  background-image: linear-gradient(to bottom right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  position: relative;
}
@media (max-width: 56.25em) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  }
}
.header__logo {
  height: 4rem;
}
.header__nav-logo {
  position: absolute;
  top: 4rem;
  left: 4rem;
}
.header__heading-content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
}
.header__main-heading, .header__sub-heading {
  display: block;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.header__main-heading {
  letter-spacing: 3.5rem;
  font-size: 6rem;
}
@media (max-width: 37.5em) {
  .header__main-heading {
    font-size: 3rem;
    letter-spacing: 1rem;
  }
}
.header__sub-heading {
  font-size: 2rem;
  letter-spacing: 1.74rem;
  font-weight: 700;
}
@media (max-width: 37.5em) {
  .header__sub-heading {
    letter-spacing: 0.5rem;
  }
}

.about-section {
  background: #f7f7f7;
  padding: 15rem 0 20rem 0;
  margin-top: -20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 75em) {
  .about-section {
    padding: 16rem 0 20rem 0;
  }
}
@media (max-width: 56.25em) {
  .about-section {
    padding: 18rem 0 16rem 0;
  }
}
@media (max-width: 37.5em) {
  .about-section {
    padding: 25rem 0 16rem 0;
  }
}
.about-section__desc:not(:last-child) {
  margin-bottom: 2.4rem;
}
.about-section__heading {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-section__heading-desc {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.about-section__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 8rem;
}
@media (max-width: 56.25em) {
  .about-section__container {
    grid-template-columns: 1fr;
    gap: 7rem;
    padding-bottom: 22rem;
    margin-top: 4rem;
  }
}
@media (max-width: 37.5em) {
  .about-section__container {
    padding-left: 5rem;
    padding-bottom: 20rem;
    margin-top: 2rem;
  }
}
.about-section__container-left {
  max-width: 55rem;
  color: #777;
}

.secondary-heading {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #28b485, #7ed56f);
  display: inline-block;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  transition: all 0.2s;
  text-align: center;
}
@media (max-width: 56.25em) {
  .secondary-heading {
    font-size: 3rem;
  }
}
@media (max-width: 37.5em) {
  .secondary-heading {
    font-size: 2rem;
  }
}
.secondary-heading:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.072);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.feature-container {
  padding: 20rem 0;
  background-image: linear-gradient(to bottom right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(../../img/nat-4.jpg);
  background-size: cover;
  margin-top: -10rem;
  transform: skewY(-7deg);
}
.feature-container > * {
  transform: skewY(7deg);
}

.feature-section {
  display: grid;
  grid-template-columns: repeat(4, 20%);
  gap: 2rem;
  align-content: center;
  justify-content: center;
}
@media (max-width: 56.25em) {
  .feature-section {
    grid-template-columns: repeat(2, 40%);
    gap: 3rem;
  }
}
@media (max-width: 37.5em) {
  .feature-section {
    grid-template-columns: 50%;
    gap: 3rem;
  }
}

.tour-section {
  background: #f7f7f7;
  padding: 17rem 0 12rem 0;
  margin-top: -10rem;
  text-align: center;
}
@media (max-width: 56.25em) {
  .tour-section {
    padding: 14rem 0 10rem 0;
  }
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 30rem);
  gap: 10rem;
  justify-content: center;
  align-content: center;
  margin-top: 5rem;
  margin-bottom: 7rem;
}
@media (max-width: 75em) {
  .card-container {
    gap: 4rem;
    padding: 3rem;
    margin: 3rem 3rem;
  }
}
@media (max-width: 56.25em) {
  .card-container {
    grid-template-columns: 42rem;
  }
}
@media (max-width: 37.5em) {
  .card-container {
    grid-template-columns: 30rem;
  }
}

.story-section {
  padding: 7rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  position: relative;
}

.book-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16rem 0;
  background-image: linear-gradient(to bottom right, #28b485, #7ed56f);
}
@media (max-width: 56.25em) {
  .book-section {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/nat-10.jpg);
  background-size: cover;
  border-radius: 3px;
  width: 80%;
}
@media (max-width: 75em) {
  .book {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(../img/nat-10.jpg);
    background-size: cover;
  }
}
@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%), url(../img/nat-10.jpg);
    width: 50%;
  }
}
@media (max-width: 37.5em) {
  .book {
    width: 40rem;
  }
}
.book__form {
  width: 50%;
  padding: 6rem;
}
@media (max-width: 75em) {
  .book__form {
    width: 65%;
  }
}
@media (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}
.book__form-heading {
  margin-bottom: 3rem;
  font-size: 3.2rem;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 5rem 0;
  background-color: #333;
  font-size: 1.7rem;
}
.footer__img {
  height: 7rem;
}
.footer__link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 37.5em) {
  .footer__link-container {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__lists {
  display: inline-block;
  padding-left: 1.3rem;
}
.footer__designer {
  max-width: 35rem;
  line-height: 1.5;
  word-spacing: 2px;
  color: #777;
}
.footer__links {
  color: #f7f7f7;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}
.footer__links:hover, .footer__links:active {
  color: #55c57a;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.navigation__checkbox {
  display: none;
  position: relative;
}
.navigation__button {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: fixed;
  top: 6rem;
  right: 6rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .navigation__button {
    top: 2.9rem;
    right: 4rem;
  }
}
.navigation__background {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background-image: radial-gradient(#7ed56f, #28b485);
  position: fixed;
  top: 6rem;
  right: 6.5rem;
  z-index: 1000;
  transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 56.25em) {
  .navigation__background {
    top: 3.2rem;
    right: 4.4rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  text-align: center;
}
.navigation__item {
  margin-bottom: 1.3rem;
}
.navigation__link:link, .navigation__link:visited {
  font-size: 2.3rem;
  font-weight: 300;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  border-radius: 2px;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, white 50%);
  background-size: 250%;
  transition: all 0.4s;
}
.navigation__link:hover {
  background-position: 100%;
  color: #55c57a;
  transform: translateX(4px);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(200);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}
.navigation__icon {
  position: relative;
}
.navigation__icon, .navigation__icon::after, .navigation__icon:before {
  width: 2.5rem;
  height: 2px;
  display: inline-block;
  background-color: #777;
}
.navigation__icon::before, .navigation__icon:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -0.9rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 0.9rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.btn {
  text-transform: uppercase;
  padding: 1.5rem 4rem;
  border-radius: 40px;
  border: 0;
}
.btn:hover {
  transform: translateY(3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn:active {
  outline: none;
  transform: translateY(1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn-animated {
  -webkit-animation: moveInBottom 1s ease-out 0.75s;
          animation: moveInBottom 1s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
.btn-primary {
  color: #777;
  background-color: #fff;
}
.btn-secondary {
  background-color: #55c57a;
  color: #fff;
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.composition {
  position: relative;
}
.composition__photo {
  width: 42%;
  position: absolute;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 1.5rem;
}
.composition__photo--one {
  left: 0;
  top: -2rem;
}
.composition__photo--two {
  top: 0;
  right: 19rem;
}
.composition__photo--three {
  left: 13%;
  top: 6rem;
  z-index: 20;
}
.composition__photo:hover {
  outline: 1.1rem solid #55c57a;
  transform: scale(1.1);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.6);
  z-index: 30;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.96);
}

.btn-text {
  font-size: 1.8rem;
  padding: 2px;
  border-bottom: 2px solid #55c57a;
  transition: all 0.3s;
  color: #55c57a;
}
.btn-text:hover {
  background: #55c57a;
  color: #fff;
}

.feature-box {
  font-size: 1.5rem;
  padding: 3rem 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.2s;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .feature-box {
    width: 90%;
    padding: 5rem 1rem;
  }
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  background-image: linear-gradient(to right, #28b485, #7ed56f);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.feature-box__heading {
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  color: #777;
  font-weight: 700;
}
.feature-box__text {
  color: #777;
}
.feature-box:hover {
  transform: translateY(-10px) scale(1.03);
}

.card {
  perspective: 150rem;
  position: relative;
  height: 50rem;
}
.card__side {
  height: 50rem;
  width: 30rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 56.25em) {
  .card__side {
    width: 35rem;
  }
}
.card__side--back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}
.card__side--back-one {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__side--back-two {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
}
.card__side--back-three {
  background-image: linear-gradient(to right bottom, #2998ff, #2998ff);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  height: 23rem;
  background-size: cover;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.card__picture--one {
  background-image: linear-gradient(to bottom right, rgba(255, 185, 0, 0.8), rgba(255, 119, 48, 0.8)), url(../img/nat-5.jpg);
}
.card__picture--two {
  background-image: linear-gradient(to bottom right, rgba(40, 180, 133, 0.8), rgba(126, 213, 111, 0.8)), url(../img/nat-6.jpg);
}
.card__picture--three {
  background-image: linear-gradient(to bottom right, rgba(41, 152, 255, 0.8), rgba(86, 67, 250, 0.8)), url(../img/nat-7.jpg);
}
.card__heading {
  font-size: 2.3rem;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 14rem;
  right: 2rem;
  width: 75%;
  text-align: right;
  text-transform: uppercase;
}
.card__heading-span {
  padding: 0.8rem 1.5rem;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.card__heading-span--one {
  background-image: linear-gradient(rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}
.card__heading-span--two {
  background-image: linear-gradient(rgba(40, 180, 133, 0.85), rgba(126, 213, 111, 0.85));
}
.card__heading-span--three {
  background-image: linear-gradient(rgba(41, 152, 255, 0.85), rgba(41, 152, 255, 0.85));
}
.card__details ul {
  width: 80%;
  margin: 0 auto;
}
.card__details li {
  font-size: 1.5rem;
  padding: 1rem;
  text-align: center;
  text-transform: capitalize;
  color: #777;
}
.card__details li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__price {
  color: #fff;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 100;
}
@media (max-width: 56.25em) {
  .card {
    height: auto;
    width: 40rem;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card__side {
    height: auto;
    width: 40rem;
    position: relative;
    transition: none;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 3.5rem 2rem;
    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  .card__side--back-one {
    background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
  }
  .card__side--back-two {
    background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
  }
  .card__side--back-three {
    background-image: linear-gradient(to right bottom, #2998ff, #2998ff);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__price {
    color: #fff;
  }
  .card__price-only {
    font-size: 1.4rem;
    text-transform: uppercase;
  }
  .card__price-value {
    font-size: 6rem;
    font-weight: 100;
  }
}
@media (max-width: 37.5em) {
  .card {
    height: auto;
    width: 30rem;
  }
  .card__side {
    height: auto;
    width: 30rem;
  }
}

.story {
  width: 55%;
  transform: skewX(-15deg);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 3rem 6rem rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 3.6rem 5rem;
  font-size: 1.7rem;
}
@media (max-width: 56.25em) {
  .story {
    width: 65%;
    padding: 3rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .story {
    transform: skewX(0);
  }
}
.story > * {
  transform: skewX(15deg);
}
@media (max-width: 37.5em) {
  .story > * {
    transform: skewX(0);
  }
}
.story__profile {
  position: relative;
}
.story__profile-img {
  height: 11rem;
  width: 11rem;
  border-radius: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
  shape-outside: circle(50%);
  margin-right: 5rem;
  transform: scale(1.09);
  transition: all 0.3s;
}
@media (max-width: 37.5em) {
  .story__profile-img {
    margin-right: 3rem;
  }
}
.story__profile-name {
  position: absolute;
  top: 5rem;
  left: 3rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.3rem;
  transform: translateY(4rem);
  opacity: 0;
  transition: all 0.3s;
}
.story__details {
  color: #777;
}
.story__heading {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.story__desc {
  font-size: 1.58rem;
  margin-bottom: 1rem;
}
.story:hover .story__profile-img {
  transform: scale(1);
  filter: blur(2px) brightness(80%);
}
.story:hover .story__profile-name {
  transform: translateY(0);
  opacity: 1;
}

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

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__input {
  font-size: 1.6rem;
  font-family: inherit;
  color: #777;
  padding: 1.3rem 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid transparent;
  border-radius: 2px;
  display: block;
  width: 80%;
  outline: 0;
  transition: all 0.2s;
}
@media (max-width: 56.25em) {
  .form__input {
    width: 100%;
  }
}
.form__input::-moz-placeholder {
  font-size: 1.5rem;
}
.form__input:-ms-input-placeholder {
  font-size: 1.5rem;
}
.form__input::placeholder {
  font-size: 1.5rem;
}
.form__input:focus {
  border-bottom: 3px solid #55c57a;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #777;
  margin-left: 2rem;
  margin-top: 0.8rem;
  display: block;
  transition: all 0.3s;
}
.form__input:-moz-placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__input:-ms-input-placeholder + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__radio-input {
  display: none;
}
@media (max-width: 37.5em) {
  .form__radio-input {
    width: 100%;
  }
}
.form__radio-group {
  width: 49%;
  display: inline-block;
}
@media (max-width: 37.5em) {
  .form__radio-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.form__radio-label {
  font-size: 1.6rem;
  position: relative;
  padding-left: 2.9rem;
  color: #777;
}
.form__radio-button {
  height: 2.2rem;
  width: 2.2rem;
  border: 3px solid #55c57a;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -0.1rem;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: #55c57a;
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (max-width: 56.25em) {
  .form__radio-button::after {
    top: 0.24rem;
    left: 0.2rem;
  }
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}/*# sourceMappingURL=main.css.map */
