@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
:root {
  --brand: #ec2019;
  --primary-hover: #B40701;
  --dark: #2a2a2a;
  --bg-light: #F8F9FA;
  --text-main: #2A2A2A;
  --text-muted: #6C757D;
  --border-color: #DEE2E6;
  --border-color: rgba(112, 112, 112, 0.431);
  --body-text-color: #7e7e7e;
  --bg-light: hsla(191, 100%, 32%, 0.11);
  --cta-background: var(--primary);
  --cta-text: #FFFFFF;
  --nav-footer-bg: var(--secondary);
  --radius: .625rem;
  --white: #ffffff;
  --gray-100: #FAFAFA;
  --light-bg-1: #ECF3FE;
  --light-bg-2: #cdd6e9;
  --light-bg-3: #b5c2de;
  --body-font: 'Inclusive Sans', sans-serif;
  --heading-font: "Inclusive Sans", sans-serif;
  --desc-text:#141414;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--body-text-color);
}
@media (min-width: 1800px) {
  body {
    font-size: 1.125rem;
  }
}

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

.ff-heading {
  font-family: var(--heading-font);
}

b, strong {
  font-weight: 600;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem !important;
}

.bg-light {
  background-color: rgba(28, 39, 82, 0.06) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-gradient {
  background-color: var(--light-bg-1) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.size-48 {
  width: 3rem;
  height: 3rem;
}

.size-80 {
  width: 5rem;
  height: 5rem;
}

.svg-size-48 svg {
  width: 3rem;
  height: 3rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.box__bg {
  background-color: var(--gray-100);
  padding: clamp(0.5rem, 1vw, 1rem);
}
.box__bg__inner {
  background-color: var(--white);
}

.border-light-2 {
  border-color: var(--light-bg-2) !important;
}

.text-primary {
  color: var(--brand) !important;
}

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

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

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

.bgi {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  border-radius: var(--radius);
  padding: 0.875rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  transition: all 0.4s ease-in-out;
}
.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.btn.height {
  min-height: 2.875rem;
}
.btn.height.sm {
  font-size: 0.875rem;
  min-height: 2.25rem;
}
.btn.height.lg {
  min-height: 3.875rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-primary.orange {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--brand);
}
.btn-primary.orange:hover, .btn-primary.orange:focus, .btn-primary.orange:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--brand);
  background-color: transparent;
  border-width: 2px;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  font-size: 1.5rem;
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-outline {
  background-color: var(--white);
  color: var(--brand);
  border: 1px solid var(--brand);
  font-size: 1.5rem;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}
.btn-outline:hover .icon img, .btn-outline:focus .icon img, .btn-outline:active .icon img {
  filter: contrast(0) brightness(10);
  transform: translateX(8px);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white) !important;
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:hover, .btn-dark:focus {
  background-color: var(--gray);
  border-color: var(--gray);
  color: var(--white) !important;
}

.owl-carousel .owl-item {
  padding: 1px;
}

/*------ OWL CAROUSEL GLOBAL STYLES ------------*/
.shadow__cutoff .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}
.shadow__cutoff .owl-stage-outer .owl-stage {
  display: flex;
}
.shadow__cutoff .owl-stage-outer .owl-stage .owl-item {
  display: flex;
  padding: 1px;
}

.stage__flex .owl-stage {
  display: flex;
}
.stage__flex .owl-stage .owl-item {
  display: flex;
}

.owl-nav {
  margin-top: 1rem;
  justify-content: center;
  display: flex;
  gap: 0.875rem;
}
@media (max-width: 767px) {
  .owl-nav {
    justify-content: center;
  }
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev svg, .owl-nav .owl-next svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  color: var(--dark);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev::before, .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(75, 75, 75, 0.149);
  border-radius: 50%;
  backdrop-filter: blur(38px) briteness(15);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
  border-radius: 1rem !important;
}
.owl-nav .owl-prev:hover svg, .owl-nav .owl-next:hover svg {
  color: var(--dark);
}
.owl-nav .owl-prev:hover::before, .owl-nav .owl-next:hover::before {
  background-color: color-mix(in oklch, var(--brand) 20%, transparent);
  backdrop-filter: blur(18px) briteness(5);
  border-radius: 1rem;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50% !important;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9 !important;
  display: flex;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.book__now__btn {
  top: 50%;
  right: -2.25rem;
  transform: translateY(-50%) rotate(90deg);
  z-index: 999;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

@media (max-width: 1399.99px) {
  .h1 {
    font-size: 2.5rem;
  }
  .h1.lg {
    font-size: 3.5rem;
  }
  .lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
  .h1 {
    font-size: 2.75rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h2.sm, .h2.sm {
    font-size: 2.25rem;
  }
  h3, .h3 {
    font-size: 1.625rem;
  }
  h4, .h4 {
    font-size: 1.45rem;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2.25rem;
  }
  h2.sm, .h2.sm {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .fs-13 {
    font-size: 11px;
  }
  .lead {
    font-size: 1rem;
  }
  .h1 {
    font-size: 2.25rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h2.sm, .h2.sm {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
  h5, .h5 {
    font-size: 1.067rem;
  }
  .btn {
    font-size: 0.937rem;
  }
  .btn .arrow {
    width: 18px;
    height: 8px;
    background-size: contain;
  }
  .btn.height {
    min-height: 2.5rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
  .container.mobile__full__width {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/*=========== Top Header Styles =============*/
.top__header {
  padding-top: 0.5rem;
}
.top__header a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 1.125rem;
}
.top__header a img {
  width: 1.5rem;
  height: auto;
  margin-right: 0.75rem;
}
.top__header .btn-oranged {
  color: var(--dark);
}
.top__header .btn-oranged img {
  margin-right: 0;
}
.top__header .btn-oranged:hover {
  color: var(--brand);
}

/*====================== Navigation Styles ===================*/
.main__header {
  transition: all 0.3s ease;
}
.main__header.fixed-top {
  background-color: rgba(255, 255, 255, 0.6509803922);
  backdrop-filter: blur(10px);
}
@media (min-width: 992px) {
  .main__header.fixed-top .top__navbar {
    display: none;
  }
}
@media (max-width: 575px) {
  .main__header.fixed-top {
    background-color: #fff;
    padding: 0.5rem 0 !important;
    box-shadow: 0 4px 0.5rem rgba(0, 0, 0, 0.15);
  }
}
.main__header.fixed-top .top__header {
  height: 0;
  opacity: 0;
}
@media (max-width: 767px) {
  .main__header {
    padding: 0.75rem 0;
  }
}

.navbar {
  padding: 0;
  z-index: 999;
  position: relative;
  background-color: transparent;
}
.navbar .container {
  position: relative;
}
.navbar .navbar-brand img {
  max-height: 3.5rem;
}
@media (max-width: 767px) {
  .navbar .navbar-brand img {
    max-height: 2.5rem;
  }
}
.navbar .action__btn {
  color: var(--body-text-color);
}
.navbar .action__btn:hover svg {
  animation: 1.2s linear bounceIn;
}
.navbar .nav-link {
  color: var(--dark);
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
}
.navbar .nav-link:hover {
  color: var(--dark);
}
.navbar .nav-link.show {
  color: var(--dark);
}
.navbar .nav-link.show::after {
  transform: rotate(-180deg) !important;
  color: var(--dark);
}
.navbar .dropdown-toggle::after {
  border-top-color: var(--dark);
}
.navbar .nav-item.active .nav-link {
  color: var(--dark);
  position: relative;
}
.navbar .nav-item.active .nav-link::before {
  content: "";
  width: 100%;
  height: 0.25rem;
  display: block;
  background-color: var(--dark);
  border-radius: 0 0 0.5rem 0.5rem;
  position: absolute;
  top: -0.75rem;
  left: 0%;
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown:hover .nav-link {
  color: var(--dark);
}
.navbar .dropdown:hover .nav-link.dropdown-toggle::after {
  border-top-color: var(--dark);
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  width: 100%;
  min-width: auto;
  background-color: #fafafa;
  border: 0;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu a {
  color: var(--grey);
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
  text-transform: capitalize;
  font-size: 0.937rem;
  font-weight: 500;
}
.navbar .dropdown .dropdown-menu a:hover {
  color: var(--brand);
  background-color: var(--bg_brand_light);
}
.navbar .dropdown .dropdown-menu .category__icon__box {
  width: 2.5rem;
  height: 2.5rem;
}
.navbar .dropdown .dropdown-menu .child-link {
  color: #888;
  font-weight: 400;
  padding: 0.125rem;
}
.navbar .dropdown .dropdown-menu .mega-sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .btn-outline-primary {
  color: var(--white);
}
.navbar .nav__btn svg {
  width: 2.5rem;
  height: 2.5rem;
}

@keyframes mymove {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@media (max-width: 1200px) {
  .navbar .nav-link {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-collapse {
    padding: 1rem 1.5rem;
  }
  .navbar .navbar-toggler.jsExpand span:nth-child(1) {
    top: 9px;
  }
  .navbar .closeBtn {
    margin-left: 0;
  }
}
.offcanvas {
  --bs-offcanvas-width: 600px;
  background: rgba(236, 236, 236, 0.7764705882);
  backdrop-filter: blur(10px);
}
.offcanvas .close__btn {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.7294117647);
}
.offcanvas .offcanvas-body .collapse-icon {
  transition: transform 0.3s ease;
}
.offcanvas .offcanvas-body a[aria-expanded=true] .collapse-icon {
  transform: rotate(180deg);
}
.offcanvas .offcanvas-body .nav-link {
  font-size: 1.35rem;
}
.offcanvas .offcanvas-body .links__list > li {
  border-bottom: 1px solid #dad9d9;
  padding-bottom: 1rem;
}
.offcanvas .offcanvas-body .links__list .sub__menu li:not(:last-child) {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #eeeeee;
}
.offcanvas .offcanvas-body .links__list .sub__menu li .child__menu li {
  border: 0;
}
.offcanvas .offcanvas-body .contact__list li .icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--brand);
}
.offcanvas .offcanvas-footer .social__links.justify-content-lg-start {
  justify-content: center !important;
}
.offcanvas .offcanvas-footer .social__links.justify-content-lg-start li a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 2px solid var(--dark) !important;
}
.offcanvas .offcanvas-footer .social__links.justify-content-lg-start li a:hover {
  background-color: var(--brand);
}

.contact__card .icon {
  width: 2rem;
}
.contact__card .icon img {
  height: 2rem;
}
.contact__card .icon img.sm {
  height: 2rem;
}
.contact__card .caption {
  width: calc(100% - 2rem);
  padding-left: 0.5rem;
}

.appointment__wrapper {
  background-color: var(--gray-100);
}
.appointment__wrapper .appointment__btn svg {
  width: 2rem;
  height: 2rem;
}

.footer__wrapper {
  background-color: var(--dark);
}
.footer__wrapper .icon__box {
  width: 2rem;
  height: 2rem;
  color: var(--brand);
}
.footer__wrapper .icon__box svg {
  width: 1.25rem;
  height: 1.25rem;
}
.footer__wrapper .logo img {
  max-height: 4rem;
}
.footer__wrapper a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 0.937rem;
}
.footer__wrapper a:hover {
  text-decoration: underline;
  color: var(--secondary);
}
.footer__wrapper .line__row > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2588235294);
}
.footer__wrapper .line__row.no_border > div {
  border-right: 0;
}

.social__links.footer {
  max-width: 260px;
}
.social__links li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #000;
  color: var(--white);
}
.social__links li a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--brand);
  color: var(--white);
}
.social__links.header__link {
  gap: 0.625rem !important;
}
.social__links.header__link li a {
  width: 2rem;
  height: 2rem;
  border-radius: 3px;
  background-color: var(--white);
}
.social__links.header__link li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links.header__link li a svg path {
  fill: var(--brand);
}
.social__links.social__wraper svg {
  width: 1.5rem;
  height: 1.5rem;
}
.social__links.social__wraper svg path {
  fill: #3E3E3E;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  bottom: 3rem;
  right: 2rem;
  width: 3rem;
  min-height: auto;
  height: 3rem;
  background-color: var(--dark);
  z-index: 999;
  display: none;
  border: 2px solid var(--white);
}
.backTop svg {
  transition: all 0.3s ease-in-out;
}
.backTop:hover, .backTop:focus, .backTop:active {
  border-color: var(--dark);
  background-color: var(--dark);
}
.backTop:hover svg, .backTop:focus svg, .backTop:active svg {
  transform: scale(1.3);
}
.backTop.show {
  display: flex;
}

@media (min-width: 991px) {
  footer .line__row.border-bottom {
    border-bottom: 0 !important;
  }
}
@media (max-width: 991px) {
  footer .line__row.first > div:nth-child(1) {
    border-right: 0;
  }
  footer .line__row.qatar__row > div {
    border-right: 0;
  }
}
@media (max-width: 575.99px) {
  footer .logo img {
    max-height: 6rem;
    width: auto;
  }
}
.whatsapp__box {
  z-index: 999;
  left: 2rem;
  bottom: 2rem;
}

.whatsapp {
  background-color: #2eb843;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  width: 4rem;
  height: 4rem;
  color: var(--white);
}
.whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp:hover, .whatsapp:focus, .whatsapp:active {
  background-color: #149a28;
  color: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #2eb843;
    box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@media (max-width: 576px) {
  .whatsapp {
    left: 0.5rem;
    bottom: 0.5rem;
  }
  .mobile__full__width {
    padding-left: 0;
    padding-right: 0;
  }
  .mobile__full__width .col__positioned__box, .mobile__full__width .inner__box {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }
  .mobile__text__15 {
    font-size: 0.937rem;
  }
}
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  visibility: hidden;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header__wrap {
  background-color: var(--gray-100);
  height: 100vh;
  max-height: 1080px;
}
@media (max-width: 991px) {
  .header__wrap {
    padding: 5rem 0 4rem 0;
    height: 600px;
  }
}
@media (max-width: 575px) {
  .header__wrap {
    padding: 5rem 0 4rem 0;
    height: calc(100dvh - 4rem);
  }
}
.header__wrap .bg__overlay {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.46) 50%, rgba(255, 255, 255, 0));
}
@media (max-width: 767px) {
  .header__wrap .bg__overlay {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.64) 50%, rgba(0, 0, 0, 0.62));
  }
}
.header__wrap .text-secondary {
  color: var(--secondary);
}
.header__wrap .desc {
  color: #6F6F6F;
}
@media (min-width: 1800px) {
  .header__wrap .thumbnail {
    transform: scale(1.35);
    right: -30%;
    position: relative;
  }
}
.header__wrap .btn svg {
  width: 1.75rem;
  height: 1.75rem;
}
.header__wrap .btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header__wrap .btn-white:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header__wrap.subpage {
  background-color: #002262;
  max-height: 500px;
}

.svg__icon__box {
  width: 4rem;
  height: 4rem;
}
.svg__icon__box svg, .svg__icon__box img {
  width: 2.5rem;
  height: 2.5rem;
}
.svg__icon__box.bg-dark svg {
  fill: var(--brand);
}

.infos__card {
  background-color: var(--gray-100);
}
.infos__card__icon {
  width: 4rem;
  height: 4rem;
}
.infos__card__icon svg {
  width: 2rem;
  height: 2rem;
}

.top__title {
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 500;
  background-color: color-mix(in oklch, var(--brand) 10%, transparent);
}

/*-------- PORTFOLIO CARD STYLES -----------*/
.portfolio__card .portfolio__content {
  background: linear-gradient(-360deg, #1c2752, rgba(255, 255, 255, 0));
  padding-top: 30% !important;
}
.portfolio__card::before {
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  backdrop-filter: blur(10px) brightness(0.5);
}
.portfolio__card__title a {
  color: var(--white);
}
.portfolio__card__title a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.portfolio__card__link {
  font-weight: 500;
  color: var(--white);
}
.portfolio__card__link .icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--brand);
  padding: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.portfolio__card__link:hover .icon {
  transform: rotate(45deg);
  color: var(--white);
}

.info__card {
  padding: 0;
}
@media (max-width: 575px) {
  .info__card {
    padding: 0.75rem 1.5rem;
  }
}
.info__card .icon__box {
  width: 4rem;
  height: 4rem;
  position: relative;
}
.info__card .icon__box img, .info__card .icon__box svg {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.bg-body {
  background-color: var(--gray-100) !important;
}

.text-dark2 {
  color: #2E2E2E;
}

.service__card {
  background-color: var(--brand);
  border-radius: var(--radius);
  transition: all 0.4s ease-in-out;
}
.service__card__img {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.8078431373);
  padding: 0.75rem;
  backdrop-filter: blur(16px);
}
.service__card__img img, .service__card__img svg {
  width: 4rem;
  height: 4rem;
}
.service__card .card__text {
  color: var(--body-text-color);
}
.service__card .link {
  color: var(--dark);
}
.service__card .link .icon {
  width: 24px;
  height: 24px;
  background-color: var(--brand);
  color: var(--white);
}
.service__card .link .icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.service__card .link:hover {
  color: var(--brand);
}
.service__card .link:hover .icon {
  background-color: var(--dark);
  transform: rotate(45deg);
  margin-left: 0.5rem;
}
.service__card:hover .service__card__img svg, .service__card:hover .service__card__img img {
  animation: 1.2s linear bounceIn;
}

.why__choose__wrapper__line {
  top: -2rem;
  left: 2rem;
  width: 2px;
  height: calc(100% - 3rem);
}
.why__choose__wrapper .info__card {
  position: relative;
  z-index: 29;
}
@media (max-width: 991px) {
  .why__choose__wrapper .info__card {
    padding-left: 0;
    padding-right: 0;
  }
}

.why__choose__image {
  width: 40%;
}
@media (max-width: 991px) {
  .why__choose__image {
    width: 100%;
    position: static !important;
    margin-bottom: 1rem;
  }
}

@media (min-width: 992px) {
  .col__positioned__box {
    position: absolute;
    top: 0;
    right: 0%;
    width: 50vw;
    height: 100%;
  }
  .col__positioned__box.contact__bg {
    left: 0%;
    right: inherit;
    width: 60vw;
  }
}
.blog__card__link {
  color: #3f3f3f;
}
.blog__card__link .icon {
  border: 1px solid var(--brand);
  width: 2.5rem;
  height: 2.5rem;
}
.blog__card__link .icon svg {
  transition: all 0.3s ease-in-out;
  width: 0.75rem;
  height: 0.75rem;
}
.blog__card__link:hover svg, .blog__card__link:focus svg {
  transform: rotate(45deg);
}

.accordion .accordion-item {
  background-color: #f0f0f0;
  border-radius: 0 !important;
  border-color: #f0f0f0 !important;
}
.accordion .accordion-item:not(:last-child) {
  margin-bottom: 0.625rem;
}
.accordion .accordion-item .accordion-button {
  --bs-accordion-btn-icon-width: 1.5rem;
  border: 0;
  box-shadow: none;
  min-height: 4rem;
  background-color: transparent;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--body-text-color);
}
.accordion .accordion-item .accordion-button .desc {
  display: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--dark);
  box-shadow: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed) .desc {
  display: block;
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: var(--minus-icon-white);
}
.accordion .accordion-item .accordion-button::after {
  background-image: var(--plus-icon-white);
}
.accordion .accordion-item .accordion-body {
  padding-top: 0;
  font-size: 1rem;
  color: var(--body-text-color);
  padding-bottom: 1.5rem;
}
.accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion.faq .accordion-item .accordion-button {
  color: #141414;
  font-size: 1.25rem;
}
.accordion.faq .accordion-item .accordion-button:not(.collapsed) {
  color: var(--brand);
}

@media (max-width: 575px) {
  .accordion .accordion-item .accordion-button {
    font-size: 1.125rem;
  }
  .accordion.faq .accordion-item .accordion-button {
    font-size: 1rem;
  }
}
.testimonial__wrapper {
  border-radius: 4em 4em 0 0;
}
@media (max-width: 575px) {
  .testimonial__wrapper {
    border-radius: 2rem 2em 0 0;
  }
}
.testimonial__wrapper .btn-light svg {
  width: 2rem;
  height: 2rem;
}

.testi__card {
  width: 100%;
  background-color: #EAEFF3;
}
.testi__card .author__box img, .testi__card .author__box .thumb {
  width: 4rem;
  height: 4rem;
}
.testi__card .desc {
  color: #2E2E2E;
}

.testimonialSlider .owl-stage, .serviceSlider2 .owl-stage, .serviceSlider .owl-stage {
  display: flex;
}
.testimonialSlider .owl-stage .owl-item, .serviceSlider2 .owl-stage .owl-item, .serviceSlider .owl-stage .owl-item {
  display: flex;
  padding: 1px;
}
.testimonialSlider .owl-item.center .testi__card, .serviceSlider2 .owl-item.center .testi__card, .serviceSlider .owl-item.center .testi__card {
  background-color: var(--brand);
}
.testimonialSlider .owl-item.center .testi__card .desc, .serviceSlider2 .owl-item.center .testi__card .desc, .serviceSlider .owl-item.center .testi__card .desc {
  color: var(--white);
}

.blog__wraper .blog__card {
  border: 1px solid #C4C4C4;
}

.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 3px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--brand);
}

.why__choose__card {
  transition: all 0.3s ease-in-out;
  border: 1px solid;
  border-color: var(--borderColor);
  border-radius: 0.8rem;
  background-color: var(--bgColor);
}
.why__choose__card__icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--bgColor);
}
.why__choose__card__icon img {
  filter: contrast(0) brightness(10);
}
.why__choose__card:hover {
  background-color: #FFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  transform: scale(1.01);
}

.has__line .line {
  max-width: 10rem;
  height: auto;
}

.btn-start-large {
  background: linear-gradient(var(--secondary), var(--secondary));
  color: var(--dark);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .btn-start-large {
    font-size: 1.25rem;
  }
}

.home__process__wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.home__process__wrapper .service__card .phase__box {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(1rem);
  background-color: color-mix(in oklch, var(--brand) 60%, transparent);
}
.home__process__wrapper .service__card:hover {
  box-shadow: 0 4px 8px 0 rgba(241, 241, 241, 0.06);
}
.home__process__wrapper .service__card:hover .phase__box {
  opacity: 1;
  transform: translateY(0);
}
.home__process__wrapper .processSlider .owl-nav .owl-prev, .home__process__wrapper .processSlider .owl-nav .owl-next {
  background-color: #fff !important;
}

.ellips {
  max-width: 846px;
  max-height: 836px;
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0.2705882353), rgba(28, 39, 82, 0));
  backdrop-filter: blur(24px);
  opacity: 0.5;
  transform: translateY(-50%) translateX(-50%);
}

.subpage__header {
  position: relative;
  z-index: 0;
  background-color: var(--dark);
  padding: 8rem 0 5rem 0;
  min-height: 600px;
}
.subpage__header__overlay {
  background-color: rgba(28, 39, 82, 0.82);
}
.subpage__header .breadcrumb a {
  color: var(--white);
  outline-width: 600;
}
.subpage__header .breadcrumb .active {
  color: var(--brand);
  font-weight: 600;
}
.subpage__header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--white);
}
.subpage__header.contact__page__header .description {
  max-width: 500px;
}

.positioned__caption__box {
  background: color-mix(in oklch, var(--white) 80%, transparent);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 490px;
  position: absolute;
}
@media (max-width: 767px) {
  .positioned__caption__box {
    max-width: 100%;
    position: static !important;
    background-color: var(--gray-100);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
  }
}

.form-control, .form-select {
  height: 3rem;
}

.contact__form .form-control, .contact__form .form-select {
  background-color: var(--gray-100);
}/*# sourceMappingURL=style.css.map */