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

body {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  height: 100vh;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 300;
  line-height: 1.2;
  color: #2c2c2c;
}

.main {
  background: url(img/main.jpg) no-repeat top center;
  background-size: cover;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  height: 300px;
  margin: auto;
  padding: 15px;
}

@media only screen and (min-width: 767px) {
  .main {
    height: 367px;
  }
}

@media only screen and (min-width: 1023px) {
  .main {
    background-position: top left;
  }
}

.text {
  display: inline-block;
  color: #fff;
}

.small {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  -webkit-animation: .5s appear;
          animation: .5s appear;
}

@media only screen and (min-width: 767px) {
  .small {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1023px) {
  .small {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1279px) {
  .small {
    font-size: 26px;
    line-height: 1.1;
  }
}

@media only screen and (min-width: 1365px) {
  .small {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 2px;
  }
}

.big {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: 0;
  -webkit-animation: .5s appear .2s both;
          animation: .5s appear .2s both;
}

@media only screen and (min-width: 767px) {
  .big {
    font-size: 60px;
  }
}

@media only screen and (min-width: 1023px) {
  .big {
    font-size: 70px;
  }
}

@media only screen and (min-width: 1279px) {
  .big {
    font-size: 80px;
  }
}

@media only screen and (min-width: 1365px) {
  .big {
    font-size: 89px;
    line-height: .92;
  }
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.7;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #bd1d28;
  padding: 13px 20px 11px;
  border-radius: 7px;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-top: 25px;
  text-align: center;
}

@media only screen and (min-width: 767px) {
  .btn {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1023px) {
  .btn {
    font-size: 13.25px;
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1279px) {
  .btn {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 1365px) {
  .btn {
    margin-top: 80px;
  }
}

.btn:visited, .btn:focus, .btn:active {
  color: #fff;
}

.btn:hover {
  background-color: transparent;
  border-color: #bd1d28;
  color: #bd1d28;
}

p {
  margin: 30px 0;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

@media only screen and (min-width: 767px) {
  p {
    font-size: 20px;
    margin: 30px 0 50px;
  }
}

@media only screen and (min-width: 1365px) {
  p {
    font-size: 24px;
  }
}

.text-center {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media only screen and (min-width: 767px) {
  .text-center {
    max-width: 730px;
  }
}

@media only screen and (min-width: 1279px) {
  .text-center {
    max-width: 835px;
  }
}

.text-center--bold {
  font-weight: 700;
}

.container {
  padding: 20px 20px 40px;
  width: 100%;
  -webkit-animation: .5s fade both .4s;
          animation: .5s fade both .4s;
}

@media only screen and (min-width: 767px) {
  .container {
    padding: 30px;
  }
}

@media only screen and (min-width: 1365px) {
  .container {
    max-width: 100%;
    padding: 30px 6vw 50px;
  }
}

@media only screen and (min-width: 1700px) {
  .container {
    max-width: 1603px;
    margin: 0 auto;
    padding: 40px 0 80px;
  }
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wrapper h2 {
  margin: 10px 0 20px;
  letter-spacing: 0;
}

.wrapper .col.col-left {
  width: 100%;
}

@media only screen and (min-width: 1023px) {
  .wrapper .col.col-left {
    width: 25%;
  }
}

@media only screen and (min-width: 1279px) {
  .wrapper .col.col-left {
    width: 20%;
  }
}

.wrapper .col.col-left .column {
  width: 100%;
}

.wrapper .col.col-left .column .row {
  padding: 5px 10px;
}

@media only screen and (min-width: 1023px) {
  .wrapper .col.col-left .column .row {
    padding: 15px 10px;
  }
}

.wrapper .col.col-right {
  margin-top: 30px;
}

@media only screen and (min-width: 1023px) {
  .wrapper .col.col-right {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 30px;
  }
}

.wrapper .row {
  padding: 10px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.wrapper .row a {
  display: inline-block;
  text-decoration: none;
  color: #2c2c2c;
  position: relative;
}

.wrapper .row a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.wrapper .row a::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  position: absolute;
  bottom: -3px;
  background-color: #3b3b3b;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  left: -2px;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.wrapper .row strong {
  display: block;
  letter-spacing: 3px;
}

.wrapper .row span {
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 12px;
}

@media only screen and (min-width: 767px) {
  .wrapper .row span {
    font-size: 15.09px;
  }
}

.column-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column-wrapper .column {
  width: 50%;
}

@media only screen and (min-width: 1279px) {
  .column-wrapper .column {
    width: 25%;
  }
}

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

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

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */
