
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #fc4600;
  --secondary: #2a2a2a;
  --bg-light: #fbf2ee;
  --bg-gray: #f7f7f7;
}
body {
  color: #2a2a2a;
  font-family: "Lora", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: 15px;
  background-color: var(--bg-gray);
}

a {
  color: #2a2a2a;
  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: "Playfair Display", sans-serif;
  line-height: 1.2;
  color: #2a2a2a;
  font-weight: bold;
}
b {
  color: #2a2a2a;
}
p,
li {
  font-size: 16px;
  line-height: 1.4;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 24px;
}
.row {
  row-gap: 16px;
}
.bg-white {
  background-color: #fff;
}
#header-custom .row .header-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 14px;
  padding: 16px;
}
#header-custom p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: auto;
}
#header-custom p::after {
  content: "";
  width: 150px;
  height: 3px;
  background-color: var(--primary);
}
.page-content {
  width: 100%;
  padding: 14px;
}
.page-content .bg-white {
  padding: 20px 16px;
  border-radius: 10px;
}
.page-content .bg-white img {
  border-radius: 10px;
}
.small.italic {
  text-align: center;
  font-style: italic;
}
.bg-text {
  background-color: var(--bg-light);
  padding: 24px 16px;
  border-radius: 10px;
  border-left: 2px solid var(--primary);
}
ul.bg-text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-left: 30px;
}
img.float {
  float: left;
  width: 40%;
  margin: 0 20px 10px 0;
}
.theme-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 8px 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  outline: none;
}
.theme-btn:hover {
  background-color: var(--secondary);
  color: var(--bg-light);
}


footer {
  background-color: var(--bg-gray);
  padding: 50px 0 30px;
}
footer img {
  display: block;
  margin-bottom: 16px;
}
footer p, footer li {
  margin-bottom: 10px;
  font-size: 16px;
}
footer h5 {
  margin-bottom: 16px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer a {
  color: var(--primary);
  transition: 0.3s;
}
footer a:hover {
  color: var(--secondary);
}
.copyright {
  display: flex;
  align-items: center;
  padding: 30px 16px 0;
  text-align: center;
  justify-content: space-between;
}
.copyright p {
  margin-bottom: 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: white;
  border-radius: 10px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
#cookPopup a {
  color: var(--primary);
}
@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: #2a2a2a;
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 150px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.docs {
  word-break: break-word;
}
.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: #2a2a2a;
}