@import url("https://fonts.googleapis.com/css2?family=Khand:wght@300;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Khand", sans-serif;
}
a {
  color: #41abe1;
}
a:hover {
  color: #d72a27;
}

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(#d72a27, #d72a27);
  clip-path: circle(25% at right 90%);
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#d72a27, #d72a27);
  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;
}
.logo {
  display: flex;
}
.logo .red {
  font-size: 26px;
  padding: 0 0 0 5px;
  background-color: #d72a27;
  color: #fff;
}
.logo .black {
  font-size: 26px;
  padding: 0 5px 0 0;
  background-color: black;
  color: #fff;
}
#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%;
  }
}
