* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Quicksand", sans-serif;
  margin: 0.01rem auto 0;
  padding: 0;
  color: #202020;
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  background-color: #fff;
  overflow-x: hidden;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 0.8rem;
}

p,
ul li {
  font-size: 1.6rem;
  line-height: 2.7rem;
}

ol,
ul {
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #30266d;
  font-weight: 700;
}

a,
button,
input[type=submit] {
  color: #16a59f;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

a:focus,
a:hover,
button:focus,
button:hover {
  color: #30266d;
  text-decoration: none;
  outline: 0 !important;
}

.row > *,
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}

.pointer-event-none {
  pointer-events: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  animation-duration: 0.5s;
  transition: 0.3s all ease-in-out;
}
header.menu-fix {
  animation-name: fadeInDown;
  animation-fill-mode: none;
}

.menu-area {
  background-color: #fff;
  padding: 8px 0;
}

.head-tp {
  background-color: #30266d;
  padding: 12px 0;
}
.menu-fix .head-tp {
  display: none;
}

.head-tp a, .head-tp p {
  color: #fff;
}

.head-tp .head-tp-l a {
  margin-right: 25px;
}

.head-tp .head-tp-r {
  justify-content: flex-end;
}

.head-tp .head-tp-r a {
  margin-left: 25px;
}

.logo-area img {
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-fill-mode: none;
}
.menu-fix .logo-area img {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-fill-mode: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.nav-item {
  margin-left: 22px;
}

.nav-link.btn-main.menu-cta {
  padding: 11px 25px !important;
}

.nav-link {
  color: #202020;
  font-size: 1.6rem;
  padding: 0;
  position: relative;
  padding: 10px 0 !important;
}
.nav-link:hover {
  color: #30266d;
}

.navbar.navbar-expand-xl {
  padding: 0;
}

.nav-item.active .nav-link {
  text-decoration: none !important;
  color: #30266d;
}

.menu__block_wrap {
  display: flex;
  justify-content: flex-end;
}

.nav-link.nav-btn {
  background-color: #30266d;
  color: #fff;
  padding: 10px 25px !important;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(75, 132, 255, 0.2);
}
.nav-link.nav-btn:hover {
  background-color: #30266d;
  color: #fff;
}

.navbar.navbar-expand-lg {
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  z-index: 99;
  transform-origin: bottom center;
  transform: rotate(-90deg) scale(0) translateX(85px);
  width: 50px;
  height: 50px;
  display: inline-block;
  background-color: #30266d;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.fade.in {
  opacity: 1;
  transform: rotate(0) scale(1) translateX(0);
}
.scroll-to-top:hover {
  color: #fff;
  background-color: #1b1b1b;
  animation: float-icon 1s ease-in-out;
}

@keyframes float-icon {
  0% {
    bottom: 20px;
  }
  25% {
    bottom: 10px;
  }
  50% {
    bottom: 20px;
  }
  75% {
    bottom: 10px;
  }
  100% {
    bottom: 20px;
  }
}
::-moz-selection {
  color: #fff;
  background: #30266d;
}
::selection {
  color: #fff;
  background: #30266d;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  height: auto;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  width: 220px;
  padding: 0;
  border: none;
  background-color: #eff6fe;
  margin: 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  left: 0;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  transform: translateY(20px);
  display: block;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.dropdown-menu .dropdown-item {
  padding: 8px 12px;
  display: block;
  color: #202020;
  font-size: 1.4rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  white-space: unset;
}
.dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #30266d;
  color: #fff;
}

.dropdown-submenu {
  position: relative;
}

.footer-bg {
  background-color: #23262c;
  padding: 50px 0;
}
.footer-bg a, .footer-bg p {
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #fff;
}

.footer-left-block img {
  margin: 0 0 15px;
}

.footer-links li {
  list-style-type: none;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.footer-links li i {
  margin-right: 8px;
  color: #16a59f;
}
.footer-links li a, .footer-links li p {
  display: flex;
  align-items: baseline;
  color: #fff;
}

.foot-address-single {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.address-foot-desc p {
  margin: 0;
  line-height: 22px;
  color: #fff;
  font-weight: 400;
}
.address-foot-desc p a {
  color: #e5cc96;
}

.get-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.get-social a {
  color: #fff;
  margin-right: 20px;
}
.get-social a:hover {
  transform: scale(1.05);
}

.footer-bg .get-social a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 15px;
  font-size: 1.4rem;
  color: #fff;
}
.footer-bg .get-social a:hover {
  color: #fff;
}

.address-icon-foot {
  font-size: 2.4rem;
  color: #e5cc96;
  margin-right: 12px;
}

.btn-main {
  background-color: #16a59f;
  border: 1px solid #16a59f;
  color: #fff;
  padding: 12px 30px;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}
.btn-main:focus, .btn-main:hover {
  color: #fff;
  background-color: #23262c;
  border: 1px solid #23262c;
}
.btn-main.btn-black {
  background-color: #23262c;
  border: 1px solid #23262c;
}
.btn-main.btn-black:hover {
  background-color: #16a59f;
  border: 1px solid #16a59f;
}

.foot-head {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin: 0px 0 15px;
}
.foot-head i {
  font-style: normal;
  color: #16a59f;
}

.copyright-bg {
  background-color: #111111;
  padding: 15px;
  border-radius: 15px;
  margin: 50px 0 0;
}
.copyright-bg p, .copyright-bg a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.copyright-r {
  text-align: right;
}

.heading {
  font-size: 2.8rem;
  line-height: 3.8rem;
  margin: 0 0 30px;
}
.heading i {
  font-style: normal;
  color: #16a59f;
}

.small-heading {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.section-divider {
  margin: 0 0 60px;
}

.form-control {
  height: 48px;
  border: 1px solid #eee;
  font-size: 1.4rem;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 15px;
}
.custom-form .form-control {
  margin: -10px 0 0;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid #30266d;
}
.form-control.error {
  border: 1px solid #16a59f;
}

label {
  margin: 0 7px -15px;
  background-color: #fff;
  z-index: 9;
  padding: 0 10px;
  font-weight: 600;
}

label.error {
  padding: 0;
  margin: 0;
  font-weight: 400;
  color: #16a59f;
}

.form-group {
  margin-bottom: 25px;
}

textarea.form-control {
  min-height: 105px;
}

.sub-head {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin: 25px 0 10px;
  position: relative;
  padding-left: 12px;
}
.sub-head:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 30px;
  background-color: #16a59f;
}

.grey-bg {
  background-color: #f6f7fb;
}

.home-slider {
  background-color: #30266d;
}

.check-list li {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list li::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f560";
  position: absolute;
  left: 0px;
  top: 0px;
  color: #16a59f;
}
.check-list .check-list {
  margin-left: 40px;
}
.check-list .check-list li {
  list-style-type: square;
  padding: 0;
}
.check-list .check-list li::before {
  display: none;
}

.order-list {
  padding-left: 15px;
}
.order-list li {
  margin-bottom: 8px;
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    display: block;
  }
  .navbar-nav {
    flex-direction: row;
    align-items: center;
  }
  .drp-arrow.submenu-arrow {
    transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
  }
  .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu {
    right: 0;
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
  .dropdown.second-level .dropdown-menu {
    right: -100%;
    left: auto;
    top: 0;
  }
  .dropdown.second-level > .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown.second-level > .dropdown-item i {
    transform: rotate(270deg);
  }
  .dropdown.third-level > .dropdown-item i {
    transform: rotate(270deg);
  }
  .offcanvas-start {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .dropdown-header {
    font-size: 1.8rem;
    color: #102037;
    padding: 12px 15px 12px;
    border-bottom: 1px solid #eee;
  }
  .nav-link {
    padding: 12px 0 !important;
  }
  .nav-link.nav-btn {
    margin-top: 15px;
  }
  .nav-item.active .nav-link {
    background-color: transparent;
    font-weight: 600;
  }
  .nav-item.active .btn-main {
    color: #181818 !important;
  }
  .drp-arrow {
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
    width: 43px;
    height: 39px;
    background-color: #00373a;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-open {
    position: relative;
    transition: 0.3s all;
  }
  .dropdown-item {
    flex-basis: 100%;
    white-space: pre-line;
  }
  .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
  }
  .dropdown-submenu .dropdown-menu {
    background-color: #c8e1fe;
    padding: 0 10px;
  }
  .dropdown .drp-arrow i {
    transform: rotate(0deg);
    transition: 0.3s all ease-in-out;
    display: inline-block;
  }
  .dropdown > .drp-arrow.show i {
    transform: rotate(45deg);
  }
  .offcanvas-start {
    width: 270px;
    border-right: none;
    background-color: #fff;
    overflow-x: auto;
    height: 100vh;
    padding: 0 0 80px;
  }
  .nav-item {
    display: block;
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid rgba(228, 228, 228, 0.33);
    margin: 0;
  }
  .nav-item.dropdown.show .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .nav-item:last-child {
    border: none;
  }
  .navbar-nav .dropdown-menu {
    width: 100%;
    transform: none;
    padding: 0;
  }
  #hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  #hamburger .line {
    fill: none;
    stroke: #00373a;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  #hamburger .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #hamburger .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  #hamburger .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #hamburger.open .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  #hamburger.open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  #hamburger.open .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    display: block;
    min-width: 10px;
    padding: 0 7px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03) inset;
  }
  .dropdown-menu.show {
    max-height: 500px;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    overflow-y: auto;
    background-color: #f0f5fb;
  }
  .dropdown-menu .dropdown-item {
    color: #15375c;
    background-color: transparent;
    border-bottom: 1px solid #eee;
  }
  .nav-item.dropdown.show .dropdown-toggle i {
    transform: rotate(45deg);
  }
  .dropdown-submenu.show .drp-submenu {
    max-height: 500px;
    overflow: visible;
    background-color: #dbe8fb;
  }
  .dropdown-submenu.show .drp-arrow i {
    transform: rotate(45deg);
  }
  .nav-link.btn-main {
    margin: 10px 0 0;
    display: block;
  }
  .nav-link:hover {
    color: #15375c;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 990px) {
  html {
    font-size: 55%;
  }
  .footer-left-block {
    text-align: center;
    margin: 0 0 25px;
  }
  .foot-head {
    margin: 0px 0 15px;
  }
  .footer-bg {
    padding: 40px 0;
  }
  .copyright-r .get-social {
    justify-content: center;
    margin: 0 0 10px;
  }
  .copyright-r .get-social a {
    margin: 0 15px;
  }
}
@media (max-width: 767px) {
  .sub-head:after {
    height: 25px;
  }
  .footer-bg .get-social a {
    margin: 0 5px;
  }
  .get-social {
    justify-content: center;
  }
  .get-social a {
    margin-right: 15px;
  }
  .tp-area {
    padding: 8px 0;
  }
  .footer-links.useful-links li a {
    flex-direction: row;
  }
  .footer-links.useful-links li i {
    margin-right: 8px;
  }
  .section-divider {
    margin: 0 0 40px;
  }
  .foot-logo {
    width: 220px;
  }
  .footer-links ul li {
    text-align: center;
  }
  .footer-links li a, .footer-links li p {
    align-items: center;
    flex-direction: column;
  }
  .footer-links li i {
    margin-right: 0;
    margin: 10px 0 5px;
  }
  .footer-head {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 25px;
  }
  .address-icon-foot {
    margin: 0 auto;
  }
  .foot-address-single {
    display: block;
    text-align: center;
  }
  .footer-social {
    justify-content: space-around;
  }
  .footer-bg {
    text-align: center;
  }
  .footer-nav ul li {
    display: block;
    padding: 10px 0;
  }
  .footer-links {
    text-align: center;
  }
  .footer-links li {
    justify-content: center;
  }
  .btn-main {
    padding: 10px 20px 10px;
    margin: 0 auto;
    text-align: center;
    min-width: 130px;
    max-width: -moz-max-content;
    max-width: max-content;
    display: block;
  }
  .flex-btn {
    justify-content: center;
  }
  .flex-btn .btn-main {
    min-width: 10px;
  }
  .copyright-bg {
    padding: 15px 0;
    text-align: center;
    margin: 20px 0 0;
  }
  .copyright-r {
    text-align: center;
    margin: 5px 0 0;
  }
  .menu-fix .menu-area {
    padding: 8px 0;
  }
  .footer-bg .get-social {
    width: 100%;
  }
  .get-social.top-call-btns.head-flex {
    justify-content: flex-end;
  }
  .logo-area img {
    width: 140px;
  }
}