@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Clean Cafe";
  src: url(../fonts/Fonts/Clean\ Cafe.ttf);
}
@font-face {
  font-family: "MuseoSans";
  src: url(../fonts/Fonts/MuseoSansRounded1000.otf);
}
@font-face {
  font-family: "FivoSansModern";
  src: url(../fonts/Fonts/FivoSansModern/FivoSansModern-Regular.otf);
}
.root {
  overflow: hidden;
}

body {
  font-family: "Clean Cafe";
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Clean Cafe";
}

section {
  padding: 70px 0;
  overflow: hidden;
}

.text-btn {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  padding: 8px 30px;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  color: #00ACEE;
  background-color: #FFFFFF;
  border-radius: 30px;
  outline: none;
  box-shadow: 5px 5px 0px #00ACEE;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: translate(-5px, -5px);
  border: 2px solid #00ACEE;
}

.text-btn:hover {
  background-color: #00ACEE;
  box-shadow: none;
  color: #fff;
  transform: translate(0px, 0px);
}

.text-btn:active {
  background-color: #00ACEE;
  box-shadow: none;
  color: #fff;
  transform: scale(0.9);
}

a {
  text-decoration: none;
  color: inherit;
}

.section-title h3 {
  color: #00ACEE;
  font-weight: 700;
  width: 100%;
  font-size: 52px;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
.section-title h3::after {
  content: "";
  position: absolute;
  background: white;
  width: 150PX;
  height: 1.5px;
  display: block;
  bottom: -10px;
  left: 1px;
}
.section-title p {
  font-size: 17px;
  margin-top: 18px;
}

header {
  position: relative;
  z-index: 9999;
  /*
  * More from me link 🔥
  */
}
header .HeaderLogo {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 100;
}
header .HeaderLogo img {
  width: 150px;
}
header .MenuBtn {
  height: 120px;
  width: 150px;
  position: fixed;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 100;
}
header .MenuBtn img {
  width: 100%;
}
header .MenuBtn.active .btn i::before {
  content: "\f00d" !important;
}
header .btn {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 1000;
}
header .btn i {
  font-size: 32px;
  color: #fff;
}
header .main-menu.open .btn i::before {
  content: "\f00d";
}
header .main-menu {
  position: fixed;
  top: -50%;
  left: -50%;
  height: 200%;
  width: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  visibility: hidden;
  z-index: 2;
  transform: rotate(-15deg) translate3d(0, 0, 0);
}
header .main-menu::before, header .main-menu::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 80%;
  background-color: #00ACEE;
  transform-origin: center center;
  transition: all 500ms ease;
  will-change: transform;
  z-index: -1;
}
header .main-menu::before {
  top: 51%;
  transform: translate(100%, -100%) translate3d(0, 0, 0);
}
header .main-menu::after {
  top: 49%;
  transform: translate(-150%, 0%) translate3d(0, 0, 0);
  transition-delay: 100ms;
}
header .main-menu .nav {
  position: relative;
  display: inline-block;
  padding: 0px;
  list-style: none;
  counter-reset: menu-counter;
  transform: rotate(15deg);
}
header .main-menu .nav__item {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-15px) translate3d(0, 0, 0);
  transition: all 100ms ease 100ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .main-menu .nav__item a {
  color: white;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
header .main-menu .nav .nav__item:hover a {
  color: #ED7E00;
}
header .main-menu.open {
  visibility: visible;
}
header .main-menu.open::before {
  animation: menu-in-left 500ms ease;
  transform: translate(-50%, -100%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
header .main-menu.open::after {
  animation: menu-in-right 500ms ease 100ms;
  transform: translate(-50%, 0%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
header .main-menu.open .nav__item {
  opacity: 1;
  transform: translateX(0px) translate3d(0, 0, 0);
  transition: all 250ms ease;
}
header .main-menu.open .nav__item:nth-child(0n) {
  transition-delay: 250ms;
}
header .main-menu.open .nav__item:nth-child(1n) {
  transition-delay: 300ms;
}
header .main-menu.open .nav__item:nth-child(2n) {
  transition-delay: 350ms;
}
header .main-menu.open .nav__item:nth-child(3n) {
  transition-delay: 400ms;
}
header .main-menu.open .nav__item:nth-child(4n) {
  transition-delay: 450ms;
}
header .main-menu.open .nav__item:nth-child(5n) {
  transition-delay: 500ms;
}
header .main-menu.open .nav__item:nth-child(6n) {
  transition-delay: 550ms;
}
header .main-menu.open .nav__item:nth-child(7n) {
  transition-delay: 600ms;
}
header .main-menu.open .nav__item:nth-child(8n) {
  transition-delay: 650ms;
}
header .main-menu.open .nav__item:nth-child(9n) {
  transition-delay: 700ms;
}
header .main-menu.open .nav__item:nth-child(10n) {
  transition-delay: 750ms;
}
header .main-menu.open .nav__item:nth-child(11n) {
  transition-delay: 800ms;
}
header .main-menu.open .nav__item:nth-child(12n) {
  transition-delay: 850ms;
}
header .main-menu.open .nav__item:nth-child(13n) {
  transition-delay: 900ms;
}
header .main-menu.open .nav__item:nth-child(14n) {
  transition-delay: 950ms;
}
header .main-menu.open .nav__item:nth-child(15n) {
  transition-delay: 1000ms;
}
header .main-menu.open .nav__item:nth-child(16n) {
  transition-delay: 1050ms;
}
header .main-menu.open .nav__item:nth-child(17n) {
  transition-delay: 1100ms;
}
header .main-menu.open .nav__item:nth-child(18n) {
  transition-delay: 1150ms;
}
header .main-menu.open .nav__item:nth-child(19n) {
  transition-delay: 1200ms;
}
header .main-menu.open .nav__item:nth-child(20n) {
  transition-delay: 1250ms;
}
header .main-menu.open .nav__item a {
  transition: all 250ms ease;
}
@keyframes menu-in-left {
  0% {
    transform: translate(-150%, -100%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, -100%) translate3d(0, 0, 0);
  }
}
@keyframes menu-in-right {
  0% {
    transform: translate(100%, 0%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, 0%) translate3d(0, 0, 0);
  }
}
header .content {
  max-width: 400px;
}
header .content h1 {
  font-size: 1.6em;
}
header .content p {
  line-height: 1.5;
}
header .more {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 7px 21px;
  border-radius: 8px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  animation: reveal 5000ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
header .more::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 20%;
  height: 100%;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0);
  transition: max-width 0ms ease 250ms, background-color 250ms ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}
header .more:hover::before {
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 250ms ease;
}
@keyframes reveal {
  0%, 90% {
    bottom: -30px;
  }
  100% {
    bottom: 15px;
  }
}

#Hero {
  padding: 0;
}

#PhoneSliderMain {
  display: none;
  padding: 0;
}

#other-hero {
  padding-top: 120px;
  background: #F9D7B1;
}
#other-hero .section-title {
  text-align: center;
}
#other-hero .section-title h3 {
  -webkit-text-stroke: 10px #fff;
  color: #00ACEE;
  font-size: 58px;
  paint-order: stroke fill;
  letter-spacing: 2px;
}
#other-hero .section-title h3::after {
  content: none;
}
#other-hero .image-wrapper img {
  border-radius: 20px;
}

#footer-image {
  background: url(../images/footer-image.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  padding: 112px 0;
}

#footer {
  padding: 80px 0 40px;
  background: url(../images/footer-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  width: 100%;
}
#footer .socialmedia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-bottom: 40px;
}
#footer .socialmedia .email img {
  max-width: 30px;
}
#footer .socialmedia .email a {
  color: #E77E26;
  margin-left: 13px;
  font-family: "MuseoSans";
  font-size: 22px;
  border-bottom: 1px solid #E77E26;
}
#footer .socialmedia .phone img {
  max-width: 30px;
}
#footer .socialmedia .phone a {
  color: #E77E26;
  margin-left: 13px;
  font-family: "MuseoSans";
  font-size: 22px;
  border-bottom: 1px solid #E77E26;
}
#footer .footer-flex {
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 12px;
}
#footer .footer-flex .img-wrapper {
  padding: 20px;
  border-radius: 12px;
  width: 25%;
}
#footer .footer-flex .img-wrapper img {
  width: 100%;
}
#footer .footer-flex .footer-link {
  padding: 15px;
  border-radius: 12px;
  width: 75%;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
}
#footer .footer-flex .footer-link a {
  color: #000;
  transition: 300ms all ease;
}
#footer .footer-flex .footer-link a:hover {
  color: #E77E26;
}
#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-family: "FivoSansModern";
}
#footer .footer-bottom a {
  color: #000;
  font-family: "FivoSansModern";
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  transform: 300ms all ease;
}
#footer .footer-bottom a:hover {
  color: #00ACEE;
}
#footer .footer-bottom p {
  color: #000;
  font-family: "FivoSansModern";
  font-size: 14px;
  margin: 0;
}
#footer .footer-bottom .SocialIcons {
  display: flex;
  gap: 14px;
}
#footer .footer-bottom .SocialIcons a:hover {
  transition: 300ms all ease;
  transform: scale(1.04);
}

#other-hero-1 {
  background: #66ccdb;
  padding-top: 120px;
}
#other-hero-1 .section-title {
  text-align: center;
}
#other-hero-1 .section-title h3 {
  color: #00ACEE;
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 15px;
}
#other-hero-1 .image-wrapper img {
  border-radius: 20px;
}

#contact-form {
  position: relative;
  padding-top: 150px;
  background: #F5EBFF;
}
#contact-form .contact-address {
  display: flex;
  gap: 20px;
  align-items: center;
}
#contact-form .contact-address .address {
  width: 50%;
}
#contact-form .contact-address .address h4 {
  font-weight: 700;
  font-size: 32px;
  color: #00ACEE;
}
#contact-form .contact-address .address p {
  font-family: "FivoSansModern";
  font-size: 18px;
}
#contact-form .contact-detail {
  width: 50%;
}
#contact-form .contact-detail .call-flex {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
#contact-form .contact-detail .call-flex a {
  font-size: 16px;
}
#contact-form .contact-detail .call-flex img {
  max-width: 30px;
}
#contact-form .conatact-form {
  box-shadow: 0px 0px 35.63px 0px rgba(0, 0, 0, 0.1411764706);
  padding: 70px 40px 20px 40px;
  position: relative;
  background-color: #F9D7B1;
  border-radius: 14px;
  box-sizing: border-box;
}
#contact-form .conatact-form .section-title h3 {
  color: #00ACEE;
  font-weight: 700;
  width: 100%;
  font-size: 34px;
  letter-spacing: 0;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
#contact-form .conatact-form .section-title h3::after {
  left: 34%;
  bottom: 0;
}
#contact-form .conatact-form form .form-group {
  display: flex;
  width: 100%;
  gap: 14px;
}
#contact-form .conatact-form form .form-group .input-field {
  width: 100%;
  margin: 0 auto;
}
#contact-form .conatact-form form .form-group .input-field .form-label {
  margin-bottom: 10px;
}
#contact-form .conatact-form form .form-group .input-field input {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 18px;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  border-radius: 36px;
  margin-bottom: 16px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
}
#contact-form .conatact-form form .form-group .input-field input::-moz-placeholder {
  font-size: 12px;
  color: #888888;
}
#contact-form .conatact-form form .form-group .input-field input::placeholder {
  font-size: 12px;
  color: #888888;
}
#contact-form .conatact-form form .form-group .input-field input:focus {
  box-shadow: 6px 6px #00ACEE;
  border: 1px solid #00ACEE;
}
#contact-form .conatact-form form .input-field {
  width: 100%;
  margin: 0 auto;
}
#contact-form .conatact-form form .input-field .form-label {
  margin-bottom: 10px;
}
#contact-form .conatact-form form .input-field select {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 12px;
  color: #888888;
  padding: 14px 14px;
  width: 100%;
  background: #fff;
  border-radius: 36px;
  margin-bottom: 20px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
}
#contact-form .conatact-form form .input-field select:focus {
  box-shadow: 6px 6px #00ACEE;
  border: 1px solid #00ACEE;
}
#contact-form .conatact-form form .input-field .form-label {
  margin-bottom: 12px;
}
#contact-form .conatact-form form .input-field textarea {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 18px;
  padding: 14px 14px;
  width: 100%;
  background: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
}
#contact-form .conatact-form form .input-field textarea::-moz-placeholder {
  font-size: 12px;
  color: #888888;
}
#contact-form .conatact-form form .input-field textarea::placeholder {
  font-size: 12px;
  color: #888888;
}
#contact-form .conatact-form form .input-field textarea:focus {
  box-shadow: 6px 6px #00ACEE;
  border: 1px solid #00ACEE;
}
#contact-form .conatact-form form .check-box {
  display: flex;
  gap: 10px;
  width: 100%;
}
#contact-form .image-wrapper img {
  position: absolute;
  top: 8%;
  right: 41%;
  max-width: 205px;
}

#cta {
  background: url(../images/cta.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 0;
}
#cta .cta-form {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
#cta .cta-form h3 {
  font-size: 30px;
  font-weight: 600;
  color: #6b3d2b;
}
#cta .cta-form p {
  color: #b37b66;
  font-size: 20px;
  font-weight: 500;
}

#cta-strip {
  background: url(../images/homeScoopShop.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 0;
}
#cta-strip .cta-form {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
#cta-strip .cta-form h3 {
  font-size: 30px;
  font-weight: 600;
  color: #6b3d2b;
}
#cta-strip .cta-form p {
  color: #6b3d2b;
  font-size: 20px;
  font-weight: 500;
}

#carrer-page .conatact-form {
  box-shadow: 0px 0px 35.63px 0px rgba(0, 0, 0, 0.1411764706);
  padding: 40px 40px 20px 40px;
  position: relative;
  background-color: #fff5b0;
  border-radius: 14px;
  box-sizing: border-box;
}
#carrer-page .conatact-form .section-title h3 {
  color: #6b3d2b;
  font-weight: 700;
  width: 100%;
  font-size: 34px;
  letter-spacing: 0;
}
#carrer-page .conatact-form form .form-group {
  display: flex;
  width: 100%;
  gap: 14px;
}
#carrer-page .conatact-form form .form-group .input-field {
  width: 100%;
  margin: 0 auto;
}
#carrer-page .conatact-form form .form-group .input-field .form-label {
  margin-bottom: 10px;
}
#carrer-page .conatact-form form .form-group .input-field input {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 18px;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: 300ms all ease;
}
#carrer-page .conatact-form form .form-group .input-field input::-moz-placeholder {
  font-size: 14px;
  color: #888888;
}
#carrer-page .conatact-form form .form-group .input-field input::placeholder {
  font-size: 14px;
  color: #888888;
}
#carrer-page .conatact-form form .form-group .input-field input:focus {
  box-shadow: 6px 6px #6b3d2b;
  border: 1px solid #6b3d2b;
}
#carrer-page .conatact-form form .input-field {
  width: 100%;
  margin: 0 auto;
}
#carrer-page .conatact-form form .input-field .form-label {
  margin-bottom: 10px;
}
#carrer-page .conatact-form form .input-field select {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 14px;
  color: #888888;
  padding: 11px 14px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: 300ms all ease;
}
#carrer-page .conatact-form form .input-field select:focus {
  box-shadow: 6px 6px #6b3d2b;
  border: 1px solid #6b3d2b;
}
#carrer-page .conatact-form form .input-field .form-label {
  margin-bottom: 12px;
}
#carrer-page .conatact-form form .input-field textarea {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 18px;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: 300ms all ease;
}
#carrer-page .conatact-form form .input-field textarea::-moz-placeholder {
  font-size: 14px;
  color: #888888;
}
#carrer-page .conatact-form form .input-field textarea::placeholder {
  font-size: 14px;
  color: #888888;
}
#carrer-page .conatact-form form .input-field textarea:focus {
  box-shadow: 6px 6px #6b3d2b;
  border: 1px solid #6b3d2b;
}
#carrer-page .conatact-form form .check-box {
  display: flex;
  gap: 10px;
  width: 100%;
}

#hero .section-title h3 {
  -webkit-text-stroke: 10px #fff;
  color: #00ACEE;
  font-size: 58px;
  paint-order: stroke fill;
  letter-spacing: 2px;
}
#hero .section-title h3::after {
  content: none;
}
#hero .hero-wrap {
  text-align: center;
}
#hero .hero-wrap .text-btn {
  border-radius: 50px;
  padding: 12px 30px;
}
#hero .hero-wrap .text-btn::after {
  border-radius: 50px;
}
#hero .image-wrapper {
  padding-bottom: 30px;
  z-index: 99;
  position: relative;
}
#hero .hero-image .hero-vector-1 {
  position: absolute;
  top: 150px;
  max-width: 430px;
  z-index: 9;
  left: -120px;
  animation-name: hero-vector-1;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}
@keyframes hero-vector-1 {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(20px);
  }
}
#hero .hero-image .hero-vector-2 {
  position: absolute;
  top: 280px;
  max-width: 330px;
  z-index: 9;
  right: -90px;
  animation-name: hero-vector-2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}
@keyframes hero-vector-2 {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(20px);
  }
}

#header-bg {
  background: url(../images/footer-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0px;
}

#products {
  padding-bottom: 0;
}
#products .section-title h3::after {
  left: 43%;
  background: #ED7E00;
}
#products .owl-theme .owl-nav {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  width: 110%;
  position: absolute;
  top: 43%;
  left: -5%;
  z-index: -1;
}
#products .owl-carousel .owl-nav button.owl-next {
  background: url(../images/arrow_circle_left.svg);
  background-size: contain;
  opacity: 0.6;
  transition: 300ms all ease;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  color: transparent;
}
#products .owl-carousel .owl-nav button.owl-prev {
  background: url(../images/arrow_circle_right.svg);
  background-size: contain;
  opacity: 0.6;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  color: transparent;
}
#products .owl-carousel .owl-nav button.owl-next:hover {
  opacity: 1;
}
#products .owl-carousel .owl-nav button.owl-prev:hover {
  opacity: 1;
}
#products .owl-carousel .owl-stage-outer {
  overflow: visible !important;
}
#products .ProductSlider {
  overflow: hidden;
  padding-top: 120px;
}
#products .product-card {
  background: #FEE4CA;
  margin-right: 40px;
  width: 100%;
  border-radius: 36px;
  transition-duration: 0.3s;
  position: relative;
  margin-bottom: 90px;
  min-height: 350px;
}
#products .product-card .product-btn {
  position: absolute;
  top: 30px;
  left: 20px;
}
#products .product-card .product-btn .colr-btn {
  cursor: pointer;
  padding: 5px 15px;
  border: 1px solid #94C11C;
  border-radius: 90px;
  box-shadow: 2px 3px #94C11C;
  background-color: #fff;
  color: #94C11C;
}
#products .product-card img {
  margin-left: auto;
  padding-right: 5px;
  right: 24px;
  top: 20px;
  transform: rotate(38deg);
  transition-duration: 0.4s;
  max-width: 175px;
  position: relative;
  position: relative;
  margin-bottom: 20px;
}
#products .product-card .product-title {
  padding: 10px 20px 24px;
  bottom: 0;
  left: 20px;
  transition-duration: 0.4s;
}
#products .product-card .product-title h3 {
  font-weight: 700;
  color: #6b3d2b;
  font-size: 24px;
  margin-bottom: 0;
  font-family: "MuseoSans";
  text-align: center;
}
#products .product-card .product-title p {
  color: #6b3d2b;
  font-size: 16px;
  font-family: "FivoSansModern";
  text-align: center;
}
#products .product-card:hover {
  transform: translateY(-24px);
}
#products .product-card:hover img {
  transform: rotate(14deg) translateY(-70px);
  filter: drop-shadow(20px 10px 4px rgba(0, 0, 0, 0.1));
}
#products .box-1 {
  background: #FFE1DF;
}
#products .box-1 .product-title h3 {
  color: #C99931;
}
#products .box-2 {
  background: #F0D2F8;
}
#products .box-2 .product-title h3 {
  color: #93789D;
}
#products .box-3 {
  background: #D9DBFF;
}
#products .box-3 .product-title h3 {
  color: #69A8CE;
}
#products .box-4 {
  background: #FFE9D9;
}
#products .box-4 .product-title h3 {
  color: #E38E66;
}

#galley .section-title {
  margin-bottom: 52px;
}
#galley .section-title h3::after {
  left: 44%;
}
#galley .frmaes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#galley .frmaes img {
  max-width: 220px;
  transition: 300ms all ease;
  opacity: 1;
}
#galley .frmaes img:hover {
  transform: translateY(-60px);
}
#galley .frmaes img:hover {
  opacity: 0.6;
}
#galley .frmaes .frame-up {
  position: relative;
  top: 60px;
}
#galley .frmaes .frame-up:hover {
  transform: translateY(-60px);
}

#lassi {
  padding-bottom: 0;
  position: relative;
  padding-top: 90px;
}
#lassi .section-title h3::after {
  left: 43.5%;
}
#lassi .image-wrapper {
  text-align: center;
}
#lassi .image-wrapper.Phone {
  display: none;
}

#counter-strip {
  padding: 0;
}
#counter-strip .counter-image {
  padding-top: 40px;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
#counter-strip .statstic-max {
  width: 83%;
  margin: 0 auto;
}
#counter-strip .statstic-max .section-title h3 {
  color: #fff;
  font-size: 38px;
  padding-bottom: 10px;
  text-align: left;
  font-family: "MuseoSans";
}
#counter-strip .statstic-max .section-title h3::after {
  width: 100px;
  left: 2%;
}
#counter-strip .statstic-max .counter-wrap {
  display: flex;
  justify-content: space-around;
  background: white;
  padding: 10px 20px;
  border-radius: 100px;
}
#counter-strip .statstic-max .counter-wrap .static-wrapper {
  position: relative;
}
#counter-strip .statstic-max .counter-wrap .static-wrapper .number {
  font-family: "MuseoSans";
  font-size: 52px;
  color: #ED7E00;
}
#counter-strip .statstic-max .counter-wrap .static-wrapper .title h5 {
  font-family: "FivoSansModern";
  font-size: 18px;
}
#counter-strip .statstic-max .counter-wrap .border-left {
  border-left: 1px solid #D8776F;
  padding-left: 80px;
}

#statstic .statstic-max {
  width: 83%;
  margin: 0 auto;
}
#statstic .statstic-max .section-title h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}
#statstic .statstic-max .section-title h3::after {
  left: 43%;
}
#statstic .statstic-max .section-title p {
  color: #fff;
  font-family: "FivoSansModern";
  text-align: center;
}
#statstic .statstic-max .statstic-max-left {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  justify-content: left;
}
#statstic .statstic-max .statstic-max-left img {
  max-width: 75px;
}
#statstic .statstic-max .statstic-max-left p {
  margin-bottom: 0;
  font-family: "FivoSansModern";
  color: #fff;
  font-size: 18px;
}
#statstic .statstic-max .statstic-btn {
  text-align: center;
}
#statstic .statstic-max .statstic-btn .text-btn {
  color: #ED7E00;
  border-radius: 50px;
  border: 2px solid #ED7E00;
  padding: 12px 30px;
  box-shadow: 5px 5px 0px #ED7E00;
}
#statstic .statstic-max .statstic-btn .text-btn::after {
  background: #ED7E00;
  border: 1px solid #ED7E00;
  border-radius: 50px;
}
#statstic .statstic-max .statstic-btn .text-btn:hover {
  background-color: #ED7E00;
  box-shadow: none;
  color: #fff;
  transform: translate(0px, 0px);
}
#statstic .statstic-max .statstic-btn .text-btn:active {
  background-color: #ED7E00;
  box-shadow: none;
  color: #fff;
  transform: translate(0px, 0px);
}
#statstic .images-ice {
  position: relative;
}
#statstic .images-ice .sake {
  position: absolute;
  max-width: 80px;
  bottom: 0%;
  left: -5%;
  animation-name: hero-vector-1;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}
@keyframes hero-vector-1 {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(20px);
  }
}
#statstic .images-ice .ice {
  position: absolute;
  max-width: 100px;
  bottom: 0%;
  right: -5%;
  animation-name: hero-vector-1;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}
@keyframes hero-vector-1 {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(20px);
  }
}

#form {
  background: url(../images/form-image.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 237px;
  padding-bottom: 100px;
}
#form .conatact-form {
  box-shadow: 0px 0px 35.63px 0px rgba(0, 0, 0, 0.1411764706);
  padding: 70px 40px 70px 40px;
  position: relative;
  background-color: #FCE0FF;
  border-radius: 14px;
  box-sizing: border-box;
  margin-bottom: -100px;
}
#form .conatact-form .section-title h3 {
  color: #00ACEE;
  font-weight: 700;
  width: 100%;
  font-size: 34px;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 10px;
}
#form .conatact-form .section-title h3::after {
  width: 100PX;
  background: #ED7E00;
  left: 42%;
  height: 2px;
}
#form .conatact-form form {
  padding-top: 30px;
}
#form .conatact-form form .form-label {
  margin-bottom: 0;
}
#form .conatact-form form .form-label .input-field {
  width: 100%;
  margin: 0 auto;
}
#form .conatact-form form .form-label .input-field .form-label {
  margin-bottom: 10px;
}
#form .conatact-form form .form-label .input-field input {
  border: 1px solid #D8776F;
  outline: 0;
  font-size: 18px;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 16px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
  font-weight: 600;
}
#form .conatact-form form .form-label .input-field input::-moz-placeholder {
  font-size: 12px;
  color: #888888;
}
#form .conatact-form form .form-label .input-field input::placeholder {
  font-size: 12px;
  color: #888888;
}
#form .conatact-form form .form-label .input-field input:focus {
  box-shadow: 6px 6px #D8776F;
  border: 1px solid #D8776F;
}
#form .conatact-form form .form-group {
  display: flex;
  width: 100%;
  gap: 14px;
}
#form .conatact-form form .form-group .input-field {
  width: 100%;
  margin: 0 auto;
}
#form .conatact-form form .form-group .input-field .form-label {
  margin-bottom: 10px;
}
#form .conatact-form form .form-group .input-field input {
  border: 1px solid #D8776F;
  outline: 0;
  font-size: 18px;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 16px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
  font-weight: 600;
}
#form .conatact-form form .form-group .input-field input::-moz-placeholder {
  font-size: 12px;
  color: #888888;
}
#form .conatact-form form .form-group .input-field input::placeholder {
  font-size: 12px;
  color: #888888;
}
#form .conatact-form form .form-group .input-field input:focus {
  box-shadow: 6px 6px #D8776F;
  border: 1px solid #D8776F;
}
#form .conatact-form form .input-field {
  width: 100%;
  margin: 0 auto;
}
#form .conatact-form form .input-field .form-label {
  margin-bottom: 10px;
}
#form .conatact-form form .input-field select {
  border: 1px solid #D8776F;
  outline: 0;
  font-size: 12px;
  color: #888888;
  padding: 11px 14px;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
  font-weight: 600;
}
#form .conatact-form form .input-field select:focus {
  box-shadow: 6px 6px #D8776F;
  border: 1px solid #D8776F;
}
#form .conatact-form form .input-field .form-label {
  margin-bottom: 12px;
}
#form .conatact-form form .input-field textarea {
  border: 1px solid #D8776F;
  outline: 0;
  font-size: 18px;
  padding: 14px 14px;
  width: 100%;
  background: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
  font-weight: 600;
}
#form .conatact-form form .input-field textarea::-moz-placeholder {
  font-size: 12px;
  color: #888888;
}
#form .conatact-form form .input-field textarea::placeholder {
  font-size: 12px;
  color: #888888;
}
#form .conatact-form form .input-field textarea:focus {
  box-shadow: 6px 6px #D8776F;
  border: 1px solid #D8776F;
}
#form .conatact-form form .check-box {
  display: flex;
  gap: 10px;
  width: 100%;
}
#form .image-wrapper img {
  position: absolute;
  top: -13%;
  left: -12%;
  max-width: 205px;
}

#map {
  overflow: visible;
  z-index: 100;
  position: relative;
  background: #97D369;
  padding: 0 0 70px;
}
#map .a-section-marquee-box {
  height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow-y: visible;
  top: -60px;
  position: relative;
  z-index: 100;
}
#map .a-section-marquee-box div {
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 7em;
  font-weight: 100;
  flex-shrink: 0;
  padding: 0 0px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  transform: translateX(0);
  animation: a-text-scroll 20s linear infinite;
  margin-left: -2px;
}
#map .a-section-marquee-box div img {
  width: 100%;
}
@keyframes a-text-scroll {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
#map .section-title h3 {
  color: #fff;
  font-size: 52px;
  position: relative;
  text-align: left;
  margin-bottom: 24px;
}
#map .section-title h3::after {
  content: "";
  position: absolute;
  background: white;
  width: 150PX;
  height: 1px;
  display: block;
  bottom: 0;
  left: 1px;
}
#map .title {
  display: flex;
  align-items: center;
  gap: 10px;
}
#map .title p {
  margin-bottom: 0;
  color: #fff;
}
#map a {
  color: #fff;
  font-family: "FivoSansModern";
  font-weight: 500;
  font-size: 20px;
}
#map .map-frame iframe {
  border-radius: 20px;
}

#products-page {
  padding: 50px 0 0;
  background: #F5EBFF;
}
#products-page .section-title h3::after {
  left: 43%;
  background: #ED7E00;
}
#products-page .section-title p {
  font-family: "FivoSansModern";
  text-align: center;
}
#products-page .ProductSlider {
  overflow: hidden;
  padding-top: 70px;
}
#products-page .product-card {
  background: #FEE4CA;
  margin-right: 40px;
  width: 100%;
  border-radius: 36px;
  transition-duration: 0.3s;
  position: relative;
  margin-bottom: 80px;
  min-height: 350px;
}
#products-page .product-card .product-btn {
  position: absolute;
  top: 30px;
  left: 20px;
}
#products-page .product-card .product-btn .colr-btn {
  cursor: pointer;
  padding: 5px 15px;
  border: 1px solid #94C11C;
  border-radius: 90px;
  box-shadow: 2px 3px #94C11C;
  background-color: #fff;
  color: #94C11C;
}
#products-page .product-card img {
  margin-left: auto;
  position: relative;
  padding-right: 5px;
  right: -100px;
  top: 20px;
  transform: rotate(25deg);
  transition-duration: 0.4s;
  max-width: 175px;
  margin-bottom: 30px;
}
#products-page .product-card .product-title {
  padding: 10px 20px 24px;
  bottom: 0;
  left: 20px;
  transition-duration: 0.4s;
}
#products-page .product-card .product-title h3 {
  font-weight: 700;
  color: #6b3d2b;
  font-size: 24px;
  margin-bottom: 0;
  font-family: "MuseoSans";
  text-align: center;
}
#products-page .product-card .product-title p {
  color: #6b3d2b;
  font-size: 16px;
  font-family: "FivoSansModern";
  text-align: center;
}
#products-page .product-card:hover {
  transform: translateY(-25px);
}
#products-page .product-card:hover img {
  transform: rotate(0deg) translateY(-65px);
  filter: drop-shadow(20px 10px 4px rgba(0, 0, 0, 0.1));
}
#products-page .box-1 {
  background: #FFE1DF;
}
#products-page .box-1 .product-title h3 {
  color: #C99931;
}
#products-page .box-2 {
  background: #F0D2F8;
}
#products-page .box-2 .product-title h3 {
  color: #93789D;
}
#products-page .box-3 {
  background: #D9DBFF;
}
#products-page .box-3 .product-title h3 {
  color: #69A8CE;
}
#products-page .box-4 {
  background: #FFE9D9;
}
#products-page .box-4 .product-title h3 {
  color: #E38E66;
}

#gallery-sec {
  padding: 10vw 40px;
  height: 100%;
  height: 200vh;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: hidden;
  overflow-x: hidden;
}
#gallery-sec .gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #gallery-sec .gallery {
    width: 160%;
  }
}
#gallery-sec .col {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  align-self: flex-start;
  justify-self: flex-start;
}
#gallery-sec .col:nth-child(2) {
  align-self: flex-end;
  justify-self: flex-end;
}
#gallery-sec .image {
  width: 100%;
  padding: 1rem;
}
#gallery-sec .image:hover {
  z-index: 99999999999 !important;
}
#gallery-sec img {
  transition: 0.3s ease-out;
  overflow: hidden;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  width: 100%;
}

#aboutus-page {
  background: #F5EBFF;
}
#aboutus-page .section-title h3 {
  margin-bottom: 20px;
}
#aboutus-page .section-title h3::after {
  left: 43%;
}
#aboutus-page .about-para p {
  font-family: "FivoSansModern";
  font-size: 17px;
  padding-bottom: 20px;
  text-align: center;
}
#aboutus-page .box-1 {
  background: #FFE1DF;
}
#aboutus-page .box-1 p {
  color: #C99931;
}
#aboutus-page .box-2 {
  background: #F0D2F8;
}
#aboutus-page .box-2 p {
  color: #93789D;
}
#aboutus-page .box-3 {
  background: #D9DBFF;
}
#aboutus-page .box-3 p {
  color: #69A8CE;
}
#aboutus-page .box-4 {
  background: #FFE9D9;
}
#aboutus-page .box-4 p {
  color: #E38E66;
}
#aboutus-page .who-point {
  padding: 20px 15px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  margin-right: 10px;
}
#aboutus-page .who-point img {
  max-width: 80px;
  margin-bottom: 20px;
}
#aboutus-page .who-point p {
  margin-bottom: 0;
  font-family: "MuseoSans";
  font-size: 16px;
}

#what-make {
  background: #00ACEE;
}
#what-make .Special {
  text-align: center;
}
#what-make .Special img {
  margin-bottom: 15px;
}
#what-make .Special p {
  font-family: "FivoSansModern";
  font-size: 20px;
  color: #fff;
}
#what-make .section-title {
  margin-bottom: 20px;
}
#what-make .section-title h3 {
  color: #fff;
}
#what-make .section-title h3::after {
  left: 43%;
}

#cta-1 {
  background: #FCE0FF;
  position: relative;
  overflow: visible;
  min-height: 370px;
}
#cta-1 .section-title {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
#cta-1 .section-title h2 {
  font-size: 46px;
  color: #00ACEE;
}
#cta-1 .section-title p {
  font-family: "FivoSansModern";
  font-size: 17px;
}
#cta-1 .cta-image-1 {
  transform: matrix(0.996195, -0.0871557, 0.0871557, 0.996195, 0, 0);
  z-index: 10;
  position: absolute;
  width: 18%;
  overflow: hidden;
  top: -20%;
  left: 6%;
}
#cta-1 .cta-image-2 {
  overflow: hidden;
  transform: matrix(0.99863, 0.052336, -0.052336, 0.99863, 0, 0);
  z-index: 10;
  position: absolute;
  width: 18%;
  overflow: hidden;
  bottom: -20%;
  right: 6%;
}

#testimonial {
  padding-bottom: 120px;
}
#testimonial .section-title h3::after {
  background: #E77E26;
  left: 45%;
}
#testimonial .tpabt-founder-div {
  position: relative;
  border: 4px solid #000;
  padding: 80px 30px 80px 110px;
  margin-top: 8em;
}
#testimonial .tpabt-founder-div .founder-img {
  position: absolute;
  left: -20em;
  top: -6em;
}
#testimonial .tpabt-founder-div .founder-img img {
  width: 400px;
}
#testimonial .tpabt-founder-div p {
  font-size: 18px;
  font-family: "FivoSansModern";
}
#testimonial .tpabt-founder-div .founder {
  float: right;
  margin-right: 15px;
  font-size: 16px;
  font-weight: 600;
  font-family: "MuseoSans";
}

#CareerList {
  position: relative;
}
#CareerList .CareerTitle {
  margin-bottom: 24PX;
}
#CareerList .CareerTitle h4 {
  font-size: 27px;
}
#CareerList .CareerBtns {
  display: flex;
  gap: 24PX;
}
#CareerList .CareerDetails {
  margin-top: 42px;
  padding: 40px;
  background: #FCE0FF;
  border-radius: 24px;
  margin-top: 90PX;
  height: 100%;
}
#CareerList .CareerDetails h2 {
  margin-bottom: 24px;
}
#CareerList .CareerDetails p {
  font-family: "FivoSansModern";
  margin-bottom: 7px;
}
#CareerList .CareerDetails p strong {
  font-weight: 900;
  color: #c76f67;
}
#CareerList .CareerDetails ul {
  font-family: "FivoSansModern";
}
#CareerList .CareerDetails .CareerRoles {
  margin-top: 24px;
}
#CareerList .CareerDetails .Career_apply_now {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#CareerList .nav.nav-tabs {
  display: flex;
  gap: 24px;
  border: none;
  justify-content: center;
  flex-wrap: wrap;
}
#CareerList .text-btn.active {
  background-color: #00ACEE;
  box-shadow: none;
  color: #fff;
  transform: translate(0px, 0px);
}
#CareerList .conatact-form {
  box-shadow: 0px 0px 35.63px 0px rgba(0, 0, 0, 0.1411764706);
  padding: 70px 40px 20px 40px;
  position: relative;
  background-color: #F9D7B1;
  border-radius: 14px;
  box-sizing: border-box;
  margin-top: 90PX;
}
#CareerList .conatact-form .section-title {
  margin-bottom: 42PX;
}
#CareerList .conatact-form .section-title h3 {
  color: #00ACEE;
  font-weight: 700;
  width: 100%;
  font-size: 34px;
  letter-spacing: 0;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
#CareerList .conatact-form .section-title h3::after {
  left: 34%;
}
#CareerList .conatact-form form .form-group {
  display: flex;
  width: 100%;
  gap: 14px;
}
#CareerList .conatact-form form .form-group .input-field {
  width: 100%;
  margin: 0 auto;
}
#CareerList .conatact-form form .form-group .input-field .form-label {
  margin-bottom: 10px;
}
#CareerList .conatact-form form .form-group .input-field input {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 18px;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  border-radius: 36px;
  margin-bottom: 16px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
}
#CareerList .conatact-form form .form-group .input-field input::-moz-placeholder {
  font-size: 12px;
  color: #888888;
  -moz-transition: 700ms;
  transition: 700ms;
}
#CareerList .conatact-form form .form-group .input-field input::placeholder {
  font-size: 12px;
  color: #888888;
  transition: 700ms;
}
#CareerList .conatact-form form .form-group .input-field input:focus::-moz-placeholder {
  opacity: 0;
}
#CareerList .conatact-form form .form-group .input-field input:focus::placeholder {
  opacity: 0;
}
#CareerList .conatact-form form .form-group .input-field input:focus {
  box-shadow: 6px 6px #00ACEE;
  border: 1px solid #00ACEE;
}
#CareerList .conatact-form form .input-field {
  width: 100%;
  margin: 0 auto;
}
#CareerList .conatact-form form .input-field .form-label {
  margin-bottom: 10px;
}
#CareerList .conatact-form form .input-field select {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 12px;
  color: #888888;
  padding: 15px 14px;
  width: 100%;
  background: #fff;
  border-radius: 36px;
  margin-bottom: 20px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
}
#CareerList .conatact-form form .input-field select:focus {
  box-shadow: 6px 6px #00ACEE;
  border: 1px solid #00ACEE;
}
#CareerList .conatact-form form .input-field .form-label {
  margin-bottom: 12px;
}
#CareerList .conatact-form form .input-field textarea {
  border: 1px solid #b5b5b5;
  outline: 0;
  font-size: 18px;
  padding: 15px 14px;
  width: 100%;
  background: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  transition: 300ms all ease;
  font-family: "FivoSansModern";
}
#CareerList .conatact-form form .input-field textarea::-moz-placeholder {
  font-size: 12px;
  color: #888888;
  -moz-transition: 700ms;
  transition: 700ms;
}
#CareerList .conatact-form form .input-field textarea::placeholder {
  font-size: 12px;
  color: #888888;
  transition: 700ms;
}
#CareerList .conatact-form form .input-field textarea:focus {
  box-shadow: 6px 6px #00ACEE;
  border: 1px solid #00ACEE;
}
#CareerList .conatact-form form .input-field textarea:focus::-moz-placeholder {
  opacity: 0;
}
#CareerList .conatact-form form .input-field textarea:focus::placeholder {
  opacity: 0;
}
#CareerList .conatact-form form .check-box {
  display: flex;
  gap: 10px;
  width: 100%;
}
#CareerList .image-wrapper {
  position: absolute;
  top: -10%;
  left: -15%;
  max-width: 205px;
}

#AboutTeam {
  background: url(../images/form-image.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
#AboutTeam .owl-theme .owl-dots .owl-dot span {
  background: #fff;
  width: 24px;
}
#AboutTeam .owl-theme .owl-dots .owl-dot.active span {
  background: #00ACEE;
}
#AboutTeam .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  position: absolute;
  bottom: 10px;
  left: 42%;
}
#AboutTeam .TeamContainer {
  background: #FCE0FF;
  padding: 40px;
  border-radius: 24px;
}
#AboutTeam .section-title {
  margin-bottom: 32px;
}
#AboutTeam .section-title h3 {
  text-align: left;
}
#AboutTeam .TeamContent p {
  font-family: "FivoSansModern";
}
#AboutTeam .owl-carousel.owl-loaded {
  height: 100%;
}
#AboutTeam .owl-carousel .owl-stage {
  height: 100%;
}
#AboutTeam .owl-carousel .owl-stage-outer {
  height: 100%;
}
#AboutTeam .owl-carousel.owl-drag .owl-item {
  height: 100%;
}
#AboutTeam .SliderItem {
  height: 100%;
}
#AboutTeam .SliderItem img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

#TeamBestPoints .section-title {
  margin-bottom: 42px;
}
#TeamBestPoints .BestPointsContainer {
  padding: 24px;
  border: 1px solid #bda3ef;
  margin-bottom: 24px;
  border-radius: 24px;
  box-shadow: 10px 10px 0 #bda3ef;
  transition: 500ms all ease;
  transform: translate(-5px, -5px);
  height: 100%;
  color: #6b3d2b;
}
#TeamBestPoints .BestPointsContainer:hover {
  transform: translate(0px, 0px);
  box-shadow: none;
}
#TeamBestPoints .BestPointsContainer .Title {
  font-family: "MuseoSans";
}
#TeamBestPoints .BestPointsContainer .BestpointTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
#TeamBestPoints .BestPointsContainer .BestpointTitle .Icon {
  width: 50px;
  height: 50px;
  background: #FEE4CA;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
#TeamBestPoints .BestPointsContainer .BestpointTitle .Icon img {
  width: 50%;
}
#TeamBestPoints .BestPointsContainer .Content {
  font-family: "FivoSansModern";
  letter-spacing: 1px;
}

#Stats {
  background: #97D369;
}
#Stats .AboutContent {
  color: #ffffff;
  max-width: 100%;
}
#Stats .AboutContent .section-title h3 {
  color: #fff;
  text-align: left;
  margin-bottom: 24px;
}
#Stats .AboutContent .section-title h3::after {
  display: none;
}
#Stats .AboutContent p {
  font-size: 24px;
  color: #ffffff;
  text-align: justify;
  font-family: "FivoSansModern";
  letter-spacing: 0.6px;
}
#Stats .CounterBox {
  padding: 24px;
  color: #fff;
  text-align: center;
}
#Stats .CounterBox:hover h4 {
  color: #fff;
}
#Stats .CounterBox h4 {
  color: transparent;
  transition: 300ms all ease;
  font-size: 62px;
  -webkit-text-stroke: 1px #ffffff;
}
#Stats .CounterBox .CounterName {
  font-family: "FivoSansModern";
  font-size: 21px;
}
#Stats .BorderBottom {
  border-bottom: 1px solid #fff;
}
#Stats .BorderRight {
  border-right: 1px solid #fff;
}/*# sourceMappingURL=style.css.map */