/* ------- VARIABLES -------- */
@font-face {
  font-family: "PPTelegraf Regular";
  src: url(../fonts/PPTelegraf-Regular.otf);
}
/* ------- MAIN INFO -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "PPTelegraf Regular", sans-serif;
  font-weight: 300;
  color: #E4E4E4;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: "PPTelegraf Regular", sans-serif;
  font-weight: 300;
  color: #E4E4E4;
  font-size: 16px;
  background-color: black;
}

/* ------- TITLES, TEXTS -------- */
.text-1 {
  font-size: 0.75rem;
}

.text-2 {
  font-size: 0.875rem;
}

.text-3 {
  font-size: 1rem;
}

.text-4 {
  font-size: 1.25rem;
}

.text-5 {
  font-size: 1.5rem;
}

.text-6 {
  font-size: 2rem;
}

.text-7 {
  font-size: 2.5rem;
}

.text-8 {
  font-size: 3rem;
}

.text-9 {
  font-size: 4rem;
}

.text-10 {
  font-size: 4.5rem;
}

.fw-600 {
  font-weight: 600;
}

.fw-200 {
  font-weight: 200;
}

.text-black {
  color: black;
}

.text-white {
  color: #E4E4E4 !important;
}

.text-white-05 {
  color: rgba(228, 228, 228, 0.5019607843);
}

.text-red {
  color: #F44601;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.text-editor p {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
}
.text-editor h2 {
  font-size: 2.5rem;
  margin-top: 3rem;
}

.text-editor a {
  color: #F44601;
  text-decoration: underline;
}

.line-h-heading {
  line-height: 1.2;
}

/* ------- BACKGROUNDS -------- */
.bg-neat {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-repeat {
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
}

.bg-position-top-start {
  background-position: left top;
}

.bg-position-bottom-end {
  background-position: bottom right;
}

.bg-white {
  background-color: #E4E4E4 !important;
}

.bg-white-darker {
  background-color: #D8D8D5 !important;
}

.bg-black {
  background-color: black;
}

.bg-grad {
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.48) 83%, rgb(0, 0, 0) 100%);
}

/* -----  BORDERS, SHADOWS AND OTHER  ----- */
.border-red-05 {
  border-color: rgba(244, 70, 1, 0.5019607843) !important;
}

.border-red-035 {
  border-color: rgba(244, 70, 1, 0.3490196078) !important;
}

.border-red-015 {
  border-color: rgba(244, 70, 1, 0.1490196078) !important;
}

.rounded-04 {
  border-radius: 4px;
}

.rounded-08 {
  border-radius: 8px;
}

.rounded-08-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.border-08-bottom {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.border-roundedends {
  border-radius: 14px;
  padding-left: 16px;
  padding-right: 16px;
  border-bottom: 0px;
  border-top: 0px;
}

.border-roundedends-inner {
  background-color: black;
  transform: scale(1.02);
}

.bg-white .border-roundedends-inner {
  background-color: #E4E4E4;
}

.bg-white-darker .border-roundedends-inner {
  background-color: #D8D8D5;
}

.bordered-col:last-child {
  border-right: 0 !important;
}

/* ------- NAVBAR -------- */
.navbar-brand img {
  width: 160px;
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #D8D8D5;
}
.nav-link:hover {
  color: #D8D8D5;
}

/* ------- HEADER -------- */
/* ------- FOOTER -------- */
/* ------- BUTTONS -------- */
.btn {
  min-width: 150px;
  border-radius: 4px;
  text-transform: uppercase;
  padding: 10px 18px;
}

.btn-red {
  background-color: #F44601;
  color: black;
  padding: 10px 36px;
}

.btn-wrapper:hover .btn-red {
  background-color: #E4E4E4;
}

.btn-white {
  background-color: #E4E4E4;
  border-radius: 4px;
  color: black;
  padding: 10px 18px;
  transition: background-color 0.3s ease;
}

.btn-wrapper:hover .btn-white {
  background-color: #F44601;
}

.btn-arrow {
  background-color: #E4E4E4;
  border-radius: 4px;
  padding: 10px 18px;
}

.btn-arrow svg {
  transition: transform 0.25s ease;
  transform-origin: center;
}

.btn-wrapper:hover .btn-arrow svg {
  transform: rotate(45deg);
}

.button-style-none {
  border: none !important;
  background: transparent !important;
}

.btn:active,
input[type="button"]:active {
  outline: none !important;
  background-color:#F44601 !important;
  color: black !important;
}

.btn:focus,
input[type="button"]:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

a {
  display: inline-flex;
}

/* ------- FORMS -------- */
.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 70, 1, 0.5019607843);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  color: #E4E4E4;
  font-size: 0.875rem;
}
.form-control::-moz-placeholder {
  opacity: 0.5;
}
.form-control::placeholder {
  opacity: 0.5;
}

.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border-color: rgba(244, 70, 1, 0.5019607843);
  color: #E4E4E4;
}
.form-control:focus::-moz-placeholder {
  opacity: 0.75;
}
.form-control:focus::placeholder {
  opacity: 0.75;
}

.form-check-input {
  background: transparent;
  border-color: rgba(244, 70, 1, 0.5019607843) !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: rgba(244, 70, 1, 0.5019607843) !important;
  border-color: rgba(244, 70, 1, 0.5019607843) !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-check-label {
  color: rgba(228, 228, 228, 0.5019607843);
}

::-moz-placeholder {
  color: #E4E4E4 !important;
}

::placeholder {
  color: #E4E4E4 !important;
}

:-ms-input-placeholder {
  color: #E4E4E4 !important;
}

::-ms-input-placeholder {
  color: #E4E4E4 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #E4E4E4;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

/* =========================================
   FLUENT FORMS -> MATCH YOUR BOOTSTRAP STYLE
   Targets actual markup: .frm-fluent-form, .ff-el-form-control, etc.
   ========================================= */

form.frm-fluent-form .ff-el-form-control {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(244, 70, 1, 0.5019607843) !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: #E4E4E4 !important;
  font-size: 1rem !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Placeholder */
form.frm-fluent-form .ff-el-form-control::placeholder {
  opacity: 0.5 !important;
  color: #E4E4E4 !important;
}

/* Focus */
form.frm-fluent-form .ff-el-form-control:focus {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: rgba(244, 70, 1, 0.5019607843) !important;
  color: #E4E4E4 !important;
}

form.frm-fluent-form .ff-el-form-control:focus::placeholder {
  opacity: 0.75 !important;
}

/* Groups spacing (Bootstrap-ish) */
form.frm-fluent-form .ff-el-group {
  margin-bottom: 1rem !important;
}

/* Name field two columns: Fluent uses table-like layout */
form.frm-fluent-form .ff-name-field-wrapper .ff-t-container {
  width: 100%;
}

form.frm-fluent-form .ff-name-field-wrapper .ff-t-cell {
  padding-right: 0.75rem;
}

form.frm-fluent-form .ff-name-field-wrapper .ff-t-cell:last-child {
  padding-right: 0;
}

/* Remove any Fluent background / borders around wrappers if present */
form.frm-fluent-form .ff-el-input--content {
  background: transparent !important;
  box-shadow: none !important;
}

/* Autofill */
form.frm-fluent-form input:-webkit-autofill,
form.frm-fluent-form input:-webkit-autofill:hover,
form.frm-fluent-form input:-webkit-autofill:focus,
form.frm-fluent-form textarea:-webkit-autofill,
form.frm-fluent-form select:-webkit-autofill {
  -webkit-text-fill-color: #E4E4E4 !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

/* Validation message (Fluent uses different classes depending on settings) */
form.frm-fluent-form .ff-el-error,
form.frm-fluent-form .error,
form.frm-fluent-form .ff-message-errors,
form.frm-fluent-form .ff-error-msg {
  color: rgba(244, 70, 1, 0.8) !important;
  font-size: 0.75rem !important;
  margin-top: 0.25rem !important;
}

form.frm-fluent-form .ff_submit_btn_wrapper .ff-btn.ff-btn-submit {
  background: #fff !important;
  color: #000 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 0.8rem 1.25rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
}

/* Optional hover */
form.frm-fluent-form .ff_submit_btn_wrapper .ff-btn.ff-btn-submit:hover {
  opacity: 0.9 !important;
  background-color: #F44601!important;
}


form.frm-fluent-form .ff-el-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ff-el-form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(244, 70, 1, 0.5019607843) !important;
  background: transparent;
  cursor: pointer;
  position: relative;
}


/* checkmark */
.ff-el-form-check-input:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}




/* Text next to checkbox */
form.frm-fluent-form .ff_t_c p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  padding-left: 10px;
  color: rgba(228, 228, 228, 0.5019607843);
}

/* Error state */
form.frm-fluent-form .ff-el-is-error .ff-el-form-check-input {
  border-color: rgba(244, 70, 1, 0.9) !important;
}




/* ------- POSITIONING -------- */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.min-h-70vh {
  min-height: 70vh;
}

.min-h-80vh {
  min-height: 80vh;
}

.min-h-90vh {
  min-height: 90vh;
}

.py-20vh {
  padding-top: 20vh;
  padding-bottom: 20vh;
}

.my-sec {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mb-sec {
  margin-bottom: 50px;
}

.py-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pb-sec {
  padding-bottom: 50px;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

/* ------- OTHERS -------- */
.lang-switcher {
  font-size: 1.25rem;
}
.lang-switcher .dropdown-toggle {
  color: #E4E4E4;
}
.lang-switcher .dropdown-menu {
  background: transparent;
  margin-left: 20px !important;
  padding: 0;
  min-width: unset;
}
.lang-switcher .dropdown-item {
  color: #E4E4E4;
  padding-left: 5px;
  padding-right: 5px;
}
.lang-switcher .dropdown-item:hover {
  background: transparent;
  color: #E4E4E4;
}
.lang-switcher .dropdown-toggle::after {
  border: none !important;
  margin-left: 0.5rem;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  display: inline-block;
  content: "";
  background-image: url(../img/arrow-down.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.modal-backdrop {
  display: none;
}

/* ------- ACTIONS -------- */
.pointer {
  cursor: pointer;
}

a,
a:hover {
  text-decoration: none;
}

/* ------- ACTIONS -------- */
.container-fluid {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* ------- QUERIES -------- */
@media (max-width: 991px) {
  .bordered-col:nth-child(even) {
    border-right: 0 !important;
  }
  .bg-zoom-mob {
    background-size: 250%;
  }

  .min-h-70vh-mob {
    min-height: 60vh;
  }

}
@media (min-width: 768px) {
  .w-md-50 {
    width: 50%;
  }

  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .position-lg-absolute {
    position: absolute;
  }
  .text-lg-1 {
    font-size: 0.75rem;
  }
  .text-lg-2 {
    font-size: 0.875rem;
  }
  .text-lg-3 {
    font-size: 1rem;
  }
  .text-lg-4 {
    font-size: 1.25rem;
  }
  .text-lg-5 {
    font-size: 1.5rem;
  }
  .text-lg-6 {
    font-size: 2rem;
  }
  .text-lg-7 {
    font-size: 2.5rem;
  }
  .text-lg-8 {
    font-size: 3rem;
  }
  .text-lg-9 {
    font-size: 4rem;
  }
  .text-lg-10 {
    font-size: 4.5rem;
  }
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 4rem;
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-75 {
    width: 75%;
  }
  .my-sec {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mb-sec {
    margin-bottom: 90px;
  }
  .py-sec {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pb-sec {
    padding-bottom: 90px;
  }
  .py-lg-sec {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .navbar-brand img {
    width: 160px;
  }
  .border-roundedends {
    border-radius: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .form-control {
    font-size: 1rem;
  }
  .translate-y-lg-50 {
    transform: translateY(50%);
  }
  .lang-switcher {
    font-size: 1rem;
  }

  .col-lg-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}/*# sourceMappingURL=style.css.map */

@media (min-width: 1440px) {
  .text-xl-7 {
    font-size: 2.5rem;
  }
  .translate-y-xl-50 {
    transform: translateY(50%);
  }

  .container-fluid {
    max-width: 1440px;
  }
}

@media (min-width: 1800px) {
  .container-fluid {
    max-width: 1800px;
  }
}