@font-face {
  font-family: "Saira";
  src: url(../fonts/Saira-VariableFont_wdth\,wght.ttf);
  font-display: swap
}
:root {
  --primary: #c200af;
  --secondary: #2294e3;
  --dark: #000;
}
body {
  color: var(--dark);
  font-family: "Saira", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-size: 15px;
  background-color: #f6f6f6;
}
a {
  outline: 0 none;
  text-decoration: none;
  transition: 0.3s
}
a:hover,
a:focus {
  outline: 0 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: "Saira", sans-serif;
  line-height: 1.2;
  color: #17171d;
  font-weight: 700
}
b {
  color: #17171d
}
p,
li {
  font-size: 16px
}
h1 {
  font-size: 36px
}
h2 {
  font-size: 24px
}
header {
  padding-top: 10px;
}
.page-content {
  width: 100%;
  padding: 30px 0
}
.page-content .container {
  display: flex;
  gap: 30px;
  position: relative
}
.main {
  padding: 16px;
  background-color: #fff;
  border-radius: 5px;
  width: 70%
}
.main h2 {
  margin-bottom: 20px
}
.main img {
  border-radius: 5px;
  margin-bottom: 20px
}
.theme-btn {
  display: block;
  background: linear-gradient(to right bottom, var(--primary), var(--secondary),
      var(--primary));
  padding: 10px 40px;
  text-align: center;
  border-radius: 5px;
  width: auto;
  color: #fff;
  font-weight: 700;
  font-size: 20px
}
.theme-btn:hover {
  transform: translateY(-2px);
  color: white;
}
.main h1 {
  display: flex;
  flex-direction: column;
  row-gap: 10px
}
.main h1::after {
  content: "";
  width: 200px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  flex-shrink: 0
}
.main h2 {
  display: flex;
  align-items: center;
  gap: 10px
}
.main h2::before {
  content: "";
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  flex-shrink: 0;
}
.text-bg {
  background-color: #c200af1c;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
}
.sidebar {
  width: 30%;
  position: sticky;
  top: 10px;
  align-self: flex-start;
  padding: 16px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-align: center
}
.sidebar h4 {
  font-size: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0
}
.sidebar h4::after {
  content: "";
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  flex-shrink: 0
}
.sidebar img {
  width: 300px;
  margin: 0 auto
}
.italic {
  font-style: italic;
}
footer {
  background-color: #17171d;
  padding: 50px 0 30px
}
.logo-link {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  border: 4px solid #c200af1c;
  margin-bottom: 30px;
}
.review-box {
  background-color: #c200af1c;
  border-radius: 5px;
  margin: 10px 0;
  padding: 12px;
}
#contact {
  padding: 40px 16px;
  border: 4px solid #c200af1c;
  border-radius: 5px;
}
#contact h2 {
  flex-direction: column-reverse;
  text-align: center;
}
#contact h2::before {
  height: 4px;
  width: 50px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}
#contact form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 600px;
}
.custom-input {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid var(--primary);
  outline: none !important;
  transition: 0.3s;
  border-radius: 0px;
  box-shadow: none;
  background-color: #fff;
}
.custom-input:focus {
  border-color: var(--secondary);
}
#contact .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-left: 0;
  
}
#contact .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 2px;
  border: 1px solid var(--secondary);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: var(--secondary);
  flex-shrink: 0;
}
#contact .checkbox input::after {
  content: "";
  height: 10px;
  width: 10px;
}
#contact .checkbox input:checked::after {
  content: "";
  background: var(--primary);
  background-size: 10px auto;
}
#contact .checkbox label {
  padding: 0;
}
#contact .checkbox label,
#contact .checkbox input {
  cursor: pointer;
}
#contact .checkbox a {
  color: var(--secondary);
  margin: 0 auto;
  transition: 0.3s;
}
#contact .checkbox a:hover {
  color: var(--primary);
}
#contact button {
  outline: none;
  border: none;
  align-self: center;
  transition: 0.3s;
  margin-top: 30px;
}
footer p,
footer li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px
}
footer h5 {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  gap: 10px;
  margin-bottom: 16px
}
footer h5::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  flex-shrink: 0
}
footer ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
footer a {
  color: var(--primary);
  transition: 0.3s
}
footer a:hover {
  color: var(--secondary)
}
.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
  }
  .main,
  .sidebar {
    width: 100%
  }
  .sidebar {
    position: relative;
    top: 0
  }
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
.cookPopup_btn {
  border: none;
  transition: 0.3s
}
#cookPopup a {
  color: var(--primary)
}
#cookPopup a:hover {
  color: var(--dark)
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
  color: #17171d
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px
}
.thanks p {
  text-align: center;
  font-size: 18px
}
.thanks .thanks-text {
  font-weight: 700;
  color: #c200af;
}
.docs {
  word-break: break-word;
  padding: 20px 0;

}
.docs .wrapper {
  background-color: #fff;
  margin: 16px;
  border-radius: 5px;
  padding: 20px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929
}
.docs a {
  text-decoration: none !important;
  color: var(--primary);
  transition: 0.3s
}
.docs a:hover {
  color: var(--dark)
}