@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap");
:root {
  --brand: #366BB3;
  --white: #ffffff;
  --dark: #000;
  --text-color: #3B393A;
  --orange: #ff9000;
  --body-font: "Hanken Grotesk", sans-serif;
  --second-font: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
}

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

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.125rem;
  text-rendering: optimizeLegibility;
  line-height: 1.7;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #373b3e;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--brand);
}
a.link {
  color: var(--brand);
  text-decoration: underline;
}
a.link:hover {
  color: var(--orange);
  text-decoration: none;
}

.link-hover {
  position: relative;
}
.link-hover::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--brand);
  display: block;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
}
.link-hover:hover::after {
  transform: scaleX(1);
}

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

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

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

.text-muted {
  color: #9D9D9D !important;
}

.text-primary {
  color: #4f4bcb !important;
}

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

ul {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style-type: none;
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 600;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

.more__link {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--orange);
}
.more__link svg {
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.5rem;
  transform: rotate(180deg);
}
.more__link.collapsed {
  color: var(--dark);
}
.more__link.collapsed svg {
  transform: rotate(0deg);
}

.ptb {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.dark {
  color: #443F3F;
}

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

.bg-light {
  background-color: #f5f9fa;
}

.bg-white {
  background-color: #fff;
}

.ff-poppins {
  font-family: "Poppins", sans-serif;
}

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

.ptb-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.ptb-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

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

.text-colored {
  color: #ff9000;
}

.btn:focus {
  box-shadow: none;
}

.base-btn, .btn-dark, .btn-primary, .btn-white {
  border-radius: 5px;
  background-color: var(--brand);
  border-color: var(--brand);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.48px;
  line-height: 1;
  padding: 18px 30px;
  position: relative;
  align-items: center;
  display: inline-flex;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  white-space: nowrap;
}
.base-btn > span, .btn-dark > span, .btn-primary > span, .btn-white > span {
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.base-btn::before, .btn-dark::before, .btn-primary::before, .btn-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 102% 102%;
  border-radius: inherit;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  opacity: 0;
  z-index: -1;
}
.base-btn::after, .btn-dark::after, .btn-primary::after, .btn-white::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  opacity: 0;
  transform: translate(0, 100%);
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.base-btn:hover, .base-btn:focus, .base-btn:active, .btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-white:hover, .btn-white:focus, .btn-white:active {
  color: var(--white);
  border-color: var(--dark);
  background-color: var(--dark);
}
.base-btn:hover::before, .base-btn:focus::before, .base-btn:active::before, .btn-dark:hover::before, .btn-dark:focus::before, .btn-dark:active::before, .btn-primary:hover::before, .btn-primary:focus::before, .btn-primary:active::before, .btn-white:hover::before, .btn-white:focus::before, .btn-white:active::before {
  opacity: 1;
}
.base-btn:hover::after, .base-btn:focus::after, .base-btn:active::after, .btn-dark:hover::after, .btn-dark:focus::after, .btn-dark:active::after, .btn-primary:hover::after, .btn-primary:focus::after, .btn-primary:active::after, .btn-white:hover::after, .btn-white:focus::after, .btn-white:active::after {
  transform: translate(0%, -50%);
  opacity: 1;
}
.base-btn:hover > span, .base-btn:focus > span, .base-btn:active > span, .btn-dark:hover > span, .btn-dark:focus > span, .btn-dark:active > span, .btn-primary:hover > span, .btn-primary:focus > span, .btn-primary:active > span, .btn-white:hover > span, .btn-white:focus > span, .btn-white:active > span {
  transform: translateY(-150%);
  opacity: 0;
}
.base-btn.orange, .btn-dark.orange, .btn-primary.orange, .btn-white.orange {
  background-color: var(--orange) !important;
  color: var(--white) !important;
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active {
  color: var(--white);
  border-color: #272727;
  background-color: #272727;
}

.btn-white {
  color: var(--dark);
  background-color: var(--white);
  border-color: var(--white);
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  color: var(--white);
  border-color: #272727;
  background-color: #272727;
}

.position-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

address {
  font-style: normal;
}

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

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  top: -7px;
}

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

.disc__list {
  padding-left: 1rem;
}
.disc__list li {
  list-style-type: disc;
}

.floating-button-whatsapp {
  background-color: #4fce5d;
  bottom: 2rem;
  left: 2rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}
.floating-button-whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.floating-button-whatsapp svg path {
  fill: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #4fce5d;
  }
  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 #4fce5d;
    box-shadow: 0 0 0 0 #4fce5d;
  }
  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);
  }
}
.fixed__social__box li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  position: relative;
  background-color: #fff;
}
.fixed__social__box li a svg {
  width: 1.125rem;
  height: 1.125rem;
}
.fixed__social__box li.line {
  position: relative;
  margin-top: 0.6rem;
}
.fixed__social__box li.line::after {
  content: "";
  width: 1px;
  height: 1.6rem;
  background-color: #373b3e;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}

.menubar {
  position: relative;
  z-index: 999;
}
.menubar .logo {
  line-height: 0;
}
.menubar .logo img {
  max-height: 3rem;
}
.menubar .lg__links {
  list-style: none;
}
.menubar .lg__links a {
  padding: 8px 0px;
  color: var(--dark);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1rem;
}
.menubar .lg__links a.link-hover::before {
  bottom: 4px;
}
.menubar .lg__links a:hover {
  color: var(--brand);
}
.menubar .lg__links .dropdown-toggle::after {
  border: 0;
  background: var(--plus-dark) no-repeat center center/1rem;
  width: 1rem;
  height: 1rem;
  position: relative;
  top: 0.45rem;
  margin-left: 0em;
}
.menubar .action__box .call-btn {
  background-color: #E3EDFF;
  color: var(--dark);
  border-radius: 0.25rem 0 0 0.25rem;
}
.menubar .action__box .call-btn .icon {
  width: 2.25rem;
  height: 2.25rem;
}
.menubar .navicon {
  width: 2.75rem;
  background-color: #383838;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
}
.menubar .navicon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.menubar.white__menu .lg__links a {
  color: #E4E4E4;
}
.menubar.white__menu .btn-white {
  background-color: var(--white);
  color: var(--dark);
}
.menubar.white__menu .navicon {
  background-color: var(--brand);
}
.menubar.fixed-top {
  padding: 1rem 0;
  background-color: #fffffa;
  border-bottom: 1px solid #eae8e6;
  animation: mymove 1s ease-in-out;
}
.menubar.fixed-top.white__menu {
  background-color: #383838;
}
@keyframes mymove {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@media (min-width: 992px) {
  .menubar .dropdown .dropdown-menu {
    transition: all 0.3s ease-in-out;
    display: block;
    position: absolute;
    top: 96%;
    left: 0%;
    transition: all 0.3s ease;
    transform: scaleY(0) translate(0, 0) !important;
  }
  .menubar .dropdown .dropdown-menu.show {
    transform: scaleY(1) translate(0, 0) !important;
    inset: inherit !important;
  }
  .menubar .dropdown:hover .dropdown-toggle::after, .menubar .dropdown:hover .dropdown-toggle.show {
    background-image: var(--minus);
  }
  .menubar .dropdown:hover .dropdown-menu {
    transform: scaleY(1) translate(0, 0) !important;
    inset: inherit !important;
  }
}
.sideMenu {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1203;
  pointer-events: none;
  /* Works on Firefox */
  /* Works on Chrome, Edge, and Safari */
}
.sideMenu.show {
  opacity: 1;
  visibility: visible;
}
.sideMenu .bg__overlay {
  background-color: var(--brand);
  border-right-color: var(--brand);
  width: 100%;
  max-width: 480px;
  color: #fff;
  max-height: 100vh;
  min-height: 100vh;
  overflow-y: auto;
  padding-bottom: 1rem;
  pointer-events: fill;
}
.sideMenu .content {
  min-height: calc(100vh - 4rem);
  position: relative;
  left: -600px;
  opacity: 0;
  visibility: hidden;
}
.sideMenu .content.animation {
  -webkit-animation: slide 0.3s forwards;
  -webkit-animation-delay: 0.3s;
  animation: slide 0.3s forwards;
  animation-delay: 0.3s;
}
.sideMenu .content .logo__wrapp {
  margin-top: 0;
  padding: 1rem 1rem 2rem 3rem;
}
.sideMenu .content .logo__wrapp a.logo {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}
.sideMenu .content .logo__wrapp a.logo:hover {
  transform: none;
}
.sideMenu .content .btn__close {
  background-color: transparent;
  opacity: 1;
  border: 2px solid var(--white);
  padding: 0%;
  color: var(--white);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}
.sideMenu .content .btn__close svg {
  width: 2rem;
  height: 2rem;
}
.sideMenu .content .btn__close:hover {
  opacity: 0.6;
}
.sideMenu .content .link__box {
  margin-top: 1.5rem;
  min-height: 61vh;
  max-height: 60vh;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding: 0% 3rem;
}
.sideMenu .content .link__box .accordion .accordion-item {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1098039216);
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0rem 0.5rem 0rem;
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button::after {
  margin-left: 0.5rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tcmlnaHQiPjxwb2x5bGluZSBwb2ludHM9IjkgMTggMTUgMTIgOSA2Ij48L3BvbHlsaW5lPjwvc3ZnPg==");
  position: relative;
  top: 0.1rem;
  transition: all 0.3s ease-in-out;
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--dark);
  background-color: transparent;
  box-shadow: none !important;
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button.single {
  color: var(--white);
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button.single::after {
  content: none;
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button:focus {
  box-shadow: none !important;
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button:hover {
  color: var(--dark);
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-button:hover::after {
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-body {
  padding: 0 0 1rem 1rem;
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-body a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0;
  display: inline-block;
  color: var(--white);
}
.sideMenu .content .link__box .accordion .accordion-item .accordion-body a:hover {
  color: var(--dark);
}
.sideMenu .content .address__box {
  padding: 1rem 1rem 1rem 2.5rem;
  font-weight: 400;
}
.sideMenu .content .address__box svg {
  width: 14px;
  height: 14px;
  margin-right: 0.25rem;
}
.sideMenu .content .address__box a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.sideMenu .content .footer__box {
  margin-top: 1rem;
}
.sideMenu .content .footer__box .social__box li {
  margin: 0% 0.25rem;
}
.sideMenu .content .footer__box .social__box li a {
  width: 2rem;
  height: 2rem;
  display: flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  color: var(--brand);
}
.sideMenu .content .footer__box .social__box li a svg {
  width: 1rem;
  height: 1rem;
}
.sideMenu .content .footer__box .social__box li a:hover {
  background-color: var(--dark);
  color: var(--white);
}
@-webkit-keyframes slide {
  0% {
    left: -600px;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes slide {
  0% {
    left: -600px;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
.sideMenu .copy__right {
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
}
.sideMenu * {
  scrollbar-width: thin;
  scrollbar-color: #3A75C6 var(--blue);
}
.sideMenu *::-webkit-scrollbar {
  width: 12px;
}
.sideMenu *::-webkit-scrollbar-track {
  background: var(--blue);
}
.sideMenu *::-webkit-scrollbar-thumb {
  background-color: #3A75C6;
  border-radius: 20px;
  border: 3px solid var(--blue);
}

.fixed-top {
  position: fixed !important;
}

@media (max-width: 991px) {
  .menubar .container .lg__links {
    display: none;
  }
}
@media (max-width: 576px) {
  .menubar .container .logo img {
    max-height: 2rem;
  }
  .menubar.fixed-top {
    padding: 0.5rem 0 !important;
  }
  .menubar .navicon {
    border-radius: 0.25rem;
    height: 2.75rem;
  }
  .sideMenu .content a.logo {
    font-size: 1.65rem;
  }
  .sideMenu .content .logo__wrapp {
    padding: 1rem 1rem 1rem 1.5rem;
  }
  .sideMenu .content .logo__wrapp .btn__close {
    width: 2rem;
    height: 2rem;
  }
  .sideMenu .content .logo__wrapp .btn__close svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .sideMenu .content .link__box {
    margin-top: 0;
    padding: 0% 1.5rem;
  }
  .sideMenu .content .link__box .accordion .accordion-item .accordion-button {
    font-size: 1.125rem;
  }
  .sideMenu .content .address__box {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  }
}
.form__overlay .form-group {
  margin: 1rem 0 0 0;
}
.form__overlay .input__box {
  width: 100%;
  position: relative;
}
.form__overlay .input__box input, .form__overlay .input__box textarea {
  width: 100%;
  height: 100%;
  padding: 0.2rem 0.5rem 0.15rem 0rem;
  border: 0;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  color: #212529;
  font-size: 1rem;
  font-family: var(--body-font);
  border-bottom: 1px solid #ccc;
}
.form__overlay .input__box input::placeholder, .form__overlay .input__box textarea::placeholder {
  color: rgb(173, 173, 173) !important;
}
.form__overlay .input__box .label {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
}
.form__overlay .input__box.invalid .label {
  color: rgb(255, 27, 10);
}
.form__overlay .input__box.invalid input, .form__overlay .input__box.invalid textarea {
  border-color: red;
}
.form__overlay .text-danger {
  color: red !important;
}
.form__overlay .small {
  font-size: 12px;
}

.header__wrapper {
  padding: 6rem 0 4rem 0;
  position: relative;
}
.header__wrapper h1, .header__wrapper .h1 {
  font-size: 4.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.header__wrapper h1 img, .header__wrapper .h1 img {
  max-height: 2.75rem;
  width: auto;
  position: relative;
  top: -0.4rem;
}
.header__wrapper .lead {
  margin-bottom: 2rem;
}
.header__wrapper .lead a {
  display: inline-block;
  line-height: 0;
  position: relative;
  top: 6px;
}
.header__wrapper .lead img {
  max-height: 1.6rem;
}
.header__wrapper .lead.max_width {
  max-width: 29.375rem;
}
.header__wrapper .left__content .logo__box {
  width: 12rem;
  background-color: #f5f5f5;
  padding: 1rem;
}
.header__wrapper .left__content .logo__box img {
  max-width: 9rem;
  height: auto;
}
.header__wrapper .left__content .detail__box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  margin-top: 2.5rem;
}
.header__wrapper .left__content .detail__box .caption {
  width: calc(100% - 12rem);
  padding: 1rem;
}
.header__wrapper .left__content .detail__box .caption .lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.3;
}
.header__wrapper .left__content .detail__box .caption .lead.partner {
  font-size: 1.5rem;
  color: var(--dark);
}
.header__wrapper .left__content .detail__box .caption .btn-details {
  font-size: 12px;
  color: var(--orange);
  font-family: var(--second-font);
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
}
.header__wrapper .right__container {
  box-shadow: 9px 9px 14px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #CECECE;
  background: #fff;
  padding: 2.5rem 2rem 3rem 3rem;
  height: 100%;
  border-radius: 1rem;
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
.header__wrapper .right__container .google {
  position: absolute;
  top: 0rem;
  left: -4.3rem;
  max-height: 9.5rem;
}
.header__wrapper .right__container .title {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  font-weight: 600;
  color: #3B393A;
}
.header__wrapper .right__container p {
  color: #686868;
}
.header__wrapper .right__container .link {
  color: var(--brand);
}
.header__wrapper .right__container .link:hover {
  color: #323332;
}
.header__wrapper .right__container .input__box .base-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.header__wrapper.subpage .h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.header__wrapper.updated__header {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.45);
  padding: 3rem 0;
  min-height: calc(100vh - 5rem);
}

@media (min-width: 576px) {
  .header__wrapper.subpage.updated__header .text__content {
    background: none !important;
  }
}
.carousel-indicators {
  bottom: -2rem;
  left: 0;
  z-index: 2;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: inherit;
  cursor: pointer;
  background-color: #ccc;
  opacity: 0.9;
}
.carousel-indicators .active {
  background-color: var(--brand);
  opacity: 1;
}

/*================= About Wrapper ===============================*/
.about__wrapper {
  position: relative;
  padding-top: 3rem;
  background-color: #fff;
}
.about__wrapper .container {
  position: relative;
  z-index: 11;
}
.about__wrapper .logo__box {
  background-color: #fff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid rgba(255, 144, 0, 0.2352941176);
  border-radius: 0.875rem;
  min-height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.about__wrapper .logo__box img {
  max-height: 5rem;
  width: auto;
}
.about__wrapper .logo__box .white {
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}
.about__wrapper .card {
  border: 0;
  padding: 1.5rem 1.375rem;
  border-radius: 1rem;
  box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.about__wrapper .card img {
  max-height: 3rem;
  width: 3rem;
}
.about__wrapper .card img.mission {
  max-height: 3.5rem;
  width: auto;
}
.about__wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #f4f8fb;
  z-index: 0;
}

/*================= Working Process Wrapper ===============================*/
.working__process__wrapper {
  color: #fff;
  background-attachment: fixed !important;
}
.working__process__wrapper .link:hover {
  color: var(--dark);
}
.working__process__wrapper .nav-pills .nav-link {
  text-align: left;
  color: var(--white);
  font-size: 1.125rem;
  padding: 0%;
  margin-bottom: 1rem;
  position: relative;
}
.working__process__wrapper .nav-pills .nav-link::after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  bottom: -0.5rem;
  left: 2rem;
}
.working__process__wrapper .nav-pills .nav-link.active {
  font-weight: 500;
  background-color: transparent;
}
.working__process__wrapper .nav-pills .nav-link.active::after {
  width: 90%;
}
.working__process__wrapper .tab-content {
  border-left: 1px solid var(--white);
}
.working__process__wrapper .accordion .accordion-item {
  background-color: transparent;
  border-color: var(--white);
}
.working__process__wrapper .accordion .accordion-item .accordion-button {
  background-color: transparent;
  color: var(--white);
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}
.working__process__wrapper .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: transparent;
  box-shadow: none;
}
.working__process__wrapper .accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tZG93biI+PHBvbHlsaW5lIHBvaW50cz0iNiA5IDEyIDE1IDE4IDkiPjwvcG9seWxpbmU+PC9zdmc+");
}
.working__process__wrapper .accordion .accordion-item .accordion-body {
  padding-top: 0;
}

/*================= Feather Service Wrapper ===============================*/
.feather__service__wrapper {
  background: #f5f8fa;
  position: relative;
}
.feather__service__wrapper .hero__icon {
  max-height: 3rem;
}
.feather__service__wrapper .card {
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.feather__service__wrapper .card:hover {
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-0.5rem);
}
.feather__service__wrapper .card img {
  max-height: 3rem;
  margin-bottom: 1rem;
}
.feather__service__wrapper .card a {
  width: 30px;
  height: 30px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: inline-block;
  color: #323332;
  position: relative;
  font-size: 1.2rem;
}
.feather__service__wrapper .card a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.45rem;
  height: 1.45rem;
}
.feather__service__wrapper .card.active {
  background: var(--brand);
  color: #fff;
}
.feather__service__wrapper .card.active a {
  background-color: #fff;
}
.feather__service__wrapper .service2 {
  margin-top: 7.93rem;
}
.feather__service__wrapper .service3 {
  margin-top: 3.75rem;
}
.feather__service__wrapper .polygon-image {
  z-index: 0;
}

/*================= Testimonial Wrapper ===============================*/
.testi__wrapper {
  background: #f5f8fa;
  padding-top: 6.5rem;
  padding-bottom: 3.75rem;
}
.testi__wrapper .title {
  text-align: center;
}
.testi__wrapper .title.heading {
  font-size: 1.125rem;
  letter-spacing: 3px;
  margin-bottom: 40px;
  font-weight: 500;
}
.testi__wrapper .review__text {
  padding: 0% 5rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: #373b3e;
  position: relative;
}
.testi__wrapper .review__text::before {
  content: "";
  width: 30px;
  height: 27px;
  background: url(../images/icons/quote.webp) repeat-x left center/16px;
  display: inline-block;
  position: absolute;
  top: 0%;
  left: 3%;
  transform: rotate(180deg);
}
.testi__wrapper .review__text::after {
  content: "";
  width: 30px;
  height: 27px;
  background: url(../images/icons/quote.webp) repeat-x left center/16px;
  display: inline-block;
  position: absolute;
  top: 0%;
  right: 3%;
}
.testi__wrapper .client__details {
  max-width: 480px;
  margin: 0 auto;
  margin-top: 2rem;
}
.testi__wrapper .client__details p {
  margin-bottom: 0;
  font-weight: 500;
}
.testi__wrapper .client__details .lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #212121;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.testi__wrapper .client__details .name {
  width: calc(100% - 130px);
  text-align: right;
  padding-right: 1rem;
}
.testi__wrapper .client__details .logo {
  padding-left: 1.3rem;
  border-left: 2px solid #d2d2d2;
  max-width: 130px;
  display: flex;
  justify-content: flex-end;
}
.testi__wrapper .client__details .logo img {
  width: auto;
  max-height: 3rem;
  margin-left: auto;
}
.testi__wrapper .client__details .logo p {
  padding-left: 0.5rem;
}
.testi__wrapper .carousel-control-next, .testi__wrapper .carousel-control-prev {
  width: 3rem;
  height: 3rem;
  border: 1px solid #E5E5E7;
  background: #fff;
  opacity: 1;
  top: 50%;
}
.testi__wrapper .carousel-control-next svg, .testi__wrapper .carousel-control-prev svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--dark);
}
.testi__wrapper .review__caption {
  text-align: center;
  margin-top: 2.5rem;
}
.testi__wrapper .review__caption .rating {
  height: 1rem;
  width: auto;
  margin-right: 0.75rem;
}
.testi__wrapper .review__caption span {
  color: #414141;
}

.office__details ul li .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.office__details ul li address, .office__details ul li a {
  display: block;
  width: calc(100% - 1.5rem);
  padding-left: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0%;
}
.office__details ul li:not(:last-child) {
  margin-bottom: 1rem;
}

/*================= Promo Wrapper ===============================*/
.promo__wrapper {
  background: #504bcb;
  position: relative;
  color: #fff;
  padding: 6rem 0 6rem 0;
}
.promo__wrapper.no__banner {
  padding: 5rem 0 5rem 0;
  background-color: #F5F9FA;
  color: var(--dark);
}
.promo__wrapper.no__banner .heading {
  color: #373B3E;
}
.promo__wrapper.no__banner .lead {
  color: #373B3E;
  font-size: 1.125rem;
}
.promo__wrapper.no__banner .bg__overlay {
  display: none;
}
.promo__wrapper.no__banner .base-btn {
  background-color: var(--brand);
  color: #fff;
  margin-top: 0.75rem;
}
.promo__wrapper.no__banner .rating {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.promo__wrapper.no__banner .rating .fa {
  color: #f0ad4e;
  font-size: 1.12rem;
}
.promo__wrapper.no__banner .rating .text {
  padding-left: 1rem;
}
.promo__wrapper .chat__box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo__wrapper .chat__box a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #000000;
  margin: 1rem 0 1rem 0;
}
.promo__wrapper .chat__box a img {
  max-width: auto;
  height: 2rem;
  margin-right: 1rem;
}
.promo__wrapper .bg__overlay {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/about-s-bg.webp) no-repeat center center fixed;
  z-index: 0;
  opacity: 0.6;
}
.promo__wrapper .container {
  position: relative;
  z-index: 11;
  text-align: center;
}
.promo__wrapper .base-btn {
  background-color: #fff;
  color: var(--brand);
  border-radius: 2rem;
  text-transform: uppercase;
  padding: 1rem 3rem;
  font-weight: 400;
}
.promo__wrapper .base-btn:hover, .promo__wrapper .base-btn:focus, .promo__wrapper .base-btn:active {
  border-color: var(--dark);
  background-color: var(--dark);
  color: var(--white);
}
.promo__wrapper .right__wrapp {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  display: none;
}
.promo__wrapper .right__wrapp svg {
  stroke: var(--brand);
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.promo__wrapper .right__wrapp .lead {
  color: #08222E;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
}

.modal .modal-header .btn-close {
  width: 40px;
  height: 40px;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  top: -0.75rem;
  right: -1.25rem;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  margin: 0;
  background-size: 15px 15px;
}
.modal .modal-content {
  position: relative;
}

/*================= Faq Wrapper ===============================*/
.faq__wrapper {
  background: #f5f8fa;
}
.faq__wrapper .faq-section-icon {
  margin-bottom: 0;
  font-size: 3rem;
  color: var(--brand);
}
.faq__wrapper .accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-size: 1.125rem;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
}
.faq__wrapper .accordion-button:not(.collapsed) {
  color: var(--brand);
  background-color: transparent;
  box-shadow: none;
}
.faq__wrapper .accordion-item {
  background-color: transparent;
}
.faq__wrapper .accordion-item .accordion-body {
  padding: 0% 0 1rem 0;
}
.faq__wrapper .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

.map {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 28rem;
}

.map::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0px;
}

/*================= Footer Wrapper ===============================*/
footer {
  background: #F5F5F5;
  color: #373b3e;
}
footer .lead {
  color: #08222E;
  font-weight: 700;
  font-size: 1.125rem;
}
footer .link-hover {
  font-size: 1rem;
  padding: 0.2rem 0;
  text-transform: capitalize;
}
footer .link-hover.plus {
  color: rgb(255, 145, 0);
}
footer .link-hover.plus:hover {
  color: var(--brand);
}
footer .logo__wrapp {
  text-align: right;
}
footer .logo__wrapp .logo {
  display: inline-block;
}
footer .logo__wrapp .logo img {
  height: auto;
  width: 6rem;
}
footer .google__partner__box {
  margin-top: -5rem;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  footer .logo__wrapp {
    max-width: 20rem;
    margin: -3rem auto 0 auto;
  }
}
#backTop {
  width: 50px;
  height: 50px;
  right: 3rem;
  bottom: 6rem;
  background-color: var(--brand);
}
#backTop:hover {
  background-color: #e17f00;
}

.portfolio__wrapper .row > div {
  margin-bottom: 4rem;
}
.portfolio__wrapper .btn-primary {
  border-radius: 2rem;
  background-color: var(--brand);
}
.portfolio__wrapper .btn-primary::after {
  background-color: #0c63e4;
}
.portfolio__wrapper .load_link {
  font-size: 1.125rem;
  color: #443F3F;
  border-bottom: 1px solid #f7901e;
}
.portfolio__wrapper .load_link:hover {
  border-bottom: 0;
  color: #f7901e;
}
.portfolio__wrapper.details .row > div {
  margin-bottom: 0;
}
.portfolio__wrapper .dark {
  color: #ACACAC;
}

/*------------ Success Wrapper --------------------*/
.success__wrapper {
  text-align: center;
}
.success__wrapper h1 {
  font-family: "Poppins", sans-serif;
  font-size: 10rem;
  margin: 0;
  font-weight: 900;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: var(--brand);
}
.success__wrapper h2 {
  font-weight: 300;
  font-family: var(--body-font);
}
.success__wrapper .btn-primary {
  border-radius: 2rem;
}

.update__header__wrapper .banner__box {
  min-height: calc(100vh - 78px);
}
.update__header__wrapper .banner__box .banner {
  width: calc(50vw - 9%);
}
.update__header__wrapper .video {
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 2000px) {
  .update__header__wrapper .banner__box {
    min-height: 900px;
  }
  .update__header__wrapper .banner__box .banner {
    width: 50vw;
  }
  .update__header__wrapper .video {
    object-fit: cover;
    object-position: center center;
  }
}
@media (max-width: 991px) {
  .update__header__wrapper .banner__box {
    min-height: auto;
  }
  .update__header__wrapper .banner__box .banner {
    width: 100%;
    position: static !important;
  }
}
.google__partner__box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.google__partner__box .logo__box {
  width: 12rem;
  background-color: #f5f5f5;
}
.google__partner__box .title {
  line-height: 1.1;
}
.google__partner__box .title .tagline {
  font-size: 12px;
  color: #272727;
}
.google__partner__box.sm__size .logo__box {
  width: 7rem;
}
.google__partner__box.sm__size .title .tagline {
  font-size: 10px;
}
.google__partner__box.sm__size .title .partner {
  font-size: 1rem;
}

.top__title {
  padding: 0.125rem 0.5rem;
  background-color: #E3EDFF;
  display: inline-block;
}

@media (max-width: 575px) {
  .top__title {
    padding: 0.45rem 0.875rem;
    background-color: rgba(227, 237, 255, 0.6784313725);
  }
}
.z-index {
  position: relative;
  z-index: 99;
}

.text-41 {
  color: #414141;
}

.text-dark {
  color: #000 !important;
}

.info__card .icon {
  transition: transform 0.45s ease;
}
.info__card:hover .icon {
  animation: fadeInUp 0.7s linear;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.explore__btn {
  color: var(--dark);
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.36px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, #0B0C0C 0%, #0B0C0C 98%);
  background-size: 80% 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.75s;
}
.explore__btn.white {
  color: var(--white);
  background: linear-gradient(to bottom, #fff 0%, #fff 98%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
}
.explore__btn.white svg path {
  fill: var(--white);
}
.explore__btn.white:hover svg path, .explore__btn.white:active svg path, .explore__btn.white:focus svg path {
  fill: var(--brand);
}
.explore__btn:hover, .explore__btn:active, .explore__btn:focus {
  color: var(--brand);
  background-size: 0 1px;
  background-position: 0% 100%;
}
.explore__btn:hover svg path, .explore__btn:active svg path, .explore__btn:focus svg path {
  fill: var(--brand);
}

.showcase__card {
  position: relative;
}
.showcase__card .overlay {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.167), rgba(0, 0, 0, 0.6588235294));
}
.showcase__card .overlay__icon__box {
  padding: 0 0 0.7rem 1.25rem;
  position: relative;
}
.showcase__card:hover .overlay__icon__box img {
  animation: zoomIn 0.7s linear;
}
.showcase__card.tools .overlay__icon__box::after {
  content: "";
  width: 2.5rem;
  height: 1.5rem;
  background: var(--infinity) no-repeat center center/2rem;
  z-index: 99;
  position: absolute;
  top: 2.75rem;
  left: 65%;
  background-color: #fff;
}
.showcase__card.tools::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dae8ff;
  position: absolute;
  top: 3.5rem;
  left: 10%;
}

.check__list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark);
}
.check__list li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: var(--check-dark-icon) no-repeat center center/1rem;
  position: absolute;
  top: 0.5rem;
  left: 0%;
}

.round {
  border-radius: 1.5rem;
}

.round-sm {
  border-radius: 1rem;
}

.caseStudiesCarouselNew .desc {
  min-height: 6rem;
}
.caseStudiesCarouselNew .owl-nav {
  display: flex;
  justify-content: space-between;
  max-width: 20rem;
  margin: 1rem auto 0 auto;
}
.caseStudiesCarouselNew .owl-nav button {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--white) !important;
  border-radius: 50%;
}
.caseStudiesCarouselNew .owl-nav button svg {
  width: 1.25rem;
  height: 1.25rem;
}
.caseStudiesCarouselNew .owl-nav button:hover {
  opacity: 0.7;
}

.case__study__bg__thumbnail {
  width: calc(40vw - 10%);
  right: 5%;
}
.case__study__bg__thumbnail .gradient {
  background-image: linear-gradient(1deg, #000000, rgba(0, 0, 0, 0.2235294118));
}

@media (max-width: 991px) {
  .caseStudiesCarousel .owl-nav {
    margin: 1rem auto 2rem auto;
  }
}
.aproach__card .thumbnail {
  width: 9rem !important;
  height: 9rem;
}
.aproach__card .caption__box {
  background-image: linear-gradient(180deg, rgba(237, 241, 252, 0.38) 0%, rgba(201, 215, 255, 0.13) 100%);
  position: relative;
}
.aproach__card .caption__box .circle {
  width: 12px;
  height: 12px;
  top: -2.3rem;
}
.aproach__card .caption__box .circle .line {
  height: 1.5rem;
  background-color: rgb(237, 241, 252);
  width: 1px;
}
.aproach__card .caption__box .content {
  max-height: 260px;
  transform: translateY(0);
  transition: 5s;
}
.aproach__card .caption__box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(180deg, rgba(237, 241, 252, 0) 0%, rgba(237, 241, 252, 0.76) 26.46%, #EDF1FC 45.7%);
  z-index: 1;
}
.aproach__card .caption__box:hover .content, .aproach__card .caption__box:focus .content {
  transform: translateY(-200px);
}

.approach__line {
  height: 2px;
  background-color: rgb(237, 241, 252);
  top: 10rem;
}

.clientMmarqueee .item {
  width: 11rem;
  margin-right: 2rem;
}
.clientMmarqueee img {
  height: 5rem;
  filter: grayscale(100%);
  object-fit: contain;
  width: auto;
}

.testimonial__card .description {
  min-height: 8rem;
}
.testimonial__card .author {
  width: 4.5rem;
  height: 4.5rem;
}
.testimonial__card .client__logo {
  height: 2.5rem;
  filter: grayscale(100%);
}

.toolsCarousel .owl-nav {
  position: absolute;
  top: -8rem;
  right: 0%;
}
.toolsCarousel .owl-nav button {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--dark) !important;
  border-radius: 50%;
  margin: 0.5rem;
}
.toolsCarousel .owl-nav button.disabled {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .toolsCarousel .owl-nav {
    display: none;
  }
}
.blog__card .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.contact__form__wrapper {
  background-color: #DAE4F1;
}
.contact__form__wrapper .btn-dark {
  font-size: 12px;
}

.contact__bg__overlay {
  height: calc(100% - 9rem);
}

.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.35rem;
  outline: 1px solid #414141;
  outline-offset: 2px;
  justify-content: center;
  align-items: center;
  background-color: #414141 !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .contact__bg__overlay {
    top: 0 !important;
    transform: none !important;
    height: 60%;
  }
}
.logo__wrapp {
  margin-top: -8rem;
}

.testimonialCarousel .carousel-indicators {
  bottom: -5rem;
}

@media (max-width: 575px) {
  .testimonialCarousel .carousel-indicators {
    bottom: -4rem;
  }
}
.blog__card {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(219, 219, 219, 0.3058823529);
}

.blog__card .caption {
  padding: 0 1.25rem 1.25rem;
}

.blog__card .caption .authore__box .thumbnail {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.blog__card .caption .authore__box p {
  color: #585858;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--second-font);
  padding-left: 0.5rem;
}

.blog__card .caption .authore__box .btn-fab {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: block;
  background-color: var(--orange);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzOC4yNDQiIGhlaWdodD0iMzMuNTI3IiB2aWV3Qm94PSIwIDAgMzguMjQ0IDMzLjUyNyI+CiAgPGcgaWQ9Im5vdW4tYXJyb3ctMTU1ODIxNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIwMS40NDUgMTc1LjY4Nikgcm90YXRlKC02MCkiPgogICAgPHBhdGggaWQ9IlBhdGhfNDk2MCIgZGF0YS1uYW1lPSJQYXRoIDQ5NjAiIGQ9Ik0yNDcuOTE3LDEyNy45MTJhMS42NjYsMS42NjYsMCwwLDAsMS4wMjItLjRsOC40MjctNy45MzFhMS43LDEuNywwLDAsMCwuMTI0LTIuMTY5LDEuNTQ5LDEuNTQ5LDAsMCwwLTIuMTY5LjAxNUwyNDkuNCwxMjNWOTYuNjg1YTEuNDg3LDEuNDg3LDAsMSwwLTIuOTc0LDBWMTIzbC01LjkxNy01LjU3NmExLjYzOCwxLjYzOCwwLDAsMC0yLjE2OS0uMDE1LDEuNjgxLDEuNjgxLDAsMCwwLC4xMjQsMi4xNjlsOC40MjYsNy45MzFhMS40MzEsMS40MzEsMCwwLDAsMS4wMjIuNFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDApIiBmaWxsPSIjZmZmIi8+CiAgPC9nPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center center;
  transition: all 0.3s ease-in-out;
}

.blog__card .caption .authore__box .btn-fab:hover {
  background-color: var(--brand);
  position: relative;
  transform: rotate(327deg);
}

.blog__card .caption .h4 a {
  color: #000;
}

.blog__card .caption .h4 a:hover {
  color: var(--brand);
}

.blog__card .caption .desc {
  color: #585858;
  margin-top: 1rem;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.blog__card .caption .date {
  color: #585858;
}

.blog__card .caption .date span {
  color: #b7b7b7;
  font-weight: 500;
}

.blog__card .caption .tags {
  color: #585858;
  font-size: 12px;
  font-family: var(--second-font);
}

.blogCarousel .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}

.scroll-down-btn {
  animation: up-down2 2s linear infinite alternate;
}

.scroll-down-btn a {
  width: 41px;
  height: 80px;
  border-radius: 110px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.scroll-down-btn a svg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
}

@keyframes up-down2 {
  0% {
    transform: translateY(40px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(40px);
  }
}
.rotate__area text {
  font-size: 14px;
  color: #3f444b;
}

.rotate__area svg {
  position: absolute;
  left: -15%;
  width: 115%;
  height: 115%;
  top: -6%;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 9s;
  -moz-animation-duration: 9s;
  -ms-animation-duration: 9s;
  -o-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(0);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(0);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.circle__bg__overlay {
  width: 40%;
  height: 40%;
  background-color: rgba(63, 68, 61, 0.1);
  top: 31%;
  left: 23%;
  position: absolute;
}

.rotate__area .thumbnail {
  max-width: 210px;
  left: 40%;
  z-index: 99;
}

.rotate__area {
  min-height: 420px;
}

.white__menu {
  border-color: rgba(255, 255, 255, 0.2470588235) !important;
}

.case_study_card .thumbnail::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.case_study_card:hover .thumbnail::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.case_study_card .tag {
  font-size: 13px;
  transition: 0.4s;
  font-weight: 500;
  padding: 5px 15px;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
.case_study_card .tag:hover {
  background-color: var(--brand);
  border-color: var(--brand) !important;
}

.accordion.arrow__icon .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%233B393A' d='m204.24 148.24l-72 72a6 6 0 0 1-8.48 0l-72-72a6 6 0 0 1 8.48-8.48L122 201.51V40a6 6 0 0 1 12 0v161.51l61.76-61.75a6 6 0 0 1 8.48 8.48'/%3E%3C/svg%3E");
  width: 1.75rem;
  height: 1.75rem;
  background-size: 1.75rem;
}

@media (min-width: 768px) {
  .accordion.arrow__icon .accordion-button {
    padding-right: 3rem !important;
  }
}
.header__marketing {
  margin-top: -5rem;
  padding: 9rem 0 4rem 0;
}

.header__marketing .btn__box {
  margin-top: 2.5rem;
}

.header__marketing .hero__btn {
  background-color: var(--white);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
}

.header__marketing .hero__btn .icon {
  border: 1px solid var(--dark);
  padding: 0.15rem 0.5rem 0.25rem 0.5rem;
}

.header__marketing .hero__btn .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.header__marketing .hero__btn:hover .icon, .header__marketing .hero__btn:focus .icon, .header__marketing .hero__btn:active .icon {
  transform: none;
}

.header__marketing .hero__btn:hover .icon svg path, .header__marketing .hero__btn:focus .icon svg path, .header__marketing .hero__btn:active .icon svg path {
  fill: var(--white);
}

.header__marketing .hero__btn:hover .icon, .header__marketing .hero__btn:focus .icon, .header__marketing .hero__btn:active .icon {
  border-color: var(--white);
}

.header__marketing .hero__btn:hover, .header__marketing .hero__btn:focus, .header__marketing .hero__btn:active {
  background-color: var(--brand);
  color: var(--white);
}

.pagination__caret {
  bottom: -1.75rem;
}

.pagination__caret::after {
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.custom__nav .nav-link {
  color: #555;
  z-index: 999;
  background-color: transparent;
  background: linear-gradient(to bottom, #0b0c0c 0%, #0b0c0c 98%);
  background-size: 0 3px;
  background-repeat: no-repeat;
  background-position: right 100%;
  transition: background-size 0.75s;
}

.custom__nav .nav-link:hover {
  isolation: inherit !important;
}

.custom__nav .nav-link.active {
  background-size: 100% 3px;
  background-position: 0% 100%;
}

.service__card {
  background-color: #f9f9f9;
  position: relative;
}

.service__card .num {
  color: transparent;
  -webkit-text-stroke: 1px #ddd;
  right: 1rem;
}

.service__card ul li {
  padding-left: 1.75rem;
  padding-right: 0.75rem;
}

.service__card ul li::before {
  left: 0.25rem;
}

.service__card .process {
  top: 10%;
  right: -3rem;
}

.servicesCarousel .owl-stage, .servicesCarousel .owl-stage .owl-item {
  display: flex;
}

.service__card .icon__box svg {
  width: 3.5rem;
  height: 3.5rem;
}

.strategy__card .icon__box svg {
  width: 2.75rem;
  height: 2.75rem;
}

.service__card .icon__box svg path, .strategy__card .icon__box svg path {
  fill: #1C1C1C;
  transition: all 0.3s ease-in-out;
}

.service__card:hover .icon__box svg, .strategy__card li:hover .icon__box svg {
  animation: bounceIn 1.2s linear;
}

.service__card:hover .icon__box svg path, .strategy__card li:hover .icon__box svg path {
  fill: var(--brand);
}

.strategy__card .icon__box {
  width: 6rem;
  background-color: #E5EEFF;
}

.strategy__card .btn-primary {
  font-size: 13px;
  font-weight: 400;
  background-color: #E0E9FF;
  border-color: #E0E9FF;
  color: #1C1C1C;
}

.strategy__card .btn-primary:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.strategy__card .btn-primary:hover svg path {
  fill: var(--white);
}

.strategy__card .btn-primary svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.strategy__card li:hover .btn-primary svg {
  rotate: 45deg;
}

.strategy__card li:hover .icon__box img {
  animation: bounceIn 1.2s linear;
}

@media (min-width: 992px) {
  .strategy__card .row > div:not(:last-child)::after {
    content: "";
    width: 2px;
    height: 100%;
    display: block;
    background: linear-gradient(#fff, #ddd, #fff);
    position: absolute;
    top: 0%;
    right: 0%;
  }
  .strategy__card .icon__box {
    width: 8rem;
    height: 5rem;
  }
}
@media (max-width: 1399px) {
  .custom__nav .nav-link {
    max-width: 8rem;
    line-height: 1.2;
    margin: 0 auto !important;
  }
}
@media (max-width: 575px) {
  .btn-dark, .btn-primary, .btn-white {
    font-size: 12px;
    padding: 14px 24px;
  }
  .custom__nav .nav-item {
    flex: 0 0 100%;
  }
  .custom__nav .nav-item .nav-link {
    max-width: 100%;
    border-bottom: 1px solid #eee !important;
  }
  .custom__nav {
    border: 0 !important;
  }
}
.scroll-down-btn {
  animation: up-down2 2s linear infinite alternate;
}

.scroll-down-btn a {
  width: 41px;
  height: 80px;
  border-radius: 110px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.scroll-down-btn a svg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
}

@keyframes up-down2 {
  0% {
    transform: translateY(40px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(40px);
  }
}
.rotate__area text {
  font-size: 14px;
  color: #3f444b;
}

.rotate__area svg {
  position: absolute;
  left: -15%;
  width: 115%;
  height: 115%;
  top: -6%;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 9s;
  -moz-animation-duration: 9s;
  -ms-animation-duration: 9s;
  -o-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(0);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(0);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.circle__bg__overlay {
  width: 40%;
  height: 40%;
  background-color: rgba(63, 68, 61, 0.1);
  top: 31%;
  left: 23%;
  position: absolute;
}

.rotate__area .thumbnail {
  max-width: 210px;
  left: 40%;
  z-index: 99;
}

.rotate__area {
  min-height: 420px;
}

.carousel-control-next, .carousel-control-prev {
  width: 5%;
}

@media (min-width: 576px) {
  .carousel-control-prev {
    left: -7%;
  }
  .carousel-control-next {
    right: -7%;
  }
}
@media (max-width: 575px) {
  .carousel-control-next, .carousel-control-prev {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2117647059);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
  }
}
.white__menu {
  border-color: rgba(255, 255, 255, 0.2470588235) !important;
}

.solution__list .card .thumbnail__box {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 0 1000px rgba(229, 238, 255, 0.32);
}

.solution__list .card:hover .thumbnail__box {
  opacity: 1;
}

.carousel__nav .owl-prev, .carousel__nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3rem;
}
.carousel__nav .owl-prev svg, .carousel__nav .owl-next svg {
  width: 2.5rem;
  height: 2.5rem;
}
.carousel__nav .owl-prev svg path, .carousel__nav .owl-next svg path {
  fill: var(--dark);
  transition: all 0.3s ease-in-out;
}
.carousel__nav .owl-prev:hover svg path, .carousel__nav .owl-prev:focus svg path, .carousel__nav .owl-next:hover svg path, .carousel__nav .owl-next:focus svg path {
  fill: var(--brand);
}
.carousel__nav .owl-prev.disabled, .carousel__nav .owl-next.disabled {
  opacity: 0.2;
}
.carousel__nav .owl-next {
  left: auto;
  right: -3rem;
}

@media (max-width: 575px) {
  .carousel__nav .owl-nav {
    text-align: center;
    padding-top: 1rem;
  }
  .carousel__nav .owl-prev, .carousel__nav .owl-next {
    position: static;
    transform: none;
  }
}
.after__line {
  margin-bottom: 1rem;
  position: relative;
}
.after__line::after {
  content: "";
  width: 4rem;
  height: 4px;
  border-radius: 4px;
  background-color: var(--orange);
  display: block;
  margin-top: 0.25rem;
}
.after__line.positioned::after {
  position: absolute;
  top: 2rem;
  left: 0;
}
.after__line.center::after {
  margin-left: auto;
  margin-right: auto;
}

.home__tablist .nav-link {
  color: var(--dark);
  position: relative;
}
.home__tablist .nav-link.active {
  color: var(--dark);
}
.home__tablist .nav-link.active span {
  position: relative;
}
.home__tablist .nav-link.active span::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--orange);
  position: absolute;
  bottom: -0.5rem;
  left: 0%;
}
.home__tablist .nav-link.active::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: var(--right-arrow-colored) no-repeat center center/2rem;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

.accordion.process .accordion-item {
  border: 1px solid rgba(255, 145, 0, 0.1607843137) !important;
  background-color: rgba(244, 242, 242, 0.25);
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1rem !important;
}
.accordion.process .accordion-item .accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: var(--dark);
}
.accordion.process .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--orange);
}
.accordion.process.faq .accordion-item {
  background-color: #fff;
  border-radius: 0%;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1529411765) !important;
}
.accordion.process.faq .accordion-item .accordion-button {
  font-size: 1.25rem;
}
.accordion.process.faq .accordion-item .accordion-button::after {
  background-image: var(--plus);
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
.accordion.process.faq .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.caseStudiesCarousel .owl-stage {
  display: flex;
}
.caseStudiesCarousel .owl-item {
  padding: 1px;
  padding-bottom: 1rem;
  display: flex;
}
.caseStudiesCarousel .case__card {
  border-radius: 1.5rem 1.5rem 0 0;
  border: 1px solid #B5B5B5;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.caseStudiesCarousel .case__card img {
  height: 3rem;
  object-fit: contain;
  max-width: 70%;
}
.caseStudiesCarousel .case__card.active {
  border-color: var(--white);
}
.caseStudiesCarousel .case__card.active::after {
  content: "";
  width: 100%;
  height: 1.25rem;
  display: block;
  background-color: var(--white);
  position: absolute;
  bottom: -1.125rem;
  left: 0%;
}
.caseStudiesCarousel .owl-nav .owl-prev, .caseStudiesCarousel .owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border: 1px solid #eee !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(112, 112, 112, 0.09);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.5rem;
}
.caseStudiesCarousel .owl-nav .owl-prev svg, .caseStudiesCarousel .owl-nav .owl-next svg {
  width: 1.25rem;
  height: 1.25rem;
}
.caseStudiesCarousel .owl-nav .owl-prev svg path, .caseStudiesCarousel .owl-nav .owl-next svg path {
  fill: #7c7c7c;
  transition: all 0.3s ease-in-out;
}
.caseStudiesCarousel .owl-nav .owl-prev:hover, .caseStudiesCarousel .owl-nav .owl-next:hover {
  background-color: var(--orange) !important;
}
.caseStudiesCarousel .owl-nav .owl-prev:hover svg path, .caseStudiesCarousel .owl-nav .owl-next:hover svg path {
  fill: var(--white);
}
.caseStudiesCarousel .owl-nav .owl-next {
  left: auto;
  right: -1.5rem;
}

.btn-orange {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 500;
}
.btn-orange:hover, .btn-orange:focus, .btn-orange:active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.arrow__list li {
  position: relative;
  padding-left: 2rem;
}
.arrow__list li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  position: absolute;
  top: 0.25rem;
  left: 0%;
  background: var(--right-arrow-dark) no-repeat center center/1rem;
}

.clients__wrapper img {
  width: 100%;
  height: 6rem;
  object-fit: contain;
  mix-blend-mode: luminosity;
  border: 1px solid #eee;
  padding: 1rem;
}

@media (max-width: 575px) {
  .container {
    max-width: calc(100% - 20px);
  }
  .clients__wrapper {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .review__logo img {
    height: 3.5rem;
    width: auto;
  }
}
.review__logos img {
  transition: all 0.3s ease-in-out;
  mix-blend-mode: luminosity;
}
.review__logos img:hover {
  mix-blend-mode: normal;
}

.view__more__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.view__more__btn svg path {
  fill: var(--orange);
}
.view__more__btn::before {
  content: "Show Less";
}
.view__more__btn.collapsed::before {
  content: "View More";
}

.after__bg .layer {
  width: 50vw;
  object-fit: cover;
  object-position: center left;
  z-index: 0;
}
.after__bg::after {
  content: "";
  width: 40vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: -40vw;
  background-color: rgba(79, 75, 203, 0.15);
}

.info__card {
  background-color: rgba(79, 75, 203, 0.07);
  border: 1px solid rgba(183, 183, 183, 0.07);
  transition: all 0.3s ease-in-out;
}
.info__card .icon__box {
  background-color: #504BCB;
  width: 4rem;
  height: 4rem;
}
.info__card .icon__box img {
  height: 2.5rem;
  width: auto;
}
.info__card .icon__box svg {
  width: 2.5rem;
  height: 2.5rem;
}
.info__card .icon__box svg path {
  fill: var(--white);
}
.info__card .icon__box.transparent svg path {
  fill: transparent;
}
.info__card:hover {
  background-color: rgba(79, 75, 203, 0.24);
}

@media (min-width: 992px) {
  .left__aligned__thumbnail__parent {
    min-height: 34rem;
  }
  .left__aligned__thumbnail {
    position: absolute;
    top: 0;
    right: 0%;
    width: 40vw;
  }
}
/*================= Responsive Styles ============================================================*/
@media (max-width: 1400px) {
  .header__wrapper h1 {
    font-size: 4rem;
  }
  .header__wrapper.subpage .h1 {
    font-size: 3rem;
  }
  footer .detail__box .logo__box {
    width: 10rem;
  }
  footer .detail__box .logo__box img {
    max-width: 7rem;
  }
  footer .detail__box .caption {
    width: calc(100% - 10rem);
  }
  footer .detail__box .caption .lead.partner {
    font-size: 1.25rem;
  }
  footer .detail__box .caption .lead {
    font-size: 0.875rem;
  }
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: 1.625rem;
  }
  .lead {
    font-size: 1.125rem;
  }
  .header__wrapper h1 {
    font-size: 3.5rem;
  }
  .about__wrapper .logo__box {
    min-height: 6rem;
  }
  .about__wrapper .logo__box img {
    max-height: 4rem;
  }
  footer .back__top #backTop {
    width: 30px;
    height: 30px;
    background-size: 1.5rem 1.25rem;
  }
  .success__wrapper h1 {
    font-size: 8rem;
  }
  .header__wrapper.subpage .h1 {
    font-size: 2.75rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 93.7%;
  }
  .ptb-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .header__wrapper .left__content {
    text-align: center;
  }
  .header__wrapper h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .header__wrapper .lead {
    max-width: 31rem;
    margin-left: auto;
    margin-right: auto;
  }
  .header__wrapper .right__container {
    box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.1607843137);
    max-width: 35rem;
    margin-top: 1rem;
  }
  .feather__service__wrapper .service2 {
    margin-top: 3rem;
  }
  .feather__service__wrapper .service3 {
    margin-top: 0;
  }
  .fixed__social__box {
    left: 0.25rem;
  }
  .testi__wrapper {
    padding-top: 2.5rem;
  }
  .testi__wrapper .review__text {
    font-size: 1.12rem;
  }
  .modal .modal-header .btn-close {
    width: 35px;
    height: 35px;
  }
  .office__details h3 img {
    max-height: 2rem;
    width: auto;
  }
  .addressBtn {
    padding: 0.65rem 1rem;
    margin-right: 0.25rem;
  }
  .success__wrapper h1 {
    font-size: 7rem;
  }
  .header__wrapper.subpage .h1 {
    font-size: 2.45rem;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
  .header__wrapper .lead {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .promo__wrapper {
    text-align: center;
  }
  .promo__wrapper .heading {
    line-height: 1.2;
  }
  .promo__wrapper .right__wrapp {
    text-align: left;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
  .success__wrapper h1 {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 87.5%;
  }
  .container {
    max-width: calc(100% - 20px);
  }
  h2, .h2 {
    font-size: 1.35rem;
  }
  h3, .h3 {
    font-size: 1.25rem;
  }
  h4, .h4 {
    font-size: 1.0625rem;
  }
  h5, .h5 {
    font-size: 1rem;
  }
  .lead {
    font-size: 1rem;
  }
  .lead-sm {
    font-size: 0.937rem;
  }
  .ptb-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .heading {
    font-size: 1.75rem;
  }
  .title-lg {
    font-size: 1.5rem;
  }
  .divider {
    margin: 1rem 0 1rem 0;
  }
  .header__wrapper {
    text-align: center;
    padding-top: 4rem;
  }
  .header__wrapper h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .header__wrapper h1 img {
    max-height: 1.7rem;
    width: auto;
  }
  .header__wrapper .left__content .detail__box {
    display: block;
    margin: 1.5rem 0;
  }
  .header__wrapper .left__content .detail__box .logo__box {
    width: 10rem;
  }
  .header__wrapper .left__content .detail__box .logo__box img {
    max-width: 8rem;
  }
  .header__wrapper .left__content .detail__box .caption {
    width: 100%;
    display: block;
  }
  .header__wrapper .left__content .detail__box .caption .lead {
    justify-content: center;
    font-size: 0.875rem;
  }
  .header__wrapper .left__content .detail__box .caption .lead.partner {
    font-size: 1.125rem;
  }
  .header__wrapper .left__content .detail__box .caption .btn-details {
    font-size: 11px;
    font-weight: 600;
  }
  .header__wrapper .left__content .detail__box .caption .ps-4 {
    padding-left: 0;
    margin-top: 1rem;
  }
  .header__wrapper .right__container {
    text-align: left;
    width: 100%;
    padding: 1.75rem 1.25rem 2rem 1.25rem;
  }
  .header__wrapper .right__container .google {
    left: -0.5rem;
    max-height: 6rem;
    top: 0.75rem;
  }
  .header__wrapper .right__container .title {
    padding-left: 3rem;
  }
  .header__wrapper.subpage .h1 {
    font-size: 1.75rem;
  }
  .header__wrapper.subpage.updated__header {
    background: none !important;
    box-shadow: none;
    min-height: auto;
    padding-top: 0;
  }
  .header__wrapper.subpage.updated__header .container {
    padding: 0%;
  }
  .header__wrapper.subpage.updated__header .text__content {
    padding: 2rem 1rem;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.45);
  }
  .about__wrapper .card {
    display: block;
  }
  .about__wrapper .card img {
    max-height: 2rem;
    width: 2rem;
    margin-right: 1rem;
  }
  .about__wrapper .card h4 {
    display: inline-block;
  }
  .feather__service__wrapper .card img {
    max-height: 2.25rem;
    width: 2.25rem;
    margin-right: 1rem;
  }
  .feather__service__wrapper .card .h4 {
    display: inline-block;
  }
  .feather__service__wrapper .card a {
    width: 24px;
    height: 24px;
  }
  .feather__service__wrapper .card a svg {
    width: 1.15rem;
    height: 1.15rem;
  }
  .testi__wrapper .carousel-control-next, .testi__wrapper .carousel-control-prev {
    display: none;
  }
  .portfolio__wrapper .card {
    text-align: center;
  }
  .promo__wrapper {
    padding: 4rem 0 4rem 0;
  }
  .promo__wrapper .desktop_view {
    display: none;
  }
  .promo__wrapper .right__wrapp {
    display: block;
  }
  .promo__wrapper .heading {
    font-size: 1.65rem;
  }
  .promo__wrapper .h4 {
    line-height: 1.2;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .promo__wrapper .promo__wrapper .base-btn {
    padding: 0.875rem 2rem;
  }
  .testi__wrapper .review__text {
    font-size: 1rem;
    padding: 0 0rem;
  }
  .testi__wrapper .review__text::before {
    width: 25px;
    height: 21px;
    background: url(../images/icons/left-quote.webp) no-repeat center center/25px;
    left: 0%;
  }
  .testi__wrapper .review__text::after {
    content: "";
    width: 25px;
    height: 21px;
    background: url(../images/icons/left-quote.webp) no-repeat center center/25px;
    right: 0%;
  }
  .testi__wrapper .client__details .lead {
    font-size: 0.875rem;
  }
  .testi__wrapper .client__details p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
  }
  .testi__wrapper .logo {
    align-items: center;
  }
  .testi__wrapper .carousel-inner {
    min-height: 16rem;
  }
  .modal .modal-header .btn-close {
    width: 32px;
    height: 32px;
    background-size: 12px 12px;
    right: 0.25rem;
    top: -3rem;
  }
  .feather__bg__wrapper {
    background: #FDF6EE !important;
  }
  .res__centered__image {
    text-align: center;
  }
  .res__centered__image img {
    max-height: 300px !important;
  }
  .check__list li {
    font-size: 1.1rem;
  }
  .success__wrapper h1 {
    font-size: 5rem;
    line-height: 1.1;
  }
}/*# sourceMappingURL=style.css.map */