@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Slick Slider*/
.slick-track > * {
  outline: none;
  box-shadow: none;
}

/*Slider*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-slider .slick-track:before, .slick-slider .slick-track:after {
  content: "";
  display: table;
}
.slick-slider .slick-track:after {
  clear: both;
}
.slick-loading .slick-slider .slick-track {
  visibility: hidden;
}

.slider-progress {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.slider-progress .progress {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #009688;
  width: 0%;
  height: 100%;
  transition: width 0.5s linear;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*Arrows*/
.slick-prev,
.slick-next {
  position: absolute;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1;
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  display: inline-block;
}

.slick-arrow {
  background-color: transparent;
  width: 45px;
  height: 45px;
  top: 0;
  left: inherit;
  bottom: 0;
  border: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: auto 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.slick-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev::before {
  background-image: url("../images/icons/left-arrow.svg");
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next::before {
  background-image: url("../images/icons/right-arrow.svg");
}
.slick-arrow:hover {
  background-color: transparent;
  border-color: #009688;
}
.slick-arrow:hover::before {
  color: #009688;
}

.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next.slick-disabled:before {
  opacity: 0.25;
}

/*Dots*/
.slick-dots {
  width: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button {
  display: block;
  background-color: transparent;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #30373e;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: #30373e;
}

/*Slick Lightbox*/
.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9) !important;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-arrow {
  padding: 10px;
  margin: auto 0;
}
.slick-lightbox .slick-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-lightbox .slick-prev {
  left: 20px;
}
.slick-lightbox .slick-prev::before {
  background-image: url("../images/icons/left-arrow-long.svg");
}
.slick-lightbox .slick-next {
  right: 20px;
}
.slick-lightbox .slick-next::before {
  background-image: url("../images/icons/right-arrow-long.svg");
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  max-width: 90%;
  display: inline-block;
  vertical-align: middle;
}
.slick-lightbox-slick-item-inner .slick-lightbox-slick-img {
  width: 100%;
  max-width: 85%;
  display: block;
  margin: 0 auto;
}
.slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
  width: 100%;
  max-width: 85%;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #30373e;
  text-align: left;
  margin: 10px auto 0;
}
@media (max-width: 991px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 12px;
  }
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}
.slick-lightbox-close:focus {
  outline: none;
}
.slick-lightbox-close:before {
  content: "×";
  font-family: "slick";
  font-size: 60px;
  line-height: 60px;
  color: #30373e;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "kensington-icon";
  src: url(../fonts/kensington-icon-1.3.4.eot);
  src: url(../fonts/kensington-icon-1.3.4.eot?#iefix) format("eot"), url(../fonts/kensington-icon-1.3.4.woff2) format("woff2"), url(../fonts/kensington-icon-1.3.4.woff) format("woff"), url(../fonts/kensington-icon-1.3.4.ttf) format("truetype"), url(../fonts/kensington-icon-1.3.4.svg#kensington-icon-1.3.4) format("svg");
}
[class*=kensington-icon-] {
  font-family: "kensington-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
}

.kensington-icon-Award-winning:before {
  content: "\e001";
}

.kensington-icon-Integrity:before {
  content: "\e002";
}

.kensington-icon-account:before {
  content: "\e003";
}

.kensington-icon-alarm:before {
  content: "\e004";
}

.kensington-icon-amazing-value:before {
  content: "\e005";
}

.kensington-icon-angle-down:before {
  content: "\e006";
}

.kensington-icon-angle-left:before {
  content: "\e007";
}

.kensington-icon-angle-right:before {
  content: "\e008";
}

.kensington-icon-angle-up:before {
  content: "\e009";
}

.kensington-icon-appointment-o:before {
  content: "\e00a";
}

.kensington-icon-breadcrumb:before {
  content: "\e00b";
}

.kensington-icon-brochure:before {
  content: "\e00c";
}

.kensington-icon-cabinets:before {
  content: "\e00d";
}

.kensington-icon-calculator1:before {
  content: "\e00e";
}

.kensington-icon-calendar-alt:before {
  content: "\e00f";
}

.kensington-icon-calendar-alt_3:before {
  content: "\e010";
}

.kensington-icon-calendar:before {
  content: "\e011";
}

.kensington-icon-cart:before {
  content: "\e012";
}

.kensington-icon-check-square-solid:before {
  content: "\e013";
}

.kensington-icon-clock:before {
  content: "\e014";
}

.kensington-icon-contract:before {
  content: "\e015";
}

.kensington-icon-coolicon:before {
  content: "\e016";
}

.kensington-icon-deliver_value:before {
  content: "\e017";
}

.kensington-icon-delivery:before {
  content: "\e018";
}

.kensington-icon-diamond:before {
  content: "\e019";
}

.kensington-icon-envelope-1:before {
  content: "\e01a";
}

.kensington-icon-envelope-o:before {
  content: "\e01b";
}

.kensington-icon-exclusive_design:before {
  content: "\e01c";
}

.kensington-icon-expert:before {
  content: "\e01d";
}

.kensington-icon-facebook-o:before {
  content: "\e01e";
}

.kensington-icon-fast-delivery:before {
  content: "\e01f";
}

.kensington-icon-featured:before {
  content: "\e020";
}

.kensington-icon-filter-ul:before {
  content: "\e021";
}

.kensington-icon-filters:before {
  content: "\e022";
}

.kensington-icon-full-service:before {
  content: "\e023";
}

.kensington-icon-google-plus-g:before {
  content: "\e024";
}

.kensington-icon-great-value:before {
  content: "\e025";
}

.kensington-icon-grid-o:before {
  content: "\e026";
}

.kensington-icon-help-center:before {
  content: "\e027";
}

.kensington-icon-home-check:before {
  content: "\e028";
}

.kensington-icon-home1:before {
  content: "\e029";
}

.kensington-icon-instagram-o:before {
  content: "\e02a";
}

.kensington-icon-layer-group:before {
  content: "\e02b";
}

.kensington-icon-left-arrow:before {
  content: "\e02c";
}

.kensington-icon-linkedin-in:before {
  content: "\e02d";
}

.kensington-icon-list-o:before {
  content: "\e02e";
}

.kensington-icon-long-arrow-down:before {
  content: "\e02f";
}

.kensington-icon-long-arrow-right:before {
  content: "\e030";
}

.kensington-icon-long-arrow-up:before {
  content: "\e031";
}

.kensington-icon-map-marker-alt:before {
  content: "\e032";
}

.kensington-icon-minus-o:before {
  content: "\e033";
}

.kensington-icon-mobile-shopping:before {
  content: "\e034";
}

.kensington-icon-money-check:before {
  content: "\e035";
}

.kensington-icon-movies:before {
  content: "\e036";
}

.kensington-icon-partners:before {
  content: "\e037";
}

.kensington-icon-pencil-and-ruler:before {
  content: "\e038";
}

.kensington-icon-perfect-fit:before {
  content: "\e039";
}

.kensington-icon-personalisation:before {
  content: "\e03a";
}

.kensington-icon-phone-alt:before {
  content: "\e03b";
}

.kensington-icon-phone-volume:before {
  content: "\e03c";
}

.kensington-icon-phone:before {
  content: "\e03d";
}

.kensington-icon-phone_iphone:before {
  content: "\e03e";
}

.kensington-icon-play:before {
  content: "\e03f";
}

.kensington-icon-play_2:before {
  content: "\e040";
}

.kensington-icon-plus-o:before {
  content: "\e041";
}

.kensington-icon-professional_team:before {
  content: "\e042";
}

.kensington-icon-quote-left:before {
  content: "\e043";
}

.kensington-icon-reasonable_prices:before {
  content: "\e044";
}

.kensington-icon-refrigerator-o:before {
  content: "\e045";
}

.kensington-icon-right-arrow-cicrle:before {
  content: "\e046";
}

.kensington-icon-right-arrow:before {
  content: "\e047";
}

.kensington-icon-safe:before {
  content: "\e048";
}

.kensington-icon-satisfaction:before {
  content: "\e049";
}

.kensington-icon-send-back:before {
  content: "\e04a";
}

.kensington-icon-setting:before {
  content: "\e04b";
}

.kensington-icon-share-all:before {
  content: "\e04c";
}

.kensington-icon-sliders-v:before {
  content: "\e04d";
}

.kensington-icon-smart-care:before {
  content: "\e04e";
}

.kensington-icon-soft-close:before {
  content: "\e04f";
}

.kensington-icon-storage:before {
  content: "\e050";
}

.kensington-icon-team:before {
  content: "\e051";
}

.kensington-icon-th-large-o:before {
  content: "\e052";
}

.kensington-icon-ticket-simple:before {
  content: "\e053";
}

.kensington-icon-tools:before {
  content: "\e054";
}

.kensington-icon-twitter-o:before {
  content: "\e055";
}

.kensington-icon-user-o:before {
  content: "\e056";
}

.kensington-icon-users-medical:before {
  content: "\e057";
}

.kensington-icon-youtube-o:before {
  content: "\e058";
}

.kensington-icon-adobe:before {
  content: "\e059";
}

.kensington-icon-amazon:before {
  content: "\e05a";
}

.kensington-icon-android:before {
  content: "\e05b";
}

.kensington-icon-angular:before {
  content: "\e05c";
}

.kensington-icon-apper:before {
  content: "\e05d";
}

.kensington-icon-apple:before {
  content: "\e05e";
}

.kensington-icon-atlassian:before {
  content: "\e05f";
}

.kensington-icon-behance:before {
  content: "\e060";
}

.kensington-icon-bitbucket:before {
  content: "\e061";
}

.kensington-icon-bitcoin:before {
  content: "\e062";
}

.kensington-icon-bity:before {
  content: "\e063";
}

.kensington-icon-bluetooth:before {
  content: "\e064";
}

.kensington-icon-btc:before {
  content: "\e065";
}

.kensington-icon-centos:before {
  content: "\e066";
}

.kensington-icon-chrome:before {
  content: "\e067";
}

.kensington-icon-codepen:before {
  content: "\e068";
}

.kensington-icon-cpanel:before {
  content: "\e069";
}

.kensington-icon-discord:before {
  content: "\e06a";
}

.kensington-icon-dochub:before {
  content: "\e06b";
}

.kensington-icon-docker:before {
  content: "\e06c";
}

.kensington-icon-dribbble:before {
  content: "\e06d";
}

.kensington-icon-dropbox:before {
  content: "\e06e";
}

.kensington-icon-drupal:before {
  content: "\e06f";
}

.kensington-icon-ebay:before {
  content: "\e070";
}

.kensington-icon-facebook-f:before {
  content: "\e071";
}

.kensington-icon-facebook:before {
  content: "\e072";
}

.kensington-icon-figma:before {
  content: "\e073";
}

.kensington-icon-firefox:before {
  content: "\e074";
}

.kensington-icon-google-plus:before {
  content: "\e075";
}

.kensington-icon-google:before {
  content: "\e076";
}

.kensington-icon-grunt:before {
  content: "\e077";
}

.kensington-icon-gulp:before {
  content: "\e078";
}

.kensington-icon-html5:before {
  content: "\e079";
}

.kensington-icon-joomla:before {
  content: "\e07a";
}

.kensington-icon-link-brand:before {
  content: "\e07b";
}

.kensington-icon-linkedin:before {
  content: "\e07c";
}

.kensington-icon-mailchimp:before {
  content: "\e07d";
}

.kensington-icon-opencart:before {
  content: "\e07e";
}

.kensington-icon-paypal:before {
  content: "\e07f";
}

.kensington-icon-pinterest-p:before {
  content: "\e080";
}

.kensington-icon-reddit:before {
  content: "\e081";
}

.kensington-icon-skype:before {
  content: "\e082";
}

.kensington-icon-slack:before {
  content: "\e083";
}

.kensington-icon-snapchat:before {
  content: "\e084";
}

.kensington-icon-spotify:before {
  content: "\e085";
}

.kensington-icon-trello:before {
  content: "\e086";
}

.kensington-icon-twitter:before {
  content: "\e087";
}

.kensington-icon-vimeo:before {
  content: "\e088";
}

.kensington-icon-whatsapp:before {
  content: "\e089";
}

.kensington-icon-wordpress:before {
  content: "\e08a";
}

.kensington-icon-yoast:before {
  content: "\e08b";
}

.kensington-icon-youtube:before {
  content: "\e08c";
}

.kensington-icon-360:before {
  content: "\e08d";
}

.kensington-icon-arrow-down:before {
  content: "\e08e";
}

.kensington-icon-arrow-left:before {
  content: "\e08f";
}

.kensington-icon-arrow-right:before {
  content: "\e090";
}

.kensington-icon-arrow-up:before {
  content: "\e091";
}

.kensington-icon-bars:before {
  content: "\e092";
}

.kensington-icon-caret-down:before {
  content: "\e093";
}

.kensington-icon-caret-left:before {
  content: "\e094";
}

.kensington-icon-caret-right:before {
  content: "\e095";
}

.kensington-icon-caret-up:before {
  content: "\e096";
}

.kensington-icon-cart-empty:before {
  content: "\e097";
}

.kensington-icon-check-square:before {
  content: "\e098";
}

.kensington-icon-chevron-down:before {
  content: "\e099";
}

.kensington-icon-chevron-left:before {
  content: "\e09a";
}

.kensington-icon-chevron-right:before {
  content: "\e09b";
}

.kensington-icon-chevron-up:before {
  content: "\e09c";
}

.kensington-icon-circle:before {
  content: "\e09d";
}

.kensington-icon-cloud-download-alt:before {
  content: "\e09e";
}

.kensington-icon-comment:before {
  content: "\e09f";
}

.kensington-icon-comments:before {
  content: "\e0a0";
}

.kensington-icon-compare:before {
  content: "\e0a1";
}

.kensington-icon-compare1:before {
  content: "\e0a2";
}

.kensington-icon-contact:before {
  content: "\e0a3";
}

.kensington-icon-credit-card:before {
  content: "\e0a4";
}

.kensington-icon-dot-circle:before {
  content: "\e0a5";
}

.kensington-icon-edit:before {
  content: "\e0a6";
}

.kensington-icon-envelope:before {
  content: "\e0a7";
}

.kensington-icon-expand-alt:before {
  content: "\e0a8";
}

.kensington-icon-external-link-alt:before {
  content: "\e0a9";
}

.kensington-icon-file-alt:before {
  content: "\e0aa";
}

.kensington-icon-file-archive:before {
  content: "\e0ab";
}

.kensington-icon-filter:before {
  content: "\e0ac";
}

.kensington-icon-folder-open:before {
  content: "\e0ad";
}

.kensington-icon-folder:before {
  content: "\e0ae";
}

.kensington-icon-frown:before {
  content: "\e0af";
}

.kensington-icon-gift:before {
  content: "\e0b0";
}

.kensington-icon-grid:before {
  content: "\e0b1";
}

.kensington-icon-grip-horizontal:before {
  content: "\e0b2";
}

.kensington-icon-heart-fill:before {
  content: "\e0b3";
}

.kensington-icon-heart:before {
  content: "\e0b4";
}

.kensington-icon-history:before {
  content: "\e0b5";
}

.kensington-icon-home:before {
  content: "\e0b6";
}

.kensington-icon-info-circle:before {
  content: "\e0b7";
}

.kensington-icon-instagram:before {
  content: "\e0b8";
}

.kensington-icon-level-up-alt:before {
  content: "\e0b9";
}

.kensington-icon-list:before {
  content: "\e0ba";
}

.kensington-icon-map-marker-check:before {
  content: "\e0bb";
}

.kensington-icon-meh:before {
  content: "\e0bc";
}

.kensington-icon-minus-circle:before {
  content: "\e0bd";
}

.kensington-icon-minus:before {
  content: "\e0be";
}

.kensington-icon-mobile-android-alt:before {
  content: "\e0bf";
}

.kensington-icon-money-bill:before {
  content: "\e0c0";
}

.kensington-icon-pencil-alt:before {
  content: "\e0c1";
}

.kensington-icon-plus-circle:before {
  content: "\e0c2";
}

.kensington-icon-plus:before {
  content: "\e0c3";
}

.kensington-icon-quickview:before {
  content: "\e0c4";
}

.kensington-icon-random:before {
  content: "\e0c5";
}

.kensington-icon-reply-all:before {
  content: "\e0c6";
}

.kensington-icon-reply:before {
  content: "\e0c7";
}

.kensington-icon-search-plus:before {
  content: "\e0c8";
}

.kensington-icon-search:before {
  content: "\e0c9";
}

.kensington-icon-shield-check:before {
  content: "\e0ca";
}

.kensington-icon-shopping-basket:before {
  content: "\e0cb";
}

.kensington-icon-shopping-cart:before {
  content: "\e0cc";
}

.kensington-icon-sign-out-alt:before {
  content: "\e0cd";
}

.kensington-icon-smile:before {
  content: "\e0ce";
}

.kensington-icon-spinner:before {
  content: "\e0cf";
}

.kensington-icon-square:before {
  content: "\e0d0";
}

.kensington-icon-star:before {
  content: "\e0d1";
}

.kensington-icon-store-2:before {
  content: "\e0d2";
}

.kensington-icon-store:before {
  content: "\e0d3";
}

.kensington-icon-sync:before {
  content: "\e0d4";
}

.kensington-icon-tachometer-alt:before {
  content: "\e0d5";
}

.kensington-icon-th-large:before {
  content: "\e0d6";
}

.kensington-icon-th-list:before {
  content: "\e0d7";
}

.kensington-icon-thumbtack:before {
  content: "\e0d8";
}

.kensington-icon-ticket:before {
  content: "\e0d9";
}

.kensington-icon-times-circle:before {
  content: "\e0da";
}

.kensington-icon-times:before {
  content: "\e0db";
}

.kensington-icon-trophy-alt:before {
  content: "\e0dc";
}

.kensington-icon-truck:before {
  content: "\e0dd";
}

.kensington-icon-user-headset:before {
  content: "\e0de";
}

.kensington-icon-user-shield:before {
  content: "\e0df";
}

.kensington-icon-user:before {
  content: "\e0e0";
}

.kensington-icon-video:before {
  content: "\e0e1";
}

.kensington-icon-wishlist-empty:before {
  content: "\e0e2";
}

.kensington-social ul {
  margin: 0;
  list-style-type: none;
}

.kensington-social ul li {
  display: inline-block;
  margin-right: 10px;
  line-height: 1;
}

.kensington-social ul li:last-child {
  margin-right: 0;
}

.kensington-social ul li a:before {
  position: relative;
  font-family: "kensington-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  content: "\e07b";
}

.kensington-social ul li a[href*=twitter]:before {
  content: "\e087";
  color: #1da1f2;
}

.kensington-social ul li a[href*=instagram]:before {
  content: "\e0b8";
  color: #262626;
}

.kensington-social ul li a[href*=docker]:before {
  content: "\e06c";
}

.kensington-social ul li a[href*=dochub]:before {
  content: "\e06b";
}

.kensington-social ul li a[href*=yelp]:before {
  content: "";
  color: #af0606;
}

.kensington-social ul li a[href*=flickr]:before {
  content: "";
  color: #0063dc;
}

.kensington-social ul li a[href*=github]:before {
  content: "";
  color: #333;
}

.kensington-social ul li a[href*=dribbble]:before {
  content: "\e06d";
  color: #ea4c89;
}

.kensington-social ul li a[href*=wordpress]:before {
  content: "\e08a";
  color: #21759b;
}

.kensington-social ul li a[href*=tumblr]:before {
  content: "";
  color: #35465c;
}

.kensington-social ul li a[href*=angular]:before {
  content: "\e05c";
}

.kensington-social ul li a[href*=atlassian]:before {
  content: "\e05f";
}

.kensington-social ul li a[href*=snapchat]:before {
  content: "\e084";
  color: #fffc00;
}

.kensington-social ul li a[href*=apper]:before {
  content: "\e05d";
}

.kensington-social ul li a[href*=codepen]:before {
  content: "\e068";
}

.kensington-social ul li a[href*=gulp]:before {
  content: "\e078";
}

.kensington-social ul li a[href*=cpanel]:before {
  content: "\e069";
}

.kensington-social ul li a[href*=skype]:before {
  content: "\e082";
  color: #00aff0;
}

.kensington-social ul li a[href*=reddit]:before {
  content: "\e081";
  color: #ff4500;
}

.kensington-social ul li a[href*=whatsapp]:before {
  content: "\e089";
}

.kensington-social ul li a[href*=slack]:before {
  content: "\e083";
}

.kensington-social ul li a[href*=amazon]:before {
  content: "\e05a";
}

.kensington-social ul li a[href*=android]:before {
  content: "\e05b";
}

.kensington-social ul li a[href*=grunt]:before {
  content: "\e077";
}

.kensington-social ul li a[href*=firefox]:before {
  content: "\e074";
}

.kensington-social ul li a[href*=adobe]:before {
  content: "\e059";
}

.kensington-social ul li a[href*=behance]:before {
  content: "\e060";
}

.kensington-social ul li a[href*=dropbox]:before {
  content: "\e06e";
}

.kensington-social ul li a[href*=facebook]:before {
  content: "\e072";
  color: #3b5998;
}

.kensington-social ul li a[href*=linkedin]:before {
  content: "\e07c";
  color: #0077b5;
}

.kensington-social ul li a[href*=paypal]:before {
  content: "\e07f";
}

.kensington-social ul li a[href*=trello]:before {
  content: "\e086";
}

.kensington-social ul li a[href*=vimeo]:before {
  content: "\e088";
  color: #1ab7ea;
}

.kensington-social ul li a[href*=youtube]:before {
  content: "\e08c";
  color: #cd201f;
}

.kensington-social ul li a[href*=apple]:before {
  content: "\e05e";
  color: #999;
}

.kensington-social ul li a[href*=bitbucket]:before {
  content: "\e061";
}

.kensington-social ul li a[href*=bitcoin]:before {
  content: "\e062";
}

.kensington-social ul li a[href*=bluetooth]:before {
  content: "\e064";
}

.kensington-social ul li a[href*=bity]:before {
  content: "\e063";
}

.kensington-social ul li a[href*="google/chrome"]:before {
  content: "\e067";
}

.kensington-social ul li a[href*=drupal]:before {
  content: "\e06f";
}

.kensington-social ul li a[href*=html5]:before {
  content: "\e079";
}

.kensington-social ul li a[href*=mailchimp]:before {
  content: "\e07d";
}

.kensington-social ul li a[href*=jenkins]:before {
  content: "";
}

.kensington-social ul li a[href*=spotify]:before {
  content: "\e085";
  color: #2ebd59;
}

.kensington-social ul li a[href*=ebay]:before {
  content: "\e070";
}

.kensington-social ul li a[href*=telegram]:before {
  content: "";
  color: #2ca5e0;
}

.kensington-social ul li a[href*=yoast]:before {
  content: "\e08b";
}

.kensington-social ul li a[href*=btc-e]:before {
  content: "";
}

.kensington-social ul li a[href*=discord]:before {
  content: "\e06a";
}

.kensington-social ul li a[href*=google]:before {
  content: "\e076";
  color: #dd4b39;
}

.kensington-social ul li a[href*=google-plus]:before {
  content: "\e075";
}

.kensington-social ul li a[href*=figma]:before {
  content: "\e073";
}

.kensington-social ul li a[href*=joomla]:before {
  content: "\e07a";
}

.kensington-social ul li a[href*=opencart]:before {
  content: "\e07e";
}

.kensington-social ul li a[href*=pinterest]:before {
  content: "\e080";
  color: #bd081c;
}

.kensington-social ul li a[href*=vimeo]:before {
  content: "\e088";
  color: #1ab7ea;
}

.kensington-social ul li a[href*=centos]:before {
  content: "\e066";
}

.kensington-social ul li a[href*=whatsapp]:before {
  content: "\e089";
}

:root {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 30px;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 991px) {
  .container-fluid {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1360px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1360px) {
  .container-xl {
    max-width: 1520px;
  }
}

.small-container {
  width: 100%;
  max-width: 85%;
  margin-inline: auto;
}
@media (max-width: 991px) {
  .small-container {
    max-width: 100%;
  }
}

.row {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-1 * var(--bs-gutter-x));
  margin-left: calc(-1 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
  .gap {
    --bs-gutter-x: 30px;
  }
  .small-gap {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 20px;
  }
}
@media (max-width: 991px) {
  .small-gap {
    --bs-gutter-y: 10px;
  }
}
@media (min-width: 992px) {
  .order-1 {
    order: 1;
  }
}
@media (max-width: 1199px) {
  .order-2 {
    order: 2;
  }
}
.gap-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-0 {
  --bs-gutter-x: 0;
}

.g-5 {
  --bs-gutter-x: 1.8rem;
}

.col {
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

/*Max Style*/
@media (max-width: 575px) {
  .col-xs {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xs-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/*Min Style*/
@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1500px) {
  .col-xxl {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/* CSS Document */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: #30373e;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
  box-sizing: border-box;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
body.scroll {
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

main,
header,
section,
footer {
  width: 100%;
}

.py-0 {
  padding-block: 0 !important;
}

.px-0 {
  padding-inline: 0 !important;
}

@media (min-width: 992px) {
  .desktop-px-0 {
    padding-inline: 0 !important;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    margin: 0 0 15px;
  }
}

h1,
.h1 {
  font-size: 65px;
}
@media (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}

h2,
.h2 {
  font-size: 50px;
}
@media (max-width: 1399px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 45px;
}
@media (max-width: 1399px) {
  h3,
  .h3 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  h3,
  .h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  h3,
  .h3 {
    font-size: 30px;
  }
}

h4,
.h4 {
  font-size: 35px;
}
@media (max-width: 1399px) {
  h4,
  .h4 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  h4,
  .h4 {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  h4,
  .h4 {
    font-size: 22px;
  }
}

h5,
.h5 {
  font-size: 26px;
}
@media (max-width: 1399px) {
  h5,
  .h5 {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  h5,
  .h5 {
    font-size: 18px;
  }
}

h6,
.h6 {
  font-size: 22px;
}
@media (max-width: 1399px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  h6,
  .h6 {
    font-size: 16px;
  }
}

h6.subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 3.5px;
  margin-bottom: 10px;
}

p {
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px;
}
p:last-of-type {
  margin-bottom: 0;
}
p strong {
  font-weight: 700;
}
p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}

section li {
  font-weight: 400;
  line-height: 1.6;
}
section li strong {
  font-weight: 700;
}
section li a {
  text-decoration: underline;
}
section li a:hover {
  text-decoration: none;
}

ul {
  list-style: disc;
}

ul,
ol {
  padding-left: 20px;
  margin: 0;
}

section ul,
section ol {
  margin-top: 20px;
  margin-bottom: 20px;
}
section ul li + li,
section ol li + li {
  margin-top: 5px;
}

hr {
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  margin: 1.5rem 0;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
img.outline {
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -20px;
}
@media (max-width: 575px) {
  img.outline {
    outline-offset: -10px;
  }
}

/*Outline Hover Animation On Image*/
.outline-img {
  height: 100%;
  overflow: hidden;
}
.outline-img.h-50 {
  height: 50%;
}
.outline-img.h-60 {
  height: 60%;
}
.outline-img.h-70 {
  height: 70%;
}
.outline-img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.35s;
  -o-object-fit: cover;
  object-fit: cover;
}
.outline-img a {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.outline-img a:after, .outline-img a:before {
  content: "";
  position: absolute;
  border-color: rgba(200, 200, 200, 0);
  border-style: solid;
  transform: scale(0.9);
  transition: transform 0.35s, all 0.7s;
  z-index: 2;
}
.outline-img a:after {
  width: 50%;
  height: 100%;
  left: 50%;
  margin-left: -25%;
  top: 0;
  border-width: 1px 0;
}
.outline-img a:before {
  width: 100%;
  height: 50%;
  left: 50%;
  margin-left: -50%;
  top: 25%;
  border-width: 0 1px;
}
.outline-img a:hover img {
  transform: scale(1.09);
}
.outline-img a:hover:after, .outline-img a:hover:before {
  border-color: #ffffff;
}
.outline-img a:hover:before {
  height: 100%;
  top: 0;
}
.outline-img a:hover:after {
  width: 100%;
  margin-left: -50%;
}

input:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

figure {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  outline: none !important;
  color: inherit;
}

.no-bullets ul, .no-bullets ol {
  list-style: none;
  padding: 0;
}

a,
button {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button {
  background: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit] {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

select {
  background-image: url("../images/icons/arrow_drop_down.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 12px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #30373e;
  font-weight: 300 !important;
}

/*Number Field*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea:focus,
input:focus,
select:focus,
a:focus,
button:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.full-width {
  width: 100%;
}

.w-100,
.h-100 {
  width: 100px;
  height: 100px;
}
@media (max-width: 1199px) {
  .w-100,
  .h-100 {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 991px) {
  .w-100,
  .h-100 {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .w-100,
  .h-100 {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .w-100,
  .h-100 {
    width: 40px;
    height: 40px;
  }
}

.text-uppercase {
  text-transform: uppercase;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-Bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

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

/*Bootstrap CSS*/
.relative {
  position: relative;
}

.z-index {
  z-index: 1;
}

.d-none {
  display: none !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.my-40 {
  margin-block: 40px;
}
@media (max-width: 991px) {
  .my-40 {
    margin-block: 30px;
  }
}

.my-50 {
  margin-block: 50px;
}
@media (max-width: 991px) {
  .my-50 {
    margin-block: 40px;
  }
}
@media (max-width: 767px) {
  .my-50 {
    margin-block: 30px;
  }
}

.mt-1 {
  margin-top: 1.2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1.2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pb-50 {
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .pb-50 {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .mb-pt-none {
    padding-top: 0 !important;
  }
  .sm-mb-pt-none {
    padding-top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .ps-2 {
    padding-left: 2rem !important;
  }
  .pe-2 {
    padding-right: 2rem !important;
  }
  .ps-3 {
    padding-left: 3rem !important;
  }
  .pe-3 {
    padding-right: 3rem !important;
  }
  .ps-4 {
    padding-left: 4rem !important;
  }
  .pe-4 {
    padding-right: 4rem !important;
  }
  .ps-5 {
    padding-left: 5rem !important;
  }
  .pe-5 {
    padding-right: 5rem !important;
  }
}
.align-item-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-item-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.d-flex {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.hidden {
  overflow-x: hidden;
}

/*Outline Text*/
.outline-text {
  font-size: 120px;
  font-weight: 700;
  color: transparent; /* Hide fill */
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1); /* Outline color */
}

/*Common Padding*/
.extraCommonPY {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1199px) {
  .extraCommonPY {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .extraCommonPY {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .extraCommonPY {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.extraCommonPT {
  padding-top: 150px;
}
@media (max-width: 1199px) {
  .extraCommonPT {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  .extraCommonPT {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .extraCommonPT {
    padding-top: 70px;
  }
}

.extraCommonPB {
  padding-bottom: 150px;
}
@media (max-width: 1199px) {
  .extraCommonPB {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .extraCommonPB {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .extraCommonPB {
    padding-bottom: 70px;
  }
}

.commonPY {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .commonPY {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .commonPY {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .commonPY {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.commonPT {
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .commonPT {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .commonPT {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .commonPT {
    padding-top: 50px;
  }
}

.commonPB {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .commonPB {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .commonPB {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .commonPB {
    padding-bottom: 50px;
  }
}

.largeParagraph.m-top {
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .largeParagraph.m-top {
    margin-top: 1rem;
  }
}
.largeParagraph p {
  font-size: 24px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .largeParagraph p {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .largeParagraph p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .largeParagraph p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .largeParagraph p {
    font-size: 16px;
  }
}

/*Heading Text*/
.headingText {
  position: relative;
  margin-bottom: 4rem;
}
.headingText--mb-0 h2, .headingText--mb-0 h3, .headingText--mb-0 h4, .headingText--mb-0 h5, .headingText--mb-0 h6 {
  margin-bottom: 0;
}
.headingText--teal h2, .headingText--teal h3, .headingText--teal h4, .headingText--teal h5, .headingText--teal h6 {
  color: #009688;
}
.headingText--teal h2 a, .headingText--teal h3 a, .headingText--teal h4 a, .headingText--teal h5 a, .headingText--teal h6 a {
  color: #009688;
}
.headingText--white h2, .headingText--white h3, .headingText--white h4, .headingText--white h5, .headingText--white h6 {
  color: #ffffff;
}
.headingText--white h2 a, .headingText--white h3 a, .headingText--white h4 a, .headingText--white h5 a, .headingText--white h6 a {
  color: #ffffff;
}
.headingText--uppercase h2, .headingText--uppercase h3, .headingText--uppercase h4, .headingText--uppercase h5, .headingText--uppercase h6 {
  text-transform: uppercase;
}
.headingText.line-height h2, .headingText.line-height h3, .headingText.line-height h4, .headingText.line-height h5, .headingText.line-height h6 {
  line-height: 1.3;
}
.headingText.italic {
  font-style: italic;
}
.headingText.light h2, .headingText.light h3, .headingText.light h4, .headingText.light h5, .headingText.light h6 {
  font-weight: 300;
}
.headingText.regular h2, .headingText.regular h3, .headingText.regular h4, .headingText.regular h5, .headingText.regular h6 {
  font-weight: 400;
}
.headingText.medium h2, .headingText.medium h3, .headingText.medium h4, .headingText.medium h5, .headingText.medium h6 {
  font-weight: 500;
}
.headingText.semi-bold h2, .headingText.semi-bold h3, .headingText.semi-bold h4, .headingText.semi-bold h5, .headingText.semi-bold h6 {
  font-weight: 600;
}
.headingText.bold h2, .headingText.bold h3, .headingText.bold h4, .headingText.bold h5, .headingText.bold h6 {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .headingText p {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}
.headingText h6 {
  margin-bottom: 10px;
}

/*Common Button*/
.buttonOuter.m-top {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .buttonOuter.m-top {
    margin-top: 20px;
  }
}
.buttonOuter.m-top-extra {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .buttonOuter.m-top-extra {
    margin-top: 30px;
  }
}
.buttonOuter.multipleButtons {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 30px;
}
@media (max-width: 767px) {
  .buttonOuter.multipleButtons {
    gap: 8px 20px;
  }
}

.btn {
  position: relative;
  background-color: #009688;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 100%;
  text-align: center;
  padding: 16px 30px;
  border-width: 1px;
  border-style: solid;
  border-color: #009688;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: transparent;
  color: #009688;
}
.btn.wide {
  min-width: 180px;
}
@media (max-width: 575px) {
  .btn.wide {
    min-width: 160px;
  }
}
.btn.btn-black {
  background-color: #30373e;
  border-color: #30373e;
}
.btn.btn-black:hover {
  background-color: #009688;
  color: #ffffff;
  border-color: #009688;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #30373e;
  border-color: #ffffff;
}
.btn.btn-white:hover {
  background-color: transparent;
  color: #ffffff;
}
.btn.btn-outline-dark {
  background-color: transparent;
  color: #30373e;
  border-color: #30373e;
}
.btn.btn-outline-dark:hover {
  background-color: #30373e;
  color: #ffffff;
}
.btn.btn-text {
  background-color: transparent;
  color: #30373e;
  padding: 0;
  border: 0;
}
.btn.btn-text:hover {
  color: #009688;
}

/*Icon Listing*/
.iconListing ul {
  padding-left: 0;
  list-style: none;
}
.iconListing ul li {
  position: relative;
  padding-left: 30px;
}
.iconListing ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/tick.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.iconListing--two ul {
  column-count: 2;
}
@media (max-width: 360px) {
  .iconListing--two ul {
    column-count: 1;
  }
}
.iconListing--three ul {
  column-count: 3;
}
@media (max-width: 767px) {
  .iconListing--three ul {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .iconListing--three ul {
    column-count: 1;
  }
}
.iconListing--four ul {
  column-count: 4;
}
@media (max-width: 991px) {
  .iconListing--four ul {
    column-count: 3;
  }
}
@media (max-width: 767px) {
  .iconListing--four ul {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .iconListing--four ul {
    column-count: 1;
  }
}

/*Form*/
.form-group {
  /*Checkbox*/
}
.form-group label {
  display: block;
  font-size: 14px;
  color: #30373e;
  font-weight: 400;
  margin-bottom: 5px;
}
.form-group .form-control {
  width: 100%;
  height: 50px;
  background-color: #30373e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: #30373e;
  font-weight: 300;
  border-width: 1px;
  border-style: solid;
  border-color: #30373e;
  border-radius: 0;
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .form-group .form-control {
    height: 45px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .form-group .form-control {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .form-group .form-control {
    height: 40px;
  }
}
.form-group .form-control::placeholder {
  opacity: 1;
  color: #30373e;
}
.form-group .form-control.form-control-line {
  background-color: transparent;
  padding-inline: 0;
  border-width: 0 0 1px;
}
.form-group .form-control.form-control-line::placeholder {
  color: #30373e;
}
.form-group input[type=search].form-control,
.form-group input.search-control {
  background-image: url("../images/icons/arrow_drop_down.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 22px;
}
@media (max-width: 767px) {
  .form-group input[type=search].form-control,
  .form-group input.search-control {
    background-size: 18px;
  }
}
.form-group select.form-control {
  cursor: pointer;
}
.form-group select.form-control option {
  color: #30373e;
}
.form-group textarea.form-control {
  height: 152px;
  padding-top: 20px;
  resize: none;
}
@media (max-width: 767px) {
  .form-group textarea.form-control {
    height: 130px;
  }
}
.form-group .checkbox-label {
  display: inline-flex;
  gap: 15px;
  margin: 0;
}
.form-group .checkbox-label .checkbox-input {
  display: none;
}
.form-group .checkbox-label .checkbox-input + .checkbox-icon-wrapper {
  background-color: #30373e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #30373e;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color ease 0.3s;
}
.form-group .checkbox-label .checkbox-input + .checkbox-icon-wrapper .checkbox-icon {
  transition: opacity ease 0.3s;
  opacity: 0;
  color: #30373e;
  font-size: 10px;
}
.form-group .checkbox-label .checkbox-input:checked + .checkbox-icon-wrapper {
  background-color: #009688;
  border-color: #009688;
}
.form-group .checkbox-label .checkbox-input:checked + .checkbox-icon-wrapper .checkbox-icon {
  opacity: 1;
}
.form-group .checkbox-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #30373e;
  cursor: pointer;
}

.form-button {
  margin-top: 30px;
}

/*Pagination*/
.pagination {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.pagination__button {
  background-color: #009688;
  width: 50px;
  height: 50px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 25px;
  color: #30373e;
}
.pagination__button img {
  width: 100%;
}
.pagination__button:hover {
  background-color: #009688;
}

/*Parallax*/
.parallax {
  opacity: 0;
  transform: translateY(50px);
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.parallax.show {
  opacity: 1;
  transform: translateY(0);
}

.parallaxRight {
  transform: translateX(50px);
}

.parallaxLeft {
  transform: translateX(-50px);
}

/* Delay system */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/*Bounce*/
.bounce {
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
  -ms-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
/* CSS Animations*/
.fadeIn {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  /* animation-iteration-count: 1; */
}
.fadeIn.one {
  animation-delay: 0.5s;
}
.fadeIn.two {
  animation-delay: 1s;
}
.fadeIn.three {
  animation-delay: 1.5s;
}
.fadeIn.four {
  animation-delay: 2s;
}
.fadeIn.five {
  animation-delay: 2.5s;
}
.fadeIn.six {
  animation-delay: 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Header*/
.header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header.sticky {
  -webkit-box-shadow: 0px 0 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 4px 0 rgba(0, 0, 0, 0.1);
}
.header__inner {
  position: relative;
  padding: 25px;
}
.header .logo {
  position: relative;
  z-index: 11;
}
.header .logo a {
  display: inline-block;
}
.header .logo img {
  max-width: 92%;
  max-height: 33px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1499px) {
  .header .logo img {
    max-height: 60px;
  }
}
@media (max-width: 1199px) {
  .header .logo img {
    max-height: 55px;
  }
}
@media (max-width: 991px) {
  .header .logo img {
    max-height: 50px;
  }
}
.header.active .logo {
  z-index: 101;
}
.header.hide {
  z-index: -1;
}

.navigation {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navigation__inner {
  background-color: transparent;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1199px) {
  .navigation__inner {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
	
  .navigation__inner {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-top: 5px solid #009688;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
    -moz-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .navigation__inner > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-top: 40px;
  }
  .navigation__inner.toggle {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar {
    height: calc(100% - 6rem);
    margin-top: 6rem;
    padding: 0 15px 30px;
    overflow-y: auto;
  }
}
.navigation #navbar > ul {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 0 40px;
  margin: 0;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px 30px;
  }
}
.navigation #navbar > ul > li {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul > li {
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.navigation #navbar li {
  position: relative;
  margin: 0;
}
.navigation #navbar li > a {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .navigation #navbar li > a {
    padding: 5px 0;
  }
  .navigation #navbar li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #009688;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar li > a {
    font-size: 14px;
    display: block;
  }
}
.navigation #navbar li .dropdownMenu {
  padding: 15px;
  -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu {
    border-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navigation #navbar li .dropdownMenu li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.navigation #navbar li .dropdownMenu a {
  font-size: 14px;
  color: #30373e;
  padding: 8px 0;
  letter-spacing: normal;
  line-height: normal;
}
.navigation #navbar li .dropdownMenu a::before {
  display: none;
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu a {
    font-size: 13px;
    color: #30373e;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu.megaMenu .container {
    padding-inline: 0;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 25%;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 33.3333%;
  }
}
@media (max-width: 767px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 50%;
  }
}
@media (max-width: 479px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 100%;
  }
}
.navigation #navbar li .dropdownMenu .menuTitle {
  min-height: 60px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.navigation #navbar li.megaMenuHolder {
  position: inherit;
}
.navigation #navbar li.dropdownHolder > a:after {
  content: "";
  border-top: #30373e 5px solid;
  border-left: transparent 5px solid;
  border-right: transparent 5px solid;
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .navigation #navbar li.dropdownHolder > a:after {
    display: none;
  }
}
.navigation #navbar li.dropdownHolder:hover > a:after {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navigation #navbar li .navbar_menuCarot {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 15px;
  margin-block: auto;
  display: none;
}
@media (max-width: 1199px) {
  .navigation #navbar li .navbar_menuCarot {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
  }
}
.navigation #navbar li .navbar_menuCarot svg {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation #navbar li .navbar_menuCarot svg path {
  fill: #30373e;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation #navbar li:hover > a, .navigation #navbar li.active > a {
  color: #009688;
}
.navigation #navbar li:hover > a::before, .navigation #navbar li.active > a::before {
  width: 100%;
}
.navigation #navbar li:hover > a:after, .navigation #navbar li.active > a:after {
  border-top-color: #009688;
}
@media (min-width: 1200px) {
  .navigation #navbar li:hover .navbar_menuCarot svg, .navigation #navbar li.active .navbar_menuCarot svg {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .navigation #navbar li:hover .navbar_menuCarot svg path, .navigation #navbar li.active .navbar_menuCarot svg path {
    fill: #30373e;
  }
}
@media (min-width: 1200px) {
  .navigation #navbar li.dropdownHolder .dropdownMenu {
    background-color: #30373e;
    min-width: 170px;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    black-space: nowrap;
    z-index: 99;
    -moz-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .navigation #navbar li.dropdownHolder .dropdownMenu.megaMenu {
    width: 100%;
    padding: 40px 0;
  }
  .navigation #navbar li.dropdownHolder:hover .dropdownMenu {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar li.dropdownHolder {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navigation #navbar li.dropdownHolder .navbar_menuCarot {
    top: 3px;
    right: 0;
    background-color: transparent;
    width: 18px;
    height: 18px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    margin-block: 0;
  }
  .navigation #navbar li.dropdownHolder .navbar_menuCarot svg {
    width: 10px;
  }
  .navigation #navbar li.dropdownHolder .navbar_menuCarot.active svg {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .navigation #navbar li.dropdownHolder .dropdownMenu {
    display: none;
    width: 100%;
    padding: 5px 0 0 15px;
  }
  .navigation #navbar li.dropdownHolder .dropdownMenu::before {
    content: none;
  }
  .navigation #navbar li.dropdownHolder:hover .navbar__menuCarot svg {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.widgets {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.widgets .header-group-action {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
}
.widgets .header-group-action .cart-contents {
  position: relative;
  display: inline-block;
}
.widgets .header-group-action .cart-contents .count {
  position: absolute;
  top: -5px;
  left: 10px;
  background-color: #009688;
  display: inline-block;
  vertical-align: text-top;
  margin-left: 2px;
  line-height: 1.5;
  font-size: 0.75rem;
  text-align: center;
  width: 18px;
  height: 18px;
  color: #ffffff;
  letter-spacing: 0;
  border-radius: 50%;
}
.widgets .header-group-action .kensington-icon-cart {
  font-size: 1.3rem;
}

/*Mobile Navigation*/
.menu-icon {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 18px;
  height: auto;
  cursor: pointer;
  margin-left: 0.5rem;
}
.menu-icon span {
  position: relative;
  background-color: #30373e;
  width: 100%;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-icon span:nth-child(2) {
  width: 75%;
  margin: 4px 0;
}
.menu-icon:hover span {
  background-color: #009688;
}
.menu-icon:hover span:nth-child(2) {
  width: 100%;
}
.menu-icon.active {
  z-index: 101;
}
.menu-icon.active span {
  background-color: #009688;
}
.menu-icon.active span:nth-child(1) {
  -moz-transform: rotate(45deg) translate(4px, 4px);
  -o-transform: rotate(45deg) translate(4px, 4px);
  -ms-transform: rotate(45deg) translate(4px, 4px);
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-icon.active span:nth-child(2) {
  opacity: 0;
}
.menu-icon.active span:nth-child(3) {
  -moz-transform: rotate(-45deg) translate(5px, -5px);
  -o-transform: rotate(-45deg) translate(5px, -5px);
  -ms-transform: rotate(-45deg) translate(5px, -5px);
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

/*Footer*/
.footer .footer-logo, .footer h6 {
  margin-bottom: 25px;
}
.footer h6 {
  font-size: 18px;
}
.footer p, .footer li {
  font-size: 14px;
}
.footer ul li + li, .footer ol li + li {
  margin-top: 10px;
}
.footer ul li a:hover, .footer ol li a:hover {
  color: #009688;
}
.footer .socialMedia {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 10px 20px;
  margin-top: 20px;
}
.footer .socialMedia a {
  font-size: 18px;
  display: inline-block;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .socialMedia a:hover {
  color: #009688;
}
.footer .copyright {
  font-size: 13px;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer .copyright span {
  color: #009688;
}

/*Bg Colors*/
.tealBg {
  background-color: #009688;
}

.blackBg {
  background-color: #30373e;
}

.blackColor {
  color: #30373e;
}

.white-text {
  color: #ffffff;
}

/*Hero Image & Video Section*/
.heroBanner {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100dvh;
  min-height: 870px;
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow-x: visible;
}
@media (max-width: 1199px) {
  .heroBanner {
    min-height: 650px;
  }
}
@media (max-width: 991px) {
  .heroBanner {
    height: 100%;
    min-height: 600px;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .heroBanner {
    min-height: 500px;
    padding-top: 10rem;
  }
}
@media (max-width: 575px) {
  .heroBanner {
    min-height: 450px;
  }
}
.heroBanner video,
.heroBanner iframe {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  vertical-align: middle;
}
.heroBanner .placeholderImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.heroBanner .z-index {
  position: relative;
  z-index: 4;
}
.heroBanner__bgImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .heroBanner .hero-content .container-xl {
    max-width: 90%;
  }
}
.heroBanner__content {
  position: relative;
  width: 27vw;
}
.heroBanner__content h1 {
  font-size: 3vw;
}
.heroBanner__content h1 span {
  color: #009688;
}
.heroBanner__content p {
  font-size: 0.9vw;
}
.heroBanner__content .btn {
  font-size: 0.7vw;
  padding: 0.9vw 1.4vw;
}

/*Hero Slider*/
.heroSlider {
  width: 100%;
  height: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .heroSlider {
    height: 600px;
  }
}
.heroSlider .slick-list,
.heroSlider .slick-track {
  height: 100%;
}
.heroSlider .hero-item {
  position: relative;
}
.heroSlider .hero-item .center-slide-image {
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 21vw;
  height: 30vw;
  border-width: 10px;
  border-color: #ffffff;
  border-style: solid;
  border-top-right-radius: 500px;
  border-top-left-radius: 500px;
  overflow: hidden;
  z-index: 6;
}
.heroSlider .hero-item .center-slide-image img {
  position: relative;
  width: 100%;
  height: 100%;
  touch-action: manipulation;
  -o-object-fit: cover;
  object-fit: cover;
}
.heroSlider .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 991px) {
  .heroSlider .hero-content {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .heroSlider .hero-content {
    padding-top: 10rem;
  }
}
.heroSlider .slick-dots {
  width: 85%;
  position: absolute;
  bottom: 30px;
  left: 0;
  margin-top: 0;
  gap: 0;
}
.heroSlider .slick-dots li button {
  position: relative;
  background-color: transparent;
  width: 60px;
  height: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  border: 0;
  text-indent: inherit;
  text-align: left;
  padding-bottom: 10px;
}
.heroSlider .slick-dots li button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 2px;
}
.heroSlider .slick-dots li.slick-active button::after {
  background-color: #009688;
}

/*Fluid Slider with Arrow Style*/
.fluidSlider {
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .fluidSlider {
    padding-bottom: 50px;
  }
}
.fluidSlider::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15);
  width: calc(100% - 100px);
  height: 2px;
}
.fluidSlider .slick-track {
  margin-left: inherit;
}
.fluidSlider .slick-arrow {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  top: initial;
  bottom: 0;
}
.fluidSlider .slick-arrow.slick-prev {
  background-image: url("../images/icons/left-arrow.svg");
  left: initial;
  right: 50px;
}
.fluidSlider .slick-arrow.slick-next {
  background-image: url("../images/icons/right-arrow.svg");
  right: 0;
}
.fluidSlider .slick-arrow::before {
  display: none;
}

/*Pricing*/
.pricing {
  background-color: #000000;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
}
.pricing .pricingHead {
  position: relative;
  margin: 0 0 20px;
  padding-inline: 10px;
}
.pricing .pricingHead::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: 1px;
  margin: 0 auto;
}
.pricing .pricingBody {
  padding-inline: 10px;
}
.pricing .pricingFooter {
  background-color: #009688;
  margin-top: auto;
  padding: 20px;
  border-radius: 20px;
}
.pricing .pricingFooter h4 {
  margin-bottom: 10px;
}

.benefits {
  background-color: #009688;
  height: 100%;
  padding: 20px 30px;
  border-radius: 20px;
}
.benefits ul, .benefits ol {
  margin-bottom: 35px;
}
.benefits ul li, .benefits ol li {
  position: relative;
  padding-left: 32px;
}
.benefits ul li span, .benefits ol li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  display: inline-block;
}

/*Common Icon Grid*/
.icon-box-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}
.icon-box-wrapper .icon {
  position: relative;
  display: inline-block;
}
.icon-box-wrapper .icon i {
  position: relative;
  font-size: 72px;
  z-index: 1;
}
.icon-box-wrapper .icon:after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -15px;
  background-color: #009688;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.icon-box-wrapper .icon-box-content .icon-box-title {
  font-weight: 800;
  margin-bottom: 0;
}
.icon-box-wrapper .icon-box-content .icon-box-description {
  font-size: 15px;
  font-weight: 700;
}
.icon-box-wrapper.small-icon-box .icon i {
  font-size: 50px;
}
.icon-box-wrapper.small-icon-box .icon:after {
  width: 25px;
  height: 25px;
  top: 5px;
  bottom: inherit;
}
.icon-box-wrapper.small-icon-box .icon-box-content .icon-box-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: capitalize;
}
.icon-box-wrapper.small-icon-box .icon-box-content .icon-box-description {
  font-size: 12px;
  color: #009688;
  font-weight: 700;
  text-transform: uppercase;
}
.icon-box-wrapper:hover .icon::after {
  opacity: 0;
}

/*Shop*/
.shop .shopSlider {
  position: relative;
}
.shop .shopSlider .slick-list {
  margin-inline: -20px;
}
.shop .shopSlider .slick-slide:not(.slick-current) .category-product-img {
  height: 380px;
  overflow: hidden;
}
.shop .shopSlider .slick-arrow {
  position: absolute;
  top: -7rem;
  bottom: inherit;
}
.shop .shopSlider .slick-arrow.slick-prev {
  left: inherit;
  right: 55px;
}
.shop .shop-item {
  padding: 0 20px;
}
.shop .shop-item .category-product-img a {
  display: block;
}
.shop .shop-item .category-product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.shop .shop-item .shop-item-text {
  position: relative;
  padding: 2rem 5rem;
  text-align: center;
}
.shop .shop-item .shop-item-text .outline-text {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 100%;
  margin-bottom: 0;
}
.shop .shop-item:hover .cat-title, .shop .shop-item:hover .btn {
  color: #009688;
}

/*Features*/
.features {
  background-color: transparent;
  background-image: linear-gradient(270deg, #ffffff 30%, #f5f5f5 0%);
}

/*Why choose us*/
.why-choose-card {
  height: 100%;
  text-align: center;
  padding: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.why-choose-card .icon {
  background-color: #f5f5f5;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  padding: 10px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.why-choose-card .icon i {
  font-size: 65px;
}
.why-choose-card h6 {
  font-size: 18px;
}
.why-choose-card p {
  font-size: 14px;
}
.why-choose-card:hover {
  -webkit-box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.1);
}
.why-choose-card:hover .icon {
  background-color: #009688;
  color: #ffffff;
}

/*Kitchen Designs*/
.kitchen-designs .kitchen-designs-head {
  background-color: transparent;
  background-image: linear-gradient(90deg, #ffffff 50%, #f5f5f5 50%);
  padding-bottom: 25px;
}
.kitchen-designs .kitchen-designs-footer {
  background-color: transparent;
  background-image: linear-gradient(90deg, #f5f5f5 50%, #ffffff 50%);
  padding-block: 4.5rem;
}

.kitchen-inner {
  position: relative;
  height: 100%;
}
.kitchen-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.kitchen-inner .kitchen-thumbnail {
  height: 100%;
  overflow: hidden;
}
.kitchen-inner .kitchen-thumbnail a {
  position: relative;
  height: 100%;
  display: block;
}
.kitchen-inner .kitchen-thumbnail img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}
.kitchen-inner .kitchen-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.kitchen-inner .kitchen-content h6 a, .kitchen-inner .kitchen-content li a {
  color: #ffffff;
}
.kitchen-inner .kitchen-content h6 a:hover, .kitchen-inner .kitchen-content li a:hover {
  color: #009688;
}
.kitchen-inner .kitchen-content ul {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.kitchen-inner .kitchen-content ul li {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.kitchen-inner .kitchen-content ul li a {
  text-decoration: none;
}
.kitchen-inner .kitchen-content ul li + li::before {
  content: "/";
  position: absolute;
  bottom: 2px;
  left: -12px;
  color: #ffffff;
}
.kitchen-inner:hover .kitchen-thumbnail img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.kitchen-inner:hover .kitchen-content {
  bottom: 20px;
}
.kitchen-inner:hover .kitchen-content, .kitchen-inner:hover::before {
  opacity: 1;
  visibility: visible;
}

/*Kitchen Info Tour*/
.kitchen-info-tour {
  position: relative;
  height: 760px;
  margin-bottom: 15rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.kitchen-info-tour::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.52);
  z-index: 0;
}
.kitchen-info-tour h2 {
  font-size: 120px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #ffffff;
  text-align: center;
}
@media (max-width: 1299px) {
  .kitchen-info-tour h2 {
    font-size: 100px;
  }
}
@media (max-width: 1199px) {
  .kitchen-info-tour h2 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .kitchen-info-tour h2 {
    font-size: 55px;
  }
}
.kitchen-info-tour .kitchen-info-tour-inner {
  margin-top: 72px;
}
.kitchen-info-tour .kitchen-info-tour-inner .card {
  background-color: #ffffff;
  height: 100%;
  -webkit-box-shadow: 0px 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 10px 0 rgba(0, 0, 0, 0.1);
}
.kitchen-info-tour .kitchen-info-tour-inner .card:hover h6 a {
  color: #009688;
}
.kitchen-info-tour .kitchen-info-tour-inner .outline-img {
  height: 300px;
}
.kitchen-info-tour .kitchen-info-tour-inner .kitchen-info-content {
  text-align: center;
  padding: 50px 30px;
}

/*Testimonial*/
.testimonial {
  position: relative;
  background-size: auto;
  background-position: right 70%;
  background-repeat: no-repeat;
}

.testimonialSlider .icon {
  margin-bottom: 10px;
}
.testimonialSlider .icon i {
  font-size: 30px;
  color: #009688;
  padding-left: 1px;
}
.testimonialSlider .testimonial-caption {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
.testimonialSlider .testimonial-caption .avatar-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonialSlider .testimonial-caption .avatar-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonialSlider .testimonial-caption .details {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}
.testimonialSlider .testimonial-caption .details .name {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.testimonialSlider .testimonial-caption .details .job {
  text-transform: capitalize;
}

/*Kitchen Excellence*/
.kitchen-excellence {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 560px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.kitchen-excellence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.52);
  z-index: 0;
}
.kitchen-excellence .kitchen-excellence-inner {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 20px;
}

/*# sourceMappingURL=style.css.map */

/* ******************** */

.woocommerce-shop .container.shop-grid {
  padding-top: 5rem;
}

.single-product .container.shop-grid {
  padding-top: 9rem;
}

.woocommerce a.button,
.woocommerce button.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  background: transparent !important;
  color: #333!important;
  border: 1.5px solid #333 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #333 !important;
  color: #fff !important;
}

.woocommerce a.button:hover::after {
  transform: translateX(5px) !important;
}

.woocommerce-ordering select {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  border: 0;
  background-color: #009688 !important;
  padding: 10px 15px;
  border-radius: 10px;
  background-size: 12px;
  background-position: 93% center;
}

.woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
  border-color: #009688 !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: #009688 !important;
  color: #ffffff !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: #009688 !important;
  color: #ffffff !important;
}

.woocommerce div.product div.images .flex-direction-nav {
  display: block;
}

.woocommerce div.product div.images .flex-direction-nav a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.flex-direction-nav { list-style: none; margin: 0; padding: 0; }
.flex-nav-prev { float: left; }
.flex-nav-next { float: right; }


.flex-direction-nav a {
  font-size: 0; 
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  width: 35px;   
  height: 35px;
  background-size: 8px; 
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.flex-direction-nav a.flex-prev {
  left: 10px;
  background-image: url('/backenddev/sd/quickkart/wp-content/uploads/2026/04/left-arrow.svg');
}

.flex-direction-nav a.flex-next {
  right: 10px;
  background-image: url('/backenddev/sd/quickkart/wp-content/uploads/2026/04/right-arrow.svg');
}

.woocommerce div.product .product_title {
  font-size: 45px !important;
}


.wps_membership_buy_now_btn .wps_membership_buynow, .button.alt.wps_membership_no_thanks {
  margin: auto !important;
  height: 43px !important;

}

.wps_membership_plan_content_price {
  color: #ffffff !important;
}

.custom-shop{
  padding-top: 140px;
}

ul.sub-menu {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 23px;
  z-index: 99999;
  background: #ffffff;
  width: auto;
	padding: 4px 2px 10px 0px;
}

.navigation #navbar li {
  position: relative;
  margin: 0;
  width: max-content;

}

ul.sub-menu {
  display:none;
}

.Dropdown:hover ul.sub-menu {
  display:block
}

.banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}


.banner-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 10px 0;
}

.breadcrumb {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ******************** */

.contact-form-section {
  padding: 60px 20px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-header p {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #30373e;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}


input:focus, 
textarea:focus {
    border-color: #009688;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #2c3238;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px; 
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

.arrow {
    font-size: 18px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


.button.alt.mfw-membership:hover {
  background-color: #00000000 !important;
  color: #009688 !important;
}

.Dropdown:hover ul.sub-menu {
    display: block;
    height: fit-content;
    background: #ffffff;
    padding: 16px;
}
/* Submenu container */
.sub-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    min-width: 220px;
    position: absolute;
    display: none;
    transition: all 0.3s ease;
}

/* Show on hover */
.menu-item:hover > .sub-menu {
    display: block;
}

/* Each item */
.sub-menu li {
    margin: 0;
}

/* Links */
.sub-menu li a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

/* Hover effect */
.sub-menu li a:hover {

    transform: translateX(5px);
}

/* Add subtle divider */
.sub-menu li:not(:last-child) a {
    border-bottom: 1px solid #f0f0f0;
}
input.wps_membership_buynow {
    cursor: pointer;
}

.affiliate-hero {
  background: linear-gradient(135deg, #009688, #00c6ff);
  color: #fff;
  padding: 60px 30px;
  border-radius: 12px;
  margin-bottom: 50px;
}

.affiliate-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.affiliate-hero p {
  color: #eaf6ff;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #009688;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #f1f1f1;
}

/* ===== SECTION SPACING ===== */
section {
  margin-bottom: 60px;
}

/* ===== TITLES ===== */
.affiliate-benefits h2,
.affiliate-steps h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.affiliate-benefits h2::after,
.affiliate-steps h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #009688;
  display: block;
  margin: 10px auto 0;
}

/* ===== BENEFITS GRID ===== */
.affiliate-benefits .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  gap: 20px;
}

.step {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-weight: 600;
}

/* ===== AFFILIATE MESSAGE ===== */
.privacypage__text p {
  margin-top: 20px;
  font-size: 15px;
}

/* ===== DASHBOARD WRAP ===== */
.aff-wrap {
  margin-top: 50px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
}

/* ===== NAV MENU ===== */
.wpam-nav-menu {
  margin-bottom: 20px;
}

.wpam-nav-menu .pure-menu-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ddd;
}

.wpam-nav-menu .pure-menu-item {
  margin-right: 10px;
}

.wpam-nav-menu .pure-menu-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.wpam-nav-menu .pure-menu-selected .pure-menu-link,
.wpam-nav-menu .pure-menu-link:hover {
  background: #009688;
  color: #fff;

}

/* ===== TABLE ===== */
.pure-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
}

.pure-table th {
  background: #009688;
  color: #fff;
  padding: 10px;
  text-align: left;
}

.pure-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* ===== SUMMARY PANEL ===== */
.summaryPanel {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.summaryPanelLine {
  flex: 1;
}

.summaryPanelLineValue {
  font-size: 22px;
  font-weight: bold;
  color: #009688;
}

.summaryPanelLineLabel {
  font-size: 13px;
  color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .affiliate-hero h1 {
      font-size: 28px;
  }

  .affiliate-benefits .grid {
      grid-template-columns: 1fr;
  }

  .steps {
      flex-direction: column;
  }

  .summaryPanel {
      flex-direction: column;
      gap: 10px;
  }

  .wpam-nav-menu .pure-menu-list {
      flex-direction: column;
  }
	a.btn.join-member
{
display:none;
}
.logo {
    width: 141px;
}
	.header__inner {

    padding: 23px;

    padding-right: 28px;
}
}

.single-product div#sidebar {
    display: none;
}
.col-9.d-flex.justify-content-between {
    justify-content: space-around;
}

.header .logo img {
    width: 200px;
}

.wps_msfw__new_layout-table-for-detail
{

display:block !important;
}
.add-payment
{
    padding-inline: 32px
}
.row.add-payment input[type="text"] {
    border: 1px solid #c7c7c7;
}
button.save_bank_details {
    background-color: #009688;
    color: white;
    padding: 12px;
    border-radius: 9px;
    margin-top: 11px;
    font-weight: 900;
}

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
/*     height: 100%; */
/*     background: rgba(0,0,0,0.7); */
    display: none;
    justify-content: center;
/*     align-items: center; */
    z-index: 9999;
}

.search-popup.active {
    display: flex;
}

.search-inner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
	width: 50%;
	border: 1px solid #00968833;
	    position: relative;
}

.search-inner input {
    padding: 10px;
 
}
input#searchsubmit {
    background: #009688;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    border: navajowhite;
    border-radius: 5px;
    margin-top: 11px;
}
.close-search {
    position: absolute;
    right: 3px;
    top: 5px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

@media (min-width: 1199px) {
  .menu-icon
	{
display:none;
}
}
