body {
  font-family: "Nunito Sans", sans-serif;
  background: url(./assets/images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: 0 57%;
  padding: 0;
  margin: 0;
}
.card {
  background: #ffffff;
  padding: 20px;
  max-width: 926px;
  width: 100%;
  position: relative;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  color: #174a5f;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.logo {
  display: inline-block;
}

.logo img {
  max-width: 191px;
  width: 100%;
  vertical-align: top;
}

.btn_text {
  margin: 0 0 10px;
  font-size: 20px;
}

a.btn {
  width: 100%;
  max-width: 458px;
  height: 70px;
  line-height: 70px;
  border-radius: 2px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 35px;
  font-size: 18px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.33);
  overflow: hidden;
  position: relative;
}

.btn-orange {
  background: #e85740;
}
.btn-green {
  background: #174a5f;
}
.btn-brown {
  background: #603313;
}

.container {
  min-height: 100vh;
}

.card_row {
  min-height: 100vh;
}

.card {
  border-radius: 2px;
}

.ripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  position: absolute;
  opacity: 1;
}
.rippleEffect {
  animation: rippleDrop 0.6s linear;
}

@keyframes rippleDrop {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.btns_col {
  position: relative;
  z-index: 10;
}


@media (max-width: 1199px) {


  h1 {
    font-size: 36px;
    margin: 20px 0;
  }

  a.btn {
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    margin: 0 0 10px;
  }

  .logo img {
    max-width: 141px;
  }
  .card {
    background: rgba(255, 255, 255, 0.9);
  }
}

@media (min-width: 1199px) {
  .card::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 108px;
    left: 0;
    z-index: -1;
    transform: translateY(64%);
    width: 100%;
    background: url(./assets/images/shadow.png) no-repeat center;
  }
}

@media (max-width: 767px) {
  .btns_col {
    text-align: center;
  }

  .btn_text {
    margin: 20px 0;
    font-size: 16px;
  }

  h1 {
    font-size: 22px;
    margin: 0 0 20px;
  }

  a.btn {
    font-size: 13px;
    height: 50px;
    line-height: 50px;
    margin: 0 0 10px;
  }
  .card {
    padding: 20px 20px 5px 20px;
  }
}
