* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Playfair Display", serif;
  color: #323232;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90%;
  max-width: 800px;

  margin: 0 auto;

  padding-top: 50px;
  padding-bottom: 80px;
}

.wrapper > img {
  width: 100%;

  margin-bottom: 50px;

  -webkit-animation: scale-in-center 0.5s ease-in-out both;
  animation: scale-in-center 0.5s ease-in-out both;
}

h1 {
  -webkit-animation: slide-in-left 1s ease-in-out 0.2s both;
  animation: slide-in-left 1s ease-in-out 0.2s both;
}

h1,
h2 {
  margin-bottom: 30px;
  font-weight: bold;

  font-size: 30px;

  text-align: center;

  font-family: "Playfair Display", serif;

  line-height: 1.4;
}

h2 {
  font-size: 24px;
  margin-bottom: 5px;

  -webkit-animation: slide-in-left 1s ease-in-out 0.6s both;
  animation: slide-in-left 1s ease-in-out 0.6s both;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  line-height: 1.4;
  text-align: center;

  -webkit-animation: slide-in-left 1s ease-in-out 0.4s both;
  animation: slide-in-left 1s ease-in-out 0.4s both;
}

a {
  font-family: "Playfair Display", serif;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: block;
  color: #ffffff;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
}

a.whats-btn {
  background-color: #25d366;
}

a.teleg-btn {
  background-color: #08c;
}

a.teleg-btn,
a.whats-btn {
  position: relative;
}

a.teleg-btn img,
a.whats-btn img {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.benefits {
  margin-bottom: 30px;
  -webkit-animation: slide-in-left 1s ease-in-out 0.8s both;
  animation: slide-in-left 1s ease-in-out 0.8s both;
}

.benefits button {
  display: flex;
}

.benefits button span {
  max-width: 30px;
  width: 100%;
  height: 30px;
  border: 1px solid #a5d8ff;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  line-height: 25px;
  font-size: 20px;
}

.collapsible {
  background-color: #ffffff;
  color: #323232;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
}
.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #ffffff;
  border-bottom: 2px solid #a5d8ff;
}

.content p {
  font-size: 16px;
  text-align: left;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
