@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Raleway:wght@600;700&family=Sarabun:wght@500&display=swap");
:root {
  --brand: #501C63;
  --bg-light-blue: #D7E9F3;
  --link-color: #2C2C2C;
  --heading-color: #191919;
  --dark: #191919;
  --white: #ffffff;
  --border-color: rgba(112, 112, 112, 0.431);
  --body-text-color: #343434;
  --border-radius: .35rem;
  --br-lg: 1rem;
  --body-font: "Montserrat", sans-serif;
  --nav-font: "Sarabun", sans-serif;
  --heading-font: "Raleway", sans-serif;
}

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

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

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

.owl-carousel .owl-item img {
  width: auto;
}

.container-fluid {
  max-width: calc(100% - 140px);
}

.container-fluid.full-width {
  max-width: 100%;
}

.container-fluid.right {
  max-width: calc(100% - 70px);
  margin-right: 0;
  padding-right: 0;
}

.container-fluid.start {
  max-width: calc(100% - 70px);
  margin-left: 0;
  padding-left: 0;
}

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

.h1 {
  font-size: 2.875rem;
  font-weight: 600;
  color: var(--heading-color);
}
.h1.sm {
  font-size: 2.25rem;
}

h2, .h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

h3, .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
}

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

h5, .h5 {
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.col--5 {
  flex: 0 0 20%;
  max-width: 20%;
}

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

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

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

.text-26 {
  color: #262626 !important;
}

.text-1d {
  color: #1D242E !important;
}

.text-grey {
  color: #888888 !important;
}

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

.fw-semibold {
  font-weight: 600;
}

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

.bgi {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

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

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

.ff-mons {
  font-family: var(--body-font);
}

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

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

.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

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

.link__white {
  color: var(--white);
  font-weight: 600;
}
.link__white:hover {
  text-decoration: underline;
  color: var(--white);
}

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

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand);
  position: absolute;
  top: 0.65rem;
  left: 0%;
}

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

.btn {
  font-weight: 600;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn.height {
  min-height: 2.875rem;
}
.btn.height.sm {
  font-size: 0.937rem;
  min-height: 2.25rem;
}

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

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

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

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

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

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.6rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.23rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 1399.99px) {
  .h1 {
    font-size: 2.5rem;
  }
  .h1.lg {
    font-size: 3.5rem;
  }
  .lead {
    font-size: 1.125rem;
  }
  .container-fluid {
    max-width: calc(100% - 100px);
  }
  .container-fluid.start, .container-fluid.right {
    max-width: calc(100% - 50px);
  }
}
@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
  .h1 {
    font-size: 2.25rem;
  }
  .h1.sm {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.625rem;
  }
  h4, .h4 {
    font-size: 1.45rem;
  }
  .container-fluid {
    max-width: calc(100% - 80px);
  }
  .container-fluid.start, .container-fluid.right {
    max-width: calc(100% - 40px);
    margin-right: 0;
    margin-left: auto;
  }
  .container-fluid.start.max-100, .container-fluid.right.max-100 {
    max-width: 100%;
    padding: 0%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
  .h1.sm {
    font-size: 1.875rem;
  }
  h2, .h2 {
    font-size: 1.625rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
}
@media (max-width: 575.99px) {
  :root {
    --br-lg: 1rem;
  }
  html {
    font-size: 87.5%;
  }
  .fs-13 {
    font-size: 11px;
  }
  .lead {
    font-size: 1rem;
  }
  .lead-sm {
    font-size: 1.067rem;
  }
  .h1 {
    font-size: 1.875rem;
  }
  .h1.sm {
    font-size: 1.625rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  h3, .h3 {
    font-size: 1.45rem;
  }
  .btn {
    font-size: 0.937rem;
    padding: 0% 0.75rem;
  }
  .btn .arrow {
    width: 18px;
    height: 8px;
    background-size: contain;
  }
  .btn.height {
    min-height: 2.5rem;
  }
  .container-fluid, .container {
    max-width: calc(100% - 14px);
  }
  .container-fluid.start, .container-fluid.right, .container.start, .container.right {
    max-width: calc(100% - 14px);
    margin-right: 0;
    margin-left: auto;
  }
  .container-fluid.start.max-100, .container-fluid.right.max-100, .container.start.max-100, .container.right.max-100 {
    max-width: 100%;
    padding: 0%;
  }
}
@media (min-width: 1800px) {
  .container-fluid {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
#preloader {
  z-index: 1050;
}
#preloader .loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
#preloader .loader:before,
#preloader .loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
#preloader .loader:before {
  animation: ball1 1s infinite;
  background-color: #cb2025;
  box-shadow: 30px 0 0 #f8b334;
  margin-bottom: 10px;
}
#preloader .loader:after {
  animation: ball2 1s infinite;
  background-color: #00a096;
  box-shadow: 30px 0 0 #97bf0d;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(0.8);
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.2);
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(0.8);
    -moz-transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #f8b334;
  }
  50% {
    box-shadow: 0 0 0 #f8b334;
    margin-bottom: 0;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #97bf0d;
  }
  50% {
    box-shadow: 0 0 0 #97bf0d;
    margin-top: -20px;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #97bf0d;
    margin-top: 0;
  }
}

.top__nav {
  font-weight: 500;
  font-family: var(--nav-font);
  letter-spacing: 1px;
}

/*====================== Navigation Styles ===================*/
.navbar {
  padding: 0rem 0;
  background-color: #F8F8F8;
  position: relative;
  z-index: 999;
  font-family: var(--nav-font);
}
.navbar .nav-item {
  flex: 1 auto;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--link-color);
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 19%;
  width: 100%;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  padding: 0%;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu.service__menu {
  min-width: min-content;left:-100%;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 1.067rem;
  display: block;
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative; 
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--white);
  background-color: var(--brand);
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--brand);
}
.navbar .call__btn {
  font-size: 1rem;
  border-width: 2px;
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.navbar .call__btn:hover, .navbar .call__btn:focus {
  background-color: transparent;
}
.navbar.nav-fixed {
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}
.navbar.nav-fixed .navbar-toggler {
  position: fixed !important;
  top: 0%;
  right: 0%;
  z-index: 999;
  border-radius: 50% 0 50% 50% !important;
  width: 4rem;
  height: 4rem;
}
.navbar.nav-fixed .navbar-toggler span:nth-child(2) {
  margin: 7px 0;
}

@keyframes mymove {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  background-color: var(--white);
  color: var(--brand);
}
.social__links li a svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--brand);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}
.social__links li a:hover svg, .social__links li a:focus svg {
  fill: white;
}
.social__links li:not(:first-child) {
  margin-left: 0.5rem;
}
.social__links.header li a {
  width: 1.5rem;
  height: 1.5rem;
}
.social__links.header li a svg {
  width: 13px;
  height: 13px;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .navbar .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    padding: 1rem;
    z-index: 999;
    background-color: #fff;
  }
  .navbar .navbar-collapse .dropdown-menu {
    position: static !important;
    margin: 0% auto;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
  }
  .navbar .ndis {
    height: 2.5rem;
  }
  .navbar.fixed-top {
    padding: 0;
  }
  .navbar.fixed-top .navbar-brand img {
    max-height: 2.5rem;
  }
}
footer {
  padding: 3rem 0 1rem 0;
}
footer a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 0.937rem;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
  color: var(--dark);
}
footer .contact__list {
  font-family: var(--btn-font);
}
footer .contact__list li .icon {
  width: 2rem;
}
footer .contact__list li .caption {
  width: calc(100% - 2rem);
}
footer .border-top {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 0rem;
  right: 0.5rem;
  width: 3rem;
  min-height: auto;
  height: 3.5rem;
  padding: 0.1rem 0 0 0;
  background-color: var(--white);
  z-index: 999;
  border-radius: 2rem 2rem 0 0;
  display: none;
  border: 2px solid var(--white);
  border-bottom: 0;
  justify-content: center;
}
.backTop ._icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--brand);
  margin-bottom: 0.5rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tdXAiPjxwb2x5bGluZSBwb2ludHM9IjE4IDE1IDEyIDkgNiAxNSI+PC9wb2x5bGluZT48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 1.75rem;
  background-position: center center;
}
.backTop ._icon:hover {
  background-color: red;
}
.backTop.show {
  display: flex;
}

@media (max-width: 575.99px) {
  footer {
    padding: 3rem 0 0rem 0;
  }
  footer .logo img {
    max-height: 4rem;
    width: auto;
  }
  footer .links li {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  footer .links li:not(:last-child) {
    margin-right: 2rem;
  }
  footer .ndis__logo {
    position: static !important;
    transform: none !important;
  }
}/*# sourceMappingURL=variables.css.map */