@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-VariableFont_wght.otf);
  font-display: swap;
}
:root {
  --primary: #3d30e7;
  --secondary: #333333;
}
html {
  font-size: 15px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
.sticky-box {
  position: sticky;
  background-color: #fff;
  bottom: 0;
  z-index: 10;
}
.sticky-box a {
  margin-top: 0 !important;
}
p {
  color: #333333;
  line-height: 1.8em;
}

.bg-primary {
  background-color: var(--primary);
}
.color-primary {
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
h5 {
  font-size: 28px;
  margin-bottom: 16px;
}
ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  text-decoration: none;
  color: var(--secondary);
}

img {
  max-width: 100%;
}
img.w100 {
  margin-bottom: 20px;
}
.brd-rds {
  border-radius: 20px;
}
.section-padding {
  padding: 60px 0 0;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  text-align: center;
  padding: 16px 32px;
  background-color: var(--primary);
  gap: 10px;
  color: white !important;
  border-radius: 10px;
  margin-top: 20px;
}
.btn-primary:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/arrow.png) no-repeat center / contain;
}
.btn-primary:hover {
  background-color: var(--secondary);
}
header p {
  font-size: 14px;
}
.author-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}
.author-name p {
  font-size: 16px;
  margin-bottom: 0;
}
footer {
  padding: 80px 0 30px;
}
footer .row {
  row-gap: 20px;
}
#cookPopup {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 25px 10px;
  background-color: white;
  border-top: 2px solid var(--primary);
  z-index: 9999
}
#cookPopup.show {
  display: flex !important
}
#cookPopup p {
  font-size: 16px;
}
.cookPopup_btn {
  flex-shrink: 0;
  outline: none;
  border: none;
  margin-top: 0 !important;
  transition: all 0.2s;
}
.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;
}
.thanks p.thanks-text {
  color: var(--primary);
  font-weight: bold;
}
.docs {
  word-break: break-word;
  padding: 70px 0 30px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
}
.docs h2 {
  margin-bottom: 10px;
}
.docs h3 {
  margin-bottom: 10px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.8;
}

@media screen and (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  p,
  li {
    font-size: 16px !important;
  }
  #header-custom .col-12 {
    flex-direction: column;
    gap: 10px;
  }
  #header-custom .col-12 p {
    text-align: center !important;
  }
  #header-custom .py-4 {
    padding: 10px 0;
  }
  #cookPopup {
    flex-direction: column;
    text-align: center;
  }
  #cookPopup p {
    font-size: 14px;
  }
  .btn-primary {
    font-size: 16px;
  }
}