.mt-lg {
  margin-top: 8rem; }

.mt-md {
  margin-top: 6rem; }

.mt-sm {
  margin-top: 4rem; }

.mb-lg {
  margin-bottom: 8rem; }

.mb-md {
  margin-bottom: 6rem; }

.mb-sm {
  margin-bottom: 4rem; }

.mr-lg {
  margin-right: 8rem; }

.mr-md {
  margin-right: 6rem; }

.mr-sm {
  margin-right: 4rem; }

.mr-xs {
  margin-right: 2rem; }

.ml-lg {
  margin-left: 8rem; }

.ml-md {
  margin-left: 6rem; }

.ml-sm {
  margin-left: 4rem; }

.ml-xs {
  margin-left: 2rem; }

/* desktop-first approach (max-width)
    - 600px : mobile (mobile)
    - 900px : tablet-portrait (tab-port)
    - 1200px : tablet-landscape (tab-land)
    - [1800px : default]
    - above : big desktop (big-desk)
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 37.5%; } }

body {
  padding: 3rem;
  min-height: 100vh;
  background-color: #EFEDE8;
  font-size: 1.6rem;
  line-height: 2.5rem;
  letter-spacing: 1px;
  font-family: 'Poppins', 'Open Sans', sans-serif; }
  @media only screen and (min-width: 112.5em) {
    body {
      padding: 4rem 8rem; } }

.hidden {
  opacity: 0;
  visibility: hidden; }

.show {
  opacity: 1;
  visibility: visible; }

@keyframes moveInRight {
  0% {
    transform: translateX(-50%); }
  80% {
    transform: translateX(20%); }
  100% {
    transform: translateX(0); } }

@keyframes moveInLeft {
  0% {
    transform: translateX(50%); }
  80% {
    transform: translateX(-20%); }
  100% {
    transform: translateX(0); } }

.heading__primary {
  color: #eee;
  width: 100%;
  padding: 2.5rem 4.5rem;
  background-image: linear-gradient(to right bottom, rgba(84, 140, 47, 0.8), rgba(16, 73, 17, 0.8)); }
  .heading__primary--title {
    display: block;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: cubic-bezier(1, 0, 0, 1) 0.8s moveInRight; }
  .heading__primary--tagline {
    display: block;
    font-size: 2rem;
    animation: cubic-bezier(1, 0, 0, 1) 0.8s moveInLeft; }

.heading__secondary {
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding: 1.5rem auto; }
  .heading__secondary--title {
    margin: 4rem 0;
    padding: 0.5rem;
    display: block;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-size: 3.5rem; }
  .heading__secondary--tagline {
    display: block;
    font-size: 2rem;
    margin-left: 0.5rem; }
  .heading__secondary--green:hover {
    background-image: linear-gradient(to right bottom, #548c2f, #104911);
    -webkit-background-clip: text;
    color: transparent; }
  .heading__secondary--yellow:hover {
    background-image: linear-gradient(to right bottom, #fcf4a3, #ffc30b);
    -webkit-background-clip: text;
    color: transparent; }

.heading__tertiary {
  color: #333;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 1.5rem 0.5rem;
  margin-bottom: 3.5rem; }

.btn {
  text-transform: uppercase; }
  .btn--white {
    background-color: #fff;
    color: #777; }
  .btn--brand {
    background-color: #2c5f2d;
    color: #fff; }
  .btn, .btn:link, .btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    display: inline-block;
    border-radius: 10rem;
    cursor: pointer;
    border: none;
    /* FOR ::after */
    position: relative;
    transition: all 0.2s; }
  .btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.4); }
  .btn:active {
    transform: translateY(-0.1rem);
    box-shadow: 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.2); }
  .btn__link {
    color: #000;
    display: inline-block; }

.block {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 20% 1fr;
  grid-gap: 2.5rem;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .block {
      padding: 1.5rem; } }
  @media only screen and (max-width: 75em) {
    .block {
      grid-template-columns: 1fr; } }
  .block--left, .block--center, .block--right {
    display: flex;
    justify-content: space-around;
    align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .block--left, .block--right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; } }
  @media only screen and (max-width: 37.5em) {
    .block--center {
      width: 0;
      height: 0;
      margin: 0;
      padding: 0; } }
  @media only screen and (max-width: 37.5em) {
    .block--right {
      margin-top: -5rem; } }
  .block__container {
    width: 20rem;
    min-height: 30rem;
    background-color: #EFEDE8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 75em) {
      .block__container {
        width: 30rem; } }
    @media only screen and (max-width: 37.5em) {
      .block__container {
        background-color: transparent; } }
  .block__fill {
    width: 18rem;
    height: 18rem;
    border-radius: 10px;
    box-shadow: 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0.8; }
    .block__fill:hover {
      opacity: 1; }
    @media only screen and (max-width: 75em) {
      .block__fill {
        transform: scale(1.3); } }
  .block__text {
    width: 80%;
    text-align: center;
    color: #333;
    background-color: #ffc30b;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .block__link {
    width: 80%;
    height: 20rem;
    background-color: #ffc30b;
    border-radius: 10px;
    position: relative;
    z-index: 100; }
    .block__link i.fa {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: #Fcf4a3; }
    @media only screen and (min-width: 112.5em) {
      .block__link__container {
        width: 25rem;
        min-height: 30rem; }
      .block__link__fill {
        width: 22rem;
        height: 22rem; } }
  .block__background {
    position: relative;
    z-index: -10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
    .block__background--1 {
      background: url(./assets/web-countdown.jpg) top/cover no-repeat; }
    .block__background--2 {
      background: url(./assets/web-typer.jpg) top/cover no-repeat; }
    .block__background--3 {
      background: url(./assets/web-hangman.jpg) top/cover no-repeat; }
    .block__background--4 {
      background: url(./assets/web-meal.jpg) top/cover no-repeat; }
  .block__message {
    text-align: center;
    color: #f7f7f7;
    margin-top: 6rem;
    display: none; }
    @media only screen and (max-width: 75em) {
      .block__message {
        display: block; } }
    @media only screen and (max-width: 37.5em) {
      .block__message {
        margin: 4rem 2.5rem; } }

.larger {
  padding: 4.5rem 0;
  width: 25rem;
  min-height: 35rem;
  box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.4); }
  @media only screen and (max-width: 75em) {
    .larger {
      width: 0;
      height: 0;
      padding: 0;
      display: none; } }

.hold {
  border: 4px solid #ffc30b; }

.hovered {
  border-style: dashed;
  transform: scale(1.2); }

.invisible {
  display: none; }

.blur {
  opacity: 0.4; }

.about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  padding: 2.5rem 4.5rem; }
  @media only screen and (max-width: 37.5em) {
    .about {
      padding: 0; } }
  @media only screen and (max-width: 75em) {
    .about {
      flex-direction: column;
      width: 100%; } }
  .about__container {
    flex: 0 0 50%;
    padding: 4.5rem; }
    .about__container--left {
      margin-right: 4.5rem; }
    @media only screen and (max-width: 75em) {
      .about__container--right {
        width: 100%; } }
  .about__desc {
    width: 100%;
    max-height: 65rem;
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.4);
    border-radius: 10px; }
    @media only screen and (max-width: 75em) {
      .about__desc {
        margin: 2.5rem auto;
        box-shadow: none;
        border-radius: 0; } }
  .about__text {
    margin-top: 2.5rem;
    margin-bottom: -2.5rem;
    display: none; }
    @media only screen and (max-width: 75em) {
      .about__text {
        display: block; } }
  .about__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem; }
    @media only screen and (max-width: 75em) {
      .about__content {
        width: 100%;
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-top: 2.5rem; } }
  .about__image {
    width: 100%;
    max-height: 45rem;
    object-fit: cover;
    opacity: 0.9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
    @media only screen and (max-width: 75em) {
      .about__image {
        display: none; } }
  .about__para {
    padding: 1.5rem 2.5rem;
    background-color: #EFEDE8;
    text-align: left; }
    .about__para:last-child {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px; }

.card {
  align-self: center;
  justify-self: center;
  width: 30rem;
  height: 30rem;
  margin: 1.5rem; }
  @media only screen and (max-width: 75em) {
    .card {
      height: 50rem; } }
  @media only screen and (max-width: 75em) {
    .card {
      width: 100%;
      height: 40rem;
      background-color: transparent; } }
  @media only screen and (min-width: 112.5em) {
    .card {
      width: 35rem;
      height: 35rem; } }
  .card__side {
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.6s ease-in-out 0.2s; }
    .card__side--front, .card__side--back {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      position: absolute;
      width: 100%;
      height: 100%; }
    .card__side--front {
      transform: rotateY(0deg); }
    .card__side--back {
      background-color: #548C2F;
      transform: rotateY(180deg); }
    @media only screen and (max-width: 37.5em) {
      .card__side {
        display: flex;
        flex-direction: column; }
        .card__side--back {
          overflow: scroll; } }
    @media only screen and (max-width: 75em) {
      .card__side {
        display: flex; }
        .card__side--front, .card__side--back {
          -webkit-backface-visibility: visible;
          backface-visibility: visible;
          transform: rotateY(0deg);
          position: relative;
          display: inline-block; }
        .card__side:hover {
          transform: scale(1.05); } }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0); }
  @media only screen and (max-width: 75em) {
    .card:hover .card__side--front,
    .card:hover .card__side--back {
      transform: rotateY(0); } }
  .card__heading {
    width: 100%;
    min-height: 7.5rem;
    text-align: center;
    z-index: 10;
    background: linear-gradient(to right bottom, rgba(84, 140, 47, 0.8), rgba(16, 73, 17, 0.8));
    position: relative; }
    .card__heading--title {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      color: #f7f7f7; }
  .card__image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    width: 90%;
    min-height: 90%; }
    @media only screen and (max-width: 75em) {
      .card__image {
        top: 60%; } }
  .card__para {
    position: absolute;
    padding: 4.5rem 2.5rem;
    font-size: 1.6rem;
    color: #f7f7f7; }
    @media only screen and (max-width: 75em) {
      .card__para {
        padding: 3.5rem 3.5rem; } }

.box__container {
  margin-top: 4.5rem;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-row: repeat(3, 1fr);
  grid-gap: 3.5rem; }

.box__item {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.4);
  padding: 2.5rem 1.5rem;
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(105deg, rgba(84, 140, 47, 0.8) 0%, rgba(44, 95, 45, 0.8) 32.5%, white 32.5%);
  background-size: 100%; }
  .box__item:not(:last-child) {
    margin-right: 5rem; }
  @media only screen and (max-width: 75em) {
    .box__item {
      flex-direction: column;
      align-items: space-between;
      justify-content: center;
      height: 100%;
      padding: 2.5rem;
      background-image: linear-gradient(180deg, rgba(84, 140, 47, 0.8) 0%, rgba(44, 95, 45, 0.8) 32.5%, white 32.5%); } }
  @media only screen and (max-width: 37.5em) {
    .box__item {
      min-height: 65rem;
      background-image: linear-gradient(180deg, rgba(84, 140, 47, 0.8) 0%, rgba(44, 95, 45, 0.8) 30%, white 30%); } }

.box__header {
  flex: 0 0 35%;
  min-height: 10rem; }
  @media only screen and (max-width: 75em) {
    .box__header {
      text-align: center;
      padding: 2.5rem; } }

.box__title {
  text-transform: uppercase;
  color: #f7f7f7; }

.box__tagline {
  background: #104911;
  text-transform: lowercase;
  padding: 0.2rem 0.5rem;
  margin-top: 1.5rem; }

.box__content {
  display: flex;
  flex: 1; }
  @media only screen and (max-width: 75em) {
    .box__content {
      margin-top: 4.5rem;
      padding: 1.5rem;
      display: flex;
      flex-direction: column; } }
  @media only screen and (max-width: 37.5em) {
    .box__content {
      margin-top: 3.5rem; } }

.box__list {
  flex: 0 0 70%;
  list-style: none;
  padding: 0 2.5rem; }
  .box__list--item {
    overflow-x: hidden;
    font-size: 1.6rem; }
  .box__list--icon {
    font-size: inherit;
    color: #ffc30b; }
  .box__list--text {
    font-size: inherit;
    color: #333; }

.box__link {
  flex: 1;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 75em) {
    .box__link {
      margin: 2.5rem 0; } }

.box__text {
  text-transform: lowercase; }

.box__desc {
  margin-top: 2.5rem;
  text-align: center; }
  .box__desc > *:not(:last-child) {
    margin-right: 5rem; }
  .box__desc > * {
    display: block;
    text-align: left;
    margin-left: 7.5rem; }

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0.3rem);
  -webkit-backdrop-filter: blur(0.3rem); }
  .popup__container {
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .popup__contents {
    position: relative;
    min-height: 30rem;
    background-color: #Fcf4a3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .popup__contents > *:not(:last-child) {
      margin-bottom: 3.5rem; }
  .popup__text {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    text-transform: lowercase; }
  .popup__link {
    width: 15rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .popup__close {
    cursor: pointer;
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    font-size: 3.5rem;
    color: #777;
    z-index: 100;
    transition: all 0.4s; }
    .popup__close:hover {
      transform: scale(1.1); }

.music {
  width: 100%;
  color: #eee;
  font-size: 2rem; }
  .music__title {
    font-size: 1.6rem;
    color: #104911;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #eee;
    padding: 0 1.5rem; }
  .music__icon {
    display: inline-block; }
  .music__btn {
    display: flex;
    align-items: center;
    justify-content: center; }
    .music__btn > *:not(:last-child) {
      margin-right: 2.5rem; }
  .music__progress {
    width: 20rem;
    height: 0.5rem;
    border-radius: 5px;
    background-color: #eee; }
    .music__progress-bar {
      width: 0%;
      height: 100%;
      border-radius: 5px;
      background-color: #ffc30b; }

@keyframes bounce {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-1rem); }
  100% {
    transform: translateY(1rem); } }

.navbar__music {
  flex: 0 0 75%;
  margin-right: auto;
  margin-left: 0.5rem; }

.nav {
  position: fixed;
  top: 0rem;
  right: 0rem; }
  .nav__checkbox {
    position: absolute;
    top: 2rem;
    right: 3rem;
    display: none; }
  .nav__label {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    background-color: #fff;
    z-index: 3000;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%; }
  .nav__icon {
    position: relative; }
    .nav__icon, .nav__icon::before, .nav__icon::after {
      width: 2.5rem;
      height: 5px;
      display: inline-block;
      position: absolute;
      top: 2rem;
      left: 1rem;
      background-color: #548C2F;
      border-radius: 1rem;
      transition: all 0.2s; }
    .nav__icon::before, .nav__icon::after {
      content: ""; }
    .nav__icon::before {
      left: 0;
      top: -1rem; }
    .nav__icon::after {
      left: 0;
      top: 1rem; }
  @media only screen and (max-width: 37.5em) {
    .nav {
      top: 5.5rem; }
      .nav__label {
        background: #2c5f2d; }
      .nav__icon, .nav__icon:before, .nav__icon:after {
        background-color: #EFEDE8; } }
  .nav__label:hover .nav__icon::before {
    top: -1.2rem; }
  .nav__label:hover .nav__icon::after {
    top: 1.2rem; }
  .nav__checkbox:checked ~ .nav__label .nav__icon {
    background-color: transparent; }
  .nav__checkbox:checked ~ .nav__label .nav__icon::before {
    top: 0rem;
    transform: rotate(45deg); }
  .nav__checkbox:checked ~ .nav__label .nav__icon::after {
    top: 0rem;
    transform: rotate(-45deg); }
  .nav__background {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background-image: radial-gradient(#2c5f2d, #548C2F);
    z-index: 2000;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: all 0.4s; }
  .nav__contents {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2500;
    transition: all 0.4s;
    display: none;
    width: 0; }
  .nav__checkbox:checked ~ .nav__background {
    transform: scale(200); }
  .nav__checkbox:checked ~ .nav__contents {
    display: inline-block;
    width: 100%; }
  .nav__list {
    width: 80%;
    list-style: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    .nav__list-item {
      text-transform: uppercase;
      text-align: center;
      font-weight: 300;
      font-size: 3rem;
      letter-spacing: 3px;
      margin-bottom: 3.5rem;
      border-radius: 10px;
      padding: 2.5rem 3.5rem; }
  .nav__link:link, .nav__link:visited {
    text-decoration: none;
    color: #fff;
    font-size: 3rem;
    padding: 0.5rem 1.5rem;
    background-image: linear-gradient(105deg, transparent 0%, transparent 50%, #Fcf4a3 50%);
    background-size: 220%;
    transition: all 0.4s; }
  .nav__link:hover, .nav__link:active {
    background-position: 100%;
    color: #2c5f2d; }

.row {
  max-width: 114rem; }
  @media only screen and (max-width: 75em) {
    .row {
      max-idth: 50rem; } }
  .row:not(:last-child) {
    margin-bottom: 4rem; }
  .row:before, .row:after {
    content: '';
    display: table; }
  .row:after {
    display: block;
    clear: both;
    height: 1px;
    margin-top: -1px;
    visibility: hidden; }
  .row {
    *zoom: 1; }
  .row [class^='col-'] {
    float: left; }
    .row [class^='col-']:not(:last-child) {
      margin-right: 4rem; }
  .row .col-1-of-2,
  .row .col-2-of-4 {
    width: calc( (100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc( ( 100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc( 2 * ( ( 100% - 2 * 6rem) / 3 ) + 6rem); }
  .row .col-1-of-4 {
    width: calc( ( 100% - 3 * 6rem) / 4); }
  .row .col-3-of-4 {
    width: calc( ( 3 * ( 100% - 3 * 6rem) / 4 ) + ( 2 * 6rem )); }

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 5.5rem;
  background-color: #2c5f2d;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.header {
  width: 100%;
  margin-top: 8rem;
  height: 85vh;
  background-image: url(./assets/emile-perron-xrVDYZRGdw4-unsplash.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.8;
  position: relative; }
  .header__main {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
    width: 100%; }

.section-about {
  width: 100%;
  min-height: 85vh;
  margin-top: 8rem;
  padding: 4.5rem 3.5rem; }

.section-web {
  margin-top: 8rem;
  padding: 4.5rem 3.5rem;
  min-height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(84, 140, 47, 0.8), rgba(16, 73, 17, 0.8)); }

.section-data {
  margin-top: 8rem;
  padding: 4.5rem 6.5rem;
  min-height: 85vh;
  background-color: #EFEDE8; }

.section-contact {
  margin-top: 8rem;
  padding: 4.5rem 6.5rem;
  min-height: 85vh;
  position: relative; }

.contact__video {
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: -1; }

.contact__container {
  margin: 20rem auto;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .contact__container {
      flex-wrap: wrap;
      justify-content: center;
      align-items: center; } }

.contact__link {
  text-align: center; }
  .contact__link:not(:last-child) {
    margin-right: 3.5rem; }
  @media only screen and (max-width: 75em) {
    .contact__link {
      margin-bottom: 4.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .contact__link:nth-of-type(1) {
      margin-left: 3.5rem; } }

.contact__icon {
  font-size: 10rem;
  color: #2c5f2d; }
  .contact__icon:hover {
    color: #104911;
    cursor: pointer; }

.contact__text {
  margin-top: 2.5rem;
  text-align: center;
  text-transform: lowercase; }

.inactive::before {
  content: "";
  display: inline-block;
  position: absolute;
  font-size: 5rem;
  left: -15px;
  top: -5px;
  border-radius: 50%; }

.footer {
  margin: 8rem -3rem -3rem -3rem;
  padding: 3.5rem 2.5rem;
  min-height: 1.5rem;
  color: #f7f7f7;
  text-align: center;
  background-color: #333; }

@media only screen and (max-width: 37.5em) {
  [class*='section-'] {
    min-height: 85vh;
    padding: 4rem 0.5rem; } }
