@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
:root {
  --brand: #FBB61C;
  --yellow: #F8D100;
  --blue: #1cb9ea;
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --dark: #000000;
  --grey: #313131;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #383939;
  --radius: .875rem;
  --white: #ffffff;
  --body-font: "Quicksand", sans-serif;
  --secend-font: "Poppins", sans-serif;
  --shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

* {
  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: #F1F2F4;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-size: 1.067rem;
  color: var(--body-text-color);
  padding: 1.25rem !important;
}
@media (max-width: 575px) {
  body {
    padding: 0 !important;
  }
}

b, strong {
  font-weight: 600;
}

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

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

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

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

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

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

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #F8F8F8 !important;
}

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

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

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

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

.round {
  border-radius: 0.875rem;
}

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

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

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

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

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

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

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

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

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

.bg-primary-gradient {
  background: linear-gradient(#308080 0%, #004E4F 100%);
}

.bg-light-primary {
  background-color: rgba(44, 116, 116, 0.06);
}

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

.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);
}

ul {
  padding-left: 1rem;
}

.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.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn__icon__box {
  width: 2rem;
  height: 2rem;
}

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

.btn-grey {
  background-color: var(--brand);
  border-color: var(--brand) !important;
  color: var(--white);
  border: 2px solid var(--brand);
}
.btn-grey:hover, .btn-grey:focus, .btn-grey:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand);
}

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

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.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-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.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;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.check__list {
  padding-left: 0;
}
.check__list li {
  padding-left: 1.7rem;
  position: relative;
}
.check__list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0%;
  background: var(--check-icon) no-repeat center center/contain;
}

.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);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.top__nav {
  background-color: var(--brand-dark);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--brand);
}

.navbar {
  z-index: 999;
  border-radius: var(--radius);
  background-color: #fff;
  margin-bottom: 1rem;
  --bs-dropdown-link-active-bg: var(--brand);
}
.navbar .navbar-brand img {
  height: 4rem;
}
.navbar .nav-link {
  color: var(--dark);
  font-size: 1rem;
}
.navbar .nav-link:hover {
  color: var(--yellow);
}
.navbar .nav-link.active, .navbar .nav-link.show {
  color: var(--yellow);
}
.navbar .nav__btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid #707070;
}
.navbar .dropdown-item:hover {
  background-color: var(--brand);
  color: var(--white);
  border-radius: 0.5rem;
}
.navbar .dropdown-item:hover svg path {
  fill: var(--white);
}
.navbar .dropdown-toggle::after {
  border: 0;
  width: 1.125rem;
  height: 1.25rem;
  vertical-align: middle;
  background: var(--menu-angle) no-repeat center center/cover;
}
.navbar .btn-primary .icon {
  width: 3rem;
  height: 3rem;
  background-color: #fff9cf;
}
.navbar .navbar-toggler {
  border: 1px solid var(--brand);
  height: 2.25rem;
  font-weight: 500;
  position: relative;
  color: var(--dark);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  border-radius: 0%;
  background-color: var(--white);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.3s ease;
    visibility: hidden;
    min-width: max-content;
  }
  .navbar .dropdown .dropdown-menu .dropdown .dropdown-menu {
    right: -100%;
    left: auto;
    top: 0%;
    opacity: 0;
    visibility: hidden;
  }
  .navbar .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown .dropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown .dropdown-menu .inner__menu .dropdown-menu {
    left: auto;
    right: -72%;
    top: 0;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .navbar .dropdown .dropdown-menu .inner__menu:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown .dropdown-menu .inner__menu .child__menu:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1599px) {
  .navbar .nav-link {
    font-size: 0.875rem;
  }
  .navbar .btn-yellow {
    padding: 0.5rem 1.25rem;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    position: absolute !important;
    top: 100%;
    left: 0%;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 1rem;
    text-align: center;
  }
  .navbar .navbar-collapse .nav-item .nav-link {
    color: var(--dark);
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    height: 3.5rem;
  }
}
.offcanvas-body .collapse-icon {
  transition: transform 0.3s ease;
}
.offcanvas-body a[aria-expanded=true] .collapse-icon {
  transform: rotate(180deg);
}
.offcanvas-body .nav-link {
  font-size: 1.35rem;
}
.offcanvas-body .links__list > li {
  border-bottom: 1px solid #dad9d9;
  padding-bottom: 1rem;
}
.offcanvas-body .links__list .sub__menu li:not(:last-child) {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #eeeeee;
}
.offcanvas-body .links__list .sub__menu li .child__menu li {
  border: 0;
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.social__links li a svg {
  width: 1.5rem;
  height: 1.5rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: rgba(255, 255, 255, 0.2470588235);
  color: var(--white);
}

footer {
  background-color: #081836;
  padding: 3rem 0 2rem 0;
}
footer .logo {
  height: 5rem;
}
footer a {
  text-transform: capitalize;
  font-size: 0.937rem;
  color: var(--white);
  letter-spacing: 0.5px;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
  color: var(--yellow);
}
footer .form__wrap {
  border: 1px solid #fff9cf;
}
footer .form__wrap .form-control {
  background-color: transparent;
  border: 0;
  color: var(--white);
}
footer .form__wrap .btn {
  width: 3rem;
  height: 3rem;
  background-color: #fff9cf;
}
footer .icon__box {
  width: 3.5rem;
  height: 3.5rem;
}
footer .links li {
  position: relative;
}
footer .links li a {
  padding-left: 0.75rem;
}
footer .links li::before {
  content: "|";
  position: absolute;
  top: 0;
  left: 0;
}
footer .border-top {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
footer .copyright__wrapp {
  background-color: #600129;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  .backTop {
    bottom: 2rem;
    right: 1rem;
  }
  .backTop svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.phone__btn {
  background-color: #81d654;
  z-index: 999;
  left: 2rem;
  bottom: 11rem;
  width: 4rem;
  height: 4rem;
}
.phone__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.phone__btn svg path {
  fill: var(--white);
}
.phone__btn:hover, .phone__btn:focus, .phone__btn:active {
  background-color: #65a742;
  color: var(--white);
}

.whatsapp {
  background-color: #2eb843;
  z-index: 999;
  left: 2rem;
  bottom: 5rem;
  -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) {
  .phone__btn {
    left: 1rem;
    bottom: 7rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .phone__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .whatsapp {
    left: 1rem;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .whatsapp svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
  padding: 1px;
}
.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  margin: 0.25rem;
  background-color: var(--white) !important;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.owl-nav .owl-prev {
  background: var(--chevron-left) no-repeat center center/1.5rem !important;
  background-color: #fff !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #e0e0e0 !important;
}

.nav__primary .owl-nav .owl-prev, .nav__primary .owl-nav .owl-next {
  background-color: var(--brand) !important;
}
.nav__primary .owl-nav .owl-prev svg path, .nav__primary .owl-nav .owl-next svg path {
  stroke: var(--white);
}
.nav__primary .owl-nav .owl-prev:hover, .nav__primary .owl-nav .owl-next:hover {
  background-color: var(--dark) !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.header__wrapper {
  min-height: 600px;
  border-radius: var(--radius);
}
@media (min-width: 2000px) {
  .header__wrapper {
    min-height: calc(1080px - 10rem);
  }
}
@media (max-width: 1399px) {
  .header__wrapper {
    min-height: 550px;
  }
}
@media (max-width: 991px) {
  .header__wrapper {
    min-height: 600px;
  }
}
@media (max-width: 575px) {
  .header__wrapper .quote__icon {
    width: 5rem;
  }
}
.header__wrapper .overlay {
  background: linear-gradient(67deg, #081836, rgba(8, 24, 54, 0.7764705882), rgba(84, 84, 84, 0));
}
@media (max-width: 991px) {
  .header__wrapper .overlay {
    background: linear-gradient(-220deg, rgba(8, 24, 54, 0.64), rgba(8, 24, 54, 0.49), rgba(84, 84, 84, 0));
  }
}
.header__wrapper .action__box {
  background-color: var(--brand);
  max-width: 350px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .header__wrapper .action__box {
    margin-right: auto;
  }
}
.header__wrapper .action__box .btn-dark {
  background-color: var(--blue);
  border-color: var(--blue);
}
.header__wrapper .action__box .form__wrapp .btn-primary {
  width: 3rem;
  height: 3rem;
}
.header__wrapper .action__box .form__wrapp .form-select {
  height: 3rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-image: var(--select-sort);
  background-size: 1.45rem;
  background-position: center right 0;
}
.header__wrapper .hero__form__wrapp {
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px);
}
.header__wrapper .hero__form__wrapp .form-control, .header__wrapper .hero__form__wrapp .form-select {
  background-color: transparent;
}
.header__wrapper .hero__form__wrapp select.form-select option {
  color: #212529; /* dark text inside options */
  background-color: #fff; /* white background in dropdown */
}

.mh-auto {
  min-height: auto !important;
}

.service__card {
  background-color: #F1F2F4;
}

.arrow__list {
  padding-left: 0;
  margin-bottom: 0;
}
.arrow__list li {
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
}
.arrow__list li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0.25rem;
  left: 0%;
  background: var(--arrow-icon) no-repeat center center/1rem;
}

.choose__card img {
  width: 3.375rem !important;
  height: 3.375rem !important;
}
.choose__card .title {
  min-height: 3rem;
}
.choose__card figure svg {
  width: 3rem;
  height: auto;
}
.choose__card figure svg path {
  fill: var(--white);
}

.updates__card {
  border: 1px solid rgba(112, 112, 112, 0.4);
  border-radius: 43px;
}
.updates__card .thumbnail__box {
  border-radius: 43px;
  overflow: hidden;
}

.testimonials__wrapper .testimonials__card .icons {
  width: 3rem;
  height: 3rem;
}
.testimonials__wrapper .testimonials__card .img__box {
  width: 6rem;
  height: 6rem;
}

.contact__form .form-control,
.contact__form .form-select {
  height: 3rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.contact__form .form-control::placeholder,
.contact__form .form-select::placeholder {
  color: var(--white);
}
.contact__form .btn-primary:hover, .contact__form .btn-primary:focus, .contact__form .btn-primary:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark);
}
.contact__form.quote__page .btn-primary:hover, .contact__form.quote__page .btn-primary:focus, .contact__form.quote__page .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.contact__form.quote__page .form-control, .contact__form.quote__page .form-select {
  height: 4rem;
}

.scroll-margin {
  scroll-margin-top: 4rem;
}

.page__wrapper .overlay {
  background: linear-gradient(67deg, #081836, rgba(8, 24, 54, 0.7764705882), rgba(84, 84, 84, 0));
}

.contact__page__wrapper .form__wrapp .form-control, .contact__page__wrapper .form__wrapp .form-select {
  padding: 0.5rem 1.2rem !important;
  height: 3.5rem !important;
}

html[dir=rtl] .border-start {
  border-left: 0 !important;
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
html[dir=rtl] .border-start.department__box {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  border-right: 0;
}
html[dir=rtl] .text-start {
  text-align: right !important;
}
@media (min-width: 992px) {
  html[dir=rtl] .ps-lg-5 {
    padding-left: 0 !important;
    padding-right: 3rem !important;
  }
}/*# sourceMappingURL=style.css.map */