@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-VariableFont_wdth\,wght.ttf);
  font-display: swap;
}
:root {
  --bg: #212D3B;
  --primary: #FFC000;
  --link-color: #0000EE;
  --text: #303030;
}
body {
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  margin: 0px;
  overflow-x: hidden;
  font-size: 15px;
  padding: 20px;
  background-color: #f4f4f4;
}

a {
  color: var(--link-color);
  outline: 0px none;
  text-decoration: none;
  transition: 0.3s;
}
a:hover,
a:focus {
  outline: 0px none;
  text-decoration: none;
  color: var(--text);
}
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: "Open Sans", sans-serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: bold;
}
b {
  color: var(--text);
}
p,
li {
  font-size: 18px;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
.italic {
  font-style: italic;
}
.container {
  max-width: 1170px;
}
.page-wraper {
  background-color: #fff;
}
.page-wraper img {
  border-radius: 10px;
  margin-bottom: 20px;
}
#header-custom .col-12 {
  row-gap: 10px;
}
.header-text {
  background-color: var(--bg);
  width: 100%;
  color: #fff;
  text-align: center;
}
.page-content {
  width: 100%;
  padding: 50px 0;
}
.page-content .container {
  display: flex;
  gap: 30px;
  position: relative;
}
.pre-page {
  width: 70%;
}
.sidebar {
  width: 30%;
  position: sticky;
  top: 60px;
  align-self: flex-start
}
.sidebar {
  padding: 20px;
  border: 1px solid var(--bg);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.sidebar a {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
}
.theme-btn {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: var(--text) !important;
  font-weight: 700;
  font-size: 24px;
  border-radius: 5px;
  padding: 12px;
  transition: 0.3s;
  outline: none;
  border: none;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 30px;
}
.review-box {
  padding: 12px;
  background-color: #F4F4F4;
  margin-bottom: 16px;
  border-radius: 5px;
}
.review-box p {
  font-size: 16px;
}
.offer-box {
  padding: 12px;
  background-color: #FEF5C4;
  border: 2px dashed #FFDD76;
  margin: 30px 0;
}
.offer-box h2 {
  font-size: 20px;
}
.offer-box h2.yellow-text {
  color: var(--primary);
}
.green-text {
  color: #4CAF50;
}
details {
  margin-bottom: 16px;
}
summary {
  background-color: #f4f4f4;
  padding: 12px;
  font-size: 20px;
  font-weight: 700;
}
details p {
  padding: 12px;
}
footer .col-12 {
  background-color: var(--bg);
  padding: 20px;
}
footer p,
footer li {
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
}
footer h5 {
  color: white;
  margin-bottom: 16px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
  flex-wrap: wrap;
}
footer a {
  color: #1967d2;
  transition: 0.3s;
}
footer a:hover {
  color: #fff;
}
.copyright {
  padding: 30px 0 0;
  text-align: center;
}
.copyright p {
  margin-bottom: 0;
}
@media screen and (max-width:767.98px) {
  .page-content .container {
    flex-direction: column;
  }
  .pre-page,
  .sidebar {
    width: 100%;
  }
  .sidebar {
    position: relative;
    top: 0;
  }
  h1 {
    font-size: 32px;
  }
    h2 {
      font-size: 28px;
    }
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 100px 0;
}
.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;
}