@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}
a {
  color: #41abe1;
}
a:hover {
  color: #f05b67;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #fafafa;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#f02f3f, #f05b67);
  clip-path: circle(25% at right 90%);
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#f05b67, #f02f3f);
  clip-path: circle(15% at 10% 10%);
}
.small-gap {
  margin-top: 15px;
  margin-bottom: 15px;
}
.medium-gap {
  margin-top: 25px;
  margin-bottom: 25px;
}
.big-gap {
  margin-top: 50px;
  margin-bottom: 50px;
}
.container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 80%;
  flex-wrap: wrap;
  padding: 0 50px;
  z-index: 1;
}
#trengoChatIframe {
  width: 100%;
  height: 500px;
  margin-top: 15px;
  border: none;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
}
.small-green-btn {
  display: inline-block;
  font-weight: inherit;
  color: #fff !important;
  background-color: #4bb528;
  border-radius: 5px 5px;
  padding: 10px;
  min-width: 120px;
  text-align: center;
  text-decoration: none;
}
.small-green-btn:hover {
  background-color: #3d981f;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 568px) {
  .container {
    width: 100%;
  }
}
