@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  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 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 (min-width: 112.5em) {
    html {
      font-size: 75%; } }

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

::selection {
  background-color: #000;
  color: #fff; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #000; }

.heading-primary {
  font-family: 'Montserrat', sans-serif;
  font-variant: small-caps;
  backface-visibility: hidden;
  color: #ef5129;
  text-shadow: 4px 3px 4px rgba(0, 0, 0, 0.8);
  backface-visibility: hidden; }
  .heading-primary--main {
    display: block;
    font-size: 5.5rem;
    letter-spacing: 1.5rem;
    animation-name: moveInLeft;
    animation-duration: 2s;
    animation-timing-function: ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 3.5rem;
        letter-spacing: 0.5rem; } }
  .heading-primary--main2 {
    display: block;
    font-size: 5.5rem;
    letter-spacing: 1.5rem;
    animation-name: moveInRight;
    animation-duration: 2s;
    animation-timing-function: ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main2 {
        font-size: 3.5rem;
        letter-spacing: 0.5rem; } }
  .heading-primary--main3 {
    display: block;
    font-size: 5.5rem;
    letter-spacing: 1.5rem;
    animation-name: moveInBottom;
    animation-duration: 2s;
    animation-timing-function: ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main3 {
        font-size: 3.5rem;
        letter-spacing: 0.5rem; } }

.button, .button:link, .button:visited {
  padding: 2rem 15px;
  background-color: #ef5129;
  color: #fff;
  width: 300px;
  border-radius: 1rem;
  text-align: center;
  font-size: 2rem;
  text-decoration: none;
  font-variant: small-caps;
  margin-top: 2rem;
  font-weight: 300;
  letter-spacing: 2px; }

.header {
  position: relative; }
  .header__text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

.section-main {
  position: relative;
  height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../img/event2.jpg);
  background-size: cover; }
  .section-main__imgBox {
    position: absolute;
    top: 1%;
    left: 1%; }
    @media only screen and (max-width: 37.5em) {
      .section-main__imgBox {
        text-align: center;
        left: 50%;
        transform: translate(-50%, 0); } }
  .section-main__img {
    width: 30rem; }
  .section-main__title {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%); }
