:root {
  --swat-font: "Mulish", sans-serif;
  --swat-heading-font: "Montserrat", sans-serif;
  --swat-special-font: "Work Sans", serif;
  --swat-text: #636363;
  --swat-text-rgb: 99, 99, 99;
  --swat-text-dark: #92918F;
  --swat-text-dark-rgb: 146, 145, 143;
  --swat-text-gray: #89868d;
  --swat-text-gray-rgb: 137, 134, 141;
  --swat-base: #004acd;
  --swat-base-rgb: 0, 127, 242;
  --swat-gray: #F5F1EF;
  --swat-gray-rgb: 245, 241, 239;
  --swat-white: #fff;
  --swat-white-rgb: 255, 255, 255;
  --swat-black: #000000;
  --swat-black-rgb: 0, 0, 0;
  --swat-black2: #f6ff39;
  --swat-black2-rgb: 34, 34, 34;
  --swat-black3: #333333;
  --swat-black3-rgb: 51, 51, 51;
  --swat-border-color: #DDDDDD;
  --swat-border-color-rgb: 221, 221, 221;
  --swat-letter-space: 0.1em;
  --swat-letter-space-xl: 0.2em;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.social {
  position: relative;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.social__list {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .social__list {
    flex-direction: column;
  }
}

.social__list li {
  position: relative;
}

@media (max-width: 767px) {
  .social__list li {
    width: 100%;
  }
}

.social__list li a {
  font-size: 32px;
  color: var(--swat-black, #000000);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 50px 0px;
}

@media (max-width: 1199px) {
  .social__list li a {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .social__list li a {
    font-size: 24px;
    gap: 10px;
    padding: 40px 0px;
  }
}

@media (max-width: 767px) {
  .social__list li a {
    justify-content: center;
  }
}

.social__list li a i {
  color: var(--swat-text, #636363);
  position: relative;
  top: 4px;
  transition: 0.3s;
}

.social__list li a:hover {
  color: var(--swat-base, #004acd);
}

.social__list li a:hover i {
  color: var(--swat-base, #004acd);
  animation: 1s linear 0s 1 normal none running bounceIn;
}

.social__list li+li {
  position: relative;
}

.social__list li+li::before {
  position: absolute;
  left: -36%;
  top: 0px;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--swat-border-color, #DDDDDD);
}

@media (max-width: 1199px) {
  .social__list li+li::before {
    left: -20%;
  }
}

@media (max-width: 991px) {
  .social__list li+li::before {
    left: -15%;
  }
}

@media (max-width: 767px) {
  .social__list li+li::before {
    width: 100%;
    height: 1px;
    left: 0px;
  }
}

body {
  font-family: var(--swat-font, "Mulish", sans-serif);
  color: var(--swat-text, #636363);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--swat-base, #004acd);
  transition: 400ms;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  color: var(--swat-black, #000000);
}

@media (max-width: 575px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--swat-base, #004acd);
}

.background-gray {
  background-color: var(--swat-gray, #F5F1EF);
}

.background-black {
  background-color: var(--swat-black, #000000);
}

.background-black-2 {
  background-color: var(--swat-black2, #222222);
}

.swat-text-dark {
  color: var(--swat-text-dark, #92918F);
}

.page-wrapper {
  position: relative;
  margin: 0px auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.swat-btn {
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  border: none;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 32px;
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  outline: none !important;
}

.swat-btn i {
  font-size: 12px;
  margin-left: 9px;
  color: inherit;
  display: inline-block;
  transition: 0.2s;
}

.swat-btn::after {
  background-color: var(--swat-black2, #222222);
  position: absolute;
  bottom: -17px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  content: "";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s;
}

.swat-btn:hover {
  color: var(--swat-base, #004acd);
}

.swat-btn:hover i {
  transform: rotate(45deg);
}

.swat-btn:hover::after {
  width: 100%;
  height: calc(100% + 30px);
  border-radius: 10px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0px;
  padding-bottom: 0px;
  border-radius: 0px;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--swat-base, #004acd);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid rgb(244, 244, 244);
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--swat-text, #636363);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}

.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url("../images/shapes/leaf-1-1.png");
  background-repeat: no-repeat;
  background-position: center top;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}

.block-title p {
  margin: 0px 0px 7px;
  color: var(--swat-text, #636363);
  font-size: 16px;
  line-height: 1;
}

@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}

.block-title h3 {
  margin: 0px;
  font-size: 35px;
  color: var(--swat-black, #000000);
}

@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0px;
}

.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-black, #000000);
}

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}

.ul-list-one li::before {
  content: "";
  color: var(--swat-base, #004acd);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  font-family: azino-icon;
}

.preloader {
  position: fixed;
  background-color: var(--swat-base, #000000);
  background-position: center center;
  background-repeat: no-repeat;
  inset: 0px;
  z-index: 9991;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background-color: var(--swat-black, #000000);
  z-index: 99;
  opacity: 0;
  padding: 6px;
  visibility: hidden;
  transform: translateY(15px);
  transition: 200ms linear;
}

.scroll-top--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.scroll-top::after {
  position: absolute;
  content: "";
  text-align: center;
  line-height: 50px;
  font-size: 15px;
  transform: rotate(-90deg);
  color: var(--swat-base, #004acd);
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: 200ms linear;
  font-family: icomoon !important;
}

.scroll-top__circle path {
  stroke: var(--swat-base, #004acd);
  stroke-width: 4;
  fill: none;
  box-sizing: border-box;
  transition: 200ms linear;
}

.post-pagination {
  margin: 30px 0px 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-pagination.text-center {
  justify-content: center;
}

.post-pagination.text-end {
  justify-content: flex-end;
}

.post-pagination--mt0 {
  margin-top: 20px;
}

.post-pagination a {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--swat-gray, #F5F1EF);
  align-items: center;
  justify-content: center;
  color: var(--swat-base, #004acd);
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  transition: 400ms;
}

.post-pagination a.current,
.post-pagination a:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.swat-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.swat-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms, visibility 500ms;
}

.swat-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0px;
  padding: 0px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--swat-base, #004acd);
  transition: 500ms;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
  border-color: var(--swat-base, #004acd);
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: var(--swat-border-color, #DDDDDD);
  border: none;
  position: relative;
  margin: 0px;
  transition: 300ms;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span::after {
  width: 22px;
  height: 22px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--swat-base, #004acd);
  transform: scale(0);
  transition: 300ms;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.swat-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--swat-base, #004acd);
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span::after,
.swat-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.swat-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.custom-cursor-two {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 3px 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: var(--swat-white, #fff);
  opacity: 0;
  transition: 500ms;
  z-index: 11;
  pointer-events: none;
}

.custom-cursor-two__icon {
  font-size: 22px;
  color: var(--swat-black, #000000);
  display: inline-block;
}

.custom-cursor-two__icon--left {
  position: relative;
  top: -3px;
  transform: rotate(-180deg);
}

.custom-cursor-two-hover:hover+.custom-cursor-two {
  opacity: 1;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .sec-title {
    /* padding-bottom: 50px; */
    /* margin-top: 50px; */
  }
}

.sec-title__tagline {
  margin: 14px 0px 14px !important;
  color: var(--swat-base, #004acd);
  text-transform: uppercase;
  font-family: var(--swat-special-font, "Work Sans", sans-serif);
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1em;
}

@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 18px;
  }
}

.sec-title__tagline img,
.sec-title__tagline>i {
  width: 16px;
  height: auto;
  position: relative;
  top: -1px;
  display: inline-block;
  margin-right: 7px;
}

.sec-title__tagline>i {
  font-size: 16px;
  width: auto;
}

@media (min-width: 768px) {

  .sec-title__tagline img,
  .sec-title__tagline>i {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }

  .sec-title__tagline>i {
    font-size: 20px;
    width: auto;
    height: auto;
  }
}

.sec-title__tagline img:last-of-type,
.sec-title__tagline>i:last-of-type {
  /* margin-left: 7px; */
  margin-right: 12px;
}

@media (min-width: 768px) {

  .sec-title__tagline img:last-of-type,
  .sec-title__tagline>i:last-of-type {
    /* margin-left: 12px; */
    margin-right: 12px;
  }
}

.sec-title.text-left .sec-title__tagline img:last-of-type,
.sec-title.text-left .sec-title__tagline>i:last-of-type {
  display: none;
}

.sec-title__title {
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  margin: -1px;
}

.sec-title__title_sub {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  margin: -1px;
}

@media (max-width: 768px) {
  .sec-title__title {
    font-size: 18px;
    line-height: 36px;
  }

  .sec-title__title_sub {
    font-size: 14px;
  }
}

.sec-title__title--white {
  color: var(--swat-white, #fff);
}

.sec-title__title--yellow {
  color: var(--swat-black2, #f6ff39);
}

.inline-logo {
  height: 1.1em;
  vertical-align: middle;
  display: inline-block;
}

.sec-icon {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  filter: invert(16%) sepia(93%) saturate(5765%) hue-rotate(214deg) brightness(96%) contrast(101%);
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--swat-black, #000000);
  color: var(--swat-white, #fff);
  font-family: var(--swat-font, "Mulish", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--swat-font, "Mulish", sans-serif);
}

.ui-datepicker-calendar td {
  background-color: var(--swat-gray, #F5F1EF);
  background-image: none;
  font-family: var(--swat-font, "Mulish", sans-serif);
  color: var(--swat-text, #636363);
}

.ui-datepicker-calendar td a {
  border-color: var(--swat-border-color, #DDDDDD);
  background-color: var(--swat-gray, #F5F1EF);
  background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--swat-border-color, #DDDDDD);
  background-color: var(--swat-gray, #F5F1EF);
  background-image: none;
  color: var(--swat-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--swat-white, #fff);
  color: var(--swat-black, #000000);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
  background: var(--swat-base, #004acd);
  box-shadow: var(--swat-base, #004acd) 0 1px 3px 0 inset;
  color: var(--swat-white, #fff);
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
  background: var(--swat-base, #004acd) !important;
  color: var(--swat-white, #fff) !important;
}

.video-one {
  position: relative;
  margin: 0px 120px;
  padding: 50px 0px;
}

@media (max-width: 1600px) {
  .video-one {
    margin: 0px 50px;
  }
}

@media (max-width: 1450px) {
  .video-one {
    margin: 0px 30px;
  }
}

@media (max-width: 1300px) {
  .video-one {
    margin: 0px;
  }
}

@media (max-width: 767px) {
  .video-one {
    padding: 80px 0px;
  }
}

.video-one__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.video-one__bg::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-image: linear-gradient(90deg, rgb(39, 37, 42) 16%, rgba(39, 37, 42, 0) 100%);
  content: "";
}

.video-one__shape {
  position: absolute;
  left: 20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  width: 161px;
  height: 161px;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: 0.15;
  animation: 9s linear 0s infinite normal none running treeMove2;
}

@media (max-width: 1500px) {
  .video-one__shape {
    display: none;
  }
}

.video-one__content {
  position: relative;
}

@media (max-width: 991px) {
  .video-one__content .sec-title-two__title br {
    display: none;
  }
}

.video-one__content .sec-title {
  padding-bottom: 25px;
}

.video-one__content__text {
  color: var(--swat-white, #fff);
  font-weight: 500;
  line-height: 30px;
  margin: 0px 0px 42px;
}

@media (max-width: 991px) {
  .video-one__content__text br {
    display: none;
  }
}

.video-one__content .swat-btn::after {
  background-color: var(--swat-white, #fff);
}

.video-one__content .swat-btn:hover {
  color: var(--swat-base, #004acd);
}

.video-one .video-popup {
  width: 95px;
  height: 95px;
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--swat-base, #004acd);
  margin: 0px 0px 0px auto;
  position: relative;
  z-index: 2;
  transition: 300ms;
}

@media (max-width: 767px) {
  .video-one .video-popup {
    margin: 40px 0px 0px 20px;
  }
}

.video-one .video-popup:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.video-one .video-popup .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 31px);
  height: calc(100% + 31px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-one .video-popup .ripple::before,
.video-one .video-popup .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 0px;
  animation: 3s ease 0s infinite normal none running ripple;
  border-radius: 50%;
}

.video-one .video-popup .ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.team-one {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .team-one {
    padding: 80px 0px;
  }
}

.team-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 19px;
}

.team-card::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  z-index: -1;
  background-color: var(--swat-base, #004acd);
  transition: 0.5s;
}

.team-card:hover {
  border-color: var(--swat-base, #004acd);
}

.team-card:hover .team-card__title,
.team-card:hover .team-card__designation {
  color: var(--swat-white, #fff);
}

.team-card:hover .team-card__social {
  border-color: rgba(var(--swat-white-rgb, 255, 255, 255), 0.2);
}

.team-card:hover .team-card__social a {
  color: var(--swat-white, #fff);
}

.team-card:hover::after {
  height: 100%;
}

.team-card__image {
  position: relative;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: auto;
  transition: 500ms;
}

.team-card__image::after {
  background: linear-gradient(90deg, rgba(var(--swat-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--swat-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--swat-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--swat-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: 0.7s;
  width: 200%;
}

.team-card:hover .team-card__image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}

.team-card:hover .team-card__image img {
  transform: rotate(2deg) scale(1.05);
}

.team-card__content {
  position: relative;
  text-align: center;
  padding: 11px 30px 28px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .team-card__content {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.team-card__title {
  margin: 0px 0px 3px;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
}

.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.team-card__title a:hover {
  background-size: 100% 1px;
}

.team-card__designation {
  margin: 0px 0px 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 16px 0px 0px;
  transition: 0.3s;
}

.team-card__social a {
  font-size: 20px;
  color: var(--swat-text, #636363);
}

.team-card__social a:hover {
  color: var(--swat-black, #000000);
}

.team-card--reverse {
  display: flex;
  flex-direction: column-reverse;
}

.team-card--reverse .team-card__content {
  padding: 30px 30px 9px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .team-card--reverse .team-card__content {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.team-two {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .team-two {
    padding: 80px 0px;
  }
}

.team-two__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 568px;
}

.team-two__bg::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--swat-black2-rgb, 34, 34, 34), 0.8);
}

.team-card-two {
  position: relative;
}

.team-card-two__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.team-card-two__image img {
  width: 100%;
  height: auto;
  transition: 500ms;
}

.team-card-two__image img:nth-child(2) {
  transition: 0.4s;
  transform: translateY(-50%) scaleY(2);
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-two__image::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--swat-black2-rgb, 34, 34, 34), 0.5);
  transition: 300ms;
  visibility: hidden;
  opacity: 0;
}

.team-card-two:hover .team-card-two__image img:nth-child(2) {
  transform: translateY(0px) scaleY(1);
  opacity: 1;
  filter: blur(0px);
}

.team-card-two:hover .team-card-two__image::after {
  visibility: visible;
  opacity: 1;
}

.team-card-two__content {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 30px;
  padding: 20px 20px 18px;
  background-color: var(--swat-white, #fff);
  display: inline-block;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.team-card-two__content::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  content: "";
  background-color: var(--swat-base, #004acd);
  z-index: -1;
  transition: 0.5s;
}

.team-card-two:hover .team-card-two__content::after {
  height: 100%;
}

.team-card-two__title {
  margin: 0px 0px 6px;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
}

.team-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.team-card-two__title a:hover {
  background-size: 100% 1px;
}

.team-card-two__title a:hover {
  background-size: 1px 100%;
}

.team-card-two:hover .team-card-two__title {
  color: var(--swat-white, #fff);
}

.team-card-two__designation {
  margin: 0px;
  text-transform: capitalize;
  transition: 0.3s;
}

.team-card-two:hover .team-card-two__designation {
  color: var(--swat-white, #fff);
}

.team-card-two__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 30px;
  top: 30px;
  transform: translateX(100%) scale(0.1);
  z-index: 1;
  transition: 0.7s;
  opacity: 0;
}

.team-card-two__social a {
  width: 40px;
  height: 40px;
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--swat-base, #004acd);
}

.team-card-two__social a:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.team-card-two:hover .team-card-two__social {
  transform: translateX(0px) scale(1);
  opacity: 1;
}

.team-details {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .team-details {
    padding: 80px 0px;
  }
}

.team-details__inner {
  position: relative;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  overflow: hidden;
  padding: 29px;
}

@media (max-width: 767px) {
  .team-details__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.team-details__image {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.team-details__image img {
  max-width: 100%;
}

.team-details__content {
  position: relative;
  padding: 3px 0px 0px;
}

@media (min-width: 1200px) {
  .team-details__content {
    margin-left: -53px;
  }
}

.team-details__title {
  text-transform: capitalize;
  margin: 0px 0px 7px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

.team-details__designation {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0px;
}

.team-details__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 5px;
  right: 0px;
  z-index: 2;
}

@media (max-width: 767px) {
  .team-details__social {
    position: relative;
    top: 0px;
    justify-content: flex-start;
    margin: 15px 0px 0px;
  }
}

.team-details__social a {
  width: 36px;
  height: 36px;
  background-color: var(--swat-gray, #F5F1EF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swat-base, #004acd);
  border-radius: 50%;
  font-size: 14px;
  transition: 500ms;
}

.team-details__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  backface-visibility: hidden;
}

.team-details__social a:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.team-details__social a:hover i {
  animation: 0.4s ease 0s 1 normal forwards running iconTranslateY;
}

.team-details__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--swat-border-color, #DDDDDD);
  margin: 24px 0px 20px;
}

.team-details__text {
  line-height: 30px;
  letter-spacing: -0.32px;
  margin: 0px 0px 12px;
}

.team-details__sign {
  position: relative;
  margin: 68px 0px 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
}

.team-details__sign img {
  max-width: 100%;
  height: auto;
}

.team-details__list {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 767px) {
  .team-details__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.team-details__list li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-details__list li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.team-details__list li a:hover {
  background-size: 100% 1px;
}

.team-details__list li a:hover {
  color: var(--swat-base, #004acd);
}

.team-details__list li:hover .team-details__list__icon {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.team-details__list li:hover .team-details__list__icon span {
  animation: 0.4s ease 0s 1 normal forwards running iconTranslateY;
}

.team-details__list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--swat-gray, #F5F1EF);
  color: var(--swat-base, #004acd);
  border-radius: 50%;
  font-size: 16px;
  transition: 0.4s;
}

.team-details__list__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  backface-visibility: hidden;
}

.team-details-info {
  position: relative;
  padding: 120px 0px;
  background-color: var(--swat-gray, #F5F1EF);
}

@media (max-width: 767px) {
  .team-details-info {
    padding: 80px 0px;
  }
}

.team-details-info__title {
  margin: 0px 0px 19px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.team-details-info__text {
  line-height: 30px;
  letter-spacing: -0.32px;
  margin: 0px 0px 27px;
}

.team-details-info__area {
  margin-top: 50px;
  position: relative;
  background-color: var(--swat-white, #fff);
  padding: 55px 40px 52px;
}

@media (max-width: 767px) {
  .team-details-info__area {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.team-details-info__area .team-details-info__title {
  margin-bottom: 35px;
}

.team-details-info__area .team-details-info__text {
  margin: 5px 0px 0px;
}

.team-details-info__progress {
  position: relative;
  margin-bottom: 26px;
}

.team-details-info__progress__title {
  text-transform: capitalize;
  margin: 0px 0px 8px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .team-details-info__progress__title {
    font-size: 16px;
  }
}

.team-details-info__progress__bar {
  width: 100%;
  height: 10px;
  background-color: var(--swat-border-color, #DDDDDD);
  position: relative;
  border-radius: 10px;
}

.team-details-info__progress__inner {
  position: absolute;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: var(--swat-base, #004acd);
  border-radius: 10px;
  transition: 700ms linear;
  width: 0px;
}

.team-details-info__progress__number {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0px;
  font-size: 16px;
  font-weight: 700;
  color: var(--swat-base, #004acd);
}

.blog-card {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  overflow: hidden;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}

.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0px;
  transition: 1s;
  overflow: hidden;
}

.blog-card:hover .blog-card__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}

.blog-card__link {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: var(--swat-white, #fff);
  color: var(--swat-black, #000000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--swat-base, #004acd);
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: 0.5s;
}

.blog-card__link:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.blog-card:hover .blog-card__link {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0px;
  position: absolute;
  left: 0px;
  z-index: 2;
  top: -22px;
  background-color: var(--swat-black, #000000);
  padding: 9px 45px;
  clip-path: polygon(0% 0%, 100% 0px, 93% 50%, 100% 100%, 0% 100%);
  transition: 500ms;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__meta {
    padding: 9px 25px 9px 35px;
    gap: 15px;
  }
}

.blog-card__meta::after {
  position: absolute;
  left: 0px;
  width: 30px;
  height: 100%;
  content: "";
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%);
  transition: 500ms;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__meta::after {
    width: 20px;
  }
}

.blog-card__meta li {
  color: var(--swat-white, #fff);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.blog-card__meta li i {
  margin-right: 8px;
}

.blog-card__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: 500ms;
}

.blog-card__meta li a:hover {
  color: var(--swat-white, #fff);
  text-shadow: currentcolor 0px 0px 1px;
}

.blog-card:hover .blog-card__meta {
  background-color: var(--swat-base, #004acd);
}

.blog-card:hover .blog-card__meta::after {
  background-color: var(--swat-black, #000000);
}

.blog-card__content {
  position: relative;
  padding: 47px 30px 27px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__content {
    padding: 47px 22px 27px;
  }
}

.blog-card__title {
  margin: 0px 0px 9px;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.blog-card__title a:hover {
  background-size: 100% 1px;
}

.blog-card__title a:hover {
  color: var(--swat-base, #004acd);
  text-shadow: currentcolor 0px 0px 1px;
}

.blog-card__text {
  margin: 0px 0px 12px;
}

.blog-card__btn {
  color: var(--swat-black3, #333333);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  z-index: 1;
  position: relative;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-card__btn span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.blog-card__btn:hover {
  color: var(--swat-base, #004acd);
}

.blog-card__btn:hover span {
  background-size: 100% 1px;
}

.blog-card__btn i {
  color: var(--swat-base, #004acd);
  font-size: 20px;
}

.blog-card--list {
  display: flex;
  align-items: center;
  gap: 0px;
}

@media (max-width: 767px) {
  .blog-card--list {
    display: block;
  }
}

.blog-card--list .blog-card__image {
  margin: 0px;
  width: 42%;
}

@media (max-width: 767px) {
  .blog-card--list .blog-card__image {
    width: 100%;
  }
}

.blog-card--list .blog-card__image img {
  min-height: 240px;
  object-fit: cover;
}

.blog-card--list .blog-card__link {
  right: 0px;
  left: 20px;
}

.blog-card--list .blog-card__content {
  padding: 0px 30px;
  width: 58%;
}

@media (max-width: 767px) {
  .blog-card--list .blog-card__content {
    width: 100%;
    padding: 30px;
  }
}

.blog-card--list .blog-card__meta {
  position: relative;
  gap: 20px;
  top: 0px;
  padding: 9px 35px;
  margin: 0px 0px 15px;
}

.blog-card--list .blog-card__meta li {
  font-size: 15px;
}

.blog-card--list .blog-card__meta::after {
  width: 20px;
}

.blog-card--list .blog-card__title {
  margin-bottom: 12px;
}

.blog-one {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0px;
  }
}

.blog-one__btn {
  position: relative;
  text-align: right;
  margin: 33px 0px 0px;
}

@media (max-width: 767px) {
  .blog-one__btn {
    margin: 0px 0px 45px;
    text-align: left;
  }
}

.blog-one__btn .swat-btn {
  background-color: transparent;
  color: var(--swat-base, #004acd);
  border: 1px solid var(--swat-base, #004acd);
}

.blog-one__btn .swat-btn::after {
  background-color: var(--swat-base, #004acd);
}

.blog-one__btn .swat-btn:hover {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.blog-two {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0px;
  }
}

.blog-card-two {
  position: relative;
  background-color: var(--swat-black, #000000);
  transition: 400ms;
  overflow: hidden;
}

.blog-card-two__image {
  position: relative;
  overflow: hidden;
}

.blog-card-two__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  min-height: 482px;
  object-fit: cover;
}

.blog-card-two__image img:nth-child(2) {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  object-fit: cover;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-card-two__image::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  visibility: hidden;
  content: "";
  background: linear-gradient(180deg, rgba(var(--swat-base-rgb, 254, 87, 79), 0) 0%, rgb(var(--swat-base-rgb, 254, 87, 79)) 100%);
  transition: 400ms;
}

.blog-card-two__image::before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(var(--swat-black-rgb, 0, 0, 0), 0) 0%, rgb(var(--swat-black-rgb, 0, 0, 0)) 100%);
  content: "";
  transition: 400ms;
}

.blog-card-two:hover .blog-card-two__image img:nth-child(2) {
  transform: translateX(0px) scaleX(1);
  opacity: 1;
  filter: blur(0px);
}

.blog-card-two:hover .blog-card-two__image::after {
  height: 100%;
  visibility: visible;
}

.blog-card-two__date {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--swat-white, #fff);
  border-radius: 50px;
  font-size: 16px;
  color: var(--swat-black, #000000);
  border: 1px solid var(--swat-base, #004acd);
  transition: 400ms;
  padding: 4px 22px;
}

.blog-card-two__date i {
  color: var(--swat-base, #004acd);
  transition: 400ms;
}

.blog-card-two:hover .blog-card-two__date {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.blog-card-two:hover .blog-card-two__date i {
  color: var(--swat-white, #fff);
}

.blog-card-two__content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 2;
  padding: 30px 30px 25px;
  transition: 500ms;
  transform: translateY(40px);
}

.blog-card-two:hover .blog-card-two__content {
  transform: translateY(0px);
}

.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0px 0px 8px;
  position: relative;
  z-index: 2;
  transition: 500ms;
}

.blog-card-two__meta li {
  color: var(--swat-white, #fff);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.blog-card-two__meta li i {
  margin-right: 6px;
  color: var(--swat-base, #004acd);
}

.blog-card-two__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: 500ms;
}

.blog-card-two__meta li a:hover {
  color: var(--swat-white, #fff);
  text-shadow: currentcolor 0px 0px 1px;
}

.blog-card-two__title {
  margin: 0px 0px 12px;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  color: var(--swat-white, #fff);
  font-weight: 700;
}

.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.blog-card-two__title a:hover {
  background-size: 100% 1px;
}

.blog-card-two__rm {
  color: var(--swat-white, #fff);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  z-index: 1;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: 500ms;
  visibility: hidden;
  opacity: 0;
}

.blog-card-two__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.blog-card-two__rm:hover {
  color: var(--swat-white, #fff);
}

.blog-card-two__rm:hover span {
  background-size: 100% 1px;
}

.blog-card-two__rm i {
  font-size: 12px;
  position: relative;
  top: 1px;
}

.blog-card-two:hover .blog-card-two__rm {
  opacity: 1;
  visibility: visible;
}

.blog-three {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .blog-three {
    padding: 80px 0px;
  }
}

.blog-card-list {
  position: relative;
  margin: 0px 0px 10px;
}

.blog-card-list__image {
  position: relative;
  overflow: hidden;
  margin: 0px 0px 34px;
}

.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}

.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0px;
  transition: 1s;
  overflow: hidden;
}

.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}

.blog-card-list__content {
  position: relative;
  padding: 0px;
}

.blog-card-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.blog-card-list__meta li {
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
}

.blog-card-list__meta li i {
  color: var(--swat-base, #004acd);
  margin-right: 10px;
}

.blog-card-list__meta li a {
  color: inherit;
}

.blog-card-list__meta li a:hover {
  color: var(--swat-base, #004acd);
}

.blog-card-list__meta .blog-card-list__meta__tag {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 7px 25px;
  border-radius: 40px;
}

.blog-card-list__meta .blog-card-list__meta__tag:hover {
  background-color: var(--swat-black, #000000);
  color: var(--swat-white, #fff);
}

.blog-card-list__title {
  margin: 0px 0px 12px;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}

.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.blog-card-list__title a:hover {
  background-size: 100% 1px;
}

.blog-card-list__title a:hover {
  color: var(--swat-base, #004acd);
  text-shadow: currentcolor 0px 0px 1px;
}

.blog-card-list__text {
  font-weight: 500;
  margin: 0px 0px 28px;
}

@media (min-width: 1200px) {
  .blog-card-list__text {
    padding-right: 30px;
  }
}

.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 12px;
  margin: 0px;
}

@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0px;
  padding: 0px;
  position: relative;
}

.form-one__control label {
  display: block;
  line-height: 1;
  font-size: 14px;
  margin: 15px 0px 10px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}

.form-one__control__icon {
  position: absolute;
  bottom: 17px;
  right: 20px;
  font-size: 16px;
}

.form-one__control--full {
  grid-column: 1 / -1;
}

.form-one .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle {
  padding: 0px;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  color: var(--swat-text, #636363);
  font-size: 16px;
  font-weight: 400;
  outline: none !important;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type="text"],
.form-one input[type="tel"],
.form-one input[type="email"],
.form-one textarea {
  display: block;
  width: 100%;
  height: 50px;
  background-color: var(--swat-gray, #F5F1EF);
  color: var(--swat-text, #636363);
  font-size: 16px;
  font-weight: 400;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}

.form-one textarea {
  height: 135px;
  padding-top: 15px;
}

.form-one .bootstrap-select>.dropdown-toggle {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.form-one .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 25px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 14px;
  color: var(--swat-text, #636363);
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select .dropdown-menu li a {
  padding: 15px 20px;
  color: var(--swat-text, #636363);
  font-size: 16px;
}

.form-one .bootstrap-select .dropdown-menu li a:hover,
.form-one .bootstrap-select .dropdown-menu li a.active {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--swat-base, #004acd);
  transition: 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0px;
  top: 0px;
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--swat-base, #004acd);
  opacity: 0.3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--swat-base, #004acd);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

.main-footer {
  position: relative;
  counter-reset: count 0;
  background-color: var(--swat-black, #222222);
  margin-top: 76px;
  padding: 74px 0px 0px;
}

.main-footer--two {
  margin-top: 0px;
  padding-top: 75px;
}

@media (max-width: 1199px) {
  .main-footer--two {
    padding-top: 70px;
  }
}

.main-footer--two .main-footer__bottom {
  margin-top: 16px;
}

@media (max-width: 1199px) {
  .main-footer--two .main-footer__bottom {
    margin-top: 40px;
  }
}

/* Service Area footer (light section) */
.main-footer.main-footer--service-area {
  background-color: var(--swat-white, #fff);
  padding-top: 75px;
  padding-bottom: 88px;
}

@media (max-width: 767px) {
  .main-footer.main-footer--service-area {
    padding-bottom: 72px;
  }
}

.service-area-footer__title {
  margin: 0 0 40px;
  text-align: center;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--swat-base, #004acd);
}

.service-area-footer__grid {
  margin-bottom: 0;
}

.service-area-footer__item {
  display: flex;
  align-items: flex-start;
  gap: 16px 20px;
  height: 100%;
  padding: 10px;
}

.service-area-footer__num {
  flex-shrink: 0;
  min-width: 0.6em;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--swat-base, #004acd);
}

.service-area-footer__body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.service-area-footer__heading {
  margin: 0 0 10px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swat-black, #000000);
}

.service-area-footer__locations {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--swat-text, #636363);
}

.service-area-footer__cta-wrap {
  margin-top: 44px;
  text-align: center;
}

.service-area-footer__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: min(100%, 320px);
  padding: 18px 36px 22px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--swat-white, #fff) !important;
  background-color: var(--swat-base, #004acd);
  border-radius: 14px;
  overflow: visible;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.service-area-footer__cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 56px;
  height: 14px;
  transform: translateX(-50%);
  background-color: var(--swat-black2, #f6ff39);
  border-radius: 0 0 28px 28px;
  pointer-events: none;
}

.service-area-footer__cta:hover {
  background-color: #0039a8;
  color: var(--swat-white, #fff) !important;
}

.service-area-footer__cta-arrow {
  font-weight: 700;
}

.main-footer__logo {
  position: absolute;
  z-index: 2;
  left: 0px;
  right: 0px;
  top: -76px;
  width: 570px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .main-footer__logo {
    width: 100%;
  }
}

.main-footer__logo a {
  background-color: var(--swat-black2, #222222);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 30px;
  clip-path: polygon(14% 0%, 86% 0%, 100% 100%, 0% 100%);
}

.main-footer__logo::after {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 77px;
  background-color: var(--swat-base, #004acd);
  content: "";
  clip-path: polygon(100% 0px, 0px 0px, 57% 100%);
}

@media (max-width: 575px) {
  .main-footer__logo::after {
    display: none;
  }
}

.main-footer__logo::before {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 77px;
  background-color: var(--swat-base, #004acd);
  content: "";
  clip-path: polygon(100% 0px, 0px 0px, 42% 100%);
}

@media (max-width: 575px) {
  .main-footer__logo::before {
    display: none;
  }
}

.main-footer__bg {
  position: absolute;
  inset: 0px;
  opacity: 0.1;
  background-size: cover;
  background-position: center center;
}

.main-footer__shape {
  position: absolute;
  z-index: 1;
  right: -10px;
  bottom: 0px;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

.main-footer__shape::after {
  position: absolute;
  right: -90px;
  top: 100px;
  width: 206px;
  height: 110px;
  content: "";
  background-color: var(--swat-base, #004acd);
  z-index: -1;
  transform: rotate(-40deg);
}

.main-footer__shape img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1600px) {
  .main-footer__shape {
    display: none;
  }
}

.main-footer .container {
  position: relative;
}

.main-footer__bottom {
  bottom: 0px;
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 9px 0px;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
  margin-top: 28px;
}

.main-footer__copyright {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-white, #fff);
}

.main-footer__shape-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
}

.main-footer__shape-2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  animation: 2s linear 0s infinite normal none running zumpBottom;
}

@media (max-width: 1200px) {
  .main-footer__shape-2 {
    display: none;
  }
}

.footer-widget {
  margin-bottom: 24px;
}

.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 35px;
}

.footer-widget__newsletter {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.footer-widget__newsletter input[type="text"] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 58px;
  background-color: var(--swat-black2, #222222);
  color: var(--swat-text-dark, #92918F);
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 20px;
  transition: 500ms;
}

.footer-widget__newsletter input[type="text"]:focus {
  color: var(--swat-white, #fff);
}

.footer-widget__newsletter button[type="submit"] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--swat-base, #004acd);
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 500ms;
}

.footer-widget__newsletter button[type="submit"]:hover {
  color: var(--swat-white, #fff);
}

.footer-widget__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--swat-white, #fff);
  text-transform: capitalize;
  margin: 0px 0px 16px;
}

.footer-widget__title--ml-18 {
  margin-left: -18px;
}

@media (max-width: 1028px) {
  .footer-widget__title--ml-18 {
    margin-left: 0px;
  }
}

.footer-widget__info {
  margin-top: -10px;
  margin-bottom: -13px;
}

.footer-widget__info li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--swat-white, #fff);
  font-weight: 400;
  line-height: 30px;
}

.footer-widget__links li {
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .footer-widget--links {
    margin-left: -25px;
  }
}

.footer-widget__links {
  margin-top: -10px;
  margin-bottom: -13px;
}

@media (max-width: 1028px) {
  .footer-widget__links {
    list-style: none;
  }
}

.footer-widget__links li {
  font-size: 16px;
  color: var(--swat-white, #fff);
  font-weight: 500;
  line-height: 30px;
}

.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.footer-widget__links li a:hover {
  background-size: 100% 1px;
}

.footer-widget__links li a:hover {
  color: var(--swat-base, #004acd);
}

.footer-widget--post {
  position: relative;
}



.footer-widget--post ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.footer-widget--post ul li {
  counter-increment: count 1;
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer-widget--post ul li+li {
  margin-top: 25px;
}

.footer-widget--post__img {
  position: relative;
}

.footer-widget--post__img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}

.footer-widget--post__img__number {
  position: absolute;
  top: 8px;
  right: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-widget--post__img__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
  inset: 0px;
  margin: auto;
}

.footer-widget--post__content {
  position: relative;
}

.footer-widget--post__date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--swat-white, #fff);
  line-height: 22px;
  margin-bottom: 10px;
}

.footer-widget--post__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--swat-white, #fff);
  margin: 0px;
}

.footer-widget--post__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.footer-widget--post__title a:hover {
  background-size: 100% 1px;
}

.footer-widget--post__title a:hover {
  color: var(--swat-base, #004acd);
}

.footer-widget__text {
  font-size: 16px;
  color: var(--swat-white, #fff);
  font-weight: 500;
  line-height: 26px;
  margin: -9px 0px 31px;
  max-width: 275px;
}

.footer-widget__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-widget__gallery a {
  position: relative;
  overflow: hidden;
  width: 72px;
  height: 72px;
  border-radius: 10px;
}

.footer-widget__gallery a img {
  width: 100%;
  height: 100%;
}

.footer-widget__gallery a::after {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
  content: "";
  background-color: rgba(var(--swat-base-rgb, 254, 87, 79), 0.8);
  border-radius: 8px;
  transition: 700ms;
  transform: scale(0.2);
  opacity: 0;
  z-index: 1;
}

.footer-widget__gallery a:hover::after {
  transform: scale(1);
  opacity: 1;
}

.footer-widget__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-widget__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 15px;
  color: rgba(var(--swat-white-rgb, 255, 255, 255), 0.5);
  transition: 500ms;
  border-radius: 50%;
  border: 1px solid rgba(var(--swat-white-rgb, 255, 255, 255), 0.5);
}

.footer-widget__social a:hover {
  background-color: var(--swat-base, #004acd);
  border-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.footer-widget .list-styled {
  padding-left: 0px;
}

.mail {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
}

.mail__inner {
  position: relative;
  background-color: var(--swat-base, #004acd);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  margin-bottom: -67px;
  z-index: 2;
}

@media (max-width: 991px) {
  .mail__inner {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .mail__inner {
    padding: 40px 20px;
  }
}

.mail__inner__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

.mail__inner__title {
  margin: 0px;
  color: var(--swat-white, #fff);
  position: relative;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .mail__inner__title {
    margin: 0px 0px 30px;
  }
}

.mail__inner__newsletter {
  position: relative;
  width: 100%;
}

.mail__inner__newsletter input[type="text"] {
  width: 100%;
  display: block;
  outline: none;
  border: none;
  height: 55px;
  background-color: var(--swat-white, #fff);
  color: var(--swat-text, #636363);
  font-size: 16px;
  font-weight: 400;
  padding-left: 22px;
  padding-right: 180px;
  border-radius: 10px;
  transition: 500ms;
}

.mail__inner__newsletter input[type="text"]:focus {
  color: var(--swat-text, #636363);
}

.mail__inner__newsletter button[type="submit"] {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 10px;
  font-weight: 700;
  padding: 9.5px 19px;
}

@media (max-width: 400px) {
  .mail__inner__newsletter button[type="submit"] {
    padding: 9.5px 15px;
  }
}

.main-footer-four {
  position: relative;
}

.main-footer-four__top {
  padding-top: 127px;
  padding-bottom: 23px;
}

.main-footer-four__bg {
  position: absolute;
  inset: 0px;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.main-footer-four .container {
  position: relative;
}

.main-footer-four .footer-widget__title {
  margin-bottom: 38px;
}

@media (max-width: 991px) {
  .main-footer-four .footer-widget__title {
    margin-bottom: 25px;
  }
}

.main-footer-four__about-title {
  font-size: 16px;
  color: var(--swat-white, #fff);
  letter-spacing: -0.48px;
  margin: 13px 0px 14px;
}

.main-footer-four .footer-widget__text {
  margin-bottom: 18px;
}

.main-footer-four__mail {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--swat-base, #004acd);
  margin: 0px;
}

.main-footer-four__mail a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.main-footer-four__mail a:hover {
  background-size: 100% 1px;
}

.main-footer-four__mail a:hover {
  color: var(--swat-white, #fff);
}

.main-footer-four .footer-widget--contact {
  margin-left: 32px;
}

@media (max-width: 991px) {
  .main-footer-four .footer-widget--contact {
    margin-left: 0px;
  }
}

.main-footer-four__number {
  font-size: 16px;
  letter-spacing: -0.48px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--swat-white, #fff);
  margin: 46px 0px 14px;
}

@media (max-width: 991px) {
  .main-footer-four__number {
    margin-top: 30px;
  }
}

.main-footer-four__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.main-footer-four__number a:hover {
  background-size: 100% 1px;
}

.main-footer-four__number a:hover {
  color: var(--swat-base, #004acd);
}

.main-footer-four .footer-widget__about-info {
  display: block;
  border: none;
  padding: 0px;
}

.main-footer-four .footer-widget__links li {
  line-height: 35px;
}

@media (min-width: 1200px) {
  .main-footer-four__links {
    margin-left: 60px;
  }
}

.main-footer-four__bottom {
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(var(--swat-border-color-rgb, 221, 221, 221), 0.2);
}

.main-footer-four__bottom__inner {
  padding: 24px 0px;
}

.main-footer-four__copyright {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
}

.contact-one {
  position: relative;
  padding: 120px 0px;
}

.contact-one__bg {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 400px;
  width: 100%;
  background-color: var(--swat-gray, #F5F1EF);
}

@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0px;
  }
}

.contact-one__image {
  position: relative;
  max-width: 545px;
  height: 324px;
  overflow: hidden;
}

.contact-one__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-one__info {
  position: relative;
  display: flex;
  border: 2px solid var(--swat-border-color, #DDDDDD);
  max-width: 545px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 575px) {
  .contact-one__info {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-one__info__item {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
  padding-inline-start: 74px;
  border-top: 2px solid var(--swat-border-color, #DDDDDD);
  background-color: #fff;
}

.contact-one__info__item.w-full {
  width: 100%;
}

.contact-one__info__item:nth-child(1) {
  border-right: none;
}

@media (max-width: 575px) {
  .contact-one__info__item:nth-child(1) {
    border-right: none;
  }
}

.contact-one__info__item:nth-child(2) {}

.contact-one__info__item:nth-child(3) {
  width: 100%;
}

@media (max-width: 575px) {
  .contact-one__info__item:nth-child(3) {
    border-right: none;
    border-bottom: 2px solid var(--swat-border-color, #DDDDDD);
  }
}

.contact-one__info__item::after {
  position: absolute;
  inset: 0px;
  margin: auto;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  content: "";
  background-color: var(--swat-base, #004acd);
  opacity: 0;
  transform: scale(0.8);
  transition: 400ms;
  z-index: -1;
}

.contact-one__info__item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.contact-one__info__item:hover .contact-one__info__icon,
.contact-one__info__item:hover .contact-one__info__title,
.contact-one__info__item:hover .contact-one__info__text {
  color: var(--swat-black2, #f6ff39);
}

.contact-one__info__icon {
  font-size: 39px;
  line-height: 39px;
  color: var(--swat-black, #000000);
  transition: 300ms;
  position: absolute;
  left: 16px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-one__info__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
  transition: 300ms;
}

.contact-one__info__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-black3, #333333);
  margin: 0 0 16px;
  transition: 100ms;
}

.contact-one__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.contact-one__info__text a:hover {
  background-size: 100% 1px;
}

.contact-one__form {
  padding: 125px 50px 30px;
  position: relative;
  z-index: 1;
  background-color: var(--swat-white, #fff);
  border-radius: 10px;
  filter: drop-shadow(rgba(0, 0, 0, 0.06) 0px 4px 12.5px);
  overflow: hidden;
}

@media (max-width: 1199px) {
  .contact-one__form {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .contact-one__form {
    padding: 120px 25px 70px;
  }
}

.contact-one__form::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 125px;
  background-color: var(--swat-base, #004acd);
  content: "";
  clip-path: polygon(0% 0%, 100% 0px, 100% 100%, 50% 14%, 0% 100%);
  z-index: -1;
}

.contact-one__form__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.contact-one__form__text {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

.contact-one__form.form-one .bootstrap-select>.dropdown-toggle,
.contact-one__form.form-one input[type="text"],
.contact-one__form.form-one input[type="tel"],
.contact-one__form.form-one input[type="email"],
.contact-one__form.form-one textarea {
  height: 60px;
  background-color: transparent;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  border-radius: 3px;
  font-weight: 500;
}

.contact-one__form .form-one__group {
  gap: 30px;
}

.contact-one__form .swat-btn {
  width: 100%;
  border-radius: 50px;
}

.contact-two {
  position: relative;
  padding: 0px;
}

.contact-two__bg {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--swat-gray, #F5F1EF);
}

@media (max-width: 991px) {
  .contact-two__bg {
    width: 100%;
  }
}

.contact-two__image {
  position: relative;
}

.contact-two__image img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .contact-two__image img {
    min-height: 344px;
    object-fit: cover;
  }
}

.contact-two__form {
  position: relative;
  padding: 65px 0px;
}


@media (min-width: 576px) {
  .contact-two__form .form-one__group {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-two .form-one .bootstrap-select>.dropdown-toggle,
.contact-two .form-one input[type="text"],
.contact-two .form-one input[type="tel"],
.contact-two .form-one input[type="email"],
.contact-two .form-one textarea {
  background-color: var(--swat-white, #fff);
  height: 50px;
  padding-left: 20px;
  font-weight: 500;
}

.contact-two .form-one__control__icon {
  bottom: 12px;
  font-size: 14px;
}

.contact-two .form-one .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}

.contact-two .swat-btn {
  width: 100%;
  border-radius: 0px;
}

.main-header__topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .main-header__topbar {
    display: none;
  }
}

.main-header__topbar__info {
  display: flex;
  align-items: center;
  margin: 0px;
  padding: 13px 0px;
}

.main-header__topbar__info__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--swat-white, #fff);
}

.main-header__topbar__info__item span {
  display: inline-block;
  color: var(--swat-base, #004acd);
  margin-right: 8px;
}

.main-header__topbar__info__item span.icon-mail2 {
  position: relative;
  top: 2px;
}

.main-header__topbar__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.main-header__topbar__info__item a:hover {
  background-size: 100% 1px;
}

.main-header__topbar__info__item a:hover {
  color: var(--swat-base, #004acd);
}

.main-header__topbar__info__item+.main-header__topbar__info__item {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid rgba(var(--swat-white-rgb, 255, 255, 255), 0.29);
}

@media (max-width: 1199px) {
  .main-header__topbar__info__item+.main-header__topbar__info__item {
    margin-left: 30px;
  }
}

.main-header__topbar__social {
  display: flex;
  align-items: center;
  gap: 0px;
}

.main-header__topbar__social a {
  width: 45px;
  height: 50px;
  font-size: 15px;
  color: var(--swat-text-dark, #92918F);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms;
}

.main-header__topbar__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  backface-visibility: hidden;
}

.main-header__topbar__social a:hover {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.main-header__topbar__social a:hover i {
  animation: 0.4s ease 0s 1 normal forwards running iconTranslateY;
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--swat-black, #000000);
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}

.topbar__info {
  display: flex;
  align-items: center;
  margin: 0px;
  padding: 13px 0px;
}

.topbar__info__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--swat-white, #fff);
}

.topbar__info__item span {
  display: inline-block;
  color: var(--swat-base, #004acd);
  margin-right: 8px;
}

.topbar__info__item span.icon-mail2 {
  position: relative;
  top: 2px;
}

.topbar__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.topbar__info__item a:hover {
  background-size: 100% 1px;
}

.topbar__info__item a:hover {
  color: var(--swat-base, #004acd);
}

.topbar__info__item+.topbar__info__item {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid rgba(var(--swat-white-rgb, 255, 255, 255), 0.29);
}

@media (max-width: 991px) {
  .topbar__info__item+.topbar__info__item {
    margin-left: 20px;
    padding-left: 20px;
  }
}

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.topbar__right__item {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  line-height: 1.2em;
  margin: 0px;
  padding: 0px;
}

.topbar__right__item li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__right__item__divider {
  height: 20px;
  width: 1px;
  background-color: var(--swat-white, #fff);
  opacity: 0.29;
}

.topbar__right__item select {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--swat-gray, #F5F1EF);
}

.topbar__right__item a {
  color: var(--swat-gray, #F5F1EF);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.topbar__right__item a:hover {
  background-size: 100% 1px;
}

.topbar__right__item a:hover {
  color: var(--swat-base, #004acd);
}

.topbar__right__item .bootstrap-select .dropdown-menu.inner {
  background-color: var(--swat-white, #fff);
}

.topbar__right__item .bootstrap-select .dropdown-menu li a {
  color: var(--swat-black, #000000);
  background: transparent;
  padding: 10px 20px;
}

.topbar__right__item .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.topbar__right__item .bootstrap-select .dropdown-item:hover,
.topbar__right__item .bootstrap-select .dropdown-item.active {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.topbar__right__item .bootstrap-select>.dropdown-toggle {
  padding: 0px 13px 0px 4px;
  background: transparent;
  color: var(--swat-gray, #F5F1EF);
  border: none;
  outline: none;
}

.topbar__right__item .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.topbar__right__item .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  right: 0px;
  top: 4px;
  border-radius: 0px;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "";
  color: var(--swat-base, #004acd);
}

.main-header {
  background-color: var(--swat-white, #fff);
  position: relative;
  width: 100%;
  z-index: 9;
  padding: 0px 100px;
}

@media (max-width: 1800px) {
  .main-header {
    padding: 0px 30px;
  }
}

@media (max-width: 1300px) {
  .main-header {
    padding: 0px 20px;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding-left: 0px;
  }
}

.main-header::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 50px;
  content: "";
  background-color: var(--swat-black2, #222222);
  z-index: -1;
}

@media (max-width: 991px) {
  .main-header::after {
    display: none;
  }
}

.main-header__inner {
  position: relative;
  padding-left: 31%;
}

@media (max-width: 1800px) {
  .main-header__inner {
    padding-left: 27%;
  }
}

@media (max-width: 1300px) {
  .main-header__inner {
    padding-left: 31%;
  }
}

@media (max-width: 1199px) {
  .main-header__inner {
    padding-left: 370px;
  }
}

@media (max-width: 767px) {
  .main-header__inner {
    padding-left: 280px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.main-header__logo {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(0px 0px, 100% 0px, 84% 100%, 16% 100%);
}

@media (max-width: 1800px) {
  .main-header__logo {
    width: 24%;
  }
}

@media (max-width: 1300px) {
  .main-header__logo {
    width: 330px;
    clip-path: polygon(0px 0px, 100% 0px, 90% 100%, 10% 100%);
  }
}

@media (max-width: 767px) {
  .main-header__logo {
    width: 250px;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0% 100%);
  }

  .main-header__logo img {
    max-width: 200px;
  }
}

.main-header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .main-header__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.main-header__btn {
  margin-left: 40px;
}

@media (max-width: 1500px) {
  .main-header__btn {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}

.main-header__btn.swat-btn:hover i {
  transform: none;
}

.main-header__right {
  display: flex;
  align-items: center;
}

.main-header__call {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: 20px;
}

@media (max-width: 1450px) {
  .main-header__call {
    display: none;
  }
}

.main-header__call__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.main-header__call__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  color: var(--swat-black2, #222222);
  text-transform: uppercase;
  margin: 0px;
}

.main-header__call__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.main-header__call__text a:hover {
  background-size: 100% 1px;
}

.main-header__call__text a:hover {
  color: var(--swat-base, #004acd);
}

.main-header__cart,
.main-header__search {
  font-size: 25px;
  color: var(--swat-black, #000000);
  transition: 500ms;
  margin-left: 35px;
  line-height: 1em;
}

@media (max-width: 1500px) {

  .main-header__cart,
  .main-header__search {
    margin-left: 30px;
  }
}

@media (max-width: 1299px) {

  .main-header__cart,
  .main-header__search {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {

  .main-header__cart,
  .main-header__search {
    margin-left: 10px;
  }
}

.main-header__cart:hover,
.main-header__search:hover {
  color: var(--swat-base, #004acd);
}

.main-header--two {
  position: absolute;
  left: 0px;
  top: 30px;
  z-index: 9;
  width: 100%;
  border: none;
  padding: 0px;
  background-color: transparent;
}

.main-header--two::after {
  display: none;
}

.main-header--two.sticky-header--cloned {
  background-color: var(--swat-white, #fff);
  border: none;
  box-shadow: 0px 3px 18px rgba(var(--swat-black-rgb, 0, 0, 0), 0.07);
}

.main-header--two .main-header__logo {
  position: relative;
  border: none;
  width: auto;
  height: auto;
  background-color: transparent;
  clip-path: none;
}

.main-header--two .main-header__inner {
  background-color: var(--swat-white, #fff);
  border-radius: 100px;
  padding: 0px 60px;
  display: flex;
  align-items: center;
  max-width: 1510px;
  margin: 0px auto;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 15px 15px 15px 30px;
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .main-header--two .main-header__inner {
    padding: 15px 20px;
    margin: 0 10px;
  }
}

.main-header--two .main-menu {
  margin-left: auto;
}

.main-header--two .main-menu .main-menu__list>li {
  padding-top: 32px;
  padding-bottom: 32px;
}

.main-header--two .mobile-nav__btn span {
  background-color: var(--swat-black, #000000);
}

.main-header--two .main-header__btn {
  margin-left: 40px;
}

@media (max-width: 1500px) {
  .main-header--two .main-header__btn {
    margin-left: 30px;
  }
}

@media (max-width: 1299px) {
  .main-header--two .main-header__btn {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .main-header--two .main-header__btn {
    display: none;
  }
}

.main-header--two .main-header__toggler {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 84px;
  height: 84px;
  background-color: var(--swat-black, #000000);
  border-radius: 50%;
  margin-left: 30px;
  padding: 0px 22px;
}

@media (max-width: 1299px) {
  .main-header--two .main-header__toggler {
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler {
    width: 60px;
    height: 60px;
    margin-left: 20px;
    padding: 0px 15px;
  }
}

@media (max-width: 500px) {
  .main-header--two .main-header__toggler {
    display: none;
  }
}

.main-header--two .main-header__toggler span {
  background-color: var(--swat-white, #fff);
  height: 4px;
  width: 40px;
  border-radius: 10px;
  transition: 400ms;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span {
    width: 30px;
  }
}

.main-header--two .main-header__toggler span:nth-child(2) {
  width: 25px;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span:nth-child(2) {
    width: 20px;
  }
}

.main-header--two .main-header__toggler span:nth-child(3) {
  width: 35px;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span:nth-child(3) {
    width: 25px;
  }
}

.main-header--two .main-header__toggler:hover span {
  background-color: var(--swat-base, #004acd);
}

.main-header--three {
  position: relative;
  padding: 0px;
  background-color: var(--swat-white, #fff);
}

.main-header--three::after {
  display: none;
}

@media (max-width: 1199px) {
  .main-header--three {
    padding: 0px;
  }
}

.main-header--three.sticky-header--cloned {
  background-color: var(--swat-white, #fff);
  border: none;
  box-shadow: 0px 3px 18px rgba(var(--swat-black-rgb, 0, 0, 0), 0.07);
}

.main-header--three .main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0px;
  background-color: transparent;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    padding: 20px 0px;
  }
}

.main-header--three .main-header__logo {
  position: relative;
  z-index: 1;
  border: none;
  width: auto;
  height: auto;
  padding: 0px;
  background-color: transparent;
  clip-path: none;
}

.main-header--three .main-header__logo::after {
  display: none;
}

.main-header--three .main-menu {
  margin-left: auto;
}

.main-header--three .main-header__btn {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}

.sticky-header--cloned {
  position: fixed;
  left: 0px;
  right: 0px;
  z-index: 999;
  top: 0px;
  background-color: var(--swat-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--swat-black-rgb, 0, 0, 0), 0.07);
  visibility: hidden;
  transition: transform 500ms, visibility 500ms;
}

.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.sticky-header--cloned::after,
.sticky-header--cloned .main-header__topbar {
  display: none;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: -50px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: -40px;
    margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--swat-black, #000000);
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li {
  padding-top: 37px;
  padding-bottom: 37px;
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a::after {
  position: relative;
  right: 0px;
  top: 2px;
  border-radius: 0px;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "";
  color: inherit;
  line-height: 10px;
  margin-left: 5px;
}

.main-menu .main-menu__list>li+li {
  margin-left: 42px;
}

@media (max-width: 1590px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 30px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 24px;
  }
}

.main-menu .main-menu__list>li>a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--swat-black3, #333333);
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  transition: 500ms;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: var(--swat-base, #004acd);
  text-shadow: currentcolor 0px 0px 0.5px;
}

.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: center top;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms, visibility 500ms, transform 700ms;
  z-index: 99;
  background-color: var(--swat-white, #fff);
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 60px 0px;
}

.main-menu .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu {
  position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
  background-color: transparent;
  box-shadow: none;
  padding: 0px;
  top: 100% !important;
  left: -130px !important;
  right: 0px !important;
}

.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li>a {
  font-size: 15px;
  line-height: 26px;
  color: var(--swat-text, #636363);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}



.main-menu .main-menu__list li ul li:hover>a {
  background-color: var(--swat-gray, #F5F1EF);
  color: var(--swat-base, #004acd);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul {
  top: 0px;
  left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
  top: 0px;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .main-menu__list li:nth-last-child(1) ul li>ul,
  .main-menu__list li:nth-last-child(2) ul li>ul {
    left: auto;
    right: calc(100% + 20px);
  }
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: center bottom;
  transition: transform 0.7s, opacity 0.7s, visibility 0.7s;
  z-index: 999999;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0px;
  background-color: var(--swat-white, #fff);
  margin: 0px;
  top: 0px !important;
  left: 0px !important;
  display: block !important;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  transform-origin: center top;
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s, opacity 0.7s, visibility 0.7s;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0px;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--swat-black, #000000);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--swat-base, #004acd);
}

.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentcolor;
  transition: 500ms;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.demo-one .row {
  --bs-gutter-y: 30px;
}

.demo-one__card {
  background-color: var(--swat-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--swat-black3-rgb, 51, 51, 51), 0.1);
  text-align: center;
  transition: 500ms;
  transform: translateY(0px);
}

.demo-one__card:hover {
  transform: translateY(-10px);
}

.demo-one__title {
  margin: 0px;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--swat-black, #000000);
  font-weight: 600;
}

.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.demo-one__title a:hover {
  background-size: 100% 1px;
}

.demo-one__image {
  position: relative;
  overflow: hidden;
}

.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms;
  filter: blur(0px);
}

.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}

.demo-one__btns {
  background-color: rgba(var(--swat-black3-rgb, 51, 51, 51), 0.7);
  position: absolute;
  inset: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms, opacity 600ms linear;
  transform-origin: center bottom;
  opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: center top;
}

.demo-one__btn {
  font-size: 14px;
  padding: 12px 20px;
}

@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}

.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}

.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--swat-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--swat-black3-rgb, 51, 51, 51), 0.07);
}

.home-showcase .demo-one__card {
  box-shadow: none;
}

.home-showcase .demo-one__btns {
  flex-direction: column;
}

.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}

.home-showcase .demo-one__title {
  padding: 0px 0px 15px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
}

.why-choose-one {
  position: relative;
  background-color: var(--swat-black2, #222222);
  padding: 120px 0px 90px;
}

.why-choose-one__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.08;
}

@media (max-width: 767px) {
  .why-choose-one {
    padding: 80px 0px 50px;
  }
}

.why-choose-one__image {
  position: relative;
}

.why-choose-one__image img {
  width: 100%;
  border-radius: 50px;
  height: auto;
}

.why-choose-one__box {
  position: relative;
  z-index: 2;
  background-color: transparent;
  padding: 0px 30px 31px;
  margin-bottom: 30px;
}

.why-choose-one__box::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 256px;
  content: "";
  transition: 0.5s;
  background-color: var(--swat-white, #fff);
  z-index: -1;
  mask: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 370 257\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 58.0522C370 53.3513 366.726 49.2851 362.133 48.2823L142.054 0.230166C141.353 0.0771666 140.638 0 139.921 0L41.4716 0C39.223 0 37.0401 0.757845 35.2752 2.15117L3.80356 26.9972C1.40146 28.8936 0 31.7856 0 34.846V247C0 252.523 4.47714 257 10 257H360C365.523 257 370 252.523 370 247V58.0522Z\"/></svg>") left top / cover no-repeat;
}

.why-choose-one__box:hover::after {
  background-color: var(--swat-base, #004acd);
}

.why-choose-one__box__shape {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transition: 0.5s;
  opacity: 0;
}

.why-choose-one__box:hover .why-choose-one__box__shape {
  opacity: 1;
  right: 0px;
  bottom: 0px;
}

.why-choose-one__box__icon {
  position: relative;
  width: 105px;
  height: 105px;
  background-color: var(--swat-base, #004acd);
  border: 9px solid var(--swat-white, #fff);
  border-radius: 50%;
  font-size: 45px;
  color: var(--swat-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  margin-bottom: 13px;
}

.why-choose-one__box:hover .why-choose-one__box__icon {
  background-color: var(--swat-black, #000000);
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.why-choose-one__box__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin: 0px 0px 14px;
  transition: 0.3s;
}

.why-choose-one__box:hover .why-choose-one__box__title {
  color: var(--swat-white, #fff);
}

.why-choose-one__box__text {
  margin: 0px 0px 14px;
  font-weight: 500;
  transition: 0.3s;
}

.why-choose-one__box:hover .why-choose-one__box__text {
  color: var(--swat-white, #fff);
}

.why-choose-one__box__btn {
  color: var(--swat-black3, #333333);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  z-index: 1;
  position: relative;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}

.why-choose-one__box__btn span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.why-choose-one__box__btn:hover span {
  background-size: 100% 1px;
}

.why-choose-one__box__btn i {
  color: var(--swat-base, #004acd);
  font-size: 20px;
  transition: 0.3s;
}

.why-choose-one__box:hover .why-choose-one__box__btn {
  color: var(--swat-white, #fff);
}

.why-choose-one__box:hover .why-choose-one__box__btn i {
  color: var(--swat-white, #fff);
}

.why-choose-two {
  position: relative;
  z-index: 1;
  padding: 120px 0px;
  counter-reset: count 0;
}

@media (max-width: 767px) {
  .why-choose-two {
    padding: 80px 0px;
  }
}

.why-choose-two::after {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 65%;
  content: "";
  z-index: -1;
  background-color: var(--swat-black, #000000);
  clip-path: polygon(50% 0px, 100% 60%, 100% 100%, 0px 100%, 0px 60%);
}

.why-choose-two__shape {
  position: absolute;
  right: 0px;
  z-index: -1;
  top: 0px;
  height: 100%;
  width: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

.why-choose-two__wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--swat-gray, #F5F1EF);
  padding: 15px;
}

.why-choose-two__wrapper::after {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 255px;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--swat-base, #004acd);
}

@media (max-width: 991px) {
  .why-choose-two__wrapper::after {
    display: none;
  }
}

.why-choose-two__content {
  position: relative;
  padding: 40px 0px 40px 50px;
}

@media (max-width: 991px) {
  .why-choose-two__content {
    padding: 40px 50px;
  }
}

@media (max-width: 767px) {
  .why-choose-two__content {
    padding: 40px 5px;
  }
}

.why-choose-two__content__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0px 9px;
}

.why-choose-two__content__text {
  line-height: 30px;
  font-weight: 500;
  margin: 0px 0px 34px;
}

.why-choose-two__box {
  position: relative;
  transition: 500ms;
  background-color: var(--swat-white, #fff);
  padding: 16px 100px 16px 72px;
  min-height: 89px;
  margin-top: 30px;
  counter-increment: count 1;
}

.why-choose-two__box__number {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  padding: 13px 7px;
  height: 100%;
  background-color: var(--swat-black, #000000);
  font-size: 16px;
  font-weight: 700;
  color: var(--swat-white, #fff);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transition: 500ms;
}

.why-choose-two__box__number::after {
  position: absolute;
  left: -12px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 12px;
  height: 22px;
  background-color: var(--swat-base, #004acd);
  content: "";
  clip-path: polygon(100% 0px, 0px 50%, 100% 100%);
  transition: 500ms;
}

.why-choose-two__box__number__count {
  position: relative;
  display: inline-block;
}

.why-choose-two__box__number__count::after {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
}

.why-choose-two__box:hover {
  filter: drop-shadow(rgba(0, 0, 0, 0.06) 0px 4px 12.5px);
}

.why-choose-two__box:hover .why-choose-two__box__number {
  background-color: var(--swat-base, #004acd);
}

.why-choose-two__box:hover .why-choose-two__box__icon {
  background-color: var(--swat-black, #000000);
}

.why-choose-two__box:hover .why-choose-two__box__icon i {
  transform: scale(1.05);
}

.why-choose-two__box__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0px 4px;
}

.why-choose-two__box__text {
  margin: 0px;
  font-weight: 500;
}

.why-choose-two__box__icon {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 90px;
  height: 100%;
  font-size: 50px;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  display: flex;
  align-items: center;
  transition: 500ms;
  justify-content: center;
}

.why-choose-two__box__icon i {
  display: inline-block;
  transition: 500ms;
  transform: scale(1);
}

.why-choose-two__image {
  position: relative;
  margin-left: auto;
  max-width: 499px;
}

@media (max-width: 991px) {
  .why-choose-two__image {
    margin: 0px 50px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .why-choose-two__image {
    margin: 0px 5px;
  }
}

.why-choose-two__image>img {
  min-height: 608px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 991px) {
  .why-choose-two__image>img {
    width: auto;
    max-width: 100%;
    min-height: auto;
  }
}

.why-choose-two__image__two {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-block;
  border: 8px solid var(--swat-white, #fff);
}

.why-choose-two__slide-text {
  position: relative;
  display: block;
  padding: 0px;
  white-space: nowrap;
  margin-top: 120px;
}

@media (max-width: 767px) {
  .why-choose-two__slide-text {
    margin-top: 80px;
  }
}

.why-choose-two__slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: 19s linear 0s infinite normal none running text-scrolling;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0px;
  padding: 0px;
  gap: 95px;
}

@media (max-width: 767px) {
  .why-choose-two__slide-text__list {
    animation: 7s linear 0s infinite normal none running text-scrolling;
  }
}

.why-choose-two__slide-text__list:hover {
  animation-play-state: paused;
}

.why-choose-two__slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 40px;
  color: var(--swat-white, #fff);
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  letter-spacing: 0px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin: 0px;
  transition: 300ms;
}

.why-choose-two__slide-text__list li:hover {
  color: var(--swat-base, #004acd);
}

.why-choose-two__slide-text__list li::after {
  position: absolute;
  right: -52px;
  top: 0px;
  content: "|";
  color: currentcolor;
  transform: rotate(27deg);
}

@keyframes text-scrolling {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.funfact-one {
  position: relative;
  z-index: 1;
}

.funfact-one__list {
  position: relative;
  z-index: 2;
  margin: 0px 0px -87px;
  background-color: var(--swat-white, #fff);
  padding: 0px 40px;
}

@media (min-width: 768px) {
  .funfact-one__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}

@media (min-width: 1200px) {
  .funfact-one__list {
    justify-content: space-between;
    gap: 0px;
  }
}

@media (max-width: 767px) {
  .funfact-one__list {
    padding: 0px 20px;
  }
}

.funfact-one__item {
  display: flex;
  align-items: center;
  padding: 15px 0px;
  position: relative;
}

@media (max-width: 1199px) {
  .funfact-one__item:last-child {
    margin-top: -55px;
  }
}

@media (max-width: 767px) {
  .funfact-one__item {
    padding: 30px 0px;
  }

  .funfact-one__item:last-child {
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .funfact-one__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .funfact-one__item {
    flex: 0 0 auto;
    max-width: none;
  }
}

.funfact-one__item:hover .funfact-one__item__icon i {
  transform: rotateY(180deg);
}

.funfact-one__item__icon {
  font-size: 110px;
  line-height: 1;
  color: var(--swat-base, #004acd);
  border-right: 1px solid var(--swat-border-color, #DDDDDD);
  margin-right: 28px;
  padding-right: 28px;
  flex-shrink: 0;
  transition: 0.4s;
}

@media (max-width: 991px) {
  .funfact-one__item__icon {
    font-size: 100px;
    margin-right: 20px;
    padding-right: 20px;
  }
}

.funfact-one__item__icon i {
  display: inline-block;
  transition: 0.6s;
}

.funfact-one__item__count {
  margin: 0px 0px 6px;
  color: var(--swat-base, #222222);
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.funfact-one__item__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0px;
}

.funfact-two {
  position: relative;
}

.funfact-two__list {
  background-color: var(--swat-white, #fff);
  padding: 0px;
  border-radius: 50px;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  list-style: none;
  display: flex;
  overflow: hidden;
  z-index: 2;
  position: relative;
  margin: 0px 0px -173px;
}

@media (max-width: 991px) {
  .funfact-two__list {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .funfact-two__list {
    flex-direction: column;
    padding: 30px 0px;
  }
}

.funfact-two__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: 500ms;
  margin: 0px;
  padding: 100px 0px 55px;
  flex-grow: 1;
  overflow: hidden;
}

@media (max-width: 767px) {
  .funfact-two__item {
    padding: 45px 0px 20px;
  }
}

.funfact-two__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 200px;
  background-color: var(--swat-border-color, #DDDDDD);
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
}

@media (max-width: 767px) {
  .funfact-two__item:not(:last-of-type)::before {
    display: none;
  }
}

.funfact-two__item:hover .funfact-two__icon {
  background-color: var(--swat-black, #000000);
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.funfact-two__item:hover .funfact-two__icon::after {
  background-color: var(--swat-black, #000000);
}

.funfact-two__icon {
  background-color: var(--swat-base, #004acd);
  border-bottom: none;
  width: 90px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 45px;
  color: var(--swat-white, #fff);
  transition: 400ms;
}

.funfact-two__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
  transition: 400ms;
}

.funfact-two__icon span {
  display: inline-block;
  top: -10px;
  position: relative;
}

.funfact-two__count {
  font-size: 50px;
  font-weight: 700;
  line-height: 26px;
  color: var(--swat-black, #000000);
  margin: 35px 0px 17px;
}

.funfact-two__text {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 24px;
  margin: 0px;
}

.testimonials-one {
  position: relative;
  z-index: 1;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .testimonials-one {
    padding: 80px 0px;
  }
}

.testimonials-one .container {
  max-width: 1730px;
}

.testimonials-one .col-xl-3 {
  width: 25%;
}

@media (max-width: 1499px) {
  .testimonials-one .col-xl-3 {
    width: 33.3333%;
  }
}

@media (max-width: 1199px) {
  .testimonials-one .col-xl-3 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .testimonials-one .col-xl-3 {
    width: 100%;
  }
}

.testimonials-card {
  transition: 500ms;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 50px;
  padding: 55px 30px 46px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .testimonials-card {
    padding: 39px 25px 50px;
  }
}

.testimonials-card:hover {
  background-color: var(--swat-black, #000000);
}

.testimonials-card:hover .testimonials-card__name,
.testimonials-card:hover .testimonials-card__designation,
.testimonials-card:hover .testimonials-card__content {
  color: var(--swat-white, #fff);
}

.testimonials-card:hover .testimonials-card__image {
  border-color: var(--swat-white, #fff);
}

.testimonials-card:hover .testimonials-card__shape {
  visibility: hidden;
  opacity: 0;
}

.testimonials-card:hover .testimonials-card__shape-hover {
  visibility: visible;
  opacity: 1;
}

.testimonials-card__shape {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transition: 400ms;
}

.testimonials-card__shape-hover {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transition: 400ms;
  visibility: hidden;
  opacity: 0;
}

.testimonials-card__image {
  width: 88px;
  height: 88px;
  position: absolute;
  border-right-color: ;
  border-right-style: ;
  border-right-width: ;
  border-bottom-color: ;
  border-bottom-style: ;
  border-bottom-width: ;
  border-left-color: ;
  border-left-style: ;
  border-left-width: ;
  border-image-source: ;
  border-image-slice: ;
  border-image-width: ;
  border-image-outset: ;
  border-image-repeat: ;
  border-radius: 0px 0px 50px 50px;
  overflow: hidden;
  border-top: none;
  z-index: 1;
  right: 50px;
  top: 0px;
  transition: 300ms;
}

@media (max-width: 400px) {
  .testimonials-card__image {
    right: 25px;
  }
}

.testimonials-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-card__name {
  margin: 0px 0px 11px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: 300ms;
}

.testimonials-card__designation {
  display: block;
  margin: 0px 0px 23px;
  line-height: 1;
  transition: 300ms;
}

.testimonials-card__content {
  margin: 0px 0px 26px;
  font-style: italic;
  transition: 300ms;
}

.testimonials-card__rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px;
  transition: 300ms;
  color: var(--swat-base, #004acd);
  font-size: 22px;
  letter-spacing: 11px;
}

.testimonials-two {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0px;
  }
}

.testimonials-two__item {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 10px 10px 10px 100px;
  padding: 40px 25px 40px 180px;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 767px) {
  .testimonials-two__item {
    padding: 30px;
    border-radius: 10px;
  }
}

.testimonials-two__item::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0px;
  bottom: auto;
  left: 0px;
  visibility: hidden;
  height: 0px;
  width: 100%;
  transition: 0.5s;
  background-color: var(--swat-black, #000000);
  overflow: hidden;
}

.testimonials-two__item:hover::after {
  height: 100%;
  visibility: visible;
}

.testimonials-two__item:hover .testimonials-two__item__bg {
  opacity: 1;
}

.testimonials-two__item:hover .testimonials-two__item__content,
.testimonials-two__item:hover .testimonials-two__item__name,
.testimonials-two__item:hover .testimonials-two__item__designation {
  color: var(--swat-white, #fff);
}

.testimonials-two__item:hover .testimonials-two__item__quote {
  opacity: 1;
}

.testimonials-two__item__quote {
  position: absolute;
  right: 30px;
  bottom: 20px;
  transition: 0.3s;
  font-size: 60px;
  line-height: 1;
  color: var(--swat-base, #004acd);
  opacity: 0.2;
}

.testimonials-two__item__bg {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: 0.5s;
}

.testimonials-two__item__border {
  position: absolute;
  width: 113px;
  height: 120px;
  border-radius: 10px;
  border: 2px solid var(--swat-base, #004acd);
  left: -15px;
  top: -15px;
}

.testimonials-two__item__border::after {
  position: absolute;
  content: "";
  width: 113px;
  height: 120px;
  border-radius: 10px;
  border: 2px dotted var(--swat-base, #004acd);
  left: -12px;
  top: -12px;
}

.testimonials-two__item__image {
  position: absolute;
  left: 40px;
  top: 40px;
  border-radius: 10px;
  width: 113px;
  height: 121px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .testimonials-two__item__image {
    position: relative;
    left: 0px;
    top: 0px;
    margin: 0px 0px 15px;
  }
}

.testimonials-two__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-two__item__rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--swat-base, #004acd);
  font-size: 20px;
  letter-spacing: 8px;
  margin: 0px 0px 14px;
  transition: 300ms;
}

.testimonials-two__item__content {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
  transition: 300ms;
}

.testimonials-two__item__name {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 10px;
  transition: 300ms;
}

.testimonials-two__item__designation {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  transition: 300ms;
  margin: 0px;
}

.testimonials-three {
  position: relative;
  overflow: hidden;
  background-color: var(--swat-black, #000000);
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0px;
  }
}

.testimonials-three__bg {
  position: absolute;
  inset: 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.testimonials-three__content {
  position: relative;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media (max-width: 1199px) {
  .testimonials-three__content {
    transform: none;
    writing-mode: inherit;
    margin: 0px 0px 40px;
  }
}

.testimonials-three__content .sec-title {
  padding: 0px;
}

@media (min-width: 1200px) {
  .testimonials-three__content .sec-title__tagline {
    margin: 0px 0px 0px 14px;
  }

  .testimonials-three__content .sec-title__tagline img {
    margin: 0px 0px 12px;
  }
}

.testimonials-three__wrapper {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: color-burn;
  background-color: var(--swat-black2, #222222);
}

.testimonials-three__wrapper .prev {
  border: none;
  outline: none;
  width: 44px;
  height: 44px;
  margin: 0px;
  padding: 0px;
  opacity: 1;
  background-color: var(--swat-white, #fff);
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 0px;
  color: var(--swat-base, #004acd);
  transition: 500ms;
  position: absolute;
  z-index: 3;
  left: 0px;
  bottom: 0px;
}

.testimonials-three__wrapper .prev:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.testimonials-three__wrapper .next {
  border: none;
  outline: none;
  width: 44px;
  height: 44px;
  margin: 0px;
  padding: 0px;
  opacity: 1;
  background-color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 0px;
  color: var(--swat-white, #fff);
  transition: 500ms;
  position: absolute;
  z-index: 2;
  left: 49px;
  bottom: 0px;
}

.testimonials-three__wrapper .next:hover {
  background-color: var(--swat-white, #fff);
  color: var(--swat-base, #004acd);
}

.testimonials-three__item {
  position: relative;
  padding: 56px 30px 93px;
}

@media (max-width: 767px) {
  .testimonials-three__item {
    padding: 35px 22px 80px;
    z-index: 1;
    margin-bottom: 40px;
  }
}

.testimonials-three__item__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials-three__item__rating {
  display: flex;
  align-items: center;
  margin: 0px;
}

.testimonials-three__item__rating i {
  color: var(--swat-base, #004acd);
  font-size: 18px;
  letter-spacing: 8px;
}

.testimonials-three__item__quote {
  width: 50px;
  height: 37px;
  background-position: center center;
}

.testimonials-three__item__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--swat-white, #fff);
  font-style: italic;
  text-transform: capitalize;
  margin: 30px 0px 19px;
}

.testimonials-three__item__content {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--swat-white, #fff);
  font-style: italic;
  margin: 0px;
}

.testimonials-three__image__wrapper {
  position: relative;
}

@media (max-width: 767px) {
  .testimonials-three__image__wrapper {
    overflow: hidden;
    height: 395px;
    padding: 30px 0px 20px;
  }
}

.testimonials-three__image {
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 355px;
}

@media (max-width: 767px) {
  .testimonials-three__image {
    position: relative;
  }
}

.testimonials-three__image .slick-list {
  overflow: visible;
}

.testimonials-three__image .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  border: none;
}

.testimonials-three__image .slick-active {
  visibility: visible;
  opacity: 1;
}

.testimonials-three__image__item {
  position: relative;
  background-color: var(--swat-black2, #222222);
  border: 1px solid transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  transition: 400ms;
  margin-bottom: 20px;
}

.testimonials-three__image__item__image {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.testimonials-three__image__item__image::after {
  position: absolute;
  left: -8px;
  bottom: -8px;
  background-color: var(--swat-base, #004acd);
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
}

.testimonials-three__image__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-three__image__item__author {
  position: relative;
  text-align: left;
}

.testimonials-three__image__item__author__name {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--swat-white, #fff);
  line-height: 1;
  margin-bottom: 9px;
}

.testimonials-three__image__item__author__designation {
  line-height: 1;
  text-transform: capitalize;
  color: var(--swat-white, #fff);
  opacity: 0.7;
  margin: 0px;
}

.testimonials-three__image .slick-current.slick-active.slick-center .testimonials-three__image__item {
  border-color: var(--swat-base, #004acd);
}

.cta-one {
  position: relative;
}

.cta-one__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.cta-one__bg::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgba(var(--swat-base-rgb, 254, 87, 79), 1) 0%, rgba(var(--swat-base-rgb, 254, 87, 79), 0.6) 100%);
}

.cta-one__content {
  position: relative;
  z-index: 1;
  padding: 120px 0px;
}

@media (max-width: 991px) {
  .cta-one__content {
    padding: 120px 0px 30px;
  }
}

@media (max-width: 767px) {
  .cta-one__content {
    padding: 80px 0px 30px;
  }
}

.cta-one__content .sec-title {
  padding-bottom: 30px;
}

.cta-one__content .sec-title__tagline {
  color: var(--swat-white, #fff);
}

.cta-one__content .sec-title__title {
  color: var(--swat-white, #fff);
}

.cta-one__content .swat-btn {
  background-color: transparent;
  color: var(--swat-white, #fff);
  border: 1px solid var(--swat-white, #fff);
}

.cta-one__content .swat-btn::after {
  background-color: var(--swat-white, #fff);
}

.cta-one__content .swat-btn:hover {
  color: var(--swat-base, #004acd);
}

.cta-one__image {
  position: relative;
  z-index: 1;
  text-align: right;
  padding: 76px 100px 0px 0px;
}

@media (max-width: 991px) {
  .cta-one__image {
    text-align: left;
    padding: 0px;
  }
}

.cta-one__image__bg {
  position: absolute;
  z-index: -1;
  right: -200px;
  top: 0px;
  width: 730px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
  .cta-one__image__bg {
    display: none;
  }
}

.cta-one__image img {
  max-width: none;
  height: auto;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 767px) {
  .cta-one__image img {
    max-width: 100%;
  }
}

.cta-one--service-details {
  position: relative;
}

@media (max-width: 991px) {
  .cta-one--service-details {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .cta-one--service-details {
    padding-bottom: 50px;
  }
}

.cta-one--service-details .cta-one__bg::after {
  background: rgba(var(--swat-black-rgb, 0, 0, 0), 0.7);
}

.cta-one--service-details .cta-one__content .swat-btn {
  border: none;
  background-color: var(--swat-base, #004acd);
}

.cta-two {
  position: relative;
  background-color: var(--swat-base, #004acd);
  padding: 78px 0px;
  overflow: hidden;
}

.cta-two__shape {
  position: absolute;
  right: 0px;
  top: 0px;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 1199px) {
  .cta-two__shape {
    display: none;
  }
}

.cta-two__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 16.1%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

@media (max-width: 1600px) {
  .cta-two__bg {
    display: none;
  }
}

.cta-two__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

@media (max-width: 991px) {
  .cta-two__content {
    flex-direction: column;
    gap: 30px;
  }
}

.cta-two__content__title {
  color: var(--swat-white, #fff);
  font-size: 32px;
  line-height: 55px;
  font-weight: 700;
  margin: 0px;
}

@media (max-width: 1199px) {
  .cta-two__content__title {
    font-size: 36px;
    line-height: 52px;
  }
}

@media (max-width: 991px) {
  .cta-two__content__title {
    text-align: center;
  }
}

.cta-two__content__info {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--swat-white, #fff);
  border-radius: 10px;
  padding: 26px 40px;
  gap: 20px;
}

.cta-two__content__info i {
  font-size: 39px;
  line-height: 39px;
  color: var(--swat-black, #000000);
  flex-shrink: 0;
  display: inline-block;
  transition: 500ms;
  transform: scale(1);
}

.cta-two__content__info:hover i {
  transform: scale(0.9);
}

.cta-two__content__info__title {
  margin: 0px 0px 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.cta-two__content__info__text {
  margin: 0px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.cta-two__content__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.cta-two__content__info__text a:hover {
  background-size: 100% 1px;
}

.cta-two__content__info__text a:hover {
  color: var(--swat-base, #004acd);
}

.tab-section {
  position: relative;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .tab-section {
    padding: 80px 0px;
  }
}

.tab-section__btns {
  position: relative;
  margin: 0px 0px 60px;
  padding: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .tab-section__btns {
    flex-direction: column;
    gap: 15px;
  }
}

.tab-section__btns li {
  display: inline-block;
  width: 100%;
  background-color: var(--swat-gray, #F5F1EF);
  position: relative;
  text-align: center;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 22px;
  color: var(--swat-black, #000000);
  font-weight: 700;
  text-transform: uppercase;
  padding: 43px 20px;
  cursor: pointer;
  transition: 500ms;
}

.tab-section__btns li::after {
  position: absolute;
  left: 60px;
  bottom: 0px;
  width: 2px;
  height: 60px;
  background-color: var(--swat-base, #004acd);
  content: "";
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.tab-section__btns li:hover,
.tab-section__btns li.active-btn {
  background-color: var(--swat-white, #fff);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 32px 0px;
}

.tab-section__btns li:hover::after,
.tab-section__btns li.active-btn::after {
  visibility: visible;
  opacity: 1;
  bottom: -44px;
}

@media (max-width: 767px) {

  .tab-section__btns li:hover::after,
  .tab-section__btns li.active-btn::after {
    bottom: -24px;
  }
}

.tab-section__image {
  position: relative;
}

.tab-section__image img {
  max-width: 100%;
  height: auto;
}

.tab-section__content {
  position: relative;
}

@media (max-width: 991px) {
  .tab-section__content {
    margin-top: 15px;
  }
}

.tab-section__content__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0px 0px 13px;
}

.tab-section__content__text {
  font-weight: 500;
  line-height: 30px;
  margin: 0px 0px 30px;
}

.tab-section__content__list {
  margin: 0px 0px 45px;
  padding: 0px;
  list-style: none;
}

.tab-section__content__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
  color: var(--swat-black, #000000);
  text-transform: capitalize;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
}

.tab-section__content__list li:hover .tab-section__content__list__icon {
  background-color: var(--swat-black, #000000);
}

.tab-section__content__list li:hover .tab-section__content__list__icon i {
  transform: rotateY(180deg);
}

.tab-section__content__list li+li {
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  margin-top: 20px;
  padding-top: 20px;
}

.tab-section__content__list__icon {
  width: 72px;
  height: 72px;
  background-color: var(--swat-base, #004acd);
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--swat-white, #fff);
  transition: 0.4s;
}

.tab-section__content__list__icon i {
  display: inline-block;
  top: -5px;
  transition: 0.5s;
}

.skill-one {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  padding: 120px 0px;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (max-width: 767px) {
  .skill-one {
    padding: 80px 0px;
  }
}

.skill-one__content {
  position: relative;
}

.skill-one__content .sec-title {
  padding-bottom: 20px;
}

.skill-one__content__text {
  font-weight: 500;
  line-height: 30px;
  margin: 0px 0px 33px;
}

.skill-one__progress {
  position: relative;
  margin-bottom: 26px;
}

.skill-one__progress__title {
  text-transform: capitalize;
  margin: 0px 0px 10px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .skill-one__progress__title {
    font-size: 16px;
  }
}

.skill-one__progress__bar {
  width: 100%;
  height: 10px;
  background-color: var(--swat-border-color, #DDDDDD);
  position: relative;
  border-radius: 10px;
}

.skill-one__progress__inner {
  position: absolute;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: var(--swat-base, #004acd);
  border-radius: 10px;
  transition: 700ms linear;
  width: 0px;
}

.skill-one__progress__number {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--swat-base, #004acd);
}

.skill-one__image {
  position: relative;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 1199px) {
  .skill-one__image {
    margin-top: 40px;
  }

  .skill-one__image img {
    max-width: 100%;
  }
}

.gallery-page {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .gallery-page {
    padding: 80px 0px;
  }
}

.gallery-page__card {
  position: relative;
  overflow: hidden;
  background-color: var(--swat-black, #000000);
}

.gallery-page__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms, opacity 500ms;
  opacity: 1;
}

.gallery-page__card__hover {
  position: absolute;
  inset: 0px;
  background-color: rgba(var(--swat-base-rgb, 254, 87, 79), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms;
  transform-origin: center bottom;
}

.gallery-page__card__hover .img-popup {
  position: relative;
}

.gallery-page__card:hover img {
  transform: scale(1.05);
}

.gallery-page__card:hover .gallery-page__card__hover {
  transform-origin: center top;
  transform: scale(1, 1);
}

.gallery-page__card__icon {
  width: 52px;
  height: 52px;
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  display: block;
  position: relative;
  transition: 0.4s;
}

.gallery-page__card__icon::after,
.gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: var(--swat-base, #004acd);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-page__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sidebar__single {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  padding: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__single {
    padding: 30px 20px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  text-transform: capitalize;
  margin: -4px 0px 30px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  display: inline-block;
}

.sidebar__title::after {
  content: "";
  width: 50%;
  height: 3px;
  background-color: var(--swat-base, #004acd);
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.sidebar__search {
  position: relative;
}

.sidebar__search input[type="search"],
.sidebar__search input[type="text"] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--swat-white, #fff);
  font-size: 16px;
  color: var(--swat-text, #636363);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  transition: 400ms;
}

.sidebar__search input[type="search"]:focus,
.sidebar__search input[type="text"]:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 30px 0px;
}

.sidebar__search button[type="submit"] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  padding: 0px;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--swat-base, #004acd);
  transition: 400ms;
}

.sidebar__search button[type="submit"]:hover {
  color: var(--swat-black, #000000);
}

.sidebar__posts {
  margin-bottom: 0px;
}

.sidebar__posts__item {
  display: flex;
  align-items: center;
}

.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}

.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 20px;
  width: 94px;
  height: 74px;
}

.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar__posts__title {
  margin: 0px;
  text-transform: capitalize;
  color: var(--swat-black, #000000);
  font-size: 17px;
  font-weight: bold;
  line-height: 22px;
}

.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}

.sidebar__posts__title a:hover {
  color: var(--swat-base, #004acd);
}

.sidebar__posts__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--swat-text, #636363);
  transition: 500ms;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 13px;
}

.sidebar__posts__meta i {
  color: var(--swat-black, #000000);
}

.sidebar__categories {
  margin-bottom: -5px;
  margin-top: -10px;
}

.sidebar__categories li {
  font-size: 17px;
  font-weight: 400;
  color: var(--swat-text, #636363);
  padding: 0px 0px 0px 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  transition: 500ms;
  position: relative;
}

.sidebar__categories li::before {
  content: "";
  font-weight: 400;
  transition: 500ms;
  font-size: 15px;
  color: currentcolor;
  position: absolute;
  left: 0px;
  font-family: icomoon !important;
}

.sidebar__categories li a {
  color: inherit;
  transition: 500ms;
}

.sidebar__categories li:hover {
  color: var(--swat-base, #004acd);
}

.sidebar__categories li+li {
  margin-top: 10px;
}

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.sidebar__tags a {
  background-color: var(--swat-white, #fff);
  text-transform: capitalize;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--swat-text, #636363);
  transition: 500ms;
  display: inline-flex;
  padding: 1px 20px;
  border: 1px solid var(--swat-border-color, #DDDDDD);
}

.sidebar__tags a:hover {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
  border-color: var(--swat-base, #004acd);
}

.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}

.sidebar__comments__item {
  display: flex;
  align-items: center;
}

.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 32px;
}

.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--swat-base, #004acd);
  font-size: 20px;
  color: var(--swat-white, #fff);
  margin-right: 20px;
  border-radius: 50%;
  transition: 500ms;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--swat-black, #000000);
  color: var(--swat-white, #fff);
}

.sidebar__comments__title {
  margin: 0px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--swat-text, #636363);
}

.sidebar__comments__title a {
  color: inherit;
  transition: 500ms;
}

.sidebar__comments__title a:hover {
  color: var(--swat-black, #000000);
}

.service-sidebar {
  position: relative;
}

.service-sidebar__single+.service-sidebar__single {
  margin-top: 30px;
}

.service-sidebar__nav {
  margin: 0px;
  padding: 24px;
  background-color: var(--swat-gray, #F5F1EF);
}

.service-sidebar__nav li {
  position: relative;
}

.service-sidebar__nav li a {
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: var(--swat-black, #000000);
  display: block;
  margin: 0px;
  padding: 16px 15px 16px 56px;
  background-color: var(--swat-white, #fff);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-sidebar__nav li a::after {
  content: "";
  transition: 500ms;
  position: absolute;
  left: 8px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-family: icomoon !important;
}

.service-sidebar__nav li a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-color: var(--swat-white, #fff);
  z-index: -1;
  transform: scale(0, 1);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: center bottom;
}

.service-sidebar__nav li.active a,
.service-sidebar__nav li:hover a {
  color: var(--swat-base);
}

.service-sidebar__nav li.active a::after,
.service-sidebar__nav li:hover a::after {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
  transform: rotate(-45deg);
}

.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: left center;
}

.service-sidebar__nav li+li {
  margin-top: 16px;
}

.service-sidebar__contact {
  padding: 147px 25px 144px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.service-sidebar__contact::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--swat-black-rgb, 0, 0, 0), 0.7);
}

.service-sidebar__contact__left-triangle {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 41px 47px 0px 0px;
  border-color: var(--swat-base, #004acd) transparent transparent transparent;
  transform: rotate(0deg);
}

.service-sidebar__contact__right-triangle {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0px 0px 41px 47px;
  border-color: transparent transparent var(--swat-base, #004acd) transparent;
  transform: rotate(0deg);
}

.service-sidebar__contact__icon {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  width: 72px;
  height: 72px;
  background-color: var(--swat-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms;
  margin-bottom: 36px;
}

.service-sidebar__contact__icon i {
  color: var(--swat-base, #004acd);
  font-size: 36px;
  transition: color 500ms, transform 500ms;
  transform: scale(1);
}

.service-sidebar__contact:hover .service-sidebar__contact__icon {
  background-color: var(--swat-black2, #f6ff39);
}

.service-sidebar__contact:hover .service-sidebar__contact__icon i {
  transform: scale(0.9);
  color: var(--swat-base, #004acd);
}

.service-sidebar__contact__number {
  position: relative;
  z-index: 1;
  color: var(--swat-white, #fff);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.9px;
  margin-bottom: 0px;
}

.service-sidebar__contact__number span {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: -0.48px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 9px;
}

.service-sidebar__contact__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.service-sidebar__contact__number a:hover {
  background-size: 100% 1px;
}

.service-sidebar__contact__number a:hover {
  color: var(--swat-black2, #f6ff39);
}

.sidebar-one {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms 500ms, visibility 500ms 500ms, -webkit-transform 500ms 500ms;
}

.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms, visibility 500ms, -webkit-transform 500ms;
}

.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition: opacity 500ms 500ms, visibility 500ms 500ms, transform 500ms 500ms, -webkit-transform 500ms 500ms;
}

.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
  background-color: var(--swat-black3, #333333);
  opacity: 0.5;
  cursor: url("../images/close.png"), auto;
}

.sidebar-one__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 16px;
  color: var(--swat-white, #fff);
  transition: 0.4s;
  cursor: pointer;
}

.sidebar-one__close:hover {
  color: var(--swat-base, #004acd);
}

.sidebar-one__content {
  width: 350px;
  background-color: var(--swat-black, #222222);
  z-index: 10;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  overflow-y: auto;
  padding: 40px 30px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms, visibility 500ms, transform 500ms, -webkit-transform 500ms;
  scrollbar-width: none;
}

.sidebar-one__text {
  color: var(--swat-gray, #F5F1EF);
  font-weight: 500;
  margin: 35px 0px 30px;
}

.sidebar-one__title {
  color: var(--swat-white, #fff);
  font-weight: 700;
  font-size: 20px;
  margin: 0px 0px 18px;
}

.sidebar-one__info {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.sidebar-one__info li {
  position: relative;
  padding: 0px 0px 0px 28px;
  margin-bottom: 10px;
  color: var(--swat-gray, #F5F1EF);
}

.sidebar-one__info li span {
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 15px;
  color: var(--swat-base, #004acd);
  line-height: inherit;
}

.sidebar-one__info li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  color: inherit;
}

.sidebar-one__info li a:hover {
  background-size: 100% 1px;
}

.sidebar-one__info li a:hover {
  color: var(--swat-base, #004acd);
}

.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0px 40px;
}

.sidebar-one__social a {
  width: 37px;
  height: 37px;
  background-color: RGBA(var(--swat-white-rgb, 255, 255, 255), 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--swat-white, #fff);
}

.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  backface-visibility: hidden;
}

.sidebar-one__social a:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.sidebar-one__social a:hover i {
  animation: 0.4s ease 0s 1 normal forwards running iconTranslateY;
}

.sidebar-one__newsletter {
  position: relative;
}

.sidebar-one__newsletter input[type="text"] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(var(--swat-white-rgb, 255, 255, 255), 0.08);
  color: var(--swat-gray, #F5F1EF);
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 50px;
  text-transform: capitalize;
  transition: 500ms;
  border-radius: 5px;
}

.sidebar-one__newsletter button[type="submit"] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--swat-white, #fff);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 500ms;
}

.sidebar-one__newsletter button[type="submit"]:hover {
  color: var(--swat-base, #004acd);
}

.blog-details {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0px;
  }
}

.blog-details__image {
  position: relative;
  margin: 0px 0px 40px;
}

.blog-details__image img {
  max-width: 100%;
  height: auto;
}

.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.blog-details__meta li {
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
}

.blog-details__meta li i {
  color: var(--swat-base, #004acd);
  margin-right: 10px;
}

.blog-details__meta li a {
  color: inherit;
}

.blog-details__meta li a:hover {
  color: var(--swat-base, #004acd);
}

.blog-details__meta li img {
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--swat-base, #004acd);
}

.blog-details__meta .blog-details__meta__tag {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 7px 25px;
  border-radius: 40px;
}

.blog-details__meta .blog-details__meta__tag:hover {
  background-color: var(--swat-black, #000000);
  color: var(--swat-white, #fff);
}

.blog-details__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-details__text {
  font-weight: 500;
  margin: 0px 0px 15px;
}

@media (min-width: 1200px) {
  .blog-details__text {
    padding-right: 50px;
  }
}

.blog-details__bottom-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 29px 0px;
  margin: 63px 0px;
}

@media (max-width: 767px) {
  .blog-details__bottom-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-details__bottom-meta__categories,
.blog-details__bottom-meta__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details__bottom-meta__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--swat-black2, #222222);
  margin-bottom: 0px;
  margin-right: 10px;
}

.blog-details__bottom-meta a {
  padding: 4px 19px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  background-color: var(--swat-gray, #F5F1EF);
  color: var(--swat-text, #636363);
}

.blog-details__bottom-meta a:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.blog-details__paginations {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .blog-details__paginations {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-details__paginations .sidebar__posts__item:not(:last-of-type) {
  border-bottom: 0px solid var(--swat-border-color, #e8e3da);
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.blog-details__paginations .sidebar__posts__item {
  background-color: var(--swat-gray, #F5F1EF);
  padding: 20px !important;
}

@media (min-width: 1200px) {
  .blog-details__paginations .sidebar__posts__item {
    padding: 30px;
  }
}

.blog-details__paginations .sidebar__posts__item:nth-of-type(2) {
  flex-direction: row-reverse;
  text-align: right;
}

.blog-details__paginations .sidebar__posts__item:nth-of-type(2) .sidebar__posts__image {
  margin-right: 0px;
  margin-left: 20px;
}

.blog-details__paginations .sidebar__posts__item:nth-of-type(2) .sidebar__posts__meta {
  flex-direction: row-reverse;
}

.comments-one {
  margin-top: 55px;
}

.comments-one__title {
  margin: 0px;
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
}

.comments-one__list {
  margin: 35px 0px 0px;
}

.comments-one__card {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  position: relative;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .comments-one__card {
    flex-direction: column;
    gap: 25px;
  }
}

.comments-one__card__image {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 30px;
}

.comments-one__card__image img {
  border-radius: 50%;
}

.comments-one__card__title {
  margin: 0px 0px 10px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.comments-one__card__text {
  margin: 0px 0px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--swat-text, #636363);
}

.comments-one__card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  font-family: var(--swat-font, "Mulish", sans-serif);
  color: var(--swat-base, #004acd);
  text-transform: none;
  margin-left: 20px;
}

.comments-one__card .swat-btn {
  padding: 4px 20px;
  border-radius: 5px;
  font-size: 14px;
}

.comments-one__card .swat-btn::after {
  bottom: -23px;
}

.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 68px;
}

.comments-form__title {
  margin: -4px 0px;
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
}

.comments-form__form {
  margin-top: 30px;
}

.comments-form__input-box {
  position: relative;
  line-height: 1;
  margin: 0px 0px 30px;
}

.comments-form__input-box textarea,
.comments-form__input-box input[type="text"],
.comments-form__input-box input[type="email"],
.comments-form__input-box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: var(--swat-gray, #F5F1EF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--swat-text, #636363);
  text-transform: capitalize;
  font-family: var(--swat-font, "Mulish", sans-serif);
  display: block;
  font-weight: 400;
}

.comments-form__input-box textarea {
  height: 190px;
}

.comments-form .swat-btn:hover i {
  transform: none;
}

.product {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .product {
    padding: 80px 0px;
  }
}

.product__sidebar {
  position: relative;
}

.product__sidebar--title {
  position: relative;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: -5px;
}

.product__search {
  position: relative;
  display: block;
  background-color: var(--swat-gray, #F5F1EF);
  padding: 15px;
  margin-bottom: 30px;
}

.product__search form {
  border-radius: 0px;
  position: relative;
}

.product__search form input[type="text"] {
  width: 100%;
  height: 60px;
  background-color: var(--swat-white, #fff);
  padding-left: 20px;
  padding-right: 15px;
  font-family: var(--swat-font, "Mulish", sans-serif);
  font-size: 16px;
  color: var(--swat-text, #636363);
  border: none;
  outline: none;
  font-weight: 500;
  border-radius: 0px;
}

.product__search form button[type="submit"] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  padding: 0px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--swat-base, #004acd);
  transition: 400ms;
}

.product__search form button[type="submit"]:hover {
  color: var(--swat-black, #000000);
}

.product__price-ranger {
  background-color: var(--swat-gray, #F5F1EF);
  padding: 30px;
  margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger {
    padding: 30px 20px;
  }
}

.product__price-ranger #slider-range {
  margin: 22px 0px 0px;
  background: var(--swat-white, #fff);
  border: 1px solid var(--swat-base, #004acd);
  height: 7px;
  border-radius: 10px;
  position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--swat-base, #004acd);
}

.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -7px;
  background: var(--swat-base, #004acd);
  border: 0px;
  height: 18px;
  border-radius: 50%;
  margin-left: -2px;
  outline: none medium;
  cursor: pointer;
  z-index: 2;
  width: 18px !important;
}

.product__price-ranger #slider-range .ui-slider-handle::after {
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 50%;
  position: absolute;
  inset: 0px;
  margin: auto;
}

.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 18px 0px 0px;
}

.product__price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--swat-text, #636363);
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--swat-font, "Mulish", sans-serif);
  padding: 0px;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--swat-text, #636363);
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}

.product__price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background-color: var(--swat-white, #fff);
  font-family: var(--swat-font, "Mulish", sans-serif);
  float: right;
  text-align: center;
  border: none;
  color: var(--swat-black, #000000);
  font-size: 10px;
  letter-spacing: var(--swat-letter-space, 0.1em);
  font-weight: 600;
  line-height: 38px;
  margin: 0px;
  cursor: pointer;
  padding: 0px 20px;
  height: 38px;
  border-radius: 0px;
  box-shadow: 0px 10px 30px 0px rgba(var(--swat-black-rgb, 0, 0, 0), 0.07);
  text-transform: uppercase;
  transition: 500ms;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger .ranger-min-max-block input[type="submit"] {
    padding: 0px 15px;
  }
}

.product__price-ranger .ranger-min-max-block input[type="submit"]:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.product__categories {
  background-color: var(--swat-gray, #F5F1EF);
  padding: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product__categories {
    padding: 30px 20px;
  }
}

.product__categories .product__sidebar--title {
  margin-bottom: 22px;
}

.product__categories ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.product__categories ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--swat-text, #636363);
  background-color: var(--swat-white, #fff);
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  z-index: 1;
  cursor: pointer;
  padding: 9px 20px 11px 42px;
}

.product__categories ul li::before {
  content: "";
  font-weight: 400;
  transition: 500ms;
  font-size: 14px;
  color: currentcolor;
  position: absolute;
  left: 18px;
  top: 1px;
  bottom: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  font-family: icomoon !important;
}

.product__categories ul li a {
  color: inherit;
  transition: 0.3s;
}

.product__categories ul li:hover,
.product__categories ul li.active {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.product__categories ul li+li {
  margin-top: 10px;
}

.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .product__info-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

.product__showing-text {
  margin: 0px;
  font-weight: 500;
}

.product__showing-sort {
  margin: 0px;
  font-size: 16px;
}

.product__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  font-family: var(--swat-font, "Mulish", sans-serif);
  width: 210px !important;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 50px;
  border-radius: 0px;
  border: 0px;
  margin: 0px;
  padding: 0px 20px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 400;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  outline: none !important;
  background-color: var(--swat-gray, #F5F1EF) !important;
  color: var(--swat-text, #636363) !important;
  box-shadow: none !important;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  top: 2px;
  bottom: 0px;
  right: 20px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 14px;
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
  color: var(--swat-text, #636363);
  text-transform: capitalize;
  background-color: var(--swat-gray, #F5F1EF);
  transition: 0.4s;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li:hover>a,
.product__showing-sort .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  border-color: var(--swat-base, #004acd);
}

.product__item {
  position: relative;
  background-color: var(--swat-white, #fff);
  border: 1px solid var(--swat-border-color, #DDDDDD);
  overflow: hidden;
  transition: 500ms;
}

.product__item:hover {
  border-color: var(--swat-base, #004acd);
}

.product__item__img {
  background-color: var(--swat-white, #fff);
  position: relative;
  text-align: center;
  padding: 29px 15px 0px;
}

.product__item__img::after {
  background: rgba(var(--swat-white-rgb, 255, 255, 255), 0.3);
  inset: 0px 51% 0px 50%;
  content: "";
  position: absolute;
  opacity: 1;
  pointer-events: none;
  transition: 400ms linear;
}

.product__item__img img {
  max-width: 100%;
  height: auto;
  margin: auto;
  mix-blend-mode: multiply;
  transition: 500ms;
  transform: scale(1);
  width: auto !important;
}

.product__item:hover .product__item__img::after {
  left: 0px;
  right: 0px;
  opacity: 0;
  transition: 400ms linear;
}

.product__item:hover .product__item__img img {
  transform: scale(1.05);
}

.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}

.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 50%;
  color: var(--swat-black, #000000);
  font-size: 13px;
  visibility: hidden;
  opacity: 0;
}

.product__item__btn a:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.product__item__btn a:nth-child(1) {
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms, visibility 300ms, background 300ms, color 300ms, border 300ms;
  transform: translate3d(30px, 0px, 0px);
}

.product__item__btn a:nth-child(2) {
  transition: transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms, visibility 300ms, background 300ms, color 300ms, border 300ms;
  transform: translate3d(30px, 0px, 0px);
}

.product__item__btn a:nth-child(3) {
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms, visibility 300ms, background 300ms, color 300ms, border 300ms;
  transform: translate3d(30px, 0px, 0px);
}

.product__item__btn a:nth-child(4) {
  transition: transform 650ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms, visibility 300ms, background 300ms, color 300ms, border 300ms;
  transform: translate3d(30px, 0px, 0px);
}

.product__item__btn a+a {
  margin-top: 10px;
}

.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0px, 0px, 0px);
}

.product__item__content {
  position: relative;
  text-align: center;
  padding: 27px 20px 45px;
}

.product__item__title {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0px 0px 12px;
}

.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.product__item__title a:hover {
  background-size: 100% 1px;
}

.product__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--swat-text, #636363);
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 17px;
}

.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--swat-base, #004acd);
  letter-spacing: 7px;
  margin-bottom: 27px;
}

.product__item__link {
  border-radius: 5px;
  background-color: var(--swat-gray, #F5F1EF);
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--swat-black, #000000);
}

.product__item__link:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.product-one {
  position: relative;
}

.product-one__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0px 0px 55px;
  position: relative;
}

@media (max-width: 767px) {
  .product-one__title {
    margin-bottom: 35px;
  }
}

.product-one__title::after {
  position: absolute;
  right: 129px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: calc(100% - 490px);
  height: 1px;
  content: "";
  background-color: var(--swat-border-color, #DDDDDD);
}

@media (max-width: 991px) {
  .product-one__title::after {
    width: calc(100% - 290px);
    right: 0px;
  }
}

.product-one__categories {
  position: relative;
  background-color: var(--swat-black, #000000);
  border-radius: 20px;
  overflow: hidden;
}

.product-one__categories__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}

.product-one__categories__list {
  margin: 0px;
  padding: 25px 0px;
  list-style: none;
  position: relative;
}

.product-one__categories__list li {
  padding: 0px 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--swat-base, #004acd);
  letter-spacing: -0.32px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-one__categories__list li a {
  color: var(--swat-white, #fff);
}

.product-one__categories__list li a:hover {
  color: var(--swat-base, #004acd);
}

.product-one__categories__list li+li {
  border-top: 1px solid rgba(var(--swat-border-color-rgb, 221, 221, 221), 0.2);
  padding-top: 14px;
  margin-top: 14px;
}

.product-one .swat-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  right: 0px;
  top: -89px;
  margin: 0px;
  gap: 15px;
}

@media (max-width: 991px) {
  .product-one .swat-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: 0px;
    margin: 40px 0px 0px;
  }
}

.product-one .swat-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  background-color: transparent;
  border: 1px solid rgba(var(--swat-border-color-rgb, 221, 221, 221), 0.75);
  border-radius: 50%;
  color: var(--swat-base, #004acd);
  font-size: 16px;
}

.product-one .swat-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  border-color: var(--swat-base, #004acd);
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.product-two {
  position: relative;
  padding: 0px 0px 60px;
}

.product-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0px 40px;
}

@media (max-width: 767px) {
  .product-two__top {
    margin: 0px 0px 30px;
  }
}

.product-two__top__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0px;
}

.product-two__top__rm {
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: var(--swat-black, #000000);
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.product-two__top__rm:hover {
  background-size: 100% 1px;
}

.product-two__top__rm i {
  color: var(--swat-base, #004acd);
  display: inline-block;
  margin-left: 3px;
  position: relative;
  top: 3px;
  width: 12px;
  font-size: 20px;
}

.product-two__top__rm:hover {
  color: var(--swat-base, #004acd);
  text-shadow: currentcolor 0px 0px 1px;
}

.product-two__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -65px auto 40px;
  padding: 0px;
}

@media (max-width: 991px) {
  .product-two__filter {
    padding-left: 160px;
  }
}

@media (max-width: 767px) {
  .product-two__filter {
    padding: 0px;
    flex-wrap: wrap;
    margin: 0px 0px 35px;
    justify-content: flex-start;
  }
}

.product-two__filter__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0px;
  padding: 0px 0px 9px;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
}

@media (max-width: 991px) {
  .product-two__filter__list {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .product-two__filter__list {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.product-two__filter__list li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--swat-black, #000000);
  text-transform: capitalize;
  cursor: pointer;
  transition: 400ms linear;
}

.product-two__filter__list li::after {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -10px;
  margin: 0px auto;
  content: "";
  width: 0px;
  height: 1px;
  background-color: var(--swat-base, #004acd);
  transition: 400ms linear;
}

.product-two__filter__list li:hover,
.product-two__filter__list li.active {
  color: var(--swat-base, #004acd);
}

.product-two__filter__list li:hover::after,
.product-two__filter__list li.active::after {
  width: 100%;
}

.product-three {
  position: relative;
  padding: 60px 0px;
}

.product-three__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin: 0px 0px 34px;
  position: relative;
}

.product-three__title::before {
  position: absolute;
  height: 1px;
  width: calc(50% - 118px);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 0px;
  content: "";
  background-color: var(--swat-border-color, #DDDDDD);
}

.product-three__title::after {
  position: absolute;
  height: 1px;
  width: calc(50% - 118px);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
  content: "";
  background-color: var(--swat-border-color, #DDDDDD);
}

.product-three__item {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 10px;
  min-height: 148px;
  padding: 20px 150px 15px 20px;
}

.product-three__item__img {
  background-color: var(--swat-gray, #F5F1EF);
  position: absolute;
  overflow: hidden;
  right: 0px;
  top: 0px;
  padding: 0px;
}

.product-three__item__img img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: 500ms;
}

.product-three__item:hover .product-three__item__img img {
  transform: scale(1.03);
}

.product-three__item__ratings {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--swat-base, #004acd);
  letter-spacing: 7px;
  margin-bottom: 14px;
}

.product-three__item__title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px 0px 14px;
}

.product-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.product-three__item__title a:hover {
  background-size: 100% 1px;
}

.product-three__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.product-three__item__text {
  font-size: 14px;
  font-weight: 500;
  margin: 0px 0px 5px;
}

.product-three__item__price {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--swat-black, #000000);
  font-weight: 500;
  margin: 0px;
}

.product-four {
  position: relative;
}

.product-four__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0px 35px;
}

@media (max-width: 767px) {
  .product-four__top {
    margin: 0px 0px 25px;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.product-four__top__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0px;
}

.product-four__top__rm {
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: var(--swat-black, #000000);
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.product-four__top__rm:hover {
  background-size: 100% 1px;
}

.product-four__top__rm i {
  color: var(--swat-base, #004acd);
  display: inline-block;
  margin-left: 3px;
  position: relative;
  top: 3px;
  width: 12px;
  font-size: 20px;
}

.product-four__top__rm:hover {
  color: var(--swat-base, #004acd);
  text-shadow: currentcolor 0px 0px 1px;
}

.product-four__carousel {
  position: relative;
  padding: 0px 75px;
}

@media (max-width: 1499px) {
  .product-four__carousel {
    padding: 0px 30px;
  }
}

@media (max-width: 1299px) {
  .product-four__carousel {
    padding: 0px 20px;
  }
}

.product-four .product__item__price {
  margin: 0px;
}

.product-details {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .product-details {
    padding: 80px 0px;
  }
}

.product-details__img {
  background-color: var(--swat-white, #fff);
  border: 1px solid var(--swat-border-color, #DDDDDD);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 570px;
}

@media (max-width: 767px) {
  .product-details__img {
    min-height: 420px;
  }
}

.product-details__img img {
  max-width: 100%;
  height: auto;
}

.product-details__img-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  line-height: 1;
}

.product-details__img-search a {
  display: inline-block;
  font-size: 21px;
  color: var(--swat-black, #000000);
  transition: 500ms;
}

.product-details__img-search a:hover {
  color: var(--swat-base, #004acd);
}

.product-details__content {
  position: relative;
  margin: 0px;
}

@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0px 0px;
  }
}

.product-details__top {
  display: flex;
  align-items: baseline;
  gap: 145px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .product-details__top {
    flex-direction: column;
    gap: 8px;
  }
}

.product-details__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
}

.product-details__price {
  font-size: 24px;
  color: var(--swat-base, #004acd);
  font-weight: 700;
  margin: 0px;
}

.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 9px;
  font-size: 16px;
  color: var(--swat-base, #004acd);
}

.product-details__review a {
  display: inline-block;
  color: var(--swat-text, #636363);
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0px;
  margin-left: 1px;
  font-weight: 400;
  transition: 500ms;
}

.product-details__review a:hover {
  color: var(--swat-base, #004acd);
}

.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--swat-border-color, #DDDDDD);
  margin: 25px 0px 21px;
}

.product-details__excerpt {
  line-height: 30px;
  margin: 0px 0px 31px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 32px 0px 40px;
}

.product-details__quantity-title {
  margin: 0px 20px 0px 0px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  height: 53px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  height: 53px;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  appearance: textfield;
  font-family: var(--swat-font, "Mulish", sans-serif);
  color: var(--swat-base, #004acd);
  padding-left: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  background-color: transparent;
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--swat-text, #636363);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  border-left: 1px solid var(--swat-border-color, #DDDDDD);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: 500ms;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.product-details__quantity .quantity-box button:hover {
  color: var(--swat-base, #004acd);
}

.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-details__buttons .swat-btn {
  border-radius: 0px;
  padding: 15.4px 32px;
  font-size: 15px;
  font-weight: 700;
}

.product-details__buttons .swat-btn i {
  font-size: 15px;
  margin: 0px 0px 0px 12px;
  padding-left: 9px;
  border-left: 1px solid rgba(var(--swat-white-rgb, 255, 255, 255), 0.2);
  transform: none !important;
}

.product-details__buttons .swat-btn.wishlist {
  background-color: var(--swat-black, #000000);
}

.product-details__buttons .swat-btn.wishlist::after,
.product-details__buttons .swat-btn.wishlist:hover {
  background-color: var(--swat-base, #004acd);
}

.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.product-details__socials__title {
  font-size: 16px;
  text-transform: capitalize;
  margin: 0px 10px 0px 0px;
  font-weight: 500;
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}

.product-details__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  font-size: 14px;
  color: var(--swat-text, #636363);
  transition: 500ms;
  border-radius: 0px;
}

.product-details__socials a:hover {
  background-color: var(--swat-base, #004acd);
  border-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.product-details__description {
  position: relative;
  margin: 54px 0px 0px;
}

.product-details__description__title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 24px;
  font-weight: bold;
}

.product-details__description__lists {
  margin: 32px 0px;
  padding: 0px;
}

.product-details__description__lists li {
  position: relative;
  padding: 0px 0px 0px 30px;
  font-weight: 700;
  color: var(--swat-black, #000000);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .product-details__description__lists li {
    min-width: 50%;
  }
}

.product-details__description__lists li span {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms;
}

.product-details__description__lists li:hover span {
  background-color: var(--swat-base, #004acd);
}

.product-details__description__text {
  margin-bottom: 30px;
  font-weight: 500;
}

.product-details__comment {
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  margin: 32px 0px 0px;
  padding: 54px 0px 0px;
  position: relative;
}

.product-details__review-title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 44px;
  font-weight: bold;
}

.product-details__comment-box {
  position: relative;
  padding: 5px 0px 32px 182px;
  margin-bottom: 30px;
  min-height: 166px;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
}

@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0px;
  }
}

.product-details__comment-box__thumb {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  margin: 0px;
  border: none;
}

@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0px 0px 20px;
  }
}

.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.product-details__comment-box__meta {
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0px 0px 9px;
  font-weight: bold;
  color: var(--swat-black, #000000);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-details__comment-box__date {
  font-size: 16px;
  line-height: 26px;
  display: block;
  text-transform: inherit;
  font-family: var(--swat-font, "Mulish", sans-serif);
  color: var(--swat-base, #004acd);
  font-weight: 500;
  letter-spacing: 0px;
  margin: 3px 0px 0px;
  position: relative;
}

.product-details__comment-box__date::before {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 1px;
  background-color: currentcolor;
  content: "";
  margin: 0px 15px;
  top: -4px;
}

.product-details__comment-box__text {
  font-weight: 500;
  margin: 0px;
}

.product-details__comment-box__ratings {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  letter-spacing: 9px;
  font-size: 16px;
  color: var(--swat-base, #004acd);
}

@media (max-width: 991px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0px;
    margin: 15px 0px 22px;
  }
}

.product-details__form {
  position: relative;
  margin: 55px 0px 0px;
}

.product-details__form .row {
  --bs-gutter-x: 20px;
}

.product-details__form-title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: bold;
}

.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 9px;
  font-size: 16px;
  color: var(--swat-base, #004acd);
  margin: 0px 0px 30px;
}

.product-details__form-ratings__label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  color: var(--swat-text, #636363);
  margin: 0px 17px 0px 0px;
}

.product-details__form__form {
  margin-top: 0px;
}

.product-details__form__form input[type="text"],
.product-details__form__form input[type="tel"],
.product-details__form__form input[type="email"],
.product-details__form__form textarea {
  height: 60px;
  font-weight: 500;
}

.product-details__form__form textarea {
  height: 190px;
  padding-top: 20px;
}

.product-details__form__form .swat-btn:hover i {
  transform: none;
}

.cart-page {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0px;
  }
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}

.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0px 0px 31px;
}

@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}

.cart-page__table thead tr th {
  color: var(--swat-black, #000000);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0px 0px 24px;
  text-transform: capitalize;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD) !important;
}

.cart-page__table thead tr th:last-child {
  text-align: right;
}

.cart-page__table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
  vertical-align: middle;
  border-right: none;
  border-left: none;
  border-image: initial;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 30px 0px;
  letter-spacing: 0px;
}

.cart-page__table tbody tr td:last-child {
  text-align: right;
}

.cart-page__table__meta {
  display: flex;
  align-items: center;
}

.cart-page__table__meta-img {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 5px;
  margin-right: 21px;
  border-radius: 0px;
}

.cart-page__table__meta-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.cart-page__table__meta-title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0px;
  font-weight: 700;
  color: var(--swat-black, #000000);
}

.cart-page__table__meta-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.cart-page__table__meta-title a:hover {
  background-size: 100% 1px;
}

.cart-page__table__meta-title a:hover {
  color: var(--swat-base, #004acd);
}

.cart-page__table__remove {
  display: block;
  color: var(--swat-text, #636363);
  font-size: 14px;
}

.cart-page__table__remove:hover {
  color: var(--swat-base, #004acd);
}

.cart-page .product-details__quantity {
  margin: 0px;
}

.cart-page__coupone-form {
  position: relative;
  width: 100%;
}

.cart-page__coupone-form__inner {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .cart-page__coupone-form__inner {
    display: block;
  }
}

.cart-page__coupone-form label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--swat-black, #000000);
  margin: 0px 0px 8px;
}

.cart-page__coupone-form input[type="text"] {
  height: 57px;
  width: 260px;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--swat-text, #636363);
  display: block;
  font-weight: 500;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .cart-page__coupone-form input[type="text"] {
    width: 100%;
    margin: 0px 0px 10px;
  }
}

.cart-page__coupone-form .swat-btn {
  border-radius: 0px;
}

.cart-page__coupone-form .swat-btn.update {
  margin-left: auto;
  background-color: transparent;
  border: 1px solid var(--swat-base, #004acd);
  color: var(--swat-base, #004acd);
}

.cart-page__coupone-form .swat-btn.update:hover {
  color: var(--swat-white, #fff);
}

.cart-page__coupone-form .swat-btn.update::after {
  background-color: var(--swat-base, #004acd);
}

.cart-page__cart-total {
  position: relative;
  margin: 60px 0px 0px auto;
  max-width: 315px;
}

.cart-page__cart-total__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  margin: 0px 0px 33px;
  padding: 0px 0px 20px;
}

.cart-page__cart-total__list {
  position: relative;
  margin: 0px 0px 24px;
  padding: 0px;
}

.cart-page__cart-total__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--swat-black, #000000);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0px 0px 12px;
}

.cart-page__cart-total__list li.shipping {
  display: block;
  font-size: 16px;
}

.cart-page__cart-total__list li.shipping p {
  line-height: 26px;
  font-weight: 400;
  color: var(--swat-text, #636363);
  font-size: 16px;
  margin: 8px 0px 0px;
}

.cart-page__cart-total__list li:last-child {
  padding-top: 17px;
  margin-top: 18px;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons .swat-btn {
  border-radius: 0px;
}

.wishlist-page {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .wishlist-page {
    padding: 80px 0px;
  }
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 1199px) {
  .wishlist-page .table-responsive {
    margin-bottom: 30px;
  }
}

.wishlist-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0px 0px 31px;
}

@media (max-width: 1199px) {
  .wishlist-page__table {
    min-width: 1170px;
  }
}

.wishlist-page__table thead tr th {
  color: var(--swat-black, #000000);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0px 0px 24px;
  text-transform: capitalize;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD) !important;
}

.wishlist-page__table thead tr th:last-child {
  text-align: right;
}

.wishlist-page__table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
  vertical-align: middle;
  border-right: none;
  border-left: none;
  border-image: initial;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 30px 0px;
  letter-spacing: 0px;
}

.wishlist-page__table tbody tr td:last-child {
  text-align: right;
}

.wishlist-page__table__meta {
  display: flex;
  align-items: center;
}

.wishlist-page__table__meta-img {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 5px;
  margin-right: 21px;
  border-radius: 0px;
}

.wishlist-page__table__meta-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.wishlist-page__table__meta-title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0px;
  font-weight: 700;
  color: var(--swat-black, #000000);
}

.wishlist-page__table__meta-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.wishlist-page__table__meta-title a:hover {
  background-size: 100% 1px;
}

.wishlist-page__table__meta-title a:hover {
  color: var(--swat-base, #004acd);
}

.wishlist-page__table__remove {
  display: block;
  color: var(--swat-text, #636363);
  font-size: 14px;
}

.wishlist-page__table__remove:hover {
  color: var(--swat-base, #004acd);
}

.checkout-page {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0px;
  }
}

.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 30px;
}

.checkout-page__billing-address {
  position: relative;
}

.checkout-page__billing-address__title {
  font-size: 22px;
  text-transform: capitalize;
  margin: 0px 0px 41px;
  font-weight: bold;
}

.checkout-page__shipping-address {
  position: relative;
  margin: 54px 0px 0px;
}

.checkout-page__shipping-address__title {
  font-size: 22px;
  text-transform: capitalize;
  margin: 0px 0px 21px;
  font-weight: 700;
}

.checkout-page__shipping-address__title input[type="checkbox"] {
  display: none;
}

.checkout-page__shipping-address__title label {
  position: relative;
  display: inline-block;
  padding-right: 29px;
  cursor: pointer;
}

.checkout-page__shipping-address__title label span::before {
  position: absolute;
  top: 0px;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--swat-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 8px;
  font-weight: 900;
  transition: 0.15s ease-in-out;
  opacity: 0;
}

.checkout-page__shipping-address__title input[type="checkbox"]+label span {
  position: absolute;
  bottom: 5px;
  right: 0px;
  width: 19px;
  height: 19px;
  background-color: var(--swat-base, #004acd);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: 300ms;
}

.checkout-page__shipping-address__title input[type="checkbox"]:checked+label span::before {
  opacity: 1;
}

.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0px 0px 20px;
}

.checkout-page__input-box label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  color: var(--swat-black, #000000);
  cursor: pointer;
  margin: 0px 0px 18px;
}

.checkout-page__input-box input[type="text"],
.checkout-page__input-box input[type="email"],
.checkout-page__input-box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--swat-gray, #F5F1EF);
  padding-left: 30px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--swat-text, #636363);
  text-transform: capitalize;
  font-family: var(--swat-font, "Mulish", sans-serif);
  display: block;
  font-weight: 500;
}

.checkout-page__input-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  font-family: var(--swat-font, "Mulish", sans-serif);
  width: 100% !important;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 60px;
  border-radius: 0px;
  border: 0px;
  margin: 0px;
  padding: 0px 20px 0px 30px;
  font-size: 16px;
  line-height: 60px;
  text-transform: capitalize;
  font-weight: 500;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  outline: none !important;
  background-color: var(--swat-gray, #F5F1EF) !important;
  color: var(--swat-text, #636363) !important;
  box-shadow: none !important;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 18px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 14px;
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  color: var(--swat-text, #636363);
  text-transform: capitalize;
  background-color: var(--swat-gray, #F5F1EF);
  transition: 0.4s;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li:hover>a,
.checkout-page__input-box .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  border-color: var(--swat-base, #004acd);
}

.checkout-page__input-box textarea {
  font-size: 16px;
  font-weight: 500;
  color: var(--swat-text, #636363);
  height: 177px;
  width: 100%;
  background-color: var(--swat-gray, #F5F1EF);
  font-family: var(--swat-font, "Mulish", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}

.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}

.checkout-page__check-box input[type="checkbox"] {
  display: none;
}

.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0px;
  color: var(--swat-text, #636363);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}

.checkout-page__check-box label span::before {
  position: absolute;
  top: 0px;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--swat-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 8px;
  font-weight: 900;
  transition: 0.15s ease-in-out;
  opacity: 0;
}

.checkout-page__check-box input[type="checkbox"]+label span {
  position: absolute;
  top: 4px;
  left: 0px;
  width: 19px;
  height: 19px;
  background-color: var(--swat-base, #004acd);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: 300ms;
}

.checkout-page__check-box input[type="checkbox"]:checked+label span::before {
  opacity: 1;
}

.checkout-page__your-order {
  position: relative;
  margin: 40px 0px 0px;
}

.checkout-page__your-order__title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: bold;
}

.checkout-page__your-order .swat-btn {
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  margin-top: 30px;
}

.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0px;
}

.checkout-page__order-table thead tr th {
  font-size: 16px;
  color: var(--swat-black, #000000);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0px;
  padding: 15.5px 0px;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
}

.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}

.checkout-page__order-table tbody tr td {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--swat-text, #636363);
  margin: 0px;
  padding: 0px 0px 24px;
  border: none;
}

.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}

.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}

.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 0px;
  padding-top: 24px;
  font-weight: 700;
  color: var(--swat-black, #000000);
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.checkout-page__payment {
  background-color: var(--swat-gray, #F5F1EF);
  padding: 30px;
  min-height: 295px;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.checkout-page__payment__item {
  position: relative;
}

.checkout-page__payment__title {
  display: flex;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0px 0px 15px;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: var(--swat-black, #000000);
}

.checkout-page__payment__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--swat-text, #636363);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: 500ms;
}

.checkout-page__payment__title::after {
  position: absolute;
  left: 7px;
  top: 8px;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--swat-text, #636363);
  border-radius: 50%;
  transition: 500ms;
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
  border-color: var(--swat-base, #004acd);
}

.checkout-page__payment__item--active .checkout-page__payment__title::after {
  background-color: var(--swat-base, #004acd);
}

.checkout-page__payment__content {
  margin-left: 34px;
  margin-bottom: 30px;
  padding-right: 2px;
  font-weight: 500;
}

.login-page {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .login-page {
    padding: 80px 0px;
  }
}

.login-page__image {
  position: relative;
}

@media (max-width: 991px) {
  .login-page__image {
    margin-bottom: 45px;
  }
}

.login-page__image img {
  width: 100%;
  height: auto;
}

.login-page__wrap {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 0px;
  padding: 55px 80px 50px;
}

@media (min-width: 991px) and (max-width: 1199px) {
  .login-page__wrap {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .login-page__wrap {
    padding: 40px 25px;
  }
}

.login-page__wrap__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 40px 0px 25px;
}

.login-page__form {
  position: relative;
  display: block;
}

.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.login-page__form-input-box input[type="text"],
.login-page__form-input-box input[type="email"],
.login-page__form-input-box input[type="password"] {
  height: 48px;
  width: 100%;
  border: 0.5px solid rgba(var(--swat-border-color-rgb, 221, 221, 221), 0.5);
  border-radius: 0px;
  background-color: var(--swat-white, #fff);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  color: var(--swat-text, #636363);
  display: block;
  font-weight: 400;
}

.login-page__form-input-box label {
  display: block;
  line-height: 1;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  color: var(--swat-black, #000000);
  letter-spacing: 0.3px;
  margin: 0px 0px 7px 16px;
}

.login-page__form-input-box__icon {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: var(--swat-text, #636363);
  font-size: 12px;
}

.login-page__form-check-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0px 0px 29px;
}

.login-page__checked-box {
  position: relative;
}

.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  margin-right: 0px;
  margin-bottom: 0px;
  color: var(--swat-text, #636363);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}

.login-page__checked-box label span::before {
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: var(--swat-text, #636363);
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 66% 66%;
  transition: 300ms;
}

.login-page__checked-box input[type="checkbox"] {
  display: none;
}

.login-page__checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 1px;
  left: 0px;
  width: 40px;
  height: 20px;
  vertical-align: middle;
  background: var(--swat-border-color, #DDDDDD);
  border-radius: 40px;
  cursor: pointer;
  transition: 300ms;
}

.login-page__checked-box input[type="checkbox"]:checked+label span::before {
  left: 22px;
}

.login-page__form-forgot-password {
  position: relative;
  margin-top: 0px;
}

.login-page__form-forgot-password a {
  font-size: 14px;
  font-weight: 400;
  color: var(--swat-text, #636363);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}

.login-page__form-forgot-password a:hover {
  color: var(--swat-base, #004acd);
}

.login-page__form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.login-page__form-btn-box .swat-btn {
  width: 100%;
  font-weight: 700;
  padding: 7px 30px;
}

.login-page__form-btn-box__border {
  height: 1px;
  background-color: var(--swat-border-color, #DDDDDD);
  width: 100%;
  margin: 30px 0px;
}

.login-page__form-btn-box__google.swat-btn {
  background-color: var(--swat-black, #000000);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 10px 30px;
}

.login-page__form-btn-box__google.swat-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.login-page__form-btn-box__google.swat-btn::after {
  background-color: var(--swat-base, #004acd);
}

.login-page__form-btn-box__google.swat-btn:hover {
  background-color: var(--swat-base, #004acd);
}

.login-page__form-btn-box__register-text {
  margin: 22px auto 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--swat-black, #000000);
}

.login-page__form-btn-box__register-text a {
  color: var(--swat-base, #004acd);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.login-page__form-btn-box__register-text a:hover {
  background-size: 100% 1px;
}

.error-404 {
  position: relative;
  padding: 120px 0px;
  text-align: center;
}

@media (max-width: 767px) {
  .error-404 {
    padding: 80px 0px;
  }
}

.error-404__image {
  position: relative;
  margin-bottom: 13px;
}

.error-404__image img {
  max-width: 100%;
  height: auto;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

.error-404__title {
  font-size: 150px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
  position: relative;
}

.error-404__sub-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 450px) {
  .error-404__sub-title {
    font-size: 28px;
  }
}

.error-404__text {
  font-weight: 500;
  margin-bottom: 27px;
}

.error-404 .swat-btn {
  border-radius: 0px;
  padding: 14px 38px;
}

.error-404 .swat-btn:hover i {
  transform: none;
}

.faq-one {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
}

.faq-one__shape {
  position: absolute;
  right: 3%;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 139px;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (max-width: 1599px) {
  .faq-one__shape {
    display: none;
  }
}

.faq-one__image {
  text-align: left;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.faq-one__image img {
  min-height: 793px;
  object-fit: cover;
  max-width: 100%;
  mask: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 899 793\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 0H689L761.5 136.5L899 198.25V396.5V793H0V0Z\"/></svg>") right top / cover no-repeat;
}

@media (max-width: 767px) {
  .faq-one__image img {
    min-height: 500px;
    width: 100%;
  }
}

.faq-one__image__icon {
  width: 156px;
  height: 156px;
  background-color: var(--swat-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--swat-base, #004acd);
  font-size: 79px;
  z-index: 1;
  position: absolute;
  right: 55px;
  top: 30px;
}

.faq-one__image__icon::after {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  border: 1px dashed var(--swat-base, #004acd);
  border-radius: 50%;
  inset: 0px;
  position: absolute;
  margin: auto;
  animation: 15s linear 0s infinite alternate forwards running textRotate;
}

.faq-one__image__icon i {
  transition: 500ms;
  transform: scale(1);
}

.faq-one__image__icon:hover i {
  transform: scale(0.9);
}

.faq-one__content {
  position: relative;
  padding: 98px 0px;
}

@media (max-width: 767px) {
  .faq-one__content {
    padding: 80px 0px;
  }
}

.faq-one__content .sec-title {
  padding-bottom: 23px;
}

.faq-one__content__text {
  font-weight: 500;
  margin: 0px 0px 31px;
}

.faq-one__accordion {
  position: relative;
}

.faq-one__accordion .accrodion {
  margin: 10px 0px 0px;
  position: relative;
  background-color: var(--swat-white, #fff);
}

.faq-one__accordion .accrodion-title {
  padding: 21px 50px 20px 30px;
  cursor: pointer;
}

.faq-one__accordion .accrodion-title h4 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--swat-black, #000000);
  font-size: 16px;
  margin: 0px;
  transition: 500ms;
  position: relative;
}

.faq-one__accordion .accrodion-title__icon {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.faq-one__accordion .accrodion-title__icon::after {
  width: 100%;
  height: 100%;
  position: absolute;
  color: var(--swat-text, #636363);
  top: 0px;
  left: 0px;
  font-size: 16px;
  content: "";
  font-weight: normal;
  transition: 500ms;
  font-family: icomoon !important;
}

.faq-one__accordion .active .accrodion-title h4 {
  color: var(--swat-base, #004acd);
}

.faq-one__accordion .active .accrodion-title__icon::after {
  color: var(--swat-base, #004acd);
  transform: rotate(90deg);
}

.faq-one__accordion .accrodion-content .inner {
  padding: 12px 28px 23px;
  margin-top: -2px;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.faq-one__accordion .accrodion-content p {
  margin: 0px;
  font-weight: 500;
}

.faq-one--page {
  padding: 110px 0px 120px;
}

@media (max-width: 767px) {
  .faq-one--page {
    padding: 70px 0px 80px;
  }
}

.faq-one--two {
  position: relative;
  background-color: transparent;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .faq-one--two {
    padding: 80px 0px;
  }
}

.faq-one--two .contact-one__form {
  padding: 90px 40px 77px;
}

@media (max-width: 1199px) {
  .faq-one--two .contact-one__form {
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .faq-one--two .contact-one__form {
    padding: 90px 20px 50px;
  }
}

.faq-one--two .contact-one__form .swat-btn {
  height: 60px;
}

.faq-one--two .faq-one__content {
  padding: 0px;
}

@media (min-width: 1200px) {
  .faq-one--two .faq-one__content {
    margin-left: 15px;
  }
}

.faq-one--two .faq-one__accordion .accrodion {
  border: 1px solid var(--swat-border-color, #DDDDDD);
  border-radius: 5px;
}

.faq-page-search {
  position: relative;
  padding-top: 105px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .faq-page-search {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.faq-page-search__inner {
  max-width: 750px;
  position: relative;
  margin: 0px auto;
  text-align: center;
}

.faq-page-search__title {
  text-transform: capitalize;
  margin: 0px 0px 30px;
  font-weight: bold;
  color: var(--swat-black, #000000);
  font-size: 30px;
  line-height: 40px;
}

@media (min-width: 992px) {
  .faq-page-search__title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 40px;
  }
}

.faq-page-search__form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.faq-page-search__form input[type="text"] {
  border: 1px solid var(--swat-border-color, #DDDDDD);
  outline: none;
  display: block;
  background-color: transparent;
  color: var(--swat-text, #636363);
  font-size: 14px;
  width: 100%;
  padding-left: 22px;
  height: 55px;
}

.faq-page-search__form__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--swat-base, #004acd);
}

.faq-page-search__form__btn:hover {
  color: var(--swat-black, #000000);
}

.package-one {
  padding: 240px 0px 120px;
  background-color: rgb(13, 13, 13);
  position: relative;
}

@media (max-width: 767px) {
  .package-one {
    padding: 200px 0px 80px;
  }
}

.package-one__item {
  position: relative;
  z-index: 2;
  padding: 0px 0px 50px;
  margin-top: 23px;
  background-color: var(--swat-white, #fff);
  transition: 400ms;
  text-align: center;
}

.package-one__item::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(0px 0px, 0% 100%, 100% 100%);
  transition: 400ms;
  visibility: hidden;
  opacity: 0;
}

.package-one__item::before {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  transition: 400ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.package-one__item__hover {
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 400ms;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transform: scale(0.8);
  visibility: hidden;
  opacity: 0;
}

.package-one__item:hover .package-one__item__hover {
  visibility: visible;
  opacity: 0.1;
  transform: scale(1);
}

.package-one__item:hover::before,
.package-one__item:hover::after {
  visibility: visible;
  opacity: 1;
}

.package-one__item__title {
  margin: 0px;
  position: relative;
  top: -23px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
  font-size: 22px;
  line-height: 20px;
  display: inline-block;
  padding: 13px 20px;
  min-width: 238px;
  clip-path: polygon(100% 0px, 85% 50%, 100% 100%, 0px 100%, 11% 50%, 0px 0px);
}

.package-one__item__price {
  color: var(--swat-black, #000000);
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin: 7px 0px 30px;
}

.package-one__item__period {
  background-color: var(--swat-gray, #F5F1EF);
  width: 100%;
  color: var(--swat-black, #000000);
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-weight: 600;
  font-size: 22px;
  padding: 14px 20px;
  position: relative;
  z-index: 1;
  transition: 400ms;
}

.package-one__item__period::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 8px;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--swat-base, #004acd);
  transition: 400ms;
}

.package-one__item:hover .package-one__item__period {
  color: var(--swat-white, #fff);
}

.package-one__item:hover .package-one__item__period::after {
  width: 100%;
}

.package-one__item__list {
  margin: 24px 0px 37px;
  padding: 0px 55px;
  list-style: none;
}

@media (max-width: 1199px) {
  .package-one__item__list {
    padding: 0px 15px;
  }
}

@media (max-width: 991px) {
  .package-one__item__list {
    padding: 0px 30px;
  }
}

.package-one__item__list li {
  font-size: 16px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0px;
  font-weight: 500;
}

.package-one__item .swat-btn {
  background-color: var(--swat-black, #000000);
}

.package-one__item .swat-btn::after {
  background-color: var(--swat-base, #004acd);
}

.package-one--page {
  background-color: transparent;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .package-one--page {
    padding: 80px 0px;
  }
}

.package-one--page .package-one__item {
  border: 1px solid var(--swat-border-color, #DDDDDD);
}

@keyframes bubbleMover {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  30% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: center center;
  }

  50% {
    transform: translateY(50px) translateX(100px) rotate(45deg);
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: left top;
  }

  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    transform-origin: center center;
  }
}

@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }

  100% {
    background-position: 0px 100%;
  }
}

@keyframes startIconOne {
  0% {
    transform: scale(1) rotate(0deg);
  }

  100% {
    transform: scale(0.5) rotate(45deg);
  }
}

@keyframes iconTranslateX {
  49% {
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes widths {
  0% {
    width: 0%;
  }

  50% {
    width: 97%;
    left: 0px;
  }

  100% {
    width: 0px;
  }
}

@keyframes widths {
  0% {
    width: 0%;
  }

  50% {
    width: 97%;
    left: 0px;
  }

  100% {
    width: 0px;
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0px) rotate(0deg) translateZ(0px) translateX(0px);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {

  0%,
  100% {
    transform: rotate(0deg) translateX(0px);
  }

  25%,
  75% {
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes treeMove2 {

  0%,
  100% {
    transform: rotate(0deg) translateX(0px);
  }

  25%,
  75% {
    transform: rotate(-10deg) translateX(0px);
  }

  50% {
    transform: rotate(10deg) translateX(0px);
  }
}

@keyframes treeMove3 {

  0%,
  100% {
    transform: rotate(0deg) translateX(0px);
  }

  25%,
  75% {
    transform: rotate(-3deg) translateX(0px);
  }

  50% {
    transform: rotate(3deg) translateX(0px);
  }
}

@keyframes leafMove {

  0%,
  100% {
    transform: rotate(0deg) translateX(0px);
  }

  25%,
  75% {
    transform: rotate(-2deg) translateX(5px);
  }

  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}

@keyframes messageMove {

  0%,
  100% {
    transform: translateX(0px);
  }

  25%,
  75% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes flowerRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25%,
  75% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes zump {

  0%,
  100% {
    transform: translateY(0px);
  }

  25%,
  75% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: rgba(10, 165, 205, 0) 0px 0px 0px 40px;
  }

  100% {
    box-shadow: rgba(10, 165, 205, 0) 0px 0px 0px 0px;
  }
}

@keyframes ripple {
  70% {
    box-shadow: rgba(10, 165, 205, 0) 0px 0px 0px 40px;
  }

  100% {
    box-shadow: rgba(10, 165, 205, 0) 0px 0px 0px 0px;
  }
}

@keyframes videoZoom {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }

  40% {
    opacity: 1;
    border-width: 2px;
  }

  65% {
    border-width: 1px;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}

@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-30px);
  }
}

@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(30px);
  }
}

@keyframes zoom-hover {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}

@keyframes zoomsIn {

  100%,
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }
}

@keyframes shrinkAnim {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 0px 50%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes shrinkAnim2 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 100% 50%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes rollInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px) rotate3d(0, 0, 1, 120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes vibrant {
  0% {
    transform: translate(0px);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0px);
  }
}

@keyframes blinkAnim {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-15px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes shapeMove {

  0%,
  100% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes rotated {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInUp {
  animation-name: backInUp;
}

@keyframes iconTranslateY {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(5px);
  }
}

@keyframes animateTop {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes animateRight {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes animateBottom {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes animateLeft {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--swat-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--swat-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--swat-white-rgb, 255, 255, 255), 0.2);
  }

  100% {
    box-shadow: 0 0 0 30px rgba(var(--swat-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--swat-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--swat-white-rgb, 255, 255, 255), 0);
  }
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
  16.65% {
    transform: translateX(8px);
  }

  33.3% {
    transform: translateX(-6px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes float-bob-y-2 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

@keyframes animateTop {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes animateRight {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes animateBottom {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes animateLeft {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.mobile-nav__wrapper {
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms 500ms, visibility 500ms 500ms;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__wrapper .container {
  padding-left: 0px;
  padding-right: 0px;
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0px;
  border-bottom: 1px solid RGBA(var(--swat-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--swat-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms, visibility 500ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition: opacity 500ms 500ms, visibility 500ms 500ms, transform 500ms 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0px;
  background-color: var(--swat-black, #000000);
  opacity: 0.3;
  cursor: url("../images/close.png"), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--swat-base, #004acd);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 30px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms, visibility 500ms, transform 500ms;
}

.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0px;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--swat-white, #fff);
  cursor: pointer;
}

.mobile-nav__close:hover {
  color: var(--swat-base, #004acd);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--swat-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--swat-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--swat-white, #fff);
  font-size: 12px;
  font-family: var(--swat-font, "Mulish", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--swat-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--swat-base, #004acd);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--swat-base, #004acd);
  border: none;
  outline: none;
  color: var(--swat-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--swat-white, #fff);
  color: var(--swat-black, #000000);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--swat-white, #fff);
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 20px;
}

.mobile-nav__social a:hover {
  color: var(--swat-base, #004acd);
}

.mobile-nav__contact {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--swat-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--swat-base, #004acd);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--swat-base, #004acd);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--swat-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -2;
  transition: 1s;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center center;
  transition: transform 0.8s ease-in-out 0.3s;
  background-color: rgb(0, 0, 0);
  opacity: 0.9;
  cursor: url("../images/close.png"), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0px;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s 0.2s, width 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type="search"],
.search-popup__form input[type="text"] {
  width: 100%;
  background-color: var(--swat-white, #fff);
  font-size: 15px;
  color: var(--swat-text, #636363);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__form .swat-btn {
  padding: 0px;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0px;
  right: -1px;
  border-radius: 0px;
}

.search-popup__form .swat-btn i {
  font-size: 16px;
  margin: 0px;
  transform: none;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  transform: scale(1);
  opacity: 0.9;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
}

.page-header {
  background-color: var(--swat-black, #000000);
  position: relative;
  padding-top: 240px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .page-header {
    padding-top: 10rem;
    padding-bottom: 100px;
  }
}

.page-header__bg {
  position: absolute;
  inset: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/banners/about.png");
}

.page-header__bg::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, #004acd 30%, transparent);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

.page-header__bg_services {
  position: absolute;
  inset: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/banners/services.jpg");
}

.page-header__bg_services::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, #004acd 30%, transparent);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

.page-header__bg_contact {
  position: absolute;
  inset: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/banners/other.jpg");
}

.page-header__bg_contact::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, #004acd 30%, transparent);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

.page-header__shape {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 288px;
  height: 230px;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/shapes/page-header-shape.png");
  animation: 6s linear 0s infinite normal none running treeMove;
}

.page-header__shape--about,
.page-header__shape--contact,
.page-header__shape--services {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 180px;
  color: var(--swat-white, #fff);
}

.page-header__shape--about::before {
  content: "\f0c0";
}

.page-header__shape--contact::before {
  content: "\f0e0";
}

.page-header__shape--services::before {
  content: "\f7d9";
}

@media (max-width: 1490px) {
  .page-header__shape {
    display: none;
  }
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header__title {
  margin: 0px 0px 16px;
  font-size: 40px;
  color: var(--swat-white, #fff);
  font-weight: 700;
  letter-spacing: 0px;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 26px;
  }
}
.page-header--details {
  position: relative;
}

.page-header--details .swat-breadcrumb li span {
  color: var(--swat-white, #fff);
}

.swat-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0px;
}

.swat-breadcrumb li {
  font-size: 18px;
  line-height: 20px;
  color: var(--swat-black2, #004acd);
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .swat-breadcrumb li {
    font-size: 17px;
  }
}

.swat-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  font-weight: normal;
  top: 1px;
  margin-left: 5px;
  margin-right: 5px;
  color: var(--swat-white, #fff);
}

.swat-breadcrumb li a {
  color: var(--swat-white, #fff);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.swat-breadcrumb li a:hover {
  background-size: 100% 1px;
}

.swat-breadcrumb li a:hover {
  color: var(--swat-base, #004acd);
}

.google-map {
  position: relative;
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 430px;
  width: 100%;
  mix-blend-mode: luminosity;
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--swat-gray, #F5F1EF);
}

.contact-map {
  position: relative;
  overflow: hidden;
}

.client-carousel {
  background-color: var(--swat-gray, #F5F1EF);
  padding: 100px 0px;
}

@media (max-width: 767px) {
  .client-carousel {
    padding: 60px 0px;
  }
}

.client-carousel__one__item {
  text-align: center;
}

.client-carousel__one__item img {
  filter: grayscale(100%);
  transition: 500ms;
  max-width: 100%;
  margin: 0px auto;
  width: auto !important;
}

.client-carousel__one__item:hover img {
  filter: grayscale(0);
}

.client-carousel--two {
  background-color: transparent;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
}

.main-slider-one {
  position: relative;
  overflow: hidden;
}

.main-slider-one__carousel {
  position: relative;
  width: 100%;
}

.main-slider-one__item {
  background-color: var(--swat-black, #000000);
  position: relative;
  z-index: 3;
  padding-top: 228px;
  padding-bottom: 228px;
}

@media (max-width: 1199px) {
  .main-slider-one__item {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}

.main-slider-one__bg {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right center;
  overflow: hidden;
  opacity: 0;
  transition: transform 1000ms, opacity 1000ms;
  transform: translateX(50%) scaleX(2);
  filter: blur(10px);
}

.main-slider-one__bg::before {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../images/shapes/slider-1-overlay.png");
  z-index: 1;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

.main-slider-one__shape-one {
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: transform 1000ms, opacity 1000ms;
  transform: scale(1.2) translateY(-100%) translateX(-100%);
}

@media (max-width: 1299px) {
  .main-slider-one__shape-one {
    display: none;
  }
}

.main-slider-one__shape-two {
  position: absolute;
  z-index: 2;
  left: 0px;
  bottom: 10px;
  width: 151px;
  height: 158px;
  background-position: left bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transition: transform 1000ms, opacity 1000ms;
  transform: scale(1.2) translateY(100%) translateX(100%);
  animation: 4s linear 0s infinite normal none running movebounce3;
}

@media (max-width: 1299px) {
  .main-slider-one__shape-two {
    display: none;
  }
}

.main-slider-one__content {
  position: relative;
  z-index: 3;
}

.main-slider-one__sub-title {
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--swat-special-font, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin: 0px 0px 16px;
  opacity: 0;
  transition: transform 1000ms, opacity 1000ms;
  transform: scale(1.2) translateY(200px);
}

@media (max-width: 767px) {
  .main-slider-one__sub-title {
    font-size: 16px;
  }
}

.main-slider-one__sub-title img {
  width: 24px;
}

.main-slider-one__title {
  color: var(--swat-white, #fff);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  text-transform: capitalize;
  margin: 0px 0px 14px;
  opacity: 0;
  transition: transform 1100ms, opacity 1100ms;
  transform: scale(1.2) translateY(200px);
}

@media (max-width: 991px) {
  .main-slider-one__title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 38px;
    line-height: 50px;
  }
}

.main-slider-one__text {
  color: var(--swat-white, #fff);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0px 0px 36px;
  opacity: 0;
  transition: transform 1200ms, opacity 1200ms;
  transform: scale(1.2) translateY(200px);
}

@media (max-width: 767px) {
  .main-slider-one__text br {
    display: none;
  }
}

.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  gap: 15px;
  overflow: hidden;
  opacity: 0;
  transition: transform 1200ms, opacity 1200ms;
  transform: scale(1.2) translateY(200px);
}

.main-slider-one__btn .swat-btn::after {
  background-color: var(--swat-white, #fff);
}

.main-slider-one__btn .swat-btn:hover {
  color: var(--swat-black, #000000);
}

.main-slider-one .slick-active .main-slider-one__bg {
  opacity: 1;
  transform: translateX(0px) scaleX(1);
  filter: blur(0px);
  transition-delay: 1000ms;
}

.main-slider-one .slick-active .main-slider-one__shape-one {
  opacity: 1;
  transform: scale(1) translateY(0px) translateX(0px);
  transition-delay: 1100ms;
}

.main-slider-one .slick-active .main-slider-one__shape-two {
  opacity: 1;
  transform: scale(1) translateY(0px) translateX(0px);
  transition-delay: 1200ms;
}

.main-slider-one .slick-active .main-slider-one__sub-title {
  opacity: 1;
  transform: scale(1) translateY(0px);
  transition-delay: 1400ms;
}

.main-slider-one .slick-active .main-slider-one__title {
  opacity: 1;
  transform: scale(1) translateY(0px);
  transition-delay: 1600ms;
}

.main-slider-one .slick-active .main-slider-one__text {
  opacity: 1;
  transform: scale(1) translateY(0px);
  transition-delay: 1800ms;
}

.main-slider-one .slick-active .main-slider-one__btn {
  opacity: 1;
  transform: scale(1) translateY(0px);
  transition-delay: 2000ms;
}

.main-slider-one__nav {
  margin: 0px;
  padding: 0px;
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 112px;
}

@media (max-width: 767px) {
  .main-slider-one__nav {
    height: 282px;
    width: 112px;
    right: 0px;
    left: 0px;
    bottom: -65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
  }
}

.main-slider-one__nav .item {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 0px;
  transition: 400ms;
}

.main-slider-one__nav .item .main-slider-one__nav__item {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 5px solid var(--swat-white, #fff);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
  transition: 400ms;
  cursor: pointer;
}

.main-slider-one__nav .item .main-slider-one__nav__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.main-slider-one__nav .item::after {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 59px;
  height: 39px;
  background-color: var(--swat-base, #004acd);
  border-radius: 40px;
  z-index: -1;
  font-size: 15px;
  color: var(--swat-white, #fff);
  padding-right: 11px;
  content: "";
  transition: 400ms;
  font-family: icomoon !important;
}

.main-slider-one__nav .slick-current.slick-center .item::after {
  right: -35px;
}

.main-slider-two {
  position: relative;
  background: url(../images/backgrounds/slider1.jpg) no-repeat center center / cover;
}

.main-slider-two::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--swat-base);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 40%;
}

.main-slider-two__shape {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 1490px) {
  .main-slider-two__shape {
    display: none;
  }
}

.main-slider-two__carousel {
  position: relative;
  z-index: 2;
  height: 100%;
}

.main-slider-two__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 60px;
  z-index: 99;
  width: 1170px;
  gap: 20px;
  transform: none;
  text-align: left;
}

@media (max-width: 1199px) {
  .main-slider-two__carousel .owl-dots {
    justify-content: center;
    text-align: center;
    width: 100%;
    bottom: 40px;
  }
}

.main-slider-two__carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: var(--swat-border-color, #DDDDDD);
  border: none;
  position: relative;
  margin: 0px;
  transition: 300ms;
}

.main-slider-two__carousel .owl-dots .owl-dot span::after {
  width: 22px;
  height: 22px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--swat-white, #fff);
  transform: scale(0);
  transition: 300ms;
}

.main-slider-two__carousel .owl-dots .owl-dot:hover span,
.main-slider-two__carousel .owl-dots .owl-dot.active span {
  background-color: var(--swat-white, #fff);
}

.main-slider-two__carousel .owl-dots .owl-dot:hover span::after,
.main-slider-two__carousel .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}

.main-slider-two__carousel .active .main-slider-two__image {
  opacity: 1;
  transform: translateX(0px) scaleX(1);
  filter: blur(0px);
  transition-delay: 1900ms;
}

.main-slider-two__carousel .active .main-slider-two__sub-title {
  opacity: 1;
  animation-delay: 1.2s;
  animation-name: rotateInUpLeft;
}

.main-slider-two__carousel .active .main-slider-two__title {
  opacity: 1;
  animation-delay: 1.4s;
  animation-name: rotateInUpRight;
}

.main-slider-two__carousel .active .main-slider-two__text {
  opacity: 1;
  animation-delay: 1.6s;
  animation-name: rotateInUpLeft;
}

.main-slider-two__carousel .active .main-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1800ms;
}

.main-slider-two__carousel .container {
  padding-top: 260px;
  padding-bottom: 250px;
}

@media (max-width: 767px) {
  .main-slider-two__carousel .container {
    padding-top: 210px;
    padding-bottom: 120px;
  }
  .swat-btn {
    font-size: 12px;
  }
}

.main-slider-two__image {
  position: absolute;
  right: 0px;
  top: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 720px;
  width: 100%;
  opacity: 0;
  transition: transform 1000ms, opacity 1000ms;
  transform: translateX(50%) scaleX(2);
  filter: blur(10px);
  overflow: hidden;
  background-position: bottom;
}

.main-slider-two__image::after {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  content: "";
  height: 100%;
  background-color: rgba(var(--swat-black-rgb, 0, 0, 0), 0.4);
}

@media (max-width: 991px) {
  .main-slider-two__image {
    display: none;
  }
}

.main-slider-two__content {
  position: relative;
  display: flex;
  z-index: 3;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main-slider-two__content span {
  display: block;
  text-align: center;
}

.main-slider-two__content .norm {
  font-weight: 400;
}

.main-slider-two__content .bod {
  font-weight: 700;
}

.main-slider-two__sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--swat-white, #fff);
  text-transform: uppercase;
  font-family: var(--swat-special-font, "Work Sans", sans-serif);
  margin-bottom: 12px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.main-slider-two__sub-title img {
  width: 24px !important;
}

@media (max-width: 767px) {
  .main-slider-two__sub-title {
    font-size: 16px;
  }
}

.main-slider-two__title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--swat-white, #fff);
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (max-width: 1199px) {
  .main-slider-two__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.main-slider-two__text {
  color: var(--swat-white, #fff);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0px 0px 39px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (max-width: 767px) {
  .main-slider-two__text br {
    display: none;
  }
}

.main-slider-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: center bottom;
  transition: 1500ms;
}

.main-slider-two__btn .swat-btn {
  background-color: var(--swat-black2, #000000);
  color: var(--swat-base);
}

.main-slider-two__btn .swat-btn::after {
  background-color: var(--swat-base, #004acd);
}

.main-slider-two__btn .swat-btn:hover {
  color: var(--swat-black2, #f6ff39);
}

.main-slider-three {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.main-slider-three__carousel {
  position: relative;
}

.main-slider-three__carousel.owl-carousel .owl-nav {
  left: 80px;
  margin: auto;
  position: absolute;
  right: 0px;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

@media (min-width: 1300px) and (max-width: 1600px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    left: 15px;
  }
}

@media (max-width: 1300px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    display: flex;
    transform: none;
    top: auto;
    left: 25px;
    bottom: 30px;
    text-align: center;
    justify-content: flex-start;
  }
}

@media (max-width: 991x) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    left: 0px;
    justify-content: center;
  }
}

.main-slider-three__carousel.owl-carousel .owl-nav button {
  transition: 400ms;
  width: 60px;
  height: 60px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: RGBA(var(--swat-white-rgb, 255, 255, 255), 0.1);
  border-radius: 50%;
  display: block;
  color: var(--swat-white, #fff);
  line-height: 60px;
  font-size: 16px;
  margin: 9px 0px;
  text-align: center;
}

@media (max-width: 1300px) {
  .main-slider-three__carousel.owl-carousel .owl-nav button {
    margin: 0px 5px;
  }
}

.main-slider-three__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.main-slider-three__item {
  position: relative;
  padding-top: 210px;
  padding-bottom: 200px;
  background-color: var(--swat-black, #000000);
}

@media (max-width: 767px) {
  .main-slider-three__item {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

.main-slider-three__bg {
  position: absolute;
  inset: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.main-slider-three__left-image {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.2;
  visibility: hidden;
  transition: transform 1100ms, opacity 1100ms;
  transform: translateX(-100%);
}

@media (max-width: 1299px) {
  .main-slider-three__left-image {
    display: none;
  }
}

.main-slider-three__shape-1 {
  position: absolute;
  top: 0px;
  right: 33.2%;
  z-index: 2;
  opacity: 0;
  transition: transform 1100ms, opacity 1100ms;
  transform: translateX(200px);
}

@media (min-width: 991px) and (max-width: 1199px) {
  .main-slider-three__shape-1 {
    right: 29.2%;
  }
}

@media (max-width: 991px) {
  .main-slider-three__shape-1 {
    display: none;
  }
}

.main-slider-three__shape-1 img {
  animation: 4s linear 0s infinite normal none running movebounce2;
  width: auto !important;
}

.main-slider-three__shape-2 {
  position: absolute;
  bottom: 0px;
  right: 38.4%;
  z-index: 2;
  opacity: 0;
  transition: transform 1100ms, opacity 1100ms;
  transform: translateY(100%);
}

@media (max-width: 1199px) {
  .main-slider-three__shape-2 {
    display: none;
  }
}

.main-slider-three__shape-2 img {
  animation: 4s linear 0s infinite normal none running movebounce2;
  width: auto !important;
}

.main-slider-three__shape-3 {
  position: absolute;
  bottom: 0px;
  right: 44%;
  z-index: 2;
  opacity: 0;
  transition: transform 1100ms, opacity 1100ms;
  transform: translateY(100%);
}

@media (max-width: 1500px) {
  .main-slider-three__shape-3 {
    right: 46.5%;
  }
}

@media (max-width: 1199px) {
  .main-slider-three__shape-3 {
    display: none;
  }
}

.main-slider-three__shape-3 img {
  animation: 4s linear 0s infinite normal none running movebounce2;
  width: auto !important;
}

.main-slider-three__shape-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  visibility: hidden;
  transition: transform 1100ms, opacity 1100ms;
  transform: translateX(100%);
  background-color: var(--swat-black, #000000);
  opacity: 0.6;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 1600px) {
  .main-slider-three__shape-bg {
    right: -200px;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  .main-slider-three__shape-bg {
    right: -350px;
  }
}

@media (max-width: 991px) {
  .main-slider-three__shape-bg {
    display: none;
  }
}

.main-slider-three__shape-bg img {
  width: auto !important;
  mix-blend-mode: luminosity;
}

.main-slider-three__content {
  position: relative;
  z-index: 3;
}

.main-slider-three__video {
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.main-slider-three__video .video-popup {
  width: 95px;
  height: 95px;
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--swat-base, #004acd);
  position: relative;
  z-index: 2;
  transform: scale(1);
  transition: 500ms;
}

.main-slider-three__video .video-popup:hover {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  transform: scale(1.07);
}

.main-slider-three__video .video-popup .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.main-slider-three__video .video-popup .ripple::before,
.main-slider-three__video .video-popup .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 0px;
  animation: 3s ease 0s infinite normal none running ripple;
  border-radius: 50%;
}

.main-slider-three__video .video-popup .ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-three__video .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-three__title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--swat-white, #fff);
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 52px;
    line-height: 62px;
  }
}

@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 38px;
    line-height: 48px;
  }
}

.main-slider-three__title-anim {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 0.8;
}

.main-slider-three__title-anim::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 100%;
  background: currentcolor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99) 1s;
  z-index: 3;
  transform: translateX(-100%);
}

.main-slider-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.main-slider-three__arrow {
  position: absolute;
  left: 310px;
  bottom: 15px;
  overflow: hidden;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (max-width: 1400px) {
  .main-slider-three__arrow {
    left: 250px;
  }
}

@media (max-width: 1199px) {
  .main-slider-three__arrow {
    display: none;
  }
}

.main-slider-three__arrow img {
  animation-name: float-bob-y-2;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.main-slider-three .active .main-slider-three__shape-1 {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 1200ms;
}

.main-slider-three .active .main-slider-three__shape-2 {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1300ms;
}

.main-slider-three .active .main-slider-three__shape-3 {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1500ms;
}

.main-slider-three .active .main-slider-three__shape-bg {
  visibility: visible;
  transform: translateX(0px);
  transition-delay: 1100ms;
}

.main-slider-three .active .main-slider-three__left-image {
  visibility: visible;
  transform: translateX(0px);
  transition-delay: 1400ms;
}

.main-slider-three .active .main-slider-three__video {
  opacity: 1;
  animation-name: rollInLeft;
  animation-delay: 1.6s;
}

.main-slider-three .active .main-slider-three__title {
  opacity: 1;
  animation-delay: 1.8s;
  animation-name: bounceInLeft;
}

.main-slider-three .active .main-slider-three__title-anim::after {
  transform: translateX(1%);
  transition-delay: 2000ms;
}

.main-slider-three .active .main-slider-three__btn {
  opacity: 1;
  animation-delay: 2s;
  animation-name: backInUp;
}

.main-slider-three .active .main-slider-three__arrow {
  opacity: 1;
  animation-delay: 2.3s;
  animation-name: backInUp;
}

.feature-one {
  position: relative;
}

.feature-one__item {
  position: relative;
  overflow: hidden;
  background-color: var(--swat-white, #fff);
  filter: drop-shadow(rgba(0, 0, 0, 0.06) 0px 4px 12.5px);
  padding-bottom: 12px;
  transition: 500ms;
}

.feature-one__item:hover {
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 4px 12.5px);
  padding-bottom: 44px;
}

.feature-one__item__top {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
}

.feature-one__item__icon {
  width: 104px;
  height: 105px;
  background-color: var(--swat-gray, #F5F1EF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  color: var(--swat-base, #004acd);
  font-size: 55px;
  line-height: 1;
  transition: 400ms;
  border-right-color: ;
  border-right-style: ;
  border-right-width: ;
  border-bottom-color: ;
  border-bottom-style: ;
  border-bottom-width: ;
  border-image-source: ;
  border-image-slice: ;
  border-image-width: ;
  border-image-outset: ;
  border-image-repeat: ;
  border-left: none;
  border-top: none;
}

.feature-one__item__icon i {
  display: inline-block;
  transform: scale(1);
  transition: 500ms;
}

.feature-one__item:hover .feature-one__item__icon {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.feature-one__item:hover .feature-one__item__icon i {
  transform: scale(0.9);
}

.feature-one__item__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  margin: 0px;
}

.feature-one__item__title span {
  transition: 400ms;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
}

.feature-one__item:hover .feature-one__item__title span {
  background-size: 100% 1px;
}

.feature-one__item__text {
  font-weight: 500;
  margin: 25px 25px 18px 30px;
}

.feature-one__item__rm {
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  z-index: 1;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  left: 30px;
  position: absolute;
  bottom: 24px;
  transition: 500ms;
  visibility: hidden;
  opacity: 0;
}

.feature-one__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.feature-one__item__rm:hover {
  color: var(--swat-base, #004acd);
}

.feature-one__item__rm:hover span {
  background-size: 100% 1px;
}

.feature-one__item__rm i {
  font-size: 12px;
  position: relative;
  top: 1px;
}

.feature-one__item:hover .feature-one__item__rm {
  visibility: visible;
  opacity: 1;
}

.feature-two {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .feature-two {
    padding: 80px 0px;
  }
}

.feature-two__item {
  position: relative;
  z-index: 2;
  transition: 300ms;
  padding: 0px 20px 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .feature-two__item {
    padding: 0px 10px 10px;
  }
}

.feature-two__item:hover::after {
  background-color: var(--swat-base, #004acd);
}

.feature-two__item:hover .feature-two__item__content {
  background-color: var(--swat-black, #000000);
  border-color: var(--swat-black, #000000);
  transform: translateY(-5px);
}

.feature-two__item:hover .feature-two__item__text,
.feature-two__item:hover .feature-two__item__title {
  color: var(--swat-white, #fff);
}

.feature-two__item::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 128px;
  background-color: var(--swat-gray, #F5F1EF);
  content: "";
  transition: 400ms;
  z-index: -1;
}

.feature-two__item__content {
  position: relative;
  padding: 28px 30px 25px;
  background-color: var(--swat-white, #fff);
  border: 1px solid var(--swat-border-color, #DDDDDD);
  border-radius: 10px;
  overflow: hidden;
  transition: 400ms;
}

.feature-two__item__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  right: -35px;
  top: -35px;
  z-index: 1;
  color: var(--swat-base, #004acd);
  background-color: rgba(var(--swat-base-rgb, 254, 87, 79), 0.15);
  font-size: 45px;
  line-height: 1;
  transition: 300ms;
  margin: auto;
  padding: 0px 0px 30px 28px;
}

.feature-two__item__icon::after {
  position: absolute;
  content: "";
  background-color: var(--swat-base, #004acd);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: 500ms;
}

.feature-two__item__icon::before {
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  content: "";
  border: 1px dashed var(--swat-base, #004acd);
  border-radius: 50%;
  position: absolute;
  bottom: -9px;
  left: -9px;
  animation: 15s linear 0s infinite alternate forwards running textRotate;
}

.feature-two__item__icon i {
  display: inline-block;
  transform: scale(1);
  transition: 500ms;
}

.feature-two__item:hover .feature-two__item__icon {
  color: var(--swat-white, #fff);
  border-color: var(--swat-base, #004acd);
}

.feature-two__item:hover .feature-two__item__icon::after {
  height: 100%;
}

.feature-two__item:hover .feature-two__item__icon::before {
  border-color: var(--swat-white, #fff);
}

.feature-two__item:hover .feature-two__item__icon i {
  transform: scale(0.9);
}

.feature-two__item__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  transition: 200ms;
  text-transform: capitalize;
  margin: 0px 0px 13px;
  padding-right: 60px;
}

.feature-two__item__text {
  font-weight: 500;
  transition: 200ms;
  margin: 0px 0px 14px;
}

.feature-two__item__rm {
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  z-index: 1;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 200ms;
}

.feature-two__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 300ms;
  display: inline-block;
}

.feature-two__item__rm:hover {
  color: var(--swat-base, #004acd);
}

.feature-two__item__rm:hover span {
  background-size: 100% 1px;
}

.feature-two__item__rm i {
  font-size: 12px;
  position: relative;
  top: 1px;
}

.feature-two__item:hover .feature-two__item__rm {
  visibility: visible;
  opacity: 1;
}

.about-one {
  position: relative;
  padding: 120px 0px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .about-one {
    padding: 80px 0px;
  }
}

.about-one__shape {
  position: absolute;
  right: -10px;
  bottom: 0px;
  width: 404px;
  height: 436px;
  animation: 4s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 1500px) {
  .about-one__shape {
    display: none;
  }
}

.about-one__image {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.about-one__image img {
  max-width: 100%;
  height: 100%;
}

.about-one__image__shape-one {
  position: absolute;
  left: -25px;
  top: -25px;
  width: 64px;
  height: 98px;
  z-index: -1;
  animation: 1.2s ease 0s infinite alternate none running startIconOne;
}

@media (max-width: 1299px) {
  .about-one__image__shape-one {
    display: none;
  }
}

.about-one__image__shape-two {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 64px;
  height: 98px;
  z-index: -1;
  animation: 1s ease 0s infinite alternate none running startIconOne;
}

@media (max-width: 1299px) {
  .about-one__image__shape-two {
    display: none;
  }
}

.about-one__experiance {
  position: absolute;
  right: 21px;
  bottom: 21px;
  z-index: 2;
  width: 177px;
  height: 177px;
  background-color: var(--swat-base, #004acd);
  border: 6px solid var(--swat-white, #fff);
  border-radius: 10px;
  padding: 19px 15px 15px;
  text-align: center;
}

.about-one__experiance__years {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swat-white, #fff);
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
}

.about-one__experiance__text {
  color: var(--swat-white, #fff);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  text-transform: capitalize;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  margin: 8px 0px 0px;
}

.about-one__content {
  position: relative;
  padding: 0px;
}

@media (max-width: 991px) {
  .about-one__content {
    padding: 45px 0px 0px;
  }
}

.about-one__content .sec-title {
  padding-bottom: 21px;
}

.about-one__content__text {
  font-weight: 500;
  margin: 0px 0px 27px;
}

.about-one__content__list {
  margin: 0px 0px 44px;
  padding: 0px;
}

.about-one__content__list li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 22px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  color: var(--swat-black, #000000);
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  margin-bottom: -1px;
  padding: 30px 0px;
}

@media (max-width: 767px) {
  .about-one__content__list li {
    font-size: 18px;
  }
}

.about-one__content__list li:hover .about-one__content__list__icon {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.about-one__content__list li:hover .about-one__content__list__icon i {
  transform: rotateY(180deg);
}

.about-one__content__list li img {
  position: absolute;
  right: 0px;
  bottom: 0px;
  clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}

@media (max-width: 767px) {
  .about-one__content__list li img {
    display: none;
  }
}
.about-two__content__text {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-spacing: -10%;
}
.about-one__content__list__icon {
  width: 87px;
  height: 87px;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 45px;
  color: var(--swat-base, #004acd);
  transition: 0.4s;
}

.about-one__content__list__icon i {
  display: inline-block;
  transition: 0.6s;
}

.about-two {
  position: relative;
  padding-top: 50px !important;
}

.colored_sec {
  background-color: var(--swat-base);
  overflow: visible;
  /* margin-top: -4rem; */
}

.colored_sec .about-two__content .sec-title .sec-title__title,
.colored_sec>.container>.sec-title .sec-title__title {
  color: #fff;
  font-size: 64px;
  line-height: 92px;
  text-transform: uppercase;
}

.colored_sec .about-two__content p {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}

.cert_title {
  color: var(--swat-black2, #f6ff39);
  font-size: 48px;
  line-height: 92px;
  text-transform: uppercase;
}

.cert-section {
  background-color: var(--swat-base, #004acd);
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

.colored_sec .service-details__list li {
  color: #fff;
}

.colored_sec .service-details__list li i {
  color: #f6ff39;
}

.colored_sec .service-details__title-two.second_color {
  color: #f6ff39 !important;
}

.colored_sec .about-two__content .service-details__title-two {
  color: var(--swat-white, #fff);
}

.colored_sec .strip {
  display: block;
  width: 100%;
  max-width: 540px;
  height: 40px;
  margin: auto;
  position: absolute;
  top: -38px;
  background-color: var(--swat-base);
  left: 0;
  right: 0;
}

.colored_sec .strip::after,
.colored_sec .strip::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  inset-inline-start: -39px;
  top: 0;
  border: 20px solid transparent;
  border-right-color: var(--swat-base);
  border-bottom-color: var(--swat-base);
}

.colored_sec .strip::after {
  inset-inline-end: -39px;
  inset-inline-start: auto;
  border-left-color: var(--swat-base);
  border-right-color: transparent;
}

@media (max-width: 767px) {
  .about-two {
    padding: 0px;
  }

  .colored_sec {
    margin-top: 2rem;
  }

  .colored_sec .about-two__content .sec-title .sec-title__title,
  .colored_sec>.container>.sec-title .sec-title__title {
    font-size: 32px;
    line-height: 44px;
  }

  .colored_sec .about-two__content p {
    font-size: 15px;
    line-height: 26px;
  }

  .why-swat-collage__frame::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }

  .why-swat-collage {
    padding: 0 0 15px 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {

  .colored_sec .about-two__content .sec-title .sec-title__title,
  .colored_sec>.container>.sec-title .sec-title__title {
    font-size: 48px;
    line-height: 64px;
  }

  .colored_sec {
    padding-bottom: 100px;
  }
}

.about-two__image {
  position: relative;
  margin-top: 5rem;
}

.why-swat-collage {
  position: relative;
  padding: 0 0 20px 0;
}

.why-swat-collage__frame {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  overflow: visible;
}

.why-swat-collage__frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  z-index: -1;
  pointer-events: none;
}

.why-swat-collage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

.why-swat-collage__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.why-swat-collage__cell--tl {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.why-swat-collage__cell--tr {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.why-swat-collage__cell--bottom {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.why-swat-collage .about-two__experiance {
  position: absolute !important;
  inset: auto !important;
  top: 60% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 5;
  margin: 0 !important;
  width: 150px;
  height: 150px;
}

@media (max-width: 767px) {
  .why-swat-collage .about-two__experiance {
    width: 120px;
    height: 120px;
  }

  .why-swat-collage .about-two__experiance__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--swat-base, #004acd);
    line-height: 14px;
    text-transform: capitalize;
    margin: 2px 0px 0px;
  }

  .why-swat-collage .about-two__experiance__years {
    font-size: 32px;
  }

  .cert_logo {
    gap: 8px !important;
    margin: 30px auto 30px !important;
  }

  .custom_img_txt {
    height: 400px;
    width: auto !important;
    margin: auto;
  }
}

@media (max-width: 1199px) {
  .about-two__image {
    max-width: 570px;
  }
}

.about-two__image img {
  width: 100%;
  height: auto;
}

.about-two__experiance {
  position: absolute;
  inset: 100px 0px 0px;
  margin: auto;
  width: 190px;
  height: 190px;
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0px;
}

@media (max-width: 767px) {
  .about-two__experiance {
    top: auto;
    bottom: 70px;
  }
}

.about-two__experiance::after {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  border: 1px dashed var(--swat-base, #004acd);
  border-radius: 50%;
  inset: 0px;
  position: absolute;
  margin: auto;
  animation: 15s linear 0s infinite alternate forwards running textRotate;
}

.about-two__experiance__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--swat-base, #004acd);
  line-height: 20px;
  text-transform: capitalize;
  margin: 2px 0px 0px;
}

.about-two__experiance__text br {
  display: block;
}

.about-two__experiance__years {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--swat-base, #004acd);
  line-height: 1;
  gap: 8px;
}

.about-two__content {
  position: relative;
  padding: 0px;
}

@media (max-width: 1199px) {
  .about-two__content {
    margin: 0px 0px 45px;
  }
}

.about-two__content .sec-title {
  padding-bottom: 20px;
}

.about-two__content__box {
  position: relative;
  padding: 0px 0px 0px 100px;
  min-height: 78px;
}

.about-two__content__box__icon {
  width: 78px;
  height: 78px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swat-white, #fff);
  font-size: 42px;
  background-color: var(--swat-base, #004acd);
  position: absolute;
  left: 0px;
  top: 0px;
}

.about-two__content__box__icon i {
  display: inline-block;
  transition: 500ms;
}

.about-two__content__box:hover .about-two__content__box__icon i {
  transform: rotateY(180deg);
}

.about-two__content__box__title {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0px 0px 5px;
}

.about-two__content__box__text {
  font-weight: 500;
  margin: 0px;
}

@media (min-width: 1200px) {
  .about-two__content__box__text {
    padding-right: 50px;
  }
}

.about-two__content__box-border {
  margin-top: 25px;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  padding-top: 25px;
  margin-right: 50px;
}

.about-two__content__info-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
}

@media (max-width: 767px) {
  .about-two__content__info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-two__content__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-two__content__info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 20px;
  color: var(--swat-base, #004acd);
  background-color: transparent;
  border: 1px solid var(--swat-base, #004acd);
  transition: 400ms;
}

.about-two__content__info:hover .about-two__content__info__icon {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
}

.about-two__content__info__title {
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-two__content__info__number {
  font-size: 24px;
  font-weight: 600;
  color: var(--swat-base, #004acd);
  margin: 0px;
}

.about-two__content__info__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.about-two__content__info__number a:hover {
  background-size: 100% 1px;
}

.about-two__content__info__number a:hover {
  color: var(--swat-black, #000000);
}

.about-three {
  position: relative;
  padding: 0px 0px 120px;
}

@media (max-width: 767px) {
  .about-three {
    padding: 0px 0px 80px;
  }
}

.about-three__shape {
  position: absolute;
  right: -20px;
  bottom: -190px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 1300px) {
  .about-three__shape {
    display: none;
  }
}

.about-three__image {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 1300px) {
  .about-three__image {
    margin-right: 15px;
  }
}

@media (max-width: 1199px) {
  .about-three__image {
    justify-content: flex-start;
    max-width: 660px;
    margin-left: 35px;
  }
}

@media (max-width: 767px) {
  .about-three__image {
    gap: 10px;
    margin: 0px 15px;
  }
}

.about-three__image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .about-three__image img {
    min-height: auto;
  }
}

.about-three__experiance {
  position: absolute;
  right: 145px;
  top: 0px;
  bottom: 0px;
  width: 364px;
  height: 81px;
  margin: auto;
  background-color: var(--swat-base, #004acd);
  border: 6px solid var(--swat-white, #fff);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 0px 20px;
}

@media (max-width: 500px) {
  .about-three__experiance {
    width: calc(100% - 30px);
    right: auto;
    left: 20px;
  }
}

.about-three__experiance__text {
  font-size: 20px;
  font-weight: 500;
  color: var(--swat-white, #fff);
  line-height: 25px;
  text-transform: capitalize;
  margin: 0px;
}

.about-three__experiance__years {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--swat-white, #fff);
  line-height: 1;
  gap: 0px;
}

.about-three__content {
  position: relative;
  padding: 0px;
}

@media (max-width: 1199px) {
  .about-three__content {
    padding: 45px 0px 0px;
  }
}

.about-three__content .sec-title {
  padding-bottom: 20px;
}

.about-three__content__text {
  font-weight: 500;
  margin: 0px 0px 26px;
}

.about-three__content__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 30px 0px;
  margin: 0px 0px 23px;
}

@media (max-width: 767px) {
  .about-three__content__box {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-three__content__box__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-three__content__box__item__icon {
  font-size: 45px;
  line-height: 45px;
  color: var(--swat-base, #004acd);
  flex-shrink: 0;
  transform: scale(1);
  transition: 500ms;
}

.about-three__content__box__item:hover .about-three__content__box__item__icon {
  transform: scale(0.95);
}

.about-three__content__box__item__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0px;
}

.about-three__content__box__item__text {
  font-weight: 500;
  margin: 0px;
}

.about-three__content__box__item+.about-three__content__box__item {
  position: relative;
}

.about-three__content__box__item+.about-three__content__box__item::after {
  position: absolute;
  left: -25px;
  top: 0px;
  height: 51px;
  width: 2px;
  content: "";
  background-color: var(--swat-base, #004acd);
}

.about-three__content__list {
  margin: 0px 0px 39px;
  padding: 0px;
}

.about-three__content__list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  color: var(--swat-black3, #333333);
  margin: 0px 0px 8px;
}

.about-three__content__list li i {
  line-height: 1;
  position: relative;
  top: 1px;
  display: inline-block;
  color: var(--swat-base, #004acd);
  transition: 0.6s;
}

.about-three__content__list li:hover i {
  transform: rotateY(180deg);
}

.service-one {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
  padding: 120px 0px;
  counter-reset: count 0;
}

.service-one__shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .service-one {
    padding: 80px 0px;
  }
}

.service-one__item {
  position: relative;
  z-index: 2;
  counter-increment: count 1;
  margin-top: 88px;
}

.service-one__item__icon {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -50px;
  z-index: 3;
  width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  font-size: 45px;
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
  margin: 0px auto;
  transition: 500ms;
}

.service-one__item__icon i {
  top: -12px;
  position: relative;
  display: inline-block;
}

.service-one__item__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
  transition: 400ms;
}

.service-one__item:hover .service-one__item__icon {
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.service-one__item__inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--swat-white, #fff);
  border-radius: 10px;
  padding: 40px 30px 0px;
  text-align: center;
  transition: 500ms;
}

.service-one__item__title {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0px 15px;
}

.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.service-one__item__title a:hover {
  background-size: 100% 1px;
}

.service-one__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.service-one__item:hover .service-one__item__title {
  color: var(--swat-white, #fff);
}

.service-one__item__text {
  position: relative;
  z-index: 2;
  font-weight: 500;
  transition: 300ms;
  margin: 0px 0px 18px;
}

.service-one__item:hover .service-one__item__text {
  color: var(--swat-white, #fff);
}

.service-one__item__rm {
  color: var(--swat-black3, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  z-index: 1;
  position: relative;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}

.service-one__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.service-one__item__rm:hover span {
  background-size: 100% 1px;
}

.service-one__item__rm i {
  color: var(--swat-base, #004acd);
  font-size: 20px;
  transition: 0.3s;
}

.service-one__item:hover .service-one__item__rm {
  color: var(--swat-base, #004acd);
}

.service-one__item__number {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: 700;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  line-height: 1;
  color: rgba(var(--swat-black-rgb, 0, 0, 0), 0.2);
  transition: 300ms;
  margin: 15px 0px -17px;
}

.service-one__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}

.service-one__item__number::after {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -88px;
  margin: 0px auto;
  background-color: rgba(var(--swat-base-rgb, 254, 87, 79), 0.2);
  width: 118px;
  height: 118px;
  content: "";
  border-radius: 50%;
  transition: 300ms;
  z-index: -1;
}

.service-one__item:hover .service-one__item__number {
  color: var(--swat-white, #fff);
}

.service-one__item:hover .service-one__item__number::after {
  background-color: rgba(var(--swat-base-rgb, 254, 87, 79), 1);
}

.service-one__item__hover {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.service-one__item__hover::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--swat-black2-rgb, 34, 34, 34), 0.8);
}

.service-one__item:hover .service-one__item__hover {
  transform: translateX(0px) scaleX(1);
  opacity: 1;
  filter: blur(0px);
}

.service-one--page {
  background-color: transparent;
}

.service-one--page .service-one__item__inner {
  background-color: var(--swat-gray, #F5F1EF);
}

.service-one--page .service-one__item__icon {
  border-color: var(--swat-gray, #F5F1EF);
}

.service-two {
  position: relative;
  padding: 0;
  counter-reset: count 0;
}

.service-two__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 400px;
  background-color: var(--swat-base, #004acd);
}

@media (max-width: 767px) {
  .service-two {
    padding: 80px 0px;
  }
}

.service-two__item {
  position: relative;
  z-index: 2;
  transition: 500ms;
  margin: 0px 0px 20px;
}

.service-two__item::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--swat-gray, #F5F1EF);
  clip-path: polygon(100% 0px, 100% 88%, 50% 100%, 0px 88%, 0px 0px);
}

.service-two__item::before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(100% 0px, 100% 88%, 50% 100%, 0px 88%, 0px 0px);
  transition: 0.4s;
  opacity: 0;
}

.service-two__item:hover::before {
  opacity: 1;
  clip-path: polygon(100% 0px, 100% 92%, 50% 100%, 0px 92%, 0px 0px);
}

.service-two__item__image {
  position: relative;
}

.service-two__item__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.service-two__item__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0px 16px 70px;
}

.service-two__item__icon {
  background-color: var(--swat-base, #004acd);
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0px;
  position: relative;
  z-index: 2;
  width: 80px;
  height: 60px;
  font-size: 50px;
  color: var(--swat-white, #fff);
  margin: -2px auto;
}

.service-two__item__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
  margin: 2px auto;
}

.service-two__item__icon i {
  display: inline-block;
  top: -5px;
  position: relative;
  transition: 500ms;
}

.service-two__item:hover .service-two__item__icon i {
  transform: rotateY(180deg);
  color: var(--swat-black2, #f6ff39);
}

.service-two__item__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 25px 0px 15px;
}

.service-two__item__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.service-two__item__title a:hover {
  background-size: 100% 1px;
}

.service-two__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.service-two__item__text {
  font-weight: 500;
  margin: 0px;
  font-size: 15px;
}

@media (max-width: 991px) {
  .service-two__item__text {
    margin: 16px 0px 20px;
  }
}

.service-two__item__rm {
  width: 48px;
  height: 48px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 14px;
  transition: 0.4s;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -20px;
  margin: 0px auto;
}

.service-two__item__rm:hover {
  background-color: var(--swat-black, #000000);
  color: var(--swat-white, #fff);
  transform: rotate(45deg);
}

.service-two .swat-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  right: 0px;
  top: -130px;
  margin: 0px;
}

@media (max-width: 767px) {
  .service-two .swat-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: 0px;
    margin-top: 40px;
  }

  .service-two .swat-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border-color: var(--swat-border-color, #DDDDDD);
    color: var(--swat-black, #000000);
  }

  .service-two .swat-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    border-color: var(--swat-base, #004acd);
    color: var(--swat-white, #fff);
  }
}

.service-three {
  position: relative;
  background-color: var(--swat-black, #000000);
  padding: 290px 0px 120px;
  overflow: hidden;
  counter-reset: count 0;
}

.service-three__shape {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {
  .service-three__shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .service-three {
    padding: 250px 0px 80px;
  }
}

.service-three__item {
  position: relative;
  z-index: 2;
  transition: 500ms;
  margin: 0px;
}

.service-three__item__icon {
  background-color: var(--swat-base, #004acd);
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0px;
  position: relative;
  z-index: 2;
  width: 80px;
  height: 60px;
  font-size: 50px;
  color: var(--swat-white, #fff);
  margin: 40px auto 0px;
}

.service-three__item__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--swat-base, #004acd);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}

.service-three__item__icon i {
  display: inline-block;
  top: -5px;
  position: relative;
  transition: 500ms;
}

.service-three__item:hover .service-three__item__icon i {
  transform: rotateY(180deg);
}

.service-three__item__image {
  position: relative;
}

.service-three__item__image img {
  width: 100%;
  height: auto;
}

.service-three__item__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 44px 28px 38px;
  background-color: var(--swat-white, #fff);
  transition: 500ms;
}

.service-three__item__content::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  content: "";
  z-index: -1;
  background-color: var(--swat-base, #004acd);
  transition: 500ms;
  opacity: 0;
}

.service-three__item:hover .service-three__item__content::after {
  height: 100%;
  opacity: 1;
}

.service-three__item__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0px 15px;
}

.service-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.service-three__item__title a:hover {
  background-size: 100% 1px;
}

.service-three__item:hover .service-three__item__title {
  color: var(--swat-white, #fff);
}

.service-three__item__text {
  font-weight: 500;
  transition: 0.3s;
  margin: 0px;
}

.service-three__item:hover .service-three__item__text {
  color: var(--swat-white, #fff);
}

.service-three__item__rm {
  width: 48px;
  height: 48px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 14px;
  transition: 0.4s;
  position: absolute;
  left: 0px;
  right: 0px;
  top: -24px;
  margin: 0px auto;
}

.service-three__item__rm:hover {
  background-color: var(--swat-white, #fff);
  color: var(--swat-base, #004acd);
  transform: rotate(45deg);
}

.service-details {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .service-details {
    padding: 80px 0px;
  }
}

.service-details__thumbnail {
  margin-bottom: 24px;
}

.service-details__thumbnail img {
  width: 100%;
}

.service-details__gallery {
  margin-bottom: 24px;
}

.service-details__gallery .row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 15px;
}

.service-details__gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.service-details__gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-details__gallery__item:hover img {
  transform: scale(1.05);
}

.service-details__gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 74, 205, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-details__gallery__item:hover .service-details__gallery__overlay {
  opacity: 1;
}

.service-details__gallery__overlay i {
  color: #fff;
  font-size: 24px;
}

.service-details__title {
  margin: 0px 0px 16px;
  text-transform: capitalize;
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
}

.service-details__title-two {
  /* margin: 0px; */
  font-size: 22px;
  line-height: 1.4;
  font-weight: bold;
}

.service-details__text {
  margin: 0px 0px 18px;
  font-weight: 500;
  line-height: 1.7;
}

.service-details__quote {
  background-color: var(--swat-gray, #F5F1EF);
  border-left: 6px solid var(--swat-base, #004acd);
  padding: 8px 16px;
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  color: var(--swat-black, #000000);
  margin: 0 0 16px;
}

.service-details__list {
  margin: 0px;
  padding: 0px;
}

.service-details__list li {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  /* display: flex; */
  /* align-items: flex-start; */
  gap: 0px;
  color: var(--swat-black, #000000);
  /* flex-direction: column; */
  text-align: start;
}

.service-details__list li+li {
  margin-top: 12px;
}

.service-details__list li i {
  color: var(--swat-base, #004acd);
  margin-inline-end: 8px;
}

.service-details__list li strong {
  font-weight: 700;
  color: var(--swat-base);
}

.service-details .mb {
  margin-top: -21px;
  margin-bottom: 32px;
}

.service-details__video {
  position: relative;
  margin-top: 6px;
}

.service-details__video img {
  width: 100%;
  height: auto;
}

.service-details__video .video-popup {
  width: 47px;
  height: 47px;
  transition: 500ms;
  inset: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

.service-details__video .video-popup i {
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 47px;
  height: 47px;
  transition: 500ms;
  font-size: 14px;
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details__video .video-popup .ripple {
  content: "";
  border: 1px solid var(--swat-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: 3s linear 0.55s infinite normal none running videoZoom;
}

.service-details__video .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--swat-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: 1.5s linear 0s infinite normal none running videoZoom;
}

.service-details__video .video-popup:hover i {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.service-details .faq-one__accordion {
  margin: 53px 0px 0px;
}

.service-details .faq-one__accordion .accrodion {
  border-radius: 10px;
  filter: drop-shadow(rgba(0, 0, 0, 0.05) 0px 4px 15px);
  background-color: var(--swat-white, #fff);
}

.portfolio-one {
  padding: 245px 0px 120px;
  position: relative;
  counter-reset: count 0;
}

@media (max-width: 767px) {
  .portfolio-one {
    padding: 205px 0px 80px;
  }
}

.portfolio-one--page {
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .portfolio-one--page {
    padding: 80px 0px;
  }
}

.portfolio-one__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 708px;
}

.portfolio-one__bg::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--swat-black2-rgb, 34, 34, 34), 0.8);
}

.portfolio-one__carousel {
  position: relative;
  padding: 0px 35px;
}

@media (max-width: 991px) {
  .portfolio-one__carousel {
    padding: 0px 25px;
  }
}

.portfolio-one__item {
  position: relative;
  overflow: hidden;
  counter-increment: count 1;
}

.portfolio-one__item::after {
  background: linear-gradient(90deg, rgba(var(--swat-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--swat-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--swat-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--swat-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: 0.7s;
  width: 200%;
}

.portfolio-one__item:hover::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}

.portfolio-one__item img {
  width: 100%;
  height: auto;
  transition: 400ms;
}

.portfolio-one__item__content {
  position: absolute;
  z-index: 2;
  inset: 0px;
  margin: auto;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: rgba(var(--swat-black2-rgb, 34, 34, 34), 0.8);
  padding: 20px;
  transform: scale(1, 0);
  transition: transform 500ms;
  transform-origin: center bottom;
  overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .portfolio-one__item__content {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

@media (max-width: 991px) {
  .portfolio-one__item__content {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

@media (max-width: 450px) {
  .portfolio-one__item__content {
    padding: 10px;
  }
}

.portfolio-one__item__content__inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 33px 40px 30px;
}

@media (max-width: 450px) {
  .portfolio-one__item__content__inner {
    padding: 23px 30px 20px;
  }
}

.portfolio-one__item__content__item {
  position: absolute;
  background-color: var(--swat-base, #004acd);
}

.portfolio-one__item__content__item:nth-child(1) {
  top: -1px;
  left: 0px;
  width: 100%;
  height: 6px;
  animation: 2s linear 0s infinite normal none running animateTop;
}

.portfolio-one__item__content__item:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 6px;
  animation: 2s linear -1s infinite normal none running animateRight;
}

.portfolio-one__item__content__item:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 6px;
  animation: 2s linear 0s infinite normal none running animateBottom;
}

.portfolio-one__item__content__item:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 6px;
  animation: 2s linear -1s infinite normal none running animateLeft;
}

.portfolio-one__item:hover .portfolio-one__item__content {
  transform-origin: center top;
  transform: scale(1, 1);
}

.portfolio-one__item__title {
  margin: 0px 0px 12px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  color: var(--swat-white, #fff);
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
}

.portfolio-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.portfolio-one__item__title a:hover {
  background-size: 100% 1px;
}

.portfolio-one__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.portfolio-one__item__text {
  position: relative;
  z-index: 2;
  color: var(--swat-white, #fff);
  font-weight: 500;
  margin: 0px 0px 15px;
}

.portfolio-one__item__number {
  position: absolute;
  right: 58px;
  bottom: 50px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--swat-special-font, "Work Sans", sans-serif);
  font-size: 70px;
  color: transparent;
  -webkit-text-stroke: 2px var(--swat-white, #fff);
}

@media (max-width: 575px) {
  .portfolio-one__item__number {
    font-size: 50px;
  }
}

.portfolio-one__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
}

.portfolio-one__item__rm {
  position: relative;
  z-index: 2;
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.portfolio-one__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.portfolio-one__item__rm:hover {
  color: var(--swat-white, #fff);
}

.portfolio-one__item__rm:hover span {
  background-size: 100% 1px;
}

.portfolio-one__item__rm i {
  font-size: 20px;
}

.portfolio-two {
  padding: 120px 0px;
  background-color: var(--swat-gray, #F5F1EF);
  position: relative;
}

@media (max-width: 767px) {
  .portfolio-two {
    padding: 80px 0px;
  }
}

.portfolio-two__wrapper {
  display: flex;
  width: 100%;
  gap: 30px;
  box-sizing: border-box;
}

@media (max-width: 1199px) {
  .portfolio-two__wrapper {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .portfolio-two__wrapper {
    flex-direction: column;
  }
}

.portfolio-two__item {
  position: relative;
  flex: 1 1 0%;
  overflow: hidden;
  transition: 0.4s;
  margin: 0px;
  line-height: 0;
  height: 479px;
}

@media (max-width: 767px) {
  .portfolio-two__item {
    height: auto;
  }
}

.portfolio-two__item::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  pointer-events: none;
  background: linear-gradient(transparent, var(--swat-black2, #222222) 80%, var(--swat-black2, #222222) 80%);
  transition: 300ms;
  z-index: 2;
}

.portfolio-two__item.active::after {
  height: 100%;
}

.portfolio-two__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.portfolio-two__item.active {
  flex: 1 1 17.1%;
}

@media (max-width: 1199px) {
  .portfolio-two__item.active {
    flex: 1 1 22%;
  }
}

@media (max-width: 991px) {
  .portfolio-two__item.active {
    flex: 1 1 38%;
  }
}

.portfolio-two__item.active .portfolio-two__item__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 400ms;
}

.portfolio-two__item.active .portfolio-two__item__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 300ms;
}

.portfolio-two__item.active .portfolio-two__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 200ms;
}

.portfolio-two__item__content {
  position: absolute;
  z-index: 9;
  left: 0px;
  bottom: 0px;
  padding: 30px;
}

.portfolio-two__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--swat-text, #636363);
  margin: 0px 0px 3px;
  text-transform: capitalize;
  padding: 1px 20px;
  background-color: var(--swat-white, #fff);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: 700ms;
}

.portfolio-two__item__title {
  margin: 0px 0px 24px;
  padding: 8px 20px;
  background-color: var(--swat-white, #fff);
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: 600ms;
}

.portfolio-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.portfolio-two__item__title a:hover {
  background-size: 100% 1px;
}

.portfolio-two__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.portfolio-two__item__rm {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--swat-white, #fff);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50px);
  transition: 500ms;
}

.portfolio-two__item__rm i {
  display: inline-block;
  transition: 400ms;
}

.portfolio-two__item__rm:hover i {
  transform: rotate(45deg);
}

.portfolio-three {
  padding: 120px 0px 90px;
  position: relative;
}

@media (max-width: 767px) {
  .portfolio-three {
    padding: 80px 0px 50px;
  }
}

.portfolio-three__btn {
  position: relative;
  text-align: right;
  margin: 58px 0px 0px;
}

@media (max-width: 991px) {
  .portfolio-three__btn {
    margin: 0px 0px 45px;
    text-align: left;
  }
}

.portfolio-three .post-filter {
  position: relative;
  height: 479px;
  z-index: 2;
  margin: 0px;
  padding: 29px 0px 29px 40px;
  list-style: none;
  text-align: right;
}

@media (max-width: 991px) {
  .portfolio-three .post-filter {
    margin: 0px 0px 30px;
  }
}

.portfolio-three .post-filter::after {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: calc(100% - 100px);
  content: "";
  background-color: var(--swat-black, #000000);
}

.portfolio-three .post-filter li {
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: 0.4s;
  background-color: var(--swat-white, #fff);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 27px;
  border: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 18px 45px;
  font-size: 22px;
  color: var(--swat-black, #000000);
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .portfolio-three .post-filter li {
    padding: 18px 35px;
  }
}

.portfolio-three .post-filter li i {
  font-size: 45px;
  color: var(--swat-base, #004acd);
  transition: 0.4s;
}

.portfolio-three .post-filter li:hover,
.portfolio-three .post-filter li.active {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  border-color: var(--swat-base, #004acd);
}

.portfolio-three .post-filter li:hover i,
.portfolio-three .post-filter li.active i {
  color: var(--swat-white, #fff);
}

.portfolio-three .post-filter li+li {
  margin-top: 30px;
}

.portfolio-three__item {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  height: 479px;
  margin: 0px 0px 30px;
}

@media (max-width: 767px) {
  .portfolio-three__item {
    height: auto;
  }
}

.portfolio-three__item::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  pointer-events: none;
  background: linear-gradient(transparent, var(--swat-black2, #222222) 80%, var(--swat-black2, #222222) 80%);
  transition: 300ms;
  z-index: 2;
}

.portfolio-three__item:hover::after {
  height: 100%;
}

.portfolio-three__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

@media (max-width: 767px) {
  .portfolio-three__item img {
    min-height: 300px;
  }
}

.portfolio-three__item:hover .portfolio-three__item__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 100ms;
}

.portfolio-three__item:hover .portfolio-three__item__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 300ms;
}

.portfolio-three__item:hover .portfolio-three__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 400ms;
}

.portfolio-three__item__content {
  position: absolute;
  z-index: 9;
  left: 0px;
  bottom: 0px;
  padding: 30px;
}

.portfolio-three__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--swat-text, #636363);
  margin: 0px 0px 3px;
  text-transform: capitalize;
  padding: 1px 20px;
  background-color: var(--swat-white, #fff);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 500ms;
}

.portfolio-three__item__title {
  margin: 0px 0px 24px;
  padding: 8px 20px;
  background-color: var(--swat-white, #fff);
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: 400ms;
}

.portfolio-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
}

.portfolio-three__item__title a:hover {
  background-size: 100% 1px;
}

.portfolio-three__item__title a:hover {
  color: var(--swat-base, #004acd);
}

.portfolio-three__item__rm {
  position: relative;
  z-index: 2;
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: 300ms;
}

.portfolio-three__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: 500ms;
  display: inline-block;
}

.portfolio-three__item__rm:hover {
  color: var(--swat-white, #fff);
}

.portfolio-three__item__rm:hover span {
  background-size: 100% 1px;
}

.portfolio-three__item__rm i {
  font-size: 20px;
}

.portfolio-details {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .portfolio-details {
    padding: 80px 0px;
  }
}

.portfolio-details__image {
  position: relative;
  margin: 0px 0px 30px;
}

.portfolio-details__image img {
  width: 100%;
  height: auto;
}

.portfolio-details__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0px 16px;
}

.portfolio-details__content {
  position: relative;
}

.portfolio-details__content__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0px 16px;
}

.portfolio-details__content__title.mt {
  margin-top: 24px;
}

.portfolio-details__content__text {
  font-weight: 500;
  margin: 0px 0px 20px;
}

.portfolio-details__content__list {
  margin: 25px 0px 37px;
  padding: 0px;
  list-style: none;
}

.portfolio-details__content__list li {
  font-size: 16px;
  line-height: 28px;
  color: var(--swat-black, #000000);
  font-weight: 600;
  margin: 0px 0px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-details__content__list li i {
  color: var(--swat-base, #004acd);
  display: inline-block;
}

.portfolio-details__content__image {
  position: relative;
}

.portfolio-details__content__image img {
  width: 100%;
  height: auto;
}

.portfolio-details__content__image .video-popup {
  width: 62px;
  height: 62px;
  transition: 500ms;
  inset: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

.portfolio-details__content__image .video-popup i {
  background-color: var(--swat-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  transition: 500ms;
  font-size: 16px;
  color: var(--swat-base, #004acd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-details__content__image .video-popup .ripple {
  content: "";
  border: 1px solid var(--swat-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: 3s linear 0.55s infinite normal none running videoZoom;
}

.portfolio-details__content__image .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--swat-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: 1.5s linear 0s infinite normal none running videoZoom;
}

.portfolio-details__content__image .video-popup:hover i {
  color: var(--swat-white, #fff);
  background-color: var(--swat-base, #004acd);
}

.portfolio-details__content .mb {
  margin-bottom: 21px;
}

.portfolio-details__info {
  position: relative;
  background-color: var(--swat-gray, #F5F1EF);
}

.portfolio-details__info__title {
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px;
  padding: 20px 30px;
}

.portfolio-details__info__list {
  margin: 0px;
  padding: 22px 30px;
  list-style: none;
}

.portfolio-details__info__list li {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--swat-text, #636363);
}

.portfolio-details__info__list li span {
  display: block;
  color: var(--swat-black, #000000);
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  font-weight: 700;
  margin: 0px 0px 5px;
}

.portfolio-details__info__list li+li {
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  padding: 22px 0px 0px;
  margin: 23px 0px 0px;
}

.portfolio-details__service {
  margin-top: 40px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 30px 30px;
}

.portfolio-details__service::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--swat-black-rgb, 0, 0, 0), 0.8);
}

.portfolio-details__service__price {
  position: relative;
  z-index: 1;
  font-size: 50px;
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  line-height: 1;
  font-weight: 700;
  color: var(--swat-base, #004acd);
  margin-bottom: 18px;
}

.portfolio-details__service__title {
  position: relative;
  z-index: 1;
  color: var(--swat-white, #fff);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.portfolio-details__service__text {
  position: relative;
  z-index: 1;
  color: var(--swat-white, #fff);
  margin: 0px 0px 82px;
}

.portfolio-details__service .swat-btn {
  border-radius: 0px;
}

.portfolio-details__service .swat-btn::after {
  background-color: var(--swat-white, #fff);
}

.portfolio-details__service .swat-btn:hover {
  color: var(--swat-base, #004acd);
}

.portfolio-details .funfact-one__list {
  margin: 60px 0px 0px;
}

body.boxed-wrapper {
  position: relative;
}

body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--swat-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--swat-black-rgb, 0, 0, 0), 0.08);
}

body.boxed-wrapper .faq-one__shape,
body.boxed-wrapper .main-header__call {
  display: none;
}

.work-process-one {
  position: relative;
  counter-reset: count 0;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0px;
  }
}

.work-process-one__border {
  width: 100%;
  height: 193px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  inset: 150px 0px 0px;
  margin: auto;
  position: absolute;
  animation: 3s linear 0s infinite normal none running movebounce2;
}

@media (max-width: 991px) {
  .work-process-one__border {
    display: none;
  }
}

.work-process-one__item {
  position: relative;
  counter-increment: count 1;
}

.work-process-one__item__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: 0.5s;
  mask: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 307 329\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.515 114.687L135.722 6.83276C129.853 2.45629 121.913 -0.000197909 113.637 -0.000197909C105.361 -0.000197909 97.4206 2.45629 91.551 6.83276C88.6148 9.01718 86.2842 11.6161 84.6938 14.4795C83.1033 17.3429 82.2845 20.4142 82.2845 23.5161C82.2845 26.6181 83.1033 29.6894 84.6938 32.5528C86.2842 35.4162 88.6148 38.0151 91.551 40.1995L-0.000154107 139.383C2.9361 141.568 5.26666 144.167 6.8571 147.03C8.44754 149.893 9.26639 152.965 9.26639 156.067C9.26639 159.169 8.44754 162.24 6.8571 165.103C5.26666 167.967 2.9361 170.566 -0.000154107 172.75L91.551 288.805C85.652 293.199 82.3215 299.17 82.2921 305.406C82.2627 311.641 85.5369 317.63 91.3944 322.055C97.2519 326.479 105.213 328.978 113.526 329C121.839 329.022 129.823 326.566 135.722 322.172L279.515 214.318C297.114 201.1 307 183.183 307 164.502C307 145.822 297.114 127.905 279.515 114.687Z\"/></svg>") center center / cover no-repeat;
}

.work-process-one__item__image img {
  max-width: 100%;
  height: auto;
}

.work-process-one__item:hover .work-process-one__item__image {
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.work-process-one__item__content {
  position: relative;
  text-align: center;
  background-color: transparent;
  padding: 198px 25px 0px;
  margin-top: -175px;
}

.work-process-one__item__content::after {
  position: absolute;
  left: 0px;
  bottom: 20px;
  width: 100%;
  height: calc(100% - 20px);
  border-radius: 30px 30px 0px 0px;
  content: "";
  transition: 0.5s;
  background-color: var(--swat-gray, #F5F1EF);
  z-index: -1;
  mask: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 370 355\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 50C0 22.3858 22.3858 0 50 0H320C347.614 0 370 22.3858 370 50V284L293 336.5L182 355L91 336.5L0 284V50Z\"/></svg>") center bottom / cover no-repeat;
}

.work-process-one__item:hover .work-process-one__item__content::after {
  background-color: var(--swat-black, #000000);
}

.work-process-one__item__number {
  position: absolute;
  left: 0px;
  top: -25px;
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: var(--swat-base, #004acd);
  border: 2px solid var(--swat-base, #004acd);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--swat-white, #fff);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: 500ms 0.1s;
  transform: scale(1);
}



.work-process-one__item:hover .work-process-one__item__number {
  border-color: var(--swat-white, #fff);
  background-color: var(--swat-black, #000000);
  transform: scale(1.1);
}

.work-process-one__item__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.3s;
  margin: 0px 0px 14px;
}

.work-process-one__item:hover .work-process-one__item__title {
  color: var(--swat-white, #fff);
}

.work-process-one__item__text {
  font-weight: 500;
  margin: 0px 0px 31px;
  transition: 0.3s;
}

.work-process-one__item:hover .work-process-one__item__text {
  color: var(--swat-white, #fff);
}

.work-process-one__item__rm {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  background-color: var(--swat-black, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  color: var(--swat-white, #fff);
  transform: rotate(45deg);
  margin: 0px auto;
}

.work-process-one__item:hover .work-process-one__item__rm {
  background-color: var(--swat-base, #004acd);
  transform: rotate(0deg);
}

.repair-one {
  position: relative;
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .repair-one {
    padding: 80px 0px;
  }
}

.repair-one__content {
  position: relative;
}

.repair-one__content .sec-title {
  padding-bottom: 21px;
}

.repair-one__content__text {
  font-weight: 500;
  margin: 0px 0px 21px;
}

.repair-one__content__heading {
  font-size: 17px;
  font-weight: 600;
  margin: 0px 0px 30px;
}

.repair-one__content__list {
  margin: 0px 0px 40px;
  padding: 15px 0px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--swat-border-color, #DDDDDD);
  border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
  gap: 31px 30px;
  position: relative;
}

@media (max-width: 767px) {
  .repair-one__content__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.repair-one__content__list::after {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--swat-border-color, #DDDDDD);
}

@media (max-width: 767px) {
  .repair-one__content__list::after {
    display: none;
  }
}

.repair-one__content__list::before {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--swat-border-color, #DDDDDD);
}

@media (max-width: 767px) {
  .repair-one__content__list::before {
    display: none;
  }
}

.repair-one__content__list li {
  position: relative;
  padding: 0px 0px 0px 28px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .repair-one__content__list li {
    border-bottom: 1px solid var(--swat-border-color, #DDDDDD);
    padding-bottom: 20px;
  }

  .repair-one__content__list li:last-child {
    border: none;
  }
}

.repair-one__content__list li i {
  position: absolute;
  left: 0px;
  top: 6px;
  color: var(--swat-black, #000000);
  transition: 400ms;
}

.repair-one__content__list li span {
  transition: 400ms;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
}

.repair-one__content__list li:hover i {
  color: var(--swat-base, #004acd);
}

.repair-one__content__list li:hover span {
  background-size: 100% 1px;
}

.repair-one__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .repair-one__image {
    margin: 40px 0px 0px;
  }
}

.repair-one__image::after {
  position: absolute;
  left: -13px;
  bottom: -13px;
  z-index: -1;
  width: 220px;
  height: 220px;
  background-color: var(--swat-base, #004acd);
  content: "";
}

.repair-one__image img {
  max-width: 100%;
  height: auto;
}

.repair-one__image__two {
  position: absolute;
  right: -230px;
  top: 30px;
  display: inline-block;
  border: 7px solid var(--swat-white, #fff);
  border-radius: 120px 0px 120px 120px;
  transform: rotate(-135deg);
  overflow: hidden;
}

.repair-one__image__two img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .repair-one__image__two {
    display: none;
  }
}

.repair-one__image__info {
  position: absolute;
  right: -230px;
  bottom: 50px;
  background-color: var(--swat-gray, #F5F1EF);
  border-radius: 70px;
  border: 10px solid var(--swat-white, #fff);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  font-weight: 700;
  color: var(--swat-black, #000000);
  font-family: var(--swat-heading-font, "Montserrat", sans-serif);
  text-transform: capitalize;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .repair-one__image__info {
    display: none;
  }
}

.repair-one__image__info:hover {
  color: var(--swat-base, #004acd);
}

.repair-one__image__info:hover .repair-one__image__info__icon i {
  transform: scale(1.1);
}

.repair-one__image__info__icon {
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--swat-base, #004acd);
  color: var(--swat-white, #fff);
  font-size: 47px;
  border-radius: 50%;
  flex-shrink: 0;
}

.repair-one__image__info__icon i {
  display: inline-block;
  transition: 600ms;
  transform: scale(1);
}

.cert_logo {
  position: relative;
  z-index: 998;
  gap: 15px;
  margin: 64px auto 96px;
}

.cert_logo li {
  list-style: none;
  width: calc(100% / 7);
}

.cert_logo li img {
  width: 100%;
  height: auto;
}

.second_color {
  color: var(--swat-black2) !important;
}

.custom_img_txt {
  height: 395px !important;
}

@media (max-width: 767px) {
  .cert_title {
    font-size: 26px;
    line-height: 44px;
  }

  .cert_logo li img {
    width: 100%;
    height: auto;
  }

  .service-two__bg {
    top: -1px;
    height: 330px;
  }

  .sec-title__tagline {
    margin: 0;
  }

  .cert-section {
    padding: 0;
  }
}

/* ── Form validation error messages ──────────────────────────── */
.form-error-msg {
  display: block;
  margin-top: 5px;
  padding-left: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #e53e3e;
  letter-spacing: 0.01em;
}

/* ── Toaster Styles ──────────────────────────── */
#swat-toaster-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.swat-toast {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 300px;
    max-width: 420px;
    padding: 16px 20px;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    pointer-events: all;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    position: relative;
}

.swat-toast--success {
    background: linear-gradient(135deg, #1a6e3c 0%, #22943f 100%);
    border-left: 4px solid #4ade80;
}

.swat-toast--error {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 100%);
    border-left: 4px solid #f87171;
}

.swat-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.swat-toast.hide {
    opacity: 0;
    transform: translateX(60px);
}

.swat-toast__icon {
    flex-shrink: 0;
    font-size: 20px;
    margin-top: 1px;
}

.swat-toast__body {
    flex: 1;
}

.swat-toast__title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 2px;
}

.swat-toast__message {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.swat-toast__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.swat-toast__close:hover {
    color: #fff;
}

.swat-toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: rgba(255,255,255,0.45);
    width: 100%;
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* Commitment content bullet list styling */
.rich-text-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rich-text-content ul li {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  line-height: 1.6;
}

.rich-text-content ul li+li {
  margin-top: 12px;
}

.rich-text-content ul li::before {
  font-family: 'icomoon' !important;
  content: "\e921";
  color: var(--swat-base, #004acd);
  margin-inline-end: 8px;
  flex-shrink: 0;
  line-height: 1.6;
}

/* =============================================================
   Service Detail Sections (scoped under .rich-text-content)
   Components: sec-head, callout, process-timeline, card-grid,
   phase-timeline, split-row, checklist-split
   ============================================================= */
.rich-text-content {
  --rtc-blue-dark:   #004acd;   /* brand blue */
  --rtc-blue-mid:    #004acd;   /* brand blue */
  --rtc-blue-light:  #E6F1FB;
  --rtc-yellow:      #FFCC00;
  /* Category palette: .green = yellow, .orange = grey, .red = brand blue */
  --rtc-green:       #B8860B;   /* mustard/gold for pills & titles */
  --rtc-orange:      #6c757d;   /* neutral grey */
  --rtc-red:         #004acd;   /* brand blue */
  --rtc-green-light: #FFF8D9;   /* cream card bg */
  --rtc-orange-light:#E9ECEF;   /* light grey card bg */
  --rtc-red-light:   #E6F1FB;   /* light brand-blue card bg */
  --rtc-text:        #1a1a1a;
  --rtc-muted:       #555;
  --rtc-surface:     #f7f8fa;
  --rtc-border:      rgba(0,0,0,0.09);
  --rtc-r-sm: 8px;
  --rtc-r-md: 12px;
  --rtc-r-lg: 16px;
  text-align: left;
}

/* Justify only real paragraph text, not component blocks */
.rich-text-content > p,
.rich-text-content > div > p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-spacing: -10%;
}

/* Section heading */
.rich-text-content .sec-head {
  font-size: 20px;
  font-weight: 700;
  color: var(--rtc-text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rtc-border);
  margin-top: 44px;
}
.rich-text-content .sec-head:first-child { margin-top: 0; }

/* Shared: icon-check-mark inside sections */
.rich-text-content .callout-item .icon-check-mark,
.rich-text-content .split-item .icon-check-mark,
.rich-text-content .checklist-item .icon-check-mark,
.rich-text-content .tl-item .icon-check-mark {
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
  margin-inline-end: 8px;
}

/* 1. CALLOUT — dark blue grid */
.rich-text-content .callout {
  background: var(--rtc-blue-dark);
  border-radius: var(--rtc-r-lg);
  padding: 24px;
}
.rich-text-content .callout-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: justify !important;
  word-spacing: -10% !important;
  letter-spacing: -1% !important;
}
.rich-text-content .callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rich-text-content .callout-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border-radius: var(--rtc-r-sm);
  padding: 11px 13px;
}
.rich-text-content .callout-item .icon-check-mark { color: var(--rtc-yellow); }
.rich-text-content .callout-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

/* 2. PROCESS TIMELINE — vertical numbered */
.rich-text-content .process-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.rich-text-content .process-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 20px;
  width: 2px;
  background: var(--rtc-blue-light);
  z-index: 0;
}
.rich-text-content .process-step {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  align-items: flex-start;
}
.rich-text-content .process-step:last-child { margin-bottom: 0; }
.rich-text-content .process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rtc-blue-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--rtc-blue-light);
}
.rich-text-content .process-body {
  background: var(--rtc-surface);
  border: 1px solid var(--rtc-border);
  border-radius: var(--rtc-r-md);
  padding: 14px 16px;
  flex: 1;
}
.rich-text-content .process-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--rtc-blue-dark);
  margin-bottom: 4px;
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  word-spacing: normal;
}
.rich-text-content .process-desc {
  font-size: 14px;
  color: var(--rtc-muted);
  line-height: 1.6;
  margin: 0;
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  word-spacing: normal;
}
.rich-text-content .callout-item span,
.rich-text-content .split-item span,
.rich-text-content .checklist-item span,
.rich-text-content .card-title,
.rich-text-content .card-sub,
.rich-text-content .card-desc,
.rich-text-content .card-tag,
.rich-text-content .card-pill,
.rich-text-content .tl-phase-title,
.rich-text-content .tl-note {
  text-align: justify !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  word-spacing: -10% !important;
  letter-spacing: -1% !important;
}

/* 3. CARD GRID — 2-col */
.rich-text-content .card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rich-text-content .card-grid .card {
  background: var(--rtc-surface);
  border: 1px solid var(--rtc-border);
  border-radius: var(--rtc-r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;             /* fill grid row height so tags align across cards */
}
/* Ensure grid rows stretch children to equal heights */
.rich-text-content .card-grid { align-items: stretch; }
.rich-text-content .card-grid .card.green  { background: var(--rtc-green-light);  border-color: rgba(184,134,11,0.25); }
.rich-text-content .card-grid .card.orange { background: var(--rtc-orange-light); border-color: rgba(108,117,125,0.25); }
.rich-text-content .card-grid .card.red    { background: var(--rtc-red-light);    border-color: rgba(0,74,205,0.25); }
.rich-text-content .card-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 2px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rich-text-content .card-pill.blue   { background: var(--rtc-blue-mid); color: #fff; }
.rich-text-content .card-pill.green  { background: var(--rtc-green);    color: #fff; }
.rich-text-content .card-pill.orange { background: var(--rtc-orange);   color: #fff; }
.rich-text-content .card-pill.red    { background: var(--rtc-red);      color: #fff; }
.rich-text-content .card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--rtc-text);
  margin: 0;
}
.rich-text-content .card.green  .card-title { color: var(--rtc-green); }
.rich-text-content .card.orange .card-title { color: var(--rtc-orange); }
.rich-text-content .card.red    .card-title { color: var(--rtc-red); }
.rich-text-content .card-sub  { font-size: 12px; font-weight: 500; color: var(--rtc-muted); }
.rich-text-content .card-desc { font-size: 13px; color: var(--rtc-muted); line-height: 1.55; margin: 0; }
.rich-text-content .card-tag {
  margin-top: auto;          /* push tag to bottom of equal-height card */
  padding-top: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--rtc-r-sm);
  text-align: center;
}
.rich-text-content .card       .card-tag.blue   { background: var(--rtc-blue-light);  color: var(--rtc-blue-mid); }
.rich-text-content .card.green  .card-tag { background: rgba(184,134,11,0.12);  color: var(--rtc-green); }
.rich-text-content .card.orange .card-tag { background: rgba(108,117,125,0.15); color: var(--rtc-orange); }
.rich-text-content .card.red    .card-tag { background: rgba(0,74,205,0.10);    color: var(--rtc-red); }

/* 4. SPLIT ROW (two columns: dark + light) */
.rich-text-content .split-row {
  display: flex;
  gap: 16px;
}
.rich-text-content .split-col {
  flex: 1;
  border-radius: var(--rtc-r-md);
  padding: 18px;
}
.rich-text-content .split-col.dark  { background: var(--rtc-blue-dark); }
.rich-text-content .split-col.light { background: var(--rtc-surface); border: 1px solid var(--rtc-border); }
.rich-text-content .split-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rich-text-content .split-col.dark  .split-col-title { color: var(--rtc-yellow); }
.rich-text-content .split-col.light .split-col-title { color: var(--rtc-blue-mid); }
.rich-text-content .split-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rich-text-content .split-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.rich-text-content .split-col.dark  .split-item .icon-check-mark { color: var(--rtc-yellow); }
.rich-text-content .split-col.light .split-item .icon-check-mark { color: var(--rtc-blue-mid); }
.rich-text-content .split-item span { font-size: 13px; line-height: 1.5; }
.rich-text-content .split-col.dark  .split-item span { color: rgba(255,255,255,0.9); }
.rich-text-content .split-col.light .split-item span { color: var(--rtc-muted); }

/* 5. CHECKLIST SPLIT */
.rich-text-content .checklist-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rich-text-content .checklist-col {
  background: var(--rtc-surface);
  border: 1px solid var(--rtc-border);
  border-radius: var(--rtc-r-md);
  padding: 18px;
}
.rich-text-content .checklist-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rtc-blue-mid);
  margin-bottom: 14px;
}
.rich-text-content .checklist-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rich-text-content .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.rich-text-content .checklist-item .icon-check-mark { color: var(--rtc-blue-mid); }
.rich-text-content .checklist-item span { font-size: 13px; color: var(--rtc-muted); line-height: 1.5; }

/* 6. PHASE TIMELINE */
.rich-text-content .phase-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.rich-text-content .phase-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 2px;
  z-index: 0;
}
.rich-text-content .phase-timeline.blue::before { background: var(--rtc-blue-light); }
.rich-text-content .phase-timeline.urgency::before {
  background: linear-gradient(to bottom, var(--rtc-green), var(--rtc-orange), var(--rtc-red));
}
.rich-text-content .phase-timeline.split { flex-direction: row; gap: 16px; }
.rich-text-content .phase-timeline.split::before { display: none; }
.rich-text-content .tl-phase {
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.rich-text-content .tl-phase:last-child { margin-bottom: 0; }
.rich-text-content .tl-marker {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rich-text-content .tl-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}
.rich-text-content .tl-dot.blue   { background: var(--rtc-blue-light);   box-shadow: 0 0 0 2px var(--rtc-blue-mid); color: var(--rtc-blue-mid); }
.rich-text-content .tl-dot.green  { background: var(--rtc-green-light);  box-shadow: 0 0 0 2px var(--rtc-green);    color: var(--rtc-green); }
.rich-text-content .tl-dot.orange { background: var(--rtc-orange-light); box-shadow: 0 0 0 2px var(--rtc-orange);   color: var(--rtc-orange); }
.rich-text-content .tl-dot.red    { background: var(--rtc-red-light);    box-shadow: 0 0 0 2px var(--rtc-red);      color: var(--rtc-red); }
.rich-text-content .tl-connector {
  width: 2px;
  flex: 1;
  background: var(--rtc-blue-light);
  margin: 4px auto 0;
}
.rich-text-content .tl-content {
  flex: 1;
  border-radius: var(--rtc-r-md);
  padding: 16px 18px;
  border-left: 4px solid;
  margin-bottom: 0;
}
.rich-text-content .tl-content.blue   { background: var(--rtc-surface);      border-color: var(--rtc-blue-mid); }
.rich-text-content .tl-content.green  { background: var(--rtc-green-light);  border-color: var(--rtc-green); }
.rich-text-content .tl-content.orange { background: var(--rtc-orange-light); border-color: var(--rtc-orange); }
.rich-text-content .tl-content.red    { background: var(--rtc-red-light);    border-color: var(--rtc-red); }
.rich-text-content .tl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rich-text-content .tl-phase-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.rich-text-content .tl-content.blue   .tl-phase-title { color: var(--rtc-blue-dark); }
.rich-text-content .tl-content.green  .tl-phase-title { color: var(--rtc-green); }
.rich-text-content .tl-content.orange .tl-phase-title { color: var(--rtc-orange); }
.rich-text-content .tl-content.red    .tl-phase-title { color: var(--rtc-red); }
.rich-text-content .tl-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.rich-text-content .tl-badge.green  { background: var(--rtc-green); }
.rich-text-content .tl-badge.orange { background: var(--rtc-orange); }
.rich-text-content .tl-badge.red    { background: var(--rtc-red); }
.rich-text-content .tl-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rich-text-content .tl-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.rich-text-content .tl-content.blue   .tl-item .icon-check-mark { color: var(--rtc-blue-mid); }
.rich-text-content .tl-content.green  .tl-item .icon-check-mark { color: var(--rtc-green); }
.rich-text-content .tl-content.orange .tl-item .icon-check-mark { color: var(--rtc-orange); }
.rich-text-content .tl-content.red    .tl-item .icon-check-mark { color: var(--rtc-red); }

/* =============================================================
   Semantic colour aliases for content authors
   .yellow     = same palette as .green  (mustard/gold)
   .grey       = same palette as .orange (neutral grey)
   .blue-light = same palette as .red    (brand blue)
   ============================================================= */
.rich-text-content .card-grid .card.yellow     { background: var(--rtc-green-light);  border-color: rgba(184,134,11,0.25); }
.rich-text-content .card-grid .card.grey       { background: var(--rtc-orange-light); border-color: rgba(108,117,125,0.25); }
.rich-text-content .card-grid .card.blue-light { background: var(--rtc-red-light);    border-color: rgba(0,74,205,0.25); }

.rich-text-content .card-pill.yellow     { background: var(--rtc-green);  color: #fff; }
.rich-text-content .card-pill.grey       { background: var(--rtc-orange); color: #fff; }
.rich-text-content .card-pill.blue-light { background: var(--rtc-red);    color: #fff; }

.rich-text-content .card.yellow     .card-title { color: var(--rtc-green); }
.rich-text-content .card.grey       .card-title { color: var(--rtc-orange); }
.rich-text-content .card.blue-light .card-title { color: var(--rtc-red); }

.rich-text-content .card.yellow     .card-tag { background: rgba(184,134,11,0.12);  color: var(--rtc-green); }
.rich-text-content .card.grey       .card-tag { background: rgba(108,117,125,0.15); color: var(--rtc-orange); }
.rich-text-content .card.blue-light .card-tag { background: rgba(0,74,205,0.10);    color: var(--rtc-red); }

.rich-text-content .tl-dot.yellow     { background: var(--rtc-green-light);  box-shadow: 0 0 0 2px var(--rtc-green);  color: var(--rtc-green); }
.rich-text-content .tl-dot.grey       { background: var(--rtc-orange-light); box-shadow: 0 0 0 2px var(--rtc-orange); color: var(--rtc-orange); }
.rich-text-content .tl-dot.blue-light { background: var(--rtc-red-light);    box-shadow: 0 0 0 2px var(--rtc-red);    color: var(--rtc-red); }

.rich-text-content .tl-content.yellow     { background: var(--rtc-green-light);  border-color: var(--rtc-green); }
.rich-text-content .tl-content.grey       { background: var(--rtc-orange-light); border-color: var(--rtc-orange); }
.rich-text-content .tl-content.blue-light { background: var(--rtc-red-light);    border-color: var(--rtc-red); }

.rich-text-content .tl-content.yellow     .tl-phase-title { color: var(--rtc-green); }
.rich-text-content .tl-content.grey       .tl-phase-title { color: var(--rtc-orange); }
.rich-text-content .tl-content.blue-light .tl-phase-title { color: var(--rtc-red); }

.rich-text-content .tl-badge.yellow     { background: var(--rtc-green); }
.rich-text-content .tl-badge.grey       { background: var(--rtc-orange); }
.rich-text-content .tl-badge.blue-light { background: var(--rtc-red); }

.rich-text-content .tl-content.yellow     .tl-item .icon-check-mark { color: var(--rtc-green); }
.rich-text-content .tl-content.grey       .tl-item .icon-check-mark { color: var(--rtc-orange); }
.rich-text-content .tl-content.blue-light .tl-item .icon-check-mark { color: var(--rtc-red); }
.rich-text-content .tl-item span {
  font-size: 13px;
  color: var(--rtc-muted);
  line-height: 1.5;
  text-align: left;
}
.rich-text-content .tl-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--rtc-muted);
  background: rgba(255,255,255,0.6);
  border-radius: var(--rtc-r-sm);
  padding: 10px 14px;
  font-style: italic;
  line-height: 1.55;
}

/* Override default ul rules ONLY inside structured sections — keep checklists consistent */
.rich-text-content .callout-grid ul,
.rich-text-content .split-items ul,
.rich-text-content .checklist-items ul,
.rich-text-content .tl-items ul { display: contents; }

/* Responsive */
@media (max-width: 767px) {
  .rich-text-content .callout-grid,
  .rich-text-content .card-grid,
  .rich-text-content .checklist-split {
    grid-template-columns: 1fr;
  }
  .rich-text-content .split-row,
  .rich-text-content .phase-timeline.split {
    flex-direction: column;
  }
  .rich-text-content .sec-head { font-size: 17px; margin-top: 32px; }
}

/* =============================================================
   Service Details Gallery Carousel (Owl)
   ============================================================= */
.service-details__gallery__carousel .service-details__gallery__item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.service-details__gallery__carousel .service-details__gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.service-details__gallery--single .service-details__gallery__item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.service-details__gallery--single .service-details__gallery__item img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Owl nav buttons */
.service-details__gallery__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
}
.service-details__gallery__carousel.owl-theme .owl-nav button.owl-prev,
.service-details__gallery__carousel.owl-theme .owl-nav button.owl-next {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff !important;
  color: var(--swat-base, #004acd) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 10px;
  transition: all 0.2s ease;
}
.service-details__gallery__carousel.owl-theme .owl-nav button.owl-prev:hover,
.service-details__gallery__carousel.owl-theme .owl-nav button.owl-next:hover {
  background: var(--swat-base, #004acd) !important;
  color: #fff !important;
}

/* Owl dots */
.service-details__gallery__carousel.owl-theme .owl-dots {
  margin-top: 18px;
}
.service-details__gallery__carousel.owl-theme .owl-dots .owl-dot span {
  background: rgba(0,0,0,0.15);
  width: 10px;
  height: 10px;
  margin: 5px;
  transition: all 0.2s ease;
}
.service-details__gallery__carousel.owl-theme .owl-dots .owl-dot.active span,
.service-details__gallery__carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--swat-base, #004acd);
  width: 24px;
  border-radius: 5px;
}