@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --brand: #F34040;
  --secondary: #e11d28;
  --yellow: #dd9148;
  --orange: #ee802a;
  --dark: #000000;
  --dark-light: #3e4b50;
  --grey: #707070;
  --body-text-color: #525252;
  --white: #ffffff;
  --body-font: "Open Sans", sans-serif;
  --transition: all .3s ease-in-out;
  --radius: 1.25rem;
}

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

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

html, body {
  font-size: 16px;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

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

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

.water__text {
  font-size: 6.37rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.03);
}

.round {
  border-radius: var(--radius);
}

.text-gray {
  color: #525252 !important;
}

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

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

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

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

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

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

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

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

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

.bg-gradient {
  background: rgba(78, 101, 127, 0.075) !important;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease-in-out;
}

.btn-primary, .btn-white, .btn-outline-white {
  border-color: var(--brand);
  background-color: var(--brand);
  border-radius: 0;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn-primary:hover, .btn-white:hover, .btn-outline-white:hover {
  border-color: var(--dark);
  background-color: var(--dark);
}
.btn-primary:focus, .btn-white:focus, .btn-outline-white:focus {
  background-color: var(--dark);
}
.btn-primary .icon, .btn-white .icon, .btn-outline-white .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  color: var(--yellow);
  transition: all 0.4s ease-in-out;
}
.btn-primary:hover, .btn-white:hover, .btn-outline-white:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-primary:hover .icon, .btn-white:hover .icon, .btn-outline-white:hover .icon {
  background-color: var(--yellow);
  color: var(--white);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.75rem;
  color: var(--brand);
}
.btn-white:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg {
  color: var(--white);
}
.btn-white:focus {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-white:focus svg {
  color: var(--white);
}

.btn-outline-brand {
  border: 2px solid var(--dark_blue);
  background-color: transparent;
  color: var(--dark_blue);
  font-weight: 600;
  border-radius: 3rem;
}

.btn-oranged {
  border-color: var(--yellow);
  color: var(--dark);
  background-color: var(--yellow);
  padding: 0.12rem 0.12rem 0.12rem 0.75rem;
}
.btn-oranged .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  color: var(--yellow);
  transition: all 0.4s ease-in-out;
}
.btn-oranged:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-oranged:hover .icon {
  background-color: var(--yellow);
  color: var(--white);
}

.btn-arrowed {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1.5rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--brand);
  font-weight: 500;
  color: var(--brand);
  padding-right: 0.35rem;
  background-color: var(--white);
}
.btn-arrowed .icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--brand);
  position: relative;
  margin-left: 1rem;
}
.btn-arrowed .icon svg {
  transition: all 0.3s ease-in-out;
}
.btn-arrowed:hover {
  background-color: var(--brand);
  color: var(--white);
}
.btn-arrowed:hover .icon {
  background-color: var(--secondary);
}
.btn-arrowed:hover .icon svg {
  transform: rotate(45deg);
}

.owl-carousel .owl-item img {
  width: auto !important;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  width: 7rem;
  margin: 2rem 0 0 auto;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  width: 2.93rem !important;
  height: 2.93rem !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand) !important;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: 1.5rem 1.5rem !important;
  background-position: center center !important;
}
.owl-nav .owl-prev span, .owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev::after, .owl-nav .owl-next::after {
  content: "";
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 50%;
  display: block;
  background: transparent radial-gradient(closest-side at 50% 50%, rgba(198, 198, 198, 0) 0%, rgba(255, 183, 90, 0.1843137255) 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: -0.35rem;
  left: -0.35rem;
}
.owl-nav .owl-prev::before, .owl-nav .owl-next::before {
  content: "";
  width: 0;
  height: 3.65rem;
  display: block;
  transition: all 0.4s ease-in-out;
  background: var(--brand);
  z-index: -1;
  border-radius: 5rem;
  position: absolute;
  top: -0.35rem;
  left: -0.25rem;
}
.owl-nav .owl-prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tbGVmdCI+PHBvbHlsaW5lIHBvaW50cz0iMTUgMTggOSAxMiAxNSA2Ij48L3BvbHlsaW5lPjwvc3ZnPg==") !important;
}
.owl-nav .owl-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tcmlnaHQiPjxwb2x5bGluZSBwb2ludHM9IjkgMTggMTUgMTIgOSA2Ij48L3BvbHlsaW5lPjwvc3ZnPg==") !important;
}

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

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
  color: var(--white) !important;
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
}

.mwh-320 {
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

@media (max-width: 1200px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 87.5%;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: calc(100% - 1.5rem);
  }
}
/*=========== Top Header Styles =============*/
.top__header {
  padding-top: 0.5rem;
}
.top__header a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 1.125rem;
}
.top__header a img {
  width: 1.5rem;
  height: auto;
  margin-right: 0.75rem;
}
.top__header .btn-oranged {
  color: var(--dark);
}
.top__header .btn-oranged img {
  margin-right: 0;
}
.top__header .btn-oranged:hover {
  color: var(--brand);
}

/*====================== Navigation Styles ===================*/
.main__header {
  z-index: 999;
}
.main__header.fixed-top {
  background-color: #fff;
  box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
.main__header.fixed-top .top__header {
  height: 0;
  opacity: 0;
}
@media (max-width: 767px) {
  .main__header {
    padding: 0.75rem 0;
  }
}

.navbar {
  padding: 0;
  background-color: transparent;
}
.navbar .container {
  position: relative;
}
.navbar .navbar-brand img {
  max-height: 4rem;
}
.navbar .nav-link {
  font-size: 1.25rem;
  color: var(--dark);
  text-transform: capitalize;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.navbar .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-link.show {
  color: var(--brand);
}
.navbar .nav-link.show::after {
  transform: rotate(-180deg) !important;
  color: var(--brand);
}
.navbar .dropdown-toggle::after {
  border-top-color: var(--brand);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
  position: relative;
}
.navbar .nav-item.active .nav-link::before {
  content: "";
  width: 3rem;
  height: 0.2rem;
  display: block;
  background-color: var(--brand);
  border-radius: 1rem;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .nav-item {
  margin-left: 1rem;
}
.navbar .dropdown {
  position: unset !important;
}
.navbar .dropdown:hover .nav-link {
  color: var(--brand);
}
.navbar .dropdown:hover .nav-link.dropdown-toggle::after {
  border-top-color: var(--brand);
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 76%;
  left: auto;
  right: 0;
  max-width: 50rem;
  width: 100%;
  min-width: 18rem;
  background-color: #fafafa;
  border: 0;
  padding: 2rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu li {
  list-style-type: disc;
}
.navbar .dropdown .dropdown-menu a {
  color: var(--grey);
  display: block;
  padding: 0.5rem 0;
  position: relative;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 600;
}
.navbar .dropdown .dropdown-menu a:hover {
  color: var(--brand);
}
.navbar .dropdown .dropdown-menu .mega-sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.navbar .dropdown .dropdown-menu .title {
  border-bottom: 2px solid var(--brand);
  padding-bottom: 0.25rem;
  color: var(--lime);
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

@keyframes mymove {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@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: 1200px) {
  .navbar .navbar-brand img {
    max-height: 4.5rem;
  }
  .navbar .nav-link {
    font-size: 1.125rem;
  }
}
@media (max-width: 992px) {
  .navbar .dropdown .dropdown-menu .content {
    padding-left: 0% !important;
  }
  .navbar .navbar-brand img {
    max-height: 4rem;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0%;
    left: auto;
    width: 100%;
    background-color: #fafafa;
    padding: 1rem 1rem 1rem 1rem;
    height: 100vh;
    max-width: 320px;
    right: 0;
    z-index: 9999;
    box-shadow: -1px -1px 5px rgba(0, 0, 0, 0.3803921569);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: block;
  }
  .navbar .navbar-collapse::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    background-color: rgba(6, 6, 6, 0.3411764706);
    position: absolute;
    top: 0%;
    left: -100vw;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .navbar .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
  }
  .navbar .navbar-collapse.show::before {
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-collapse .navbar-nav {
    min-height: calc(100vh - 4rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 1rem;
  }
  .navbar .nav-item {
    margin-left: 0;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1098039216);
  }
  .navbar .nav-link {
    width: 100%;
    padding: 1rem 0rem;
    font-size: 1.25rem;
    color: var(--dark);
  }
  .navbar .dropdown-toggle::after {
    border: 0;
    content: "+";
    font-size: 2rem;
    line-height: 1;
    margin-left: auto;
  }
  .navbar .nav-link.show::after {
    content: "−";
  }
  .navbar .nav-item.active .nav-link {
    color: var(--brand);
  }
  .navbar .nav-item.active .nav-link::before {
    content: none;
  }
  .navbar .dropdown .dropdown-menu {
    position: unset;
    padding: 0 0 0 0.5rem;
    box-shadow: none;
    margin-bottom: 2rem;
    min-width: auto;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
  }
  .navbar .dropdown .dropdown-menu a {
    color: var(--dark);
    width: 100% !important;
    font-size: 1.2rem;
  }
  .navbar .dropdown .dropdown-menu a:hover {
    color: var(--brand);
  }
  .navbar .dropdown .dropdown-menu .title {
    color: var(--dark);
    border-color: var(--dark);
    border-width: 1px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
  }
  .navbar .navbar-collapse {
    padding: 1rem 1.5rem;
  }
  .navbar .navbar-toggler.jsExpand span:nth-child(1) {
    top: 9px;
  }
  .navbar .closeBtn {
    margin-left: 0;
  }
}
footer {
  color: #fff;
  background-color: rgba(167, 167, 168, 0.3);
  padding: 3rem 0 0 0;
}
footer a {
  color: #262626;
  text-transform: capitalize;
}
footer a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .logo {
  height: 6rem;
  width: auto;
}
footer .lead-lg {
  margin-bottom: 2rem;
  color: #2E2E2E;
  font-weight: 500;
  position: relative;
}
footer .lead-lg::after {
  content: "";
  width: 6rem;
  height: 1px;
  background-color: #2E2E2E;
  position: absolute;
  bottom: -0.5rem;
  left: 0%;
  display: block;
}
@media (max-width: 575px) {
  footer .lead-lg {
    margin-bottom: 1rem;
  }
  footer .lead-lg::after {
    content: none;
  }
}
footer ul li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
footer ul.social__links li {
  margin-bottom: 0;
}
footer ul.social__links li a {
  display: block;
}
footer ul.social__links li a svg {
  width: 1.35rem;
  height: 1.35rem;
}
footer ul.social__links li:not(:first-child) {
  margin-left: 1rem;
}
footer .form__wrapp {
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
footer .form__wrapp .form-control {
  height: 3.125rem;
  border-color: #fff;
}
footer .form__wrapp .form-control:hover, footer .form__wrapp .form-control:focus {
  border-color: #fff;
}
footer .form__wrapp .btn-primary {
  min-height: 3.125rem;
  padding: 0% 1rem;
}
footer .form__wrapp .btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}
footer .copyright {
  border-top: 1px solid rgba(112, 112, 112, 0.3);
  color: #373737;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--brand);
  color: var(--white);
  z-index: 99;
  display: none;
}
.backTop:hover {
  background-color: var(--dark);
}
.backTop.show {
  display: inline-flex;
}

/*======================= Header Wrapper Styles ========================*/
.header__wrapper {
  min-height: 46rem;
  padding-top: 6rem;
}
@media (max-width: 991px) {
  .header__wrapper {
    padding-top: 11rem;
  }
}
@media (max-width: 767px) {
  .header__wrapper {
    padding-top: 8rem;
  }
}
.header__wrapper .overlay {
  background-color: var(--dark);
  opacity: 0.75;
}
.header__wrapper.subpage__header {
  min-height: auto;
  padding: 8rem 0 5rem 0;
}
.header__wrapper.subpage__header .overlay {
  background-color: var(--dark);
  opacity: 0.75;
  backdrop-filter: blur(10px);
}
@media (max-width: 991px) {
  .header__wrapper.subpage__header {
    padding-bottom: 2rem;
  }
}

.bg__pattern {
  min-height: 100vh;
  top: -6rem;
  z-index: -1;
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 50%);
}
.bg__pattern__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, #fee 1px, transparent 1px), linear-gradient(to bottom, #fee 1px, transparent 1px);
  background-size: 20px 30px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
}

.info__card .icon__box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  width: 9rem;
  height: 9rem;
  position: relative;
}
.info__card .icon__box img, .info__card .icon__box svg {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  filter: contrast(0) brightness(10);
}
.info__card .icon__box::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: #F0F0F0;
  z-index: -1;
  border-radius: 1rem;
}

@media (min-width: 992px) {
  .why__trust__banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100%;
  }
  .why__trust__banner__overlay.leftalign {
    left: inherit;
    right: 0;
  }
}
.arrow__list {
  padding-left: 0;
}
.arrow__list li {
  position: relative;
  padding-left: 2rem;
  list-style-type: none;
}
.arrow__list li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--arrowright) no-repeat center center/cover;
}

.service__card {
  background: #FFFFFF;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #dddddd;
  border-radius: var(--radius);
  transition: all 0.4s ease-in-out;
}
.service__card .card__text {
  min-height: 5rem;
}

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

@media (min-width: 992px) {
  .promo__cta__box {
    max-width: 19rem;
  }
}
.process__card .icon {
  width: 5rem;
  height: 5rem;
  background-color: #ffd7b2;
}
.process__card .icon img, .process__card .icon svg {
  height: 3rem;
  width: auto;
}

.promo__wrapper {
  background-color: var(--white);
}
.promo__wrapper .overlay {
  background-color: var(--brand);
}
.promo__wrapper.gradient::before {
  background-color: rgba(78, 101, 127, 0.075);
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.promo__wrapper::after {
  background-color: rgba(167, 167, 168, 0.3);
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.promo__wrapper .label {
  font-size: 0.875rem;
}
.promo__wrapper .content {
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.promo__wrapper .content .btn-primary {
  min-height: 3rem;
  font-size: 1.25rem;
  padding: 0% 0.5rem 0 0.75rem;
  border-radius: 0.5rem !important;
  font-weight: 700;
}
.promo__wrapper .content .btn-primary .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.75rem;
  background-color: var(--yellow);
}
.promo__wrapper .content .btn-primary .icon img {
  width: 1.5rem;
  height: 1.5rem;
}
.promo__wrapper select option {
  padding: 0.5rem;
  font-size: 2em;
}
.promo__wrapper.footer {
  margin-top: 0;
}

.custom__select .select2 {
  width: 100%;
  text-align: left;
}
.custom__select .select2-container .select2-selection--single {
  height: 3.5rem;
}
.custom__select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 3.5rem;
  font-weight: 600;
  padding-left: 1rem;
}
.custom__select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--yellow) transparent transparent transparent;
  border-width: 9px 8px 0 8px;
  margin-left: -17px;
  margin-top: 6px;
}
.custom__select .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 8px 8px 8px;
}
.custom__select .btn-primary {
  font-size: 1.125rem;
  padding: 0% 1rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-left-radius: 0% !important;
  border-bottom-left-radius: 0% !important;
  margin-left: -0.2rem;
}

@media (max-width: 575px) {
  .mobile__full__screen {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
}
.serviceThreeItemSlider .owl-nav {
  position: absolute;
  top: -7rem;
  right: 0;
}

.testimonial__card .testimonial-text {
  min-height: 11rem;
}

@media (max-width: 1399px) {
  .testimonial__card .testimonial-text {
    min-height: 13em;
  }
}
@media (max-width: 991px) {
  .testimonial__card .testimonial-text {
    min-height: 16em;
  }
}
.hero__quote__form {
  background-color: var(--yellow);
  max-width: 350px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .hero__quote__form {
    margin-right: auto;
  }
}
.hero__quote__form .btn-dark {
  background-color: var(--blue);
  border-color: var(--blue);
}
.hero__quote__form .form__wrapp .btn-primary {
  width: 3rem;
  height: 3rem;
}
.hero__quote__form .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;
}
.hero__quote__form .form__wrapp .custom__select .select2-container--default .select2-selection--single {
  border: 0;
  border-radius: 1.25rem;
}
.hero__quote__form .form__wrapp .custom__select .select2-container .select2-selection--single {
  height: 3rem;
}
.hero__quote__form .form__wrapp .custom__select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 3rem;
  font-weight: 600;
  padding-left: 1rem;
}

/*---- Accordion Styles ---------*/
.accordion .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--brand) !important;
  border-radius: var(--radius);
  box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
  position: relative;
}
.accordion .accordion-item .accordion-button {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
  box-shadow: none !important;
  background-color: #fff !important;
  position: relative;
  justify-content: space-between;
  display: flex;
}
.accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "−";
  background-color: var(--yellow);
}
.accordion .accordion-item .accordion-button::after {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: block;
  background-color: var(--brand);
  background-image: none;
  content: "+";
  font-size: 1.5rem;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.accordion .accordion-item .accordion-body {
  padding-top: 0;
  font-size: 1.125rem;
  line-height: 1.65;
}

@media (max-width: 575px) {
  .accordion .accordion-item .accordion-button {
    font-size: 1.125rem;
  }
  .accordion .accordion-item .accordion-body {
    font-size: 1rem;
  }
}
.service__infocard {
  border-color: var(--brand);
}

.contact__form__wrapper .form-control {
  height: 4rem;
  background-color: #EDEDED;
  border-color: #EDEDED;
  color: var(--dark);
  font-weight: 500;
  padding: 0.65rem 1.25rem;
}/*# sourceMappingURL=style.css.map */