:root {
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #272e35;
  font-variation-settings: "wght"450;
  letter-spacing: .32px;
  font-family: Inter Variable, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.header {
  border-bottom: 1px solid #eaedf0;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  height: 24px;
}

.header_inner {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon_btn {
  height: 20px;
}

.header_btn {
  height: 40px;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #3062d4;
  border-radius: 8px;
  align-items: center;
  padding-left: 12px;
  padding-right: 16px;
  text-decoration: none;
  display: flex;
}

.btn_text {
  letter-spacing: .28px;
}

.support_inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  display: flex;
}

.h1 {
  font-variation-settings: "wght"600;
  text-align: center;
  letter-spacing: -.48px;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 36px;
}

.text {
  max-width: 480px;
}

.text_bold {
  max-width: 480px;
  font-variation-settings: "wght"600;
  text-align: center;
  margin-bottom: 0;
  padding-top: 24px;
}

.contact_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 20px;
  display: flex;
}

.whatsapp_contact {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid #eaedf0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  display: flex;
}

.text-block {
  color: #272e35;
  font-variation-settings: "wght"600;
}

.contact_info {
  color: #555f6d;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact_info {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .text, .text_bold {
    text-align: center;
  }

  .contact_wrapper {
    width: 100%;
    flex-direction: column;
    margin-top: 16px;
  }

  .whatsapp_contact {
    width: 100%;
  }
}


@font-face {
  font-family: 'Inter Variable';
  src: url('../fonts/Inter-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}