@import url("https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --brand: #E6AF5D;
  --brand-light: #FA9D00;
  --bg-light-blue: #D7E9F3;
  --link-color: #2C2C2C;
  --heading-color: #191919;
  --dark: #2B2B2B;
  --white: #ffffff;
  --border-color: rgba(112, 112, 112, 0.431);
  --body-text-color: #5A5A5A;
  --radius: .625rem;
  --br-lg: 1rem;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --heading-font: "Playfair", serif;
}

* {
  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);
  font-optical-sizing: auto;
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-size: 1.125rem;
}

.ff-heading {
  font-family: var(--heading-font);
}

.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;
}

.bg-light {
  background-color: #F5F5F5 !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: var(--br-lg);
}

.ptb {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.col--5 {
  flex: 0 0 20%;
  max-width: 20%;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-26 {
  color: #262626 !important;
}

.text-3d {
  color: #3d3d3d !important;
}

.text-grey {
  color: #888888 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600;
}

.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;
}

.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

.link__white {
  color: var(--white);
  font-weight: 600;
}
.link__white:hover {
  text-decoration: underline;
  color: var(--white);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul.disc__list li {
  margin-bottom: 0.625rem;
  position: relative;
  padding-left: 1.25rem;
}
ul.disc__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-light);
  position: absolute;
  top: 0.5rem;
  left: 0%;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  padding: 0.875rem 1.25rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.875rem;
  transition: all 0.4s ease-in-out;
}

.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);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand);
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.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);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  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;
}

.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);
  padding: 0.75rem 0.75rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: 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: 1399.99px) {
  .lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 575.99px) {
  :root {
    --br-lg: 1rem;
  }
  html {
    font-size: 87.5%;
  }
  .fs-13 {
    font-size: 11px;
  }
  .lead {
    font-size: 1rem;
  }
  .lead-sm {
    font-size: 1.067rem;
  }
  .btn {
    font-size: 0.937rem;
  }
}
@media (min-width: 2000px) {
  .container-fluid {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top__menu .small {
  font-size: 0.875rem;
}

.navbar {
  transition: all 0.3s ease-in-out;
  background-color: #F8F8F8;
}
.navbar .navbar-brand img {
  max-height: 4rem;
}
@media (max-width: 991px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
}
.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  width: 100%;
  min-width: max-content;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  padding: 0%;
  visibility: hidden;
  border: 0;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 1.067rem;
  display: block;
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative;
  white-space: pre-line;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--white);
  background-color: var(--brand);
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--brand);
}
.navbar .btn__lang img {
  width: 1.5rem;
  height: 1.5rem;
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2rem;
  height: 2rem;
  border-radius: 3px;
  background-color: #363636;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--brand);
  color: var(--white);
}
.social__links li a:hover svg, .social__links li a:focus svg {
  fill: white;
}
.social__links li:not(:first-child) {
  margin-left: 0.5rem;
}
.social__links.header li a {
  width: 1.5rem;
  height: 1.5rem;
}
.social__links.header li a svg {
  width: 13px;
  height: 13px;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--white);
    z-index: 99999;
    padding-bottom: 1rem;
  }
  .sideNav .content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
  .sideNav .content {
    max-width: 100%;
  }
}
@media (min-width: 2000px) {
  .navbar.fixed-top .container, .navbar.fixed-top .container-fluid {
    max-width: 1920px;
  }
}
footer {
  padding: 3rem 0 0 0;
}
footer .input-group {
  max-width: 300px;
}
footer a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 0.937rem;
  opacity: 0.7;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}
footer .contact__list {
  font-family: var(--btn-font);
}
footer .contact__list li .icon {
  width: 1.45rem;
}
footer .contact__list li .caption {
  width: calc(100% - 1.45rem);
}
footer .border-top {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  z-index: 999;
  display: none;
  border: 2px solid var(--white);
}
.backTop.show {
  display: flex;
}

@media (max-width: 575.99px) {
  footer {
    padding: 3rem 0 0rem 0;
  }
  footer .logo img {
    max-height: 4rem;
    width: auto;
  }
  footer .links li {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  footer .links li:not(:last-child) {
    margin-right: 2rem;
  }
  footer .ndis__logo {
    position: static !important;
    transform: none !important;
  }
}
.header__wraper .btn-primary:hover, .header__wraper .btn-primary:focus, .header__wraper .btn-primary:active {
  background: var(--white);
  color: var(--white);
  color: var(--dark);
}
.header__wraper .thumbnail {
  height: 640px;
}
@media (max-width: 767px) {
  .header__wraper .thumbnail {
    max-height: 400px;
  }
}
.header__wraper .carousel-control-prev, .header__wraper .carousel-control-next {
  z-index: 999;
}

.line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 0.5rem;
}

.service__card .thumbnail {
  height: 20rem;
  object-fit: cover;
}
.service__card .content__box {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.13%, rgba(0, 0, 0, 0.6) 100%);
}
.service__card .content__box .title a {
  color: var(--white);
}
.service__card .content__box .title a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.homepage .contact__promo__box {
  margin-top: -5rem;
  position: relative;
  z-index: 1;
}

.project__card__content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.0211268) 46.48%, #000000 100%);
}
.project__card__content .title a {
  color: var(--white);
}

.owl-dots {
  text-align: center;
  margin-top: 1rem;
}
.owl-dots .owl-dot {
  width: 3rem;
  height: 5px;
  border-radius: 8px;
  margin: 4px;
  background-color: rgba(162, 162, 162, 0.4901960784) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--dark) !important;
}

.gallery__card .gallery__card__content {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0.07) 100%);
}

.contact__form .form-control {
  height: 3rem;
  border-color: var(--white);
}
.contact__form textarea.form-control {
  height: auto;
}

.blog__card .date {
  color: #717070;
}

@media (max-width: 991px) {
  .mobile__pill {
    border-radius: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.accordion {
  --bs-accordion-btn-icon-width: 1.5rem;
}
.accordion .accordion-item {
  border: 1px solid rgba(217, 217, 217, 0.5019607843) !important;
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion .accordion-item .accordion-button {
  background-color: rgba(217, 217, 217, 0.5019607843);
  color: var(--dark);
}
.accordion .accordion-item .accordion-button::after {
  background-image: var(--acc-plus);
  transform: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--brand);
  color: var(--white);
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: var(--acc-minus);
}

.contact__page .contact__form .form-control, .contact__page .contact__form .form-select {
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}

.blog__detail__content, .cms__page__content__box {
  color: #8E8E8E;
}
.blog__detail__content img, .cms__page__content__box img {
  width: 100%;
  height: auto;
}
.blog__detail__content h2, .blog__detail__content h3, .blog__detail__content h4, .blog__detail__content h5, .blog__detail__content h6, .cms__page__content__box h2, .cms__page__content__box h3, .cms__page__content__box h4, .cms__page__content__box h5, .cms__page__content__box h6 {
  color: var(--dark);
  font-family: var(--body-font) !important;
  font-weight: 600;
}

.not__found__box {
  min-height: 600px;
}

.portfolio__page .project__card .thumbnail {
  aspect-ratio: 16/12;
}
.portfolio__page .project__card__content {
  background: rgba(43, 43, 43, 0.78);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.portfolio__page .project__card__content .link__box {
  color: var(--white);
}
.portfolio__page .project__card__content .link__box svg {
  width: 1.5rem;
}
.portfolio__page .project__card__content .link__box:hover, .portfolio__page .project__card__content .link__box:focus {
  color: var(--brand);
}
.portfolio__page .project__card__content .link__box:hover svg path, .portfolio__page .project__card__content .link__box:focus svg path {
  fill: var(--brand);
}
.portfolio__page .project__card:hover .project__card__content {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .portfolio__page .tiles__icon {
    max-width: 8rem;
  }
}

.carousel .carousel-control-next, .carousel .carousel-control-prev {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.4196078431);
  border-radius: 50%;
  padding: 0%;
  top: 45%;
  transform: translateY(-50%);
}
.carousel .carousel-indicators .button {
  width: 6.25rem;
  height: 100%;
  margin: 0%;
  text-indent: inherit;
  flex: none;
}
.carousel .carousel-indicators .button img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/12;
  object-fit: cover;
}

.related__blogs__card {
  background-color: #F7F7F7;
} 