:root {
  --bs-primary: #FF6200;
  --bs-primary-rgb: 255, 98, 0;
  --bs-primary-dark: #D9000D;
  --bs-primary-light: #E74E00;
  --bs-primary-bg-subtle: rgba(var(--bs-primary-rgb), 0.3);
  --bs-primary-border-subtle: rgba(var(--bs-primary-rgb), 0.6);
  --bs-primary-text-emphasis: #fff;
  --header-offset-height: 178px;
  --bs-gray: #BFBFBF;
  --header-offset-height: 95px;
}
@media (min-width: 768px) {
  :root {
    --header-offset-height: 114px;
  }
}
@media (min-width: 992px) {
  :root {
    --header-offset-height: 167px;
  }
}

body {
  background: #000000;
  background: linear-gradient(132deg, rgb(0, 0, 0) 0%, rgb(90, 36, 0) 100%);
  background-size: 100%;
  --bs-body-color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

textarea {
  resize: none;
}

iframe {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.ff-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.ff-roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.text-underline {
  text-decoration: underline;
}

.fw-thin {
  font-weight: 100 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.fs-italic {
  font-style: italic;
}

.anchor-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 3;
}

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

.opacity-12 {
  opacity: 0.12 !important;
}

.fs-17px {
  font-size: 17px !important;
}

.fs-14px {
  font-size: 14px !important;
}

.text-gray {
  color: var(--bs-gray) !important;
}

@media (min-width: 768px) {
  .fs-md-17px {
    font-size: 17px !important;
  }
}
.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--bs-primary-light);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.2);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.content-section-row {
  position: relative;
}

.bg-img-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-img-fill._object-top img {
  object-position: top;
}
.bg-img-fill._object-right img {
  object-position: right;
}
.bg-img-fill._object-bottom img {
  object-position: bottom;
}
.bg-img-fill._object-left img {
  object-position: left;
}
.bg-img-fill + div {
  position: relative;
  z-index: 2;
}
.bg-img-fill img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.container-limited {
  max-width: 1920px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

body:not(:has(.full-page-slider)) .header-fixed-offset {
  height: var(--header-offset-height);
}

.navbar {
  background: linear-gradient(0deg, rgba(39, 77, 96, 0) 0%, rgb(10, 22, 25) 100%);
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1030;
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .navbar {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}
@media (min-width: 768px) {
  .navbar {
    padding-top: 24px;
  }
}
@media (min-width: 992px) {
  .navbar {
    padding-top: 44px;
  }
}
@media (min-width: 1600px) {
  .navbar .container-fluid {
    padding-left: 170px !important;
  }
}
.navbar .navbar-brand img {
  max-height: 60px;
}
@media (min-width: 768px) {
  .navbar .navbar-brand img {
    max-height: 70px;
  }
}
@media (min-width: 1400px) {
  .navbar .navbar-brand img {
    max-height: 90px;
  }
}
@media (min-width: 1600px) {
  .navbar .navbar-brand img {
    max-height: 103px;
  }
}
.navbar .navbar-controls, .navbar .nav-contact {
  align-self: flex-start;
  margin-top: 15px;
}
.navbar .nav {
  gap: 30px;
}
@media (min-width: 1200px) {
  .navbar .nav {
    gap: 50px;
  }
}
@media (min-width: 1400px) {
  .navbar .nav {
    gap: 70px;
  }
}
.navbar .nav-item .nav-link {
  position: relative;
  --bs-nav-link-color: #fff;
  --bs-nav-link-hover-color: #fff;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .navbar .nav-item .nav-link {
    font-size: 11px;
  }
}
@media (min-width: 1200px) {
  .navbar .nav-item .nav-link {
    font-size: 14px;
  }
}
.navbar .nav-item .nav-link:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: var(--bs-primary);
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  opacity: 0;
}
.navbar .nav-item .nav-link:after {
  content: "";
  width: 0;
  height: 5px;
  background: linear-gradient(224deg, rgb(231, 78, 0) 0%, rgb(217, 0, 13) 100%);
  clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0 100%);
  position: absolute;
  left: 1px;
  bottom: 2px;
  -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar .nav-item .nav-link:hover:after {
  width: calc(100% - 1px);
}
.navbar .nav-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-left: 16px;
}
@media (min-width: 768px) {
  .navbar .nav-contact {
    max-height: 30px;
  }
}
@media (min-width: 1400px) {
  .navbar .nav-contact {
    max-height: 70px;
  }
}
.navbar .contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .navbar .contact-info {
    gap: 25px;
  }
}
.navbar .contact-info .profile-photo {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  overflow: hidden;
}
.navbar .contact-info .profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.navbar .contact-info .contact-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 992px) {
  .navbar .contact-info .contact-text {
    font-size: 11px;
  }
}
@media (min-width: 1200px) {
  .navbar .contact-info .contact-text {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .navbar .contact-info .contact-text {
    font-size: 18px;
  }
}
.navbar .contact-menu {
  margin-top: 7px;
}
.navbar .sidebar-toggler {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.215;
  text-transform: uppercase;
  margin-right: 0;
  background-color: transparent;
  border: 0;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .sidebar-toggler .toggler-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 15px;
  height: 13px;
}
.navbar .sidebar-toggler .toggler-icon ._bar {
  width: 100%;
  height: 1px;
  background-color: var(--bs-primary);
}
.navbar .sidebar-toggler .toggler-icon ._bar._bar:nth-child(2) {
  width: calc(50% + 1px);
}

.drawer-backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1035;
  display: none;
}
.drawer-backdrop.active {
  display: block;
}

.menu-drawer {
  position: fixed;
  top: 0;
  z-index: 1039;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  transform: translateX(100%);
  max-width: 320px;
  transition: all ease 0.35s;
  padding: 28px 20px 20px;
  color: #fff;
  overflow: auto;
  height: 100%;
  font-size: 14px;
}
.menu-drawer .icon-close img {
  height: 20px;
  width: 20px;
}
@media (min-width: 768px) {
  .menu-drawer .icon-close img {
    height: 23px;
    width: 23px;
  }
}
@media (min-width: 992px) {
  .menu-drawer .icon-close img {
    height: 31px;
    width: 31px;
  }
}
.menu-drawer:after {
  position: absolute;
  bottom: 14px;
  left: 50%;
  content: "";
  background-image: url("../img/menu-watermark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 110px;
  height: 56px;
  transform: translateX(-50%);
  z-index: -1;
}
.menu-drawer.active {
  transform: translateX(0);
}
.menu-drawer .social-media {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: var(--bs-gray);
}
@media (min-width: 768px) {
  .menu-drawer .social-media {
    margin-top: 20px;
  }
}
.menu-drawer .social-media i {
  color: var(--bs-primary);
  font-size: 16px;
}
@media (min-width: 768px) {
  .menu-drawer .social-media i {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .menu-drawer .social-media i {
    font-size: 20px;
  }
}
.menu-drawer .social-media li + li {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .menu-drawer .social-media li + li {
    margin-top: 10px;
  }
}
.menu-drawer .menu-logo {
  max-width: 60px;
}
.menu-drawer .logo-top {
  margin-bottom: 40px;
}
.menu-drawer .mobile-nav {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
}
.menu-drawer .mobile-nav .nav-item:not(:first-child) {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .menu-drawer .mobile-nav .nav-item:not(:first-child) {
    margin-top: 10px;
  }
}
.menu-drawer .mobile-nav .nav-link {
  position: relative;
  padding: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.menu-drawer .mobile-nav .nav-link:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: var(--bs-primary);
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  opacity: 0;
}
.menu-drawer .top-desc {
  font-size: 12px;
}
@media (min-width: 992px) {
  .menu-drawer .top-desc {
    font-size: 17px !important;
  }
}
.menu-drawer p {
  margin-bottom: 10px;
}
.menu-drawer .contact-text {
  max-width: 264px;
}
.menu-drawer .text-address {
  max-width: 150px;
}
.menu-drawer .sidebar-quote {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}
.menu-drawer .user-image {
  position: relative;
  padding-bottom: 50px;
}
.menu-drawer .user-image .img-wrapper {
  position: absolute;
  top: -75px;
  right: -20px;
  overflow: hidden;
}
.menu-drawer .user-image .img-wrapper .img-round {
  position: relative;
  width: 140px;
  height: 110px;
  border-radius: 110px;
  overflow: hidden;
  right: -40px;
}
.menu-drawer .user-image .img-wrapper .img-round img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .menu-drawer {
    max-width: 420px;
    padding: 50px 30px;
    font-size: 16px;
  }
  .menu-drawer .social-media {
    margin-top: 32px;
  }
  .menu-drawer p {
    margin-bottom: 1rem;
  }
  .menu-drawer .sidebar-quote {
    font-size: 14px;
  }
  .menu-drawer .user-image .img-wrapper {
    top: -100px;
    right: -30px;
  }
  .menu-drawer .user-image .img-wrapper .img-round {
    width: 176px;
    height: 129px;
    right: -60px;
  }
}
@media (min-width: 992px) {
  .menu-drawer {
    padding: 50px 126px 115px 135px;
    max-width: 608px;
  }
  .menu-drawer:after {
    bottom: 52px;
    width: 195px;
    height: 93px;
  }
  .menu-drawer .logo-top {
    margin-bottom: 50px;
  }
  .menu-drawer .menu-logo {
    max-width: 212px;
  }
  .menu-drawer .user-image .img-wrapper {
    top: -100px;
    right: -126px;
  }
  .menu-drawer .user-image .img-wrapper .img-round {
    width: 286px;
    height: 220px;
    right: -85px;
  }
}

.sidebar-toggle-close {
  position: absolute;
  cursor: pointer;
  top: 27px;
  right: 20px;
}
@media (min-width: 768px) {
  .sidebar-toggle-close {
    top: 35px;
    right: 45px;
  }
}
@media (min-width: 992px) {
  .sidebar-toggle-close {
    top: 44px;
    right: 40px;
  }
}

body:has(.swiper-pagination-bullet-active:nth-child(1)) .navbar-controls .nav-item:nth-child(1) .nav-link:before,
body:has(.swiper-pagination-bullet-active:nth-child(1)) .mobile-nav .nav-item:nth-child(1) .nav-link:before {
  opacity: 1;
}

body:has(.swiper-pagination-bullet-active:nth-child(2)) .navbar-controls .nav-item:nth-child(2) .nav-link:before,
body:has(.swiper-pagination-bullet-active:nth-child(2)) .mobile-nav .nav-item:nth-child(2) .nav-link:before {
  opacity: 1;
}

body:has(.swiper-pagination-bullet-active:nth-child(3)) .navbar-controls .nav-item:nth-child(3) .nav-link:before,
body:has(.swiper-pagination-bullet-active:nth-child(3)) .mobile-nav .nav-item:nth-child(3) .nav-link:before {
  opacity: 1;
}

footer {
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 14px;
  line-height: 1.2;
}
footer p {
  margin-bottom: 15px;
}
footer p:last-child {
  margin-bottom: 0;
}
footer .copywrite {
  text-transform: uppercase;
}

body:has(.full-page-slider) .footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  body:has(.full-page-slider) .footer {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
  }
  body:has(.full-page-slider) .footer .footer-wrapper {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.full-page-slider-container .swiper-slide {
  padding-top: var(--header-offset-height);
  height: auto;
}
@media (min-width: 992px) {
  .full-page-slider-container .swiper-slide {
    min-height: 100vh;
  }
}
.full-page-slider-container .slider-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.full-page-slider-container .slider-background img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.full-page-slider-container .slider-background:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(18, 1, 1, 0.4);
}

.overlay-watermark {
  width: 58%;
  padding-top: 30.7%;
  position: absolute;
  background-image: url(../img/underlay-watermark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  top: 57%;
  left: 5.5%;
  transform: translateY(-50%);
  z-index: 2;
  mix-blend-mode: lighten;
  opacity: 0.13;
}

.full-page-slider {
  counter-reset: section;
}
.full-page-slider .swiper-auto-height .swiper-wrapper {
  height: auto;
  transition: height 0.5s ease; /* Optional: for smooth height transitions */
}
@media (max-width: 991px) {
  .full-page-slider .swiper-pagination {
    top: auto !important;
    bottom: 40px !important;
  }
}
@media (min-width: 992px) {
  .full-page-slider .swiper-pagination {
    width: auto !important;
    display: inline-flex;
    flex-direction: column;
    row-gap: 50px;
    top: 52.5% !important;
    bottom: auto !important;
    left: 2%;
    transform: translateY(-50%) !important;
  }
}
@media (min-width: 1200px) {
  .full-page-slider .swiper-pagination {
    left: 3%;
  }
}
@media (min-width: 1400px) {
  .full-page-slider .swiper-pagination {
    left: 2%;
  }
}
@media (min-width: 1600px) {
  .full-page-slider .swiper-pagination {
    left: 9%;
  }
}
.full-page-slider .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 15px;
  --swiper-pagination-color: var(--bs-primary);
}
@media (min-width: 768px) {
  .full-page-slider .swiper-pagination-bullet {
    --swiper-pagination-bullet-horizontal-gap: 25px;
  }
}
.full-page-slider .swiper-pagination-bullet-active {
  outline: 2px solid var(--bs-primary);
}
.full-page-slider .content-slide-wrapper {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .full-page-slider .content-slide-wrapper {
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .full-page-slider .content-slide-wrapper {
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1300px) {
  .full-page-slider .content-slide-wrapper {
    padding-top: 30px;
  }
}
@media (min-width: 1400px) {
  .full-page-slider .content-slide-wrapper {
    padding-top: 90px;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1600px) {
  .full-page-slider .content-slide-wrapper {
    padding-top: 130px;
    padding-left: 130px;
    padding-right: 130px;
  }
}
@media (min-width: 1800px) {
  .full-page-slider .content-slide-wrapper {
    padding-top: 130px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 130px;
  }
}
.full-page-slider .content {
  max-width: 900px;
}
.full-page-slider .sub-title {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 40px;
}
@media (min-width: 992px) {
  .full-page-slider .sub-title {
    margin-left: 0;
  }
}
.full-page-slider .sub-title:before {
  counter-increment: section;
  content: "" counter(section, decimal-leading-zero) "";
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  font-size: 10px;
}
.full-page-slider .text-strip {
  position: relative;
  display: inline;
  background-color: #fff;
  color: #000000;
  font-weight: 700;
  line-height: 2;
  padding: 0.25rem 0.35rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: -4px;
}
.full-page-slider .text-strip:before {
  content: "";
  width: 19px;
  height: 0;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: -19px;
  transform: translateY(-50%);
}
.full-page-slider .title {
  line-height: 1.5;
  margin-bottom: 24px;
}
.full-page-slider .title .bar_line {
  position: relative;
}
.full-page-slider .title .bar_line:after {
  content: "";
  width: 3px;
  height: 50px;
  display: inline-block;
  background-color: var(--bs-primary);
  transform: rotate(45deg) translate(-50%, -50%);
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: 5px;
}
@media (min-width: 1600px) {
  .full-page-slider .title {
    margin-bottom: 35px;
  }
}

body:not(:has(.full-page-slider)) section p:not(:last-child) {
  margin-bottom: 30px;
}

@media (min-width: 1400px) {
  .full-page-slider-container p:not(:last-child) {
    margin-bottom: 24px;
  }
}

/*# sourceMappingURL=app.css.map */
