/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/main.scss ***!
  \*****************************************************************************************************************************************/

@charset "UTF-8";

/*** LTR websites ***/

/*** RTL websites ***/

/**
 * CSS Syntax: flex-start|flex-end|center|space-between|space-around|initial|inherit
 */

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url(../.././assets/fonts/fa-brands-400.eot);
  src: url(../.././assets/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(../.././assets/fonts/fa-brands-400.woff2) format("woff2"), url(../.././assets/fonts/fa-brands-400.woff) format("woff"), url(../.././assets/fonts/fa-brands-400.ttf) format("truetype"), url(../.././assets/images/fa-brands-400.svg#fontawesome) format("svg");
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../.././assets/fonts/fa-light-300.eot);
  src: url(../.././assets/fonts/fa-light-300.eot?#iefix) format("embedded-opentype"), url(../.././assets/fonts/fa-light-300.woff2) format("woff2"), url(../.././assets/fonts/fa-light-300.woff) format("woff"), url(../.././assets/fonts/fa-light-300.ttf) format("truetype"), url(../.././assets/images/fa-light-300.svg#fontawesome) format("svg");
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../.././assets/fonts/fa-regular-400.eot);
  src: url(../.././assets/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(../.././assets/fonts/fa-regular-400.woff2) format("woff2"), url(../.././assets/fonts/fa-regular-400.woff) format("woff"), url(../.././assets/fonts/fa-regular-400.ttf) format("truetype"), url(../.././assets/images/fa-regular-400.svg#fontawesome) format("svg");
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../.././assets/fonts/fa-solid-900.eot);
  src: url(../.././assets/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../.././assets/fonts/fa-solid-900.woff2) format("woff2"), url(../.././assets/fonts/fa-solid-900.woff) format("woff"), url(../.././assets/fonts/fa-solid-900.ttf) format("truetype"), url(../.././assets/images/fa-solid-900.svg#fontawesome) format("svg");
}

/* Generated by Font Squirrel (https://www.fontsquirrel.com) on August 24, 2016 */

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes rollRight {
  0% {
    right: 50vw;
    transform: rotate(-45deg);
    opacity: 0.2;
  }

  100% {
    right: 0;
    transform: rotate(0);
    opacity: 1;
  }
}

.roll_right {
  position: relative;
  animation: rollRight 2s forwards;
}

@keyframes rollLeft {
  0% {
    right: -50vw;
    transform: rotate(45deg);
    opacity: 0.2;
  }

  100% {
    right: 0;
    transform: rotate(0);
    opacity: 1;
  }
}

.roll_left {
  position: relative;
  animation: rollLeft 2s forwards;
}

.move-bottom-animation {
  opacity: 0;
}

.show_from_bottom {
  animation: show_from_bottom 1s ease-in-out;
  opacity: 1;
}

@keyframes show_from_bottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hide_from_bottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(20px);
    opacity: 0;
  }
}

.show_img {
  animation: show_img 1s forwards;
}

.show_img_parent {
  display: grid;
  place-items: center;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  animation: rollFromLeft 1s ease-in-out forwards;
}

@keyframes rollFromLeft {
  from {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(10px);
    opacity: 1;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes show_img {
  from {
    transform: scale(1.5);
  }

  to {
    transform: scale(1);
  }
}

.fade-in-animation {
  transition: 1s opacity ease-in-out;
}

@keyframes heightChange {
  from {
    height: 0;
  }

  to {
    height: max-content;
  }
}

@keyframes move_right {
  0% {
    right: 50vw;
    opacity: 0;
  }

  100% {
    right: 0;
    opacity: 1;
  }
}

.move_right {
  position: relative;
  animation: move_right 1.4s forwards;
}

@keyframes move_left {
  0% {
    right: -50vw;
    opacity: 0;
  }

  100% {
    right: 0;
    opacity: 1;
  }
}

.move_left {
  position: relative;
  animation: move_left 1.4s forwards;
}

.welcome-animation:before,
.welcome-animation:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
}

.welcome-animation:before {
  height: 0%;
  background: #F1E4E3;
  z-index: 900;
  animation: top_bottom 1.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.welcome-animation:after {
  background: #ffffff;
  animation: fadeOutWelcome 1.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

@keyframes fadeOutWelcome {
  0% {
    height: 100%;
    opacity: 1;
    z-index: 901;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    z-index: -10;
  }
}

@keyframes top_bottom {
  50% {
    height: 100%;
  }

  100% {
    top: auto;
    bottom: 0;
  }
}

.inline-block {
  display: inline-block;
}

.none {
  display: none;
  overflow: hidden;
  position: relative;
}

.desktop {
  display: none !important;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.bold {
  font-weight: bold;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.fadeIn {
  animation: fadeIn 1s ease-in-out;
}

.menu {
  padding: 0;
}

.menu .menu-item {
  list-style: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  box-shadow: 0 2px 52px 0 rgba(0, 0, 0, 0.5);
  width: calc(100% - 30px);
  text-align: right;
  max-width: 526px;
  margin: 0;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
  opacity: 0;
  outline: 0;
  padding: 20px 20px 40px 20px;
  position: relative;
  transform: translate(0, -25%);
}

.active .modal {
  opacity: 1;
  transform: translate(0, 0);
}

.modal__body {
  padding: 10px 30px 40px;
}

.modal__exit-button {
  border: 0;
  display: inline-flex;
  font-size: 40px;
}

.modal__exit-button svg {
  height: 28px;
  width: 28px;
}

.modal__exit-button svg g,
.modal__exit-button svg path {
  fill: rgba(120, 120, 120, 0.24);
}

.modal__exit-image {
  width: 15px;
}

.modal__header {
  margin-bottom: 12px;
  display: block;
  text-align: end;
}

.modal__content {
  margin-bottom: 12px;
}

.modal__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #0D1D2E;
}

.modal__sub-title {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.modal__label {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.modal__input {
  margin-bottom: 24px;
  width: 100%;
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  font-size: 18px;
  padding: 6px 13px;
}

.modal__submit {
  padding: 6px 13px;
  width: 100% !important;
}

.modal-wrapper {
  position: fixed;
  z-index: 9;
  inset: 0;
  background-color: rgba(120, 120, 120, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  background-clip: padding-box;
  background-color: #ffffff;
  outline: 0;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.otgs-development-site-front-end {
  display: none !important;
}

* {
  box-sizing: border-box;
}

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

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.bg-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.single-text-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-primary {
  border: 1px solid #ffffff;
  background: #0D1D2E;
  height: 44px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  display: inline-flex;
}

body {
  position: relative;
  width: 100%;
  height: auto;
  color: #787878;
  background-color: #ffffff;
  direction: rtl;
  font-family: "Poppins", serif;
  line-height: 1.389;
  overflow: visible;
  overflow-x: hidden;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  body {
    font-variant-ligatures: none;
  }
}

body.rtl {
  font-family: "Noto Sans Hebrew", serif;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 0;
  background: none;
}

a {
  color: inherit;
  transition: color 0.2s;
  text-decoration: none;
  cursor: none;
}

a:hover,
a:focus {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[role=button] {
  cursor: pointer;
}

b,
strong {
  font-weight: 700;
}

picture {
  display: block;
}

section {
  padding-block: 40px;
  margin-inline: 16px;
}

section.spacious {
  padding-block: 60px;
}

p {
  line-height: 1.4;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 991px) {
  .container.container--small {
    padding-inline: 20px;
  }
}

.breadcrumbs {
  font-size: 12px;
  font-weight: 400;
  color: #0D1D2E;
}

.breadcrumbs > span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs .breadcrumb_last {
  font-weight: 700;
}

.rtl .breadcrumbs img {
  transform: rotate(-180deg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 300;
  line-height: normal;
  color: #B69C75;
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: inherit;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 0;
}

h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
  font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
}

h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}

h1,
.h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}

h2,
.h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.6px;
  text-transform: capitalize;
}

h3,
.h3 {
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 2rem;
}

h5,
.h5 {
  font-size: 1.6rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  display: block;
  letter-spacing: normal;
  font-style: normal;
  white-space: normal;
  margin-block: 0;
}

.lead {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}

small,
.small {
  font-size: 80%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

ul,
ol {
  margin-block: 0;
}

.list-unstyled {
  padding-right: 0px;
  padding-left: 0px;
  list-style: none;
}

.list-inline {
  padding-right: 0px;
  padding-left: 0px;
  list-style: none;
  margin-right: -5px;
}

.list-inline > li {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 2rem;
}

dt,
dd {
  line-height: 1.389;
}

dt {
  font-weight: bold;
}

dd {
  margin-right: 0;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted currentColor;
}

blockquote {
  margin: 0 0 2rem;
  font-size: inherit;
  border-right: 5px solid;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.389;
  color: inherit;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

address {
  margin-bottom: 2rem;
  font-style: normal;
  line-height: 1.389;
}

.footer {
  color: #0D1D2E;
  position: relative;
  background-color: #ffffff;
  padding: 20px;
}

.footer__bottom,
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-block: 20px;
  font-size: 12px;
}

.footer .main-menu {
  display: none;
}

.footer__top {
  border-bottom: 1px solid #E7E7E7;
}

.footer__copyrights {
  font-weight: 100;
  text-align: center;
}

.footer__credit {
  font-weight: 100;
}

.footer .menu {
  display: flex;
  gap: 1rem;
}

body .gform_heading {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

body .gform_title {
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 50px;
  /* 125% */
  letter-spacing: -0.8px;
  text-transform: capitalize;
}

body .gform_description {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

body .gform_wrapper.gravity-theme .gfield input.large,
body .gform_wrapper.gravity-theme .gfield textarea,
body .gform_wrapper.gravity-theme .gfield select.large {
  border: 1px solid #DCE1E6;
  background: var(--Grey-1, #F8F8F8);
  display: flex;
  padding: 12px 20px;
  align-items: center;
  flex: 1 0 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #0D1D2E;
  min-height: 48px;
  margin-inline: 0;
}

body .gform_wrapper.gravity-theme .gfield input.large::placeholder,
body .gform_wrapper.gravity-theme .gfield textarea::placeholder,
body .gform_wrapper.gravity-theme .gfield select.large::placeholder {
  color: #0D1D2E;
}

body .gform_wrapper.gravity-theme .gfield input.large[aria-invalid=true],
body .gform_wrapper.gravity-theme .gfield textarea[aria-invalid=true],
body .gform_wrapper.gravity-theme .gfield select.large[aria-invalid=true] {
  border-color: #c02b0a;
}

body .gform_wrapper.gravity-theme #field_submit,
body .gform_wrapper.gravity-theme .gform_footer {
  border: 1px solid #ffffff;
  background: #0D1D2E;
  height: 44px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  display: inline-flex;
  margin-top: 20px;
}

body .gform_wrapper.gravity-theme #field_submit > input#gform_submit_button_1,
body .gform_wrapper.gravity-theme .gform_footer > input#gform_submit_button_1 {
  line-height: 1;
  min-height: auto;
  margin: 0;
}

body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin: 0;
  line-height: 1;
}

body .gform_wrapper .gfield--type-fileupload .gfield_description:not(.gfield_validation_message) {
  display: none;
}

body .gform_wrapper .gfield--type-fileupload .gfield_label {
  margin: 0;
  position: absolute;
  inset: 0;
  padding: 12px 20px;
  align-items: center;
  flex: 1 0 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  border: 1px solid #DCE1E6;
  background: var(--Grey-1, #F8F8F8);
  color: #0D1D2E;
  pointer-events: none;
  z-index: 1;
}

body .gform_wrapper .gfield--type-fileupload .gfield_label:before {
  content: "";
  position: absolute;
  inset-block: 12px;
  inset-inline-end: 20px;
  background-image: url(../.././assets/images/file.svg);
  width: 24px;
  background-repeat: no-repeat;
}

body .gform_wrapper .gfield--type-fileupload input[type=file]::file-selector-button {
  display: none;
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px;
}

body .gform_wrapper.gravity-theme .gfield {
  position: relative;
}

body .gform_wrapper.gravity-theme .gfield.gfield_visibility_hidden {
  position: absolute;
}

body .gform_wrapper.gravity-theme .gform_validation_errors,
body .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  position: absolute;
  top: 100%;
  background: transparent;
  border: 0;
  font-size: 12px;
  padding-inline: 4px;
  margin-top: 2px !important;
  padding: 0;
}

body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: 1;
  min-height: auto;
}

body .gform_wrapper.gravity-theme .gform_fileupload_rules,
body .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

.dropdown {
  overflow: scroll;
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 3;
  background-color: #ffffff;
  top: 0;
}

.dropdown__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-bottom: 40px;
  margin-top: 63px;
}

.dropdown__menu {
  padding-bottom: 16px;
}

.dropdown .background-box {
  height: 100%;
  align-self: end;
  margin-inline: auto;
  width: calc(100% - 32px);
}

.dropdown .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  color: #0D1D2E;
}

.dropdown .menu-item a {
  padding: 10px 16px;
  display: block;
  width: 100%;
}

.dropdown .menu-item.big {
  font-size: 30px;
}

.dropdown .menu-item.mb-52 {
  margin-bottom: 12px;
}

.rtl .dropdown .menu-item:before {
  transform: translateX(20px) rotate(-180deg);
}

.header .menu {
  display: flex;
  gap: 1rem;
}

.header .sub-menu {
  display: none;
  opacity: 0;
  transition: 1s ease-in-out;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 20px 0 0;
}

.header .sub-menu .menu-item {
  width: 260px;
  text-transform: capitalize;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 2px;
  font-size: 14px;
  position: relative;
  background-color: #787878;
}

.header .sub-menu .menu-item.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  pointer-events: none;
  opacity: 0.5;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f054";
}

.header .menu-item-has-children {
  position: relative;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__lan {
  display: flex;
  gap: 32px;
  align-items: center;
  color: #0D1D2E;
}

.header__lan > .menu-item {
  display: none;
}

.header__navigator {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0D1D2E;
}

.header__lines {
  width: 32px;
}

.header__lines--line {
  background-color: #0D1D2E;
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  margin-block: 6px;
  transform-origin: right;
}

.header__lines--active-line {
  background-color: inherit;
}

.header .line-1 {
  margin-top: 0;
}

.header .line-2 {
  margin-bottom: 0;
}

.header__container {
  display: flex;
  align-items: center;
}

@keyframes top-mobile {
  0% {
    top: 0;
  }

  100% {
    top: 8px;
  }
}

@keyframes top-2-mobile {
  0% {
    top: 8px;
  }

  100% {
    top: 0;
  }
}

@keyframes bottom-mobile {
  0% {
    bottom: 0;
  }

  100% {
    bottom: 8px;
  }
}

@keyframes bottom-2-mobile {
  0% {
    bottom: 8px;
  }

  100% {
    bottom: 0;
  }
}

.active .line-1 {
  animation: cubic-bezier(1, 0, 0, 1) 0.4s top-mobile forwards;
}

.not-active .line-1 {
  animation: cubic-bezier(1, 0, 0, 1) 0.4s top-2-mobile forwards;
}

.active .line-2 {
  animation: cubic-bezier(1, 0, 0, 1) 0.4s bottom-mobile forwards;
}

.not-active .line-2 {
  animation: cubic-bezier(1, 0, 0, 1) 0.4s bottom-2-mobile forwards;
}

.active .line-m {
  animation: ease 0.4s fadeOut forwards;
}

.not-active .line-m {
  animation: ease 0.4s fadeIn forwards;
}

.video-background {
  inset: 0;
  object-fit: cover;
  background: #F1E4E3;
}

.video-background + .bg-absolute {
  opacity: 0.6;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  border-bottom: 1px solid #DCE1E6;
}

.accordion-item .accordion {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
  position: relative;
  text-align: start;
  padding: 32px 20px 32px 80px;
  color: #0D1D2E;
}

.accordion-item .accordion .active-text {
  display: none;
}

.accordion-item .accordion.active:after {
  transform: rotate(0deg);
  opacity: 0;
}

.accordion-item .accordion.active .active-text {
  display: block;
}

.accordion-item .accordion.active svg {
  transform: rotate(-90deg);
}

.rtl .accordion-item .accordion.active svg {
  transform: rotate(-270deg);
}

.accordion-item .accordion.active svg path {
  fill: #B27C7D;
}

.accordion-item .accordion.has-active-text.active > span:first-of-type {
  display: none;
}

.accordion-item .accordion svg {
  position: absolute;
  inset-block: 0;
  left: 16px;
  margin-block: auto;
  transform: rotate(0deg);
  transition: 0.3s transform ease-in-out;
}

.rtl .accordion-item .accordion svg {
  transform: rotate(-180deg);
}

.accordion-item .accordion-content {
  padding: 0 20px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.background-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 60px 20px;
  text-align: center;
}

.background-box__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.6px;
  max-width: 360px;
  margin-inline: auto;
  text-transform: capitalize;
}

.background-box__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  background: transparent;
  border: 0;
  position: static;
  display: inline-block;
  z-index: 1;
  padding: 0;
  height: auto;
  margin: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  display: block;
  font-size: 29px;
  font-family: inherit;
  background-image: url(../.././assets/images/long-arrow.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  z-index: 0;
  margin: 0;
}

.swiper-navigation {
  text-align: center;
  z-index: 2;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.swiper-navigation .swiper-button-next,
.swiper-navigation .swiper-button-prev {
  color: #0D1D2E;
  width: 60px;
  height: 18px;
}

.swiper-navigation .swiper-button-prev {
  transform: rotate(-180deg);
}

.rtl .swiper-navigation .swiper-button-prev {
  transform: rotate(0deg);
}

.rtl .swiper-navigation .swiper-button-next {
  transform: rotate(-180deg);
}

.swiper-navigation .swiper-button-next:after,
.swiper-navigation .swiper-button-prev:after {
  font-size: 25px;
}

.swiper .swiper-pagination {
  position: static;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  margin-inline: 8px;
  width: 10px;
  height: 10px;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #0D1D2E;
}