@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-VariableFont_wght.otf) format("opentype");
  font-display: swap;
}
:root {
  --primary-color: #FB162B;
  --primary-color-hover: #000000;
}
body {
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: 15px;
}

a {
  color: var(--primary-color);
  outline: 0px none;
  text-decoration: none;
}
a:hover,
a:focus {
  outline: 0px none;
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  color: inherit;
}

.overflow-hide {
  overflow: hidden;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: #000;
  font-weight: bold;
}
b {
  color: #000;
}
p,
li {
  font-size: 18px;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
.page-content {
  width: 100%;
  padding: 20px 0;
}
.page-content .container {
  display: flex;
  gap: 30px;
  position: relative;
}
.pre-page {
  width: 70%;
}
.sidebar {
  width: 30%;
  position: sticky;
  top: 10px;
  align-self: flex-start;
}
.pre-page img, .sidebar img {
  border-radius: 5px;
  margin: 10px 0;
}
.bg-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  margin-bottom: 20px;
}
.red-box {
  padding: 16px;
  background-color: #D0021B14;
}
.green-box {
  padding: 16px;
  background-color: #50E3C22B;
}
.offer-box {
  padding: 20px;
  border: 2px dashed var(--primary-color-hover);
  margin-bottom: 20px;
}
.offer-box a {
  margin-bottom: 20px;
}
.text-bg {
  display: inline-block;
  background-color: rgb(248, 231, 28);
}
.pre-page a, .sidebar a {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: white;
  font-size: 20px;
  border-radius: 10px;
  width: 100%;
  padding: 12px 20px;
  transition: 0.3s;
}
.pre-page a:hover, .sidebar a:hover {
  background-color: #17171d;
}
.sidebar {
  padding: 20px;
  border: 2px solid #D0021B14;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}
.sidebar h4 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}
footer {
  padding: 50px 0 30px;
}
footer img {
  margin-bottom: 20px;
}
footer h5 {
  color: white;
  margin-bottom: 16px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
footer li {
  font-size: 12px;
}
footer a {
  color: var(--primary-color);
  transition: 0.3s;
  font-size: 12px;
  margin-bottom: 0;
}
footer a:hover {
  color: var(--primary-color-hover);
}
.copyright {
  padding: 30px 0 0;
  text-align: center;
}
.copyright p {
  margin-bottom: 0;
}

@media screen and (max-width:991.98px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
}
@media screen and (max-width:767.98px) {
  .page-content .container {
    flex-direction: column;
  }
  .pre-page, .sidebar {
    width: 100%;
  }
  .sidebar {
    position: relative;
    top: 0;
  }
  .bg-box {
    grid-template-columns: 1fr;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.docs {
  word-break: break-word;
  padding: 120px 0 80px;
}