/* Circe Font */
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Bold/Circe-Bold.woff2") format("woff2"), url("../fonts/Circe/Circe-Bold/Circe-Bold.otf") format("opentype"), url("../fonts/Circe/Circe-Bold/Circe-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Regular/Circe-Regular.woff2") format("woff2"), url("../fonts/Circe/Circe-Regular/Circe-Regular.otf") format("opentype"), url("../fonts/Circe/Circe-Regular/Circe-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Light/Circe-Light.woff2") format("woff2"), url("../fonts/Circe/Circe-Light/Circe-Light.otf") format("opentype"), url("../fonts/Circe/Circe-Light/Circe-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
:root {
  --primary-font-family: "Circe", sans-serif;
  --primary-color: #000000;
  --secondary-color: #09bab6;
  --error-color: #d94040;
  --light-gray: #f3f3f3;
  --body-bg: #ffffff;
  --text-color: #000000;
  --sidebar-bg: #000000;
  --sidebar-color: #ffffff;
  --input-bg: #ffffff;
  --input-border-color: #000000;
  --input-border-radius: 0px;
  --overlay-bg: rgba(0, 0, 0, 0.6);
  --overlay-z-index: 1000;
  --popup-bg: #ffffff;
  --default-border-color: #b8b8b8;
}

/* General CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--body-bg);
  color: var(--text-color);
  font-family: var(--primary-font-family);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px 0;
}

.w-100 {
  width: 100%;
}

.lang-switcher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #ffffff;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  z-index: 999;
  overflow: hidden;
}
.lang-switcher_text {
  position: relative;
  width: 82%;
  left: 18%;
  margin-bottom: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-switcher_text p {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
}
@media (max-width: 575.98px) {
  .lang-switcher_text p {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .lang-switcher_text {
    margin-bottom: -22px;
  }
}
.lang-switcher_logo img {
  width: 550px;
  height: auto;
}
.lang-switcher_btns {
  position: relative;
  width: 82%;
  left: 18%;
  margin-top: -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.lang-switcher_btns .btn {
  font-size: 20px;
  font-weight: 300;
  padding: 5px 35px;
}
@media (max-width: 575.98px) {
  .lang-switcher_btns .btn {
    font-size: 16px;
    padding: 5px 20px;
  }
}
@media (max-width: 575.98px) {
  .lang-switcher_btns {
    margin-top: -22px;
    gap: 25px;
  }
}

.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  z-index: 999;
  overflow: hidden;
}
.loading-wrapper .loading-img {
  width: 1200px;
  max-width: 1200px;
  height: auto;
}
@media (max-width: 991.98px) {
  .loading-wrapper .loading-img {
    width: 900px;
    max-width: 900px;
  }
}
@media (max-width: 767.98px) {
  .loading-wrapper .loading-img {
    width: 700px;
    max-width: 700;
  }
}
@media (max-width: 575.98px) {
  .loading-wrapper .loading-img {
    width: 500px;
    max-width: 500px;
  }
}
.loading-wrapper .static-logo {
  display: none;
  width: 250px;
  max-width: 250px;
  height: auto;
}
.loading-wrapper .static-logo.show {
  display: block;
}
@media (max-width: 991.98px) {
  .loading-wrapper .static-logo {
    width: 190px;
    max-width: 190px;
  }
}
@media (max-width: 767.98px) {
  .loading-wrapper .static-logo {
    width: 350px;
    max-width: 100%;
  }
}
.loading-wrapper.collapse {
  width: 30%;
  min-width: 400px;
  padding: 30px 30px 111px 30px;
}
@media (max-width: 991.98px) {
  .loading-wrapper.collapse {
    min-width: 300px;
    padding: 30px 30px 88px 30px;
  }
}
@media (max-width: 767.98px) {
  .loading-wrapper.collapse {
    width: 100%;
    min-width: auto;
    height: 250px;
    padding: 50px;
  }
}
@media (max-width: 575.98px) {
  .loading-wrapper.collapse {
    padding: 50px 25px;
  }
}

.is-home .layout-wrapper,
.is-home .site-main {
  height: 100%;
}

.content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 650px;
}
@media (max-width: 767.98px) {
  .content-wrapper {
    flex-direction: column;
    height: auto;
  }
}

.side-content {
  background-color: var(--sidebar-bg);
  color: var(--sidebar-color);
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-shrink: 0;
  height: 100%;
  width: 30%;
  min-width: 400px;
  padding: 30px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.side-content_logo {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-content_logo img {
  width: 250px;
}
@media (max-width: 991.98px) {
  .side-content_logo img {
    width: 190px;
  }
}
@media (max-width: 767.98px) {
  .side-content_logo img:last-child {
    width: 350px;
  }
}
.side-content_bottom,
.side-content .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.side-content .social-links a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.side-content .social-links a:hover {
  transform: scale(0.9);
}
.side-content .social-links img {
  width: 28px;
  height: auto;
  margin: 0;
}
.side-content .policy-links {
  padding: 15px 0px 15px 18px;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--secondary-color);
}
.side-content .policy-links a {
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.side-content .policy-links a:hover {
  color: var(--secondary-color);
}
@media (max-width: 991.98px) {
  .side-content {
    min-width: 300px;
  }
  .side-content_bottom {
    flex-wrap: wrap;
  }
  .side-content .policy-links {
    padding: 0;
    border-left: 0;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .side-content {
    padding: 50px;
    width: 100%;
    min-width: auto;
    height: 250px;
  }
  .side-content_bottom {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .side-content {
    padding: 50px 25px;
  }
}

.main-content {
  flex: auto;
  height: 100%;
  overflow: auto;
  padding: 70px;
}
.main-content_heading {
  margin-bottom: 25px;
}
.main-content_heading p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  max-width: 900px;
}
.main-content_heading p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .main-content_heading p {
    font-size: 16px;
  }
}
.main-content_bottom {
  margin-top: 40px;
}
.main-content_bottom,
.main-content .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.main-content .social-links a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.main-content .social-links a:hover {
  transform: scale(0.9);
}
.main-content .social-links img {
  width: 24px;
  height: auto;
  margin: 0;
}
.main-content .policy-links {
  padding: 12px 0px 12px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--secondary-color);
}
.main-content .policy-links a {
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-content .policy-links a:hover {
  color: var(--secondary-color);
}
@media (max-width: 1199.98px) {
  .main-content {
    padding: 70px 50px;
  }
}
@media (max-width: 767.98px) {
  .main-content {
    padding: 50px;
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .main-content {
    padding: 50px 25px;
  }
}

.contact-form-wrapper {
  position: relative;
}

.contact-form_heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.contact-form_heading-icon {
  width: 64px;
  height: auto;
}
.contact-form_heading-content .contact-form_title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.contact-form_heading-content p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}
.contact-form_heading-content p a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-form_heading-content p a:hover {
  color: var(--secondary-color);
}
.contact-form_message {
  display: none;
}
.contact-form_message.active {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 5px 5px 5px 17px;
  border-left: 3px solid;
}
.contact-form_message[data-status=success] {
  color: var(--secondary-color);
}
.contact-form_message[data-status=error] {
  color: var(--error-color);
}
.contact-form_body {
  max-width: 400px;
}
.contact-form .form-cta .form-submit-btn {
  width: 100%;
}

.loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  display: none;
}
.loader-wrapper.active {
  display: flex;
}
.loader-wrapper .loader {
  border: 12px solid var(--light-gray);
  border-top: 12px solid var(--secondary-color);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 10px 15px;
  font-family: var(--primary-font-family);
  font-size: 16px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  box-shadow: none;
  outline-color: transparent;
  transition: all 0.3s ease;
}
.form-input:hover, .form-input:focus, .form-input:active {
  outline-color: var(--secondary-color);
}

.btn {
  display: block;
  padding: 10px 15px;
  font-family: var(--primary-font-family);
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: var(--secondary-color);
}
.btn.btn-outline-primary {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}
.btn.btn-outline-primary:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: var(--overlay-z-index);
}

/* Popup box */
.popup {
  background: var(--popup-bg);
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeIn 0.3s ease;
  overflow: hidden;
}
.popup-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--default-border-color);
}
.popup-heading .close {
  text-decoration: none;
  color: inherit;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-heading .close img {
  width: 24px;
  height: 24px;
}
.popup-heading .close:hover {
  transform: scale(0.9);
}
.popup-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.popup-body {
  padding: 15px 20px;
  max-height: 500px;
  overflow: auto;
}
@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#privacyPopup .popup {
  max-width: 900px;
  text-align: left;
}
#privacyPopup h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 7px;
}
#privacyPopup p,
#privacyPopup div {
  margin-bottom: 20px;
}
#privacyPopup a {
  text-decoration: none;
  color: var(--secondary-color);
}
#privacyPopup ul {
  margin: 7px 0;
}
#privacyPopup ul:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hide-mobile {
    display: none !important;
  }
}/*# sourceMappingURL=theme.css.map */