@charset "UTF-8";
html {
  box-sizing: border-box;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
/* Reset.css */
*,
:before,
:after {
  box-sizing: border-box;
}
:root {
  --adt-primary-font: Barlow, -apple-system, BlinkMacSystemFont,
  "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
  sans-serif;
  --adt-font-size: 16px;
  --adt-container-width: 1230px;
  --adt-side-width: 250px;
  --adt-gap: 60px;
  --adt-grid-gap: 8px;
  --adt-primary-color: #0060df;
  --adt-primary-hover-color: #0258c9;
  --adt-secondary-color: #e4034f;
  --adt-text-color: #1f1f1f;
  --adt-link-color: #1f1f1f;
  --adt-link-hover-color: var(--adt-primary-color);
  --adt-border-color: #ddd;
  --adt-border-radius: 8px;
  --adt-header-height: 80px;
}
/* ----- Chrome, Edge, Safari ----- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 100, 0.6);
}

/* ----- Firefox ----- */
* {
  scrollbar-width: thin;               /* 'auto' or 'thin' */
  scrollbar-color: rgba(100,100,100,0.4) transparent;
}

@media (min-width: 1921px) {
  :root {
    --adt-font-size: 18px;
    --adt-container-width: 1430px;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  :root {
    --adt-container-width: 1170px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  :root {
    --adt-font-size: 14px;
    --adt-container-width: 990px;
  }
}
body {
  margin: 0;
  padding: 0;
  color: var(--adt-text-color);
  background: #fff;
  font-family: var(--adt-primary-font);
  font-size: var(--adt-font-size);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
body.loading {
  opacity: 0.7;
  cursor: progress;
}
body.menu-opened, body.open-search {
  overflow: hidden !important;
}
article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}
figure {
  margin: 1em 0;
}
caption {
  padding: 0.75rem 0;
  color: var(--adt-text-color);
  font-weight: 500;
  text-align: left;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid #1d1f21;
  margin: 20px 0;
}
hr.wp-block-separator {
  max-width: 100px;
}
hr.wp-block-separator.is-style-wide,
hr.wp-block-separator.is-style-dots {
  max-width: 100%;
}
pre {
  background: #eee;
  font-family: monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  white-space: pre-wrap;
  word-wrap: break-word;
}
abbr,
acronym {
  border-bottom: 1px dotted var(--adt-border-color);
  cursor: help;
}
b,
strong {
  color: var(--adt-text-color);
  font-weight: 600;
}
code,
kbd,
samp,
tt,
var {
  font-family: monospace;
  font-size: 1rem;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
mark,
ins {
  background: #f7f7f7;
  color: var(--adt-text-color);
  border-radius: 0.25rem;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
}
small {
  font-size: 80%;
}
big {
  font-size: 125%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25rem;
}
sup {
  top: -0.5em;
}
audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
  vertical-align: middle;
  display: block;
  max-width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font-family: var(--adt-primary-font);
  font-size: var(--adt-font-size);
  line-height: 1.6;
  margin: 0;
}
.fa, .far, .fas {
  font-family: 'Font Awesome 5 Pro' !important;
}
text,
select,
textarea,
number {
  background: #f2f2f2;
  color: var(--adt-text-color);
}
p {
  margin: 0 0 16px;
}
p:last-child {
  margin: 0;
}
blockquote,
.wp-block-quote {
  color: var(--adt-link-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  padding: 0 0 0 2.5rem;
}
.wp-block-quote.is-style-large {
  padding: 0 0 0 2.5rem;
}
blockquote:before {
  font-size: 28px !important;
  left: 0;
  position: absolute;
}
blockquote cite,
.wp-block-quote cite {
  color: var(--adt-text-color);
  display: block;
  font-size: 16px;
  font-style: normal;
  margin-top: 0.5em;
}
blockquote cite:before {
  content: "-";
  margin-right: 5px;
}
blockquote cite a {
  color: var(--adt-primary-color);
}
address {
  font-style: normal;
  margin: 0 0 1.5rem;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted var(--adt-border-color);
}
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid var(--adt-border-color);
  border-radius: var(--adt-border-radius);
}
legend {
  font-weight: 600;
  color: var(--adt-text-color);
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  display: inline-block;
  vertical-align: baseline;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details,
menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
template,
[hidden],
.hidden {
  display: none;
}
* {box-sizing: border-box;}


body.dark {background-color: #292c35;} /* #9b59b6 */

body.dark h1, body.dark .support a {color: #fff;}

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: inline-flex !important;
}
.fa-moon {
    color: #fff;
}
.fa-sun {color: #f39c12;}

.checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}





/*  Support me if you like it */
.support {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.support a {
  color: #292c35;
  font-size: 32px;
  backface-visibility: hidden;
  display: inline-block;
  transition: transform 0.2s ease;
}

.support a:hover{
  transform: scale(1.1);
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.alignleft {
  clear: both;
  display: inline;
  float: left;
  margin: 0.3em 1.5em 1.5em 0;
}
.alignright {
  clear: both;
  display: inline;
  float: right;
  margin: 0.3em 0 1.5em 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.comment-content:before,
.comment-content:after,
.adt-site-header:after,
.adt-site-content:after,
.adt-site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.adt-site-header:after,
.adt-site-content:after,
.adt-site-footer:after {
  clear: both;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/barlow/Barlow-Light.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/barlow/Barlow-LightItalic.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/barlow/Barlow-Regular.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/barlow/Barlow-Medium.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 500;
  src: url(../fonts/barlow/Barlow-MediumItalic.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/barlow/Barlow-SemiBold.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 600;
  src: url(../fonts/barlow/Barlow-SemiBoldItalic.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/barlow/Barlow-Bold.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/barlow/Barlow-BoldItalic.ttf) format("truetype");
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6,
.heading_1,
.heading_2,
.heading_3,
.heading_4,
.heading_5,
.heading_6 {
  clear: both;
  color: var(--adt-text-color);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 20px;
}
h1,
.heading_1 {
  font-size: 56px;
}
h2,
.heading_2 {
  font-size: 44px;
}
h3,
.heading_3 {
  font-size: 36px;
}
h4,
.heading_4 {
  font-size: 30px;
}
h5,
.heading_5 {
  font-size: 24px;
}
h6,
.heading_6 {
  font-size: 20px;
}
:focus,
button:focus {
  outline: none;
}
label {
  color: var(--adt-text-color);
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  background: #fff;
  color: var(--adt-text-color);
  border: 1px solid var(--adt-border-color);
  border-radius: var(--adt-border-radius);
  display: block;
  font-size: var(--adt-font-size);
  line-height: 2;
  padding: 4px 15px;
  height: 46px;
  width: 100%;
}
textarea {
  overflow: auto;
  min-height: 80px;
}
select {
  border: 1px solid var(--adt-border-color);
  border-radius: var(--adt-border-radius);
  height: 46px;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/icons/icon_select.svg) 97% 50%/26px 60px
  no-repeat;
  padding: 0 25px 0 15px;
}
select option {
  background: #fff;
  color: var(--adt-text-color);
}
::-ms-expand {
  display: none;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #e9e9e9;
}
::-webkit-scrollbar-thumb {
  background: var(--adt-primary-color);
  border-radius: 8px;
}
.easy-select {
  --es-dropdown-width: 360px;
  --es-text: var(--adt-text-color);
  --es-text-hover: var(--adt-primary-color);
  --es-border: 1px solid var(--adt-border-color);
  --es-border-hover: 1px solid var(--adt-primary-color);
  --es-radius: var(--adt-border-radius);
}
@media (max-width: 767px) {
  .easy-select {
    width: 100%;
    --es-dropdown-width: 100%;
  }
}
.easy-popup-master {
  --ep-radius: var(--adt-border-radius);
  --ep-close-color: #000;
  --ep-close-color-hover: #fff;
  --ep-close-width: 30px;
}
.easy-popup-container {
  padding: 0;
}
.es-option {
  white-space: nowrap;
}
.ep-close-button {
  padding: 0;
  top: 45px;
  right: 15px;
  border-radius: 100%;
  background: #ddd;
}
.easy-popup.ep-has-custom-close-button .ep-close-button:hover,
.ep-close-button:hover {
  background: #000;
}
.easy-popup-content {
  padding: 40px 60px;
}
.ep-close-button svg {
  width: 20px;
  height: 20px;
}
input[type="radio"],
input[type="checkbox"] {
  border: 1px solid var(--adt-border-color);
  margin-right: 0.5rem;
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 6px 5px 0;
  cursor: pointer;
  vertical-align: middle;
  top: 1px;
  line-height: 0;
  transition: all 0.3s;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
  font-weight: 400;
  display: inline-block;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1);
  opacity: 1;
}
input[type="radio"]::before {
  background: var(--adt-secondary-color);
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  opacity: 0;
  transform: scale(0.9);
  border-radius: 50%;
}
input[type="checkbox"]::before {
  background: var(--adt-secondary-color);
  color: var(--adt-secondary-inverse-color);
  font-weight: 400;
  font-size: 12px !important;
  height: 100%;
  width: 100%;
  line-height: 1.3;
  opacity: 0;
  transform: scale(0.9);
}
.button,
.btn,
button,
input[type="button"],
input[type="submit"] {
  --background-color: #1f1f1f;
  --background-hover-color: var(--adt-primary-color);
  --color-text: #fff;
  --color-hover-text: #000;
  background: var(--background-color);
  color: var(--color-text);
  border-radius: var(--adt-border-radius);
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px 14px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-primary{
  --background-color: var(--adt-primary-color) !important;
  --background-hover-color: var(--adt-primary-hover-color) !important;
  --color-text: #fff !important;
  --color-hover-text: #fff !important;
}
.button:hover,
.btn:hover,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.button:not([href]):not([tabindex]):hover,
.btn:not([href]):not([tabindex]):hover {
  background: var(--background-hover-color);
  color: #fff;
}
input + button,
input + input[type="button"],
input + input[type="submit"] {
  padding: 0.75em 1.4671em;
}
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: var(--adt-text-color);
  font-family: var(--adt-primary-font);
}
::-moz-placeholder {
  opacity: 1;
}
ul,
ol {
  margin: 0 0 1.5em 1.2em;
  padding: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
dt {
  font-weight: 600;
}
dd {
  margin: 0 1.5em 1.5em;
}
table {
  border-spacing: 0;
  margin: 0 0 1.5rem;
  width: 100%;
}
thead th {
  color: var(--adt-text-color);
  padding-bottom: 0.6781rem;
  font-weight: 600;
}
tr {
  border: 1px solid var(--adt-border-color);
}
th {
  font-weight: 600;
  padding: 0.6781rem;
  text-align: left;
}
td {
  padding: 0.6781rem;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}
a {
  color: var(--adt-link-color);
  text-decoration: none;
  transition: all 0.25s;
}
a:hover {
  color: var(--adt-link-hover-color);
  outline: 0;
}
.container,
.container-fluid {
  width: 100%;
  padding: 0 var(--adt-grid-gap);
  margin: 0 auto;
}
.container {
  max-width: var(--adt-container-width);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--adt-grid-gap) * -1);
}
@media (min-width: 1700px){
  .container-fluid{
    padding: 0 120px;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1025px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.required {
  color: red;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.image-holder img {
    object-position: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
    border-radius: 8px;
}
.skeleton-bg {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgd2lkdGg9IjEwMHB4IiBoZWlnaHQ9IjEwMHB4Ij4NCjxjaXJjbGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTA1MjU0IiBzdHJva2Utd2lkdGg9IjEwIiByPSI0NSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY2IDQ0IiBzdHlsZT0iJiMxMDsgICAgLyogc3Ryb2tlLWRhc2hhcnJheTogMTY2IDQ0OyAqLyYjMTA7Ij4NCiAgPGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIi8+DQo8L2NpcmNsZT4NCjwvc3ZnPg==)
  no-repeat center/30px;
}
/* Socials.css */
.adt-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.adt-socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid var(--adt-link-color);
  font-size: 16px;
  color: var(--adt-link-color);
  transition: all .3s;
}
.adt-socials a:hover {
  background: #fff;
  color: var(--adt-primary-color);
}
/* Header.css */
#header-height{
  min-height: var(--adt-header-height);
}
.adt-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  transition: all .3s;
}
.dark main * {
    color: #fff;
}
/* .adt-site-header::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #fff;
  transition: all .3s;
}
.header--sticky::before{
  height: 100%;
} */
.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
}
.admin-bar .header--sticky, .admin-bar .adt-site-header {
  top: 32px;
}
@media (max-width: 767px) {
  .admin-bar .header--sticky, .admin-bar .adt-site-header{
    top: 46px;
  }
}
/* Layout.css */
.adt-page-header {
  color: #555;
  padding: 75px 0;
  text-align: center;
  background: #f8f5f0 center center/cover;
  margin-bottom: 60px;
}
.adt-page-header-title .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.adt-breadcrumb span, .adt-breadcrumb a{
  color: var(--adt-link-color);
}
.adt-breadcrumb span.breadcrumb_last{
  opacity: .8;
}
/* Post-item.css */
.post-list-wrap {
  row-gap: calc(var(--adt-grid-gap) * 2);
}
.post-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    margin-bottom: 1rem;
}
.post-item:hover .post-item-image img {
  transform: scale(1.05);
}
.post-item-content {
  flex: 1;
  position: relative;
  transition: all 0.3s;
}
.post-item-title {
    font-size: 1rem;
    color: var(--adt-text-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-item-title span.highlight {
  background: var(--adt-primary-color);
  color: #fff;
  padding: 0 3px;
  border-radius: 3px;
  margin: 0 1px;
}
.post-item-title a {
  color: currentColor;
}
.post-item:hover .post-item-title {
  color: var(--adt-primary-color);
}
.post-item-excerpt {
  color: #555;
  margin: 10px 0 0;
}
.post-item.no-excerpt .post-item-excerpt{
  display: none !important;
}
.post-item-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 3px;
}
.post-item-meta-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-item-meta-item.category {
  font-weight: 600;
  background: #f9fafb;
  border: 1px solid #f2f2f2;
  padding: 3px 10px;
  border-radius: 99px;
}
.posts-featured .post-item-content {
  padding: 15px;
  background: #f8f5f0;
}
.posts-featured .post-item-image {
  margin: 0;
}
@media (min-width: 768px) {
  .posts-featured .post-item {
    flex-direction: row;
    overflow: hidden;
    border-radius: var(--adt-border-radius);
  }
  .posts-featured .post-item-image {
    flex: 0 0 auto;
    width: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .posts-featured .post-item-content {
    flex: 0 0 auto;
    width: 50%;
    padding: 40px;
  }
  .posts-featured .post-item-title {
    font-size: 24px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .posts-featured .post-item-image {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .posts-featured .post-item-content {
    border-bottom-left-radius: var(--adt-border-radius);
    border-bottom-right-radius: var(--adt-border-radius);
  }
}
.post-single-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--adt-border-color);
}
.post-single-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.post-single-fix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-single-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.post-single-meta-item {
  margin: 0;
}
.post-single-meta-item.category {
  font-weight: 600;
}
.post-single-share a,
.post-single-foo-share a {
  width: 32px;
  height: 32px;
}
.post-single-share a.social-facebook, .post-single-foo-share a.social-facebook{
  background: #4267B2;
  border-color: #4267B2;
  color: #fff;
}
.post-single-share a.social-youtube, .post-single-foo-share a.social-youtube{
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: #fff;
}
.post-single-foo {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--adt-border-color);
}
.post-single-foo-share, .post-single-foo-tags {
  display: flex;
  align-items: center;
  gap: 15px;
}
.post-single-foo-label {
  font-weight: 600;
}
.post-single-foo-tags {
  margin-top: 20px;
}
.post-single-foo-tags .tags-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.post-single-foo-tags .tags-list span {
  font-weight: 600;
  background: #f9fafb;
  border: 1px solid #f2f2f2;
  padding: 3px 12px;
  border-radius: 99px;
}
/* Layout.css */
.search-form {
  display: flex;
  align-items: center;
}
.button-search {
  padding: 0;
  height: 46px;
  width: 46px;
  flex: 0 0 auto;
}
.dot-spinner {
  --spin-size: 28px;
  --spin-speed: 0.9s;
  --spin-color: #fff;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--spin-size);
  width: var(--spin-size);
}
.dot-spinner__dot {
  position: absolute !important;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background: var(--spin-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--spin-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}
.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}
.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--spin-speed) * -0.875);
}
.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}
.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--spin-speed) * -0.75);
}
.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}
.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--spin-speed) * -0.625);
}
.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}
.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--spin-speed) * -0.5);
}
.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}
.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--spin-speed) * -0.375);
}
.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}
.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--spin-speed) * -0.25);
}
.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}
.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--spin-speed) * -0.125);
}
@keyframes pulse0112 {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Pagination.css */
.adt-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.adt-pagination .adt-page {
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.3s;
}
.adt-pagination .adt-page + .adt-page {
  margin-left: 10px;
}
.adt-pagination .adt-page.prev {
  margin-right: auto;
}
.adt-pagination .adt-page.next {
  margin-left: auto;
}
.adt-pagination .adt-page i {
  font-size: 14px;
}
.adt-pagination .adt-page.current {
  color: #fff;
  background: var(--adt-primary-color);
}
.adt-pagination .adt-page.disabled {
  opacity: 0.7;
  cursor: no-drop;
}
.adt-pagination-ajax {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.adt-pagination-ajax button {
  padding: 14px 24px 16px;
}
.adt-pagination-ajax button.loading {
  pointer-events: none;
}
.adt-pagination-ajax button.loading span.text {
  opacity: 0.3;
}
.adt-pagination-ajax button:not(.loading) .dot-spinner {
  display: none;
}
/* ContentBody.css */
.ContentBody ul li,
.ContentBody ol li {
  padding: 0 0 10px 5px;
}
.ContentBody p {
  display: block;
}
.ContentBody ul,
.ContentBody ol {
  margin: 0 0 10px 18px;
  padding: 0;
}
.ContentBody ul {
  list-style: disc;
}
.ContentBody ol {
  list-style-type: decimal;
}
.ContentBody ol ol {
  list-style: upper-alpha;
}
.ContentBody ol ol ol {
  list-style: lower-roman;
}
.ContentBody ol ol ol ol {
  list-style: lower-alpha;
}
.ContentBody ul ul,
.ContentBody ol ol,
.ContentBody ul ol,
.ContentBody ol ul {
  margin-bottom: 0;
}
.ContentBody strong {
  font-weight: 600;
}
.ContentBody cite,
.ContentBody em {
  font-style: italic;
}
.ContentBody cite {
  border: none;
}
.ContentBody big {
  font-size: 131.25%;
}
.ContentBody blockquote,
.ContentBody blockquote p {
  font-weight: 600;
}
.ContentBody blockquote em,
.ContentBody blockquote i,
.ContentBody blockquote cite {
  font-style: normal;
}
.ContentBody blockquote cite {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #555;
}
.ContentBody pre {
  font-size: 1em;
  margin-bottom: 1.625em;
  padding: 0.75em 1.625em;
  background: #f4f4f4;
}
.ContentBody figure {
  margin: 0 auto 16px;
  text-align: center;
}
.ContentBody figure figcaption {
  font-size: 14px;
  padding: 3px;
}
.ContentBody code,
.ContentBody kbd,
.ContentBody samp,
.ContentBody var {
  font-size: 1em;
}
.ContentBody abbr,
.ContentBody acronym,
.ContentBody dfn {
  cursor: help;
  border-bottom: 1px dotted var(--adt-border-color);
}
.ContentBody address {
  display: block;
  margin: 0 0 1.625em;
}
.ContentBody del,
.ContentBody ins {
  color: #555;
}
.ContentBody ins {
  text-decoration: none;
  border: none;
}
.ContentBody sup,
.ContentBody sub {
  font-size: 10px;
  line-height: 1;
  position: relative;
  height: 0;
  vertical-align: baseline;
}
.ContentBody sup {
  bottom: 1ex;
}
.ContentBody sub {
  top: 0.5ex;
}
.ContentBody table {
  width: 100%;
  margin-bottom: 25px;
  border-collapse: collapse;
  text-align: left;
}
.ContentBody tr td,
.ContentBody tr th {
  padding: 10px;
  vertical-align: top;
  border: 1px solid var(--adt-border-color);
}
.ContentBody img {
  max-width: 100%;
  height: auto;
}
.ContentBody img.size-full {
  width: auto;
}
.ContentBody img.wp-smiley {
  margin: 0;
  padding: 0;
  border: none;
}
.ContentBody img.aligncenter {
  margin: 0 auto 5px;
  display: block;
}
.ContentBody .wp-caption {
  max-width: 100%;
  margin: 0 auto 16px;
  border: 1px solid var(--adt-border-color);
  padding: 16px 16px 2px;
  border-radius: 16px;
}
.ContentBody .wp-caption a {
  cursor: pointer;
}
.ContentBody .wp-caption img {
  display: block;
  max-width: 100%;
  margin: 0 auto !important;
  border-radius: 8px;
}
.ContentBody .wp-caption .wp-caption-text,
.ContentBody .wp-caption-dd {
  font-size: 14px;
  padding: 8px 8px 8px 30px;
  text-align: left;
  color: #555;
  position: relative;
}
.ContentBody .wp-caption .wp-caption-text:before {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  top: 7px;
  left: 10px;
  content: "\2014";
  color: #555;
}
.ContentBody br {
  float: none;
  clear: both;
}
.ContentBody hr {
  height: 0;
  margin-bottom: 25px;
  border-bottom: 2px solid #ddd;
  background: none;
}
.ContentBody h1,
.ContentBody h2,
.ContentBody h3,
.ContentBody h4,
.ContentBody h5,
.ContentBody h6 {
  color: var(--adt-text-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.ContentBody h1 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
.ContentBody h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
}
.ContentBody h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}
.ContentBody h4 {
  font-size: 20px;
  letter-spacing: -0.01em;
}
.ContentBody h5,
.ContentBody h6 {
  font-size: 18px;
}
.ContentBody h6 {
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.ContentBody ul:not(:last-child) {
  margin-bottom: 20px;
}
.ContentBody ul > li {
  padding: 0;
  position: relative;
}
.ContentBody ol > li {
  padding: 0;
}
.ContentBody ul > li:not(:last-child),
.ContentBody ol > li:not(:last-child) {
  margin-bottom: 10px;
}
.ContentBody hr {
  border-bottom: 1px dashed var(--adt-border-color);
}
.ContentBody tr {
  border-top: 1px solid var(--adt-border-color);
  border-bottom: 1px solid var(--adt-border-color);
}
.ContentBody tr:first-child {
  border-top: none;
}
.ContentBody tr:last-child {
  border-bottom: none;
}
.ContentBody tr:nth-child(even) {
  background: var(--adt-border-color);
}
/* Widget.css */
@media (min-width: 768px) {
  .widget-area{
    padding-left: 30px;
  }
}

.widget:not(:last-child) {
  border-bottom: 1px solid var(--adt-border-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.widget h2,
.widget .widget-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}
.footer-widget .widget-title{
  color: #fff;
}
.footer-widget.widget_text p{
  margin-bottom: 10px;
}
.footer-widget.widget_text a{
  color: #fff;
}
.widget select {
  width: 100%;
}
.widget ul li:not(:last-child),
.widget ol li:not(:last-child) {
  margin-bottom: 10px;
}
.widget ul li ul {
  padding-left: 20px !important;
  position: relative;
}
.widget_nav_menu ul.menu {
  list-style: none;
  margin: 0;
}
.widget_nav_menu ul.menu li {
  margin-bottom: 0;
}
.widget_nav_menu ul.menu li + li a {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px dashed var(--adt-border-color);
}
.widget ul.menu li a {
  display: block;
}
.widget ul.menu li:hover a {
  color: var(--adt-primary-color);
}
.widget-post-list .post-item {
  flex-direction: row;
}
.widget-post-list .post-item + .post-item {
  margin-top: 30px;
}
.widget-post-list .post-item-image {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  border-radius: 10px;
  padding: 0;
  margin: 0;
}
.widget-post-list .post-item-content {
  padding-left: 15px;
}
.widget-post-list .post-item-title {
  font-size: 16px;
}
.widget-post-list .post-item-meta-item.category,
.widget-post-list .post-item-excerpt {
  display: none !important;
}
.widget-post-list .post-item-meta {
  font-size: 14px;
}
.footer-widget .adt-socials a{
  color: #fff;
  border-color: #fff;
}
/* Comment.css */
.comments-area {
  margin-top: 40px;
}
.must-log-in a,
.logged-in-as a {
  color: var(--adt-primary-color);
}
.comments-title,
.comment-reply-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}
.comment-reply-title small {
  opacity: 0.7;
  margin-left: 16px;
}
.comment-list,
ol.children {
  list-style: none;
  padding: 0;
}
.comment-list {
  margin: 0;
}
.comment-body {
  display: flex;
  margin-bottom: 20px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--adt-border-color);
}
.comment-avatar {
  flex: 0 0 auto;
}
.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.comment-avatar img {
  border-radius: 50%;
}
.comment-awaiting-moderation {
  font-style: italic;
  color: #666;
  margin: 0;
}
.comment-author.vcard {
  display: flex;
  align-items: center;
  gap: 16px;
}
.comment-author.vcard .fn {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
}
.reply {
  margin-top: 10px;
}
.reply a {
  font-weight: 600;
}
.comment-content {
  padding-left: 16px;
  flex: 1 0 auto;
}
.comments-navigation {
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
}
.comment-metadata {
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 600;
}
.comment-form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--adt-grid-gap) * -1);
}

.comment-form p{
  position: relative;
  padding: 0 var(--adt-grid-gap);
  margin-bottom: 16px;
}

.comment-form .form-submit .btn{
  padding: 12px 15px 14px;
}

p.comment-form-author, p.comment-form-email {
  flex: 0 0 auto;
  width: 50%;
}

p.comment-form-comment, p.comment-form-cookies-consent {
  flex: 0 0 auto;
  width: 100%;
}

p.comment-form-cookies-consent{
  display: flex;
}

#wp-comment-cookies-consent{
  margin-bottom: 0;
  margin-top: 4px;
}

p.comment-form-cookies-consent label{
  margin-bottom: 0;
}

/* Footer.css */
.adt-site-footer {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.adt-footer-copyright {
  color: #fff;
  background-color: var(--adt-primary-hover-color);
}
.adt-footer-copyright a{
  font-weight: 600;
  color: #fff;
}
.adt-footer-copyright{
  padding: 12px 0;
}
.adt-back-to-top {
  --btn-width: 46px;
  --btn-height: 46px;
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btn-width);
  height: var(--btn-height);
  background: #1f1f1f;
  color: #fff;
  font-size: 18px;
  border-radius: 100%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  transform: translateX(2vw);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.adt-back-to-top.show {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.adt-back-to-top svg {
  color: #fff;
  border-radius: 50%;
  background: var(--adt-primary-color);
}
.adt-back-to-top svg path {
  fill: var(--adt-primary-color);
  stroke: #fff;
  stroke-width: 5px;
  box-sizing: border-box;
  transition: all 0.3s;
}
/* Responsive.css */
@media (min-width: 1921px){
}
@media (min-width: 1200px) and (max-width: 1440px) {

}
@media (min-width: 1025px) and (max-width: 1280px) {

}
@media (max-width: 1024px) {
  :root{
    --adt-side-width: 180px;
  }
}
@media (max-width: 767px) {
  :root {
    --adt-side-width: 54px;
    --adt-text-color: #fff;
    --adt-link-color: #fff;
    --adt-primary-color: #e4034f;
    --adt-border-color: rgba(219,219,219,.08);
  }
  body{
    background: #000;
    color: #fff;
  }
  .btn, .button, button, input[type=button], input[type=submit]{
    --background-color: #e4034f;
    --background-hover-color: var(--adt-primary-color);
    --color-text: #fff;
    --color-hover-text: #fff;
  }
  input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea{
    background: #1f1f1f;
  }
  p.comment-form-cookies-consent{
    display: flex;
  }
  .swiper-control-btn{
    --btn-width: 32px;
    --btn-height: 32px;
    background-color: #1f1f1f;
    color: #fff;
  }
  .easy-popup-overflow {
    margin: 0 15px;
  }
  .easy-popup-content {
    padding: 60px 20px 30px;
  }
  .adt-page-header-title .title {
    font-size: 32px;
  }
  .post-single-title {
    font-size: 28px;
  }
  .ContentBody h1 {
    font-size: 24px;
  }
  .ContentBody h2 {
    font-size: 24px;
  }
  .ContentBody h3 {
    font-size: 20px;
  }
  .ContentBody h4 {
    font-size: 18px;
  }
  .ContentBody h5,
  .ContentBody h6 {
    font-size: 16px;
  }
  .adt-back-to-top {
    --btn-width: 32px;
    --btn-height: 32px;
    background: #f2f2f2;
    color: #1f1f1f;
    right: 15px;
  }
  .adt-page-header{
    color: #555;
    padding: 15px 0;
    text-align: center;
    background: transparent;
    margin-bottom: 20px;
  }
  .post-single-foo-tags .tags-list span{
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #fff;
  }
  .post-item-meta-item.category{
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #fff;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  body {
    --adt-gap: 60px;
  }
}
@media (min-width: 0px) and (max-width: 480px) {
  body {
  --adt-gap: 46px;
  --adt-grid-gap: 10px;
  overflow-x: hidden;
}
.video-section {
  overflow-x: hidden;
  position: relative;
}
  .adt-page-header-title .title {
    font-size: 28px;
  }
  .post-single-title {
    font-size: 24px;
  }
}
@media (max-width: 414px) {
  .adt-back-to-top {
    right: 10px;
  }
}
