@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
*,
::after,
::before {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.main-wrap {
  background-image: url(../img/dekstop.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-position: center center;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  padding-top: 45px;
}
.chat-btn {
color: #fff;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: space-between;
font-weight: 400;
font-size: 12px;
line-height: 18px;
letter-spacing: -0.3px;
padding: 0px 15px;
background: #003227;
box-shadow: 0px 7px 10px rgba(52, 126, 100, 0.2);
border-radius: 100px;
min-width: 117px;
min-height: 36px;

}
.inner-wrap {
  text-align: center;
  max-width: 277px;
}
.inner-wrap h2 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 11px 0;
}
.inner-wrap p {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.3px;
  color: #ffffff;
  padding-top: 7px;
}

.inner-wrap small {
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.3px;
  color: #ffffff;
  display: flex;
  margin: auto;
  margin-bottom: 14px;
  transition: all 0.5s;
  max-width: 203px;
}
.chat-btn:hover {
  background: #003227;
}
@media (max-width: 767.98px) {
  .main-wrap {
    background-image: url(../img/mobile.png);
  }
}
