:root {
  --black-color: #313131 !important;
  --white-color: #fff !important;
  --grey-color: #676767;
  --primary-color: #5057E6;
  --bg-color: #F6F6F6;
  --font-family: "Plus Jakarta Sans", serif;
  --font-awesome: "Font Awesome 5 Free";
  --font-size-default: 16px;
  --font-weight-default: 400;
  --font-weight-theme: 700;
  --header-height: 110px;
  --button-height: 58px; }

body {
  background-color: var(--bg-color);
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: 1.5; }

h1,
h2 {
  font-family: var(--font-family);
  font-size: 57px;
  font-weight: var(--font-weight-theme);
  line-height: 1;
  letter-spacing: -1.7px; }
  @media (max-width: 991px) {
    h1,
    h2 {
      font-size: 46px; } }
  @media (max-width: 767px) {
    h1,
    h2 {
      font-size: 38px; } }
  @media (max-width: 575px) {
    h1,
    h2 {
      font-size: 30px; } }

h5 {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: var(--font-weight-theme);
  line-height: 1;
  letter-spacing: -0.5px; }
  @media (max-width: 991px) {
    h5 {
      font-size: 19px; } }
  @media (max-width: 575px) {
    h5 {
      font-size: 17px; } }

h6 {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.9px;
  text-transform: uppercase; }

p,
li {
  color: var(--grey-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: 1.5;
  letter-spacing: 0.1px; }

a {
  color: var(--primary-color); }

input[type=text],
input[type=email],
select,
textarea {
  display: inline-block;
  width: 100%;
  background-color: transparent;
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  border-top: none !important;
  border-bottom: 1px solid #CECDCD;
  border-left: none !important;
  border-right: none !important;
  padding-block: 13px;
  outline: none; }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
    text-transform: capitalize; }

input[type=checkbox] {
  width: 25px;
  height: 25px;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #CECDCD;
  border-radius: 3px;
  cursor: pointer;
  appearance: none; }
  input[type=checkbox]:checked {
    background-image: url("../img/check.svg");
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 2px var(--primary-color); }

textarea {
  height: 100px;
  resize: none; }

label {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
  cursor: pointer; }

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 99;
  transition: all .25s ease; }
  #loader::before, #loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%); }
  #loader::before {
    animation: page-loader 1.5s infinite; }
  #loader::after {
    animation: page-loader 1.5s infinite .75s; }
  #loader.loaded {
    opacity: 0;
    visibility: hidden; }

@keyframes page-loader {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1; }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0; } }
.button {
  display: inline-flex;
  align-items: center;
  min-height: var(--button-height);
  background-color: var(--black-color);
  color: var(--white-color);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  border: 1px solid transparent;
  border-radius: 10px;
  padding-bottom: 1px;
  padding-inline: 35px;
  cursor: pointer;
  outline: none;
  transition: all .25s ease; }
  .button:hover {
    background-color: #3d3d3d;
    border-color: #3d3d3d; }

.title {
  --overlay-opacity: .18;
  display: flex;
  align-items: center;
  height: 420px;
  padding-top: calc(var(--header-height) * .25); }
  @media (max-width: 575px) {
    .title {
      height: 300px; } }

#launcher,
.header_lang_top {
  z-index: 9 !important; }
  #launcher *,
  .header_lang_top * {
    color: var(--black-color) !important; }

@media (min-width: 992px) {
  .pl-80 {
    padding-left: 50px; }

  .pr-80 {
    padding-right: 50px; } }
@media (min-width: 1200px) {
  .pl-80 {
    padding-left: 80px; }

  .pr-80 {
    padding-right: 80px; } }
@media (max-width: 991px) {
  .d-flex.columns-2 {
    --columns: 1; }
    .d-flex.columns-2 .item-text {
      order: 1; }
    .d-flex.columns-2 .item-img {
      order: 2; }

  .pt-100 {
    padding-top: 70px; }

  .pb-100 {
    padding-bottom: 70px; } }
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9; }
  #header .button {
    --button-height: 48px;
    font-size: 14px;
    padding-inline: 32px; }
  #header .content .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: var(--header-height); }
    #header .content .nav ul {
      display: flex;
      align-items: center;
      gap: 35px; }
      @media (max-width: 575px) {
        #header .content .nav ul {
          gap: 20px; } }
      #header .content .nav ul a:not(.button) {
        position: relative;
        color: var(--black-color);
        font-family: var(--font-family);
        font-size: var(--font-size-default);
        font-weight: 500;
        line-height: 1.5;
        text-transform: capitalize; }
        #header .content .nav ul a:not(.button)::before {
          content: "";
          position: absolute;
          bottom: -6px;
          left: 0;
          width: 100%;
          height: 2px;
          background-color: var(--black-color);
          transform: scaleX(0);
          transform-origin: left;
          transition: transform .25s ease; }
      #header .content .nav ul li.active a:not(.button)::before,
      #header .content .nav ul a:not(.button):hover::before {
        transform: scaleX(100%); }

#footer {
  padding-bottom: 15px; }
  #footer p {
    font-size: 14px;
    text-align: center; }

#contact-page .section-1 .form-wrap form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }
  #contact-page .section-1 .form-wrap form > * {
    width: 100%; }
    @media (min-width: 576px) {
      #contact-page .section-1 .form-wrap form > *:nth-of-type(1), #contact-page .section-1 .form-wrap form > *:nth-of-type(2) {
        width: calc(50% - 10px); } }

#subscription-page .section-1 .form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 20px; }
#subscription-page .section-1 .form-wrap .unsubscribe-check-wrapper {
  display: flex;
  justify-content: space-between;
  border: 1px solid transparent; }
  #subscription-page .section-1 .form-wrap .unsubscribe-check-wrapper .text-wrap {
    width: calc(100% - 25px - 10px);
    color: var(--grey-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-default);
    line-height: 1.5;
    text-transform: none; }

#faq-page .section-1 .accordion-list {
  border-top: 1px solid #d5d8dc; }
#faq-page .section-1 .accordion {
  border-bottom: 1px solid #d5d8dc;
  cursor: pointer; }
  #faq-page .section-1 .accordion-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-block: 20px; }
    #faq-page .section-1 .accordion-title .text-wrap {
      max-width: calc(100% - 35px); }
    #faq-page .section-1 .accordion-title .icon-wrap svg {
      width: 22px;
      height: 22px; }
    #faq-page .section-1 .accordion-title .icon-wrap .open {
      display: none; }
  #faq-page .section-1 .accordion.active .accordion-title .icon-wrap .open {
    display: block; }
  #faq-page .section-1 .accordion.active .accordion-title .icon-wrap .close {
    display: none; }
  #faq-page .section-1 .accordion-description {
    height: 0;
    overflow: hidden;
    transition: height .3s ease; }
    #faq-page .section-1 .accordion-description p:first-letter {
      text-transform: uppercase; }
    @media (max-width: 767px) {
      #faq-page .section-1 .accordion-description p {
        font-size: 14px; } }
  #faq-page .section-1 .accordion-content {
    padding-bottom: 20px; }
