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

html,body {
  min-width: 100%;
  height: 100%;
}

.page {
  min-height: 100%;
  background-image: url(./imgs/sea.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 15px 0;
}



.page__card {
  max-width: 757px;
  max-width: 100%;  border-radius: 21px;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  margin: 0 auto 30px;
}
.page__card--asset {
  /* height: 270px; */
}
.page__card--asset img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page__card--body {
  padding: 30px 30px 35px;
}

.page__card--title {
  font-family: 'Montserrat', sans-serif;
  font-size: 27px;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-bottom: 14px;
}

.page__card--text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #767676;
}

.page__card--actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0;
  justify-content: center;
}

.page__card--btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  border-radius: 22px;
  background-color: #a831ff;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 30px;
}

.page__card--btnbox {
  display: inline-block;
  padding: 16px 74.5px 16px 74.5px;
}

.page__card--social {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 15px;
}

.page__card--social li {
  margin: 0 5px;
}
.page__card--social li a {
  display: inline-flex;
  width: 51px;
  height: 51px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(118, 118, 118, 0.15);
  color: #767676;
}


.page__footer--content {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 20px;
}

.page__footer--logo {
  margin-bottom: 10px;
  height: 50px;
  width: auto;
}

.page__footer--text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.83;
  text-align: center;
  color: #fff;
  opacity: 0.78;
}


@media screen and (min-width: 768px) {
  .page {
    padding: 80px 15px 0;
  }
  .page__card {
    max-width: 640px;
  }
  .page__card--asset {
    /* height: 425px; */
  }
  .page__card--body {
    padding: 40px 60px 48px;
  }
  .page__card--title {
    font-size: 34px;
  }
  .page__card--text p {
    font-size: 22px;
  }
  .page__card--actions {
    display: flex;
    flex-direction: row;
    padding: 42px 0 0;
  }
  .page__card--btn {
    margin-bottom: 0;
  }
  .page__card--btnbox { 
    padding: 16px 44.5px 16px 44.5px;
  }
}


@media screen and (min-width: 992px) {
  .page__card {
    max-width: 757px;
  }
  .page__card--body {
    padding: 40px 90px 48px;
  }
  .page__card--btnbox {
    padding: 16px 74.5px 16px 74.5px;
  }
}