@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.woff2");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: #EF3341;
  color: #fff;
}
*::selection {
  background-color: #EF3341;
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #fff;
}
*::-webkit-scrollbar-thumb {
  background: #EF3341;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #41405E;
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(239, 51, 65, 0.5);
  border-radius: 50%;
  transition: all 0.3s linear;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
  transform: scale(2);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0%, 100% {
    transform: rotate(0deg) scale3d(1, 1, 1);
  }
  50% {
    transform: rotate(10deg) scale(1.1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes rotateStorm {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #EF3341;
  --secondary-color: #41405E;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --danger-color: #E92E2E;
  --primary-filter: invert(35%) sepia(71%) saturate(4029%) hue-rotate(336deg) brightness(93%) contrast(101%);
  --secondary-filter: invert(21%) sepia(7%) saturate(2750%) hue-rotate(203deg) brightness(98%) contrast(83%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.custom-btn {
  width: 219px;
  height: 50px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid !important;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  z-index: -1;
  transition: all 0.4s linear;
}
.custom-btn::after {
  left: 0;
}
.custom-btn::before {
  right: 0px;
}
.custom-btn span {
  font-size: 22px;
  font-weight: 700;
}
.custom-btn.light-btn {
  border-color: var(--light-color) !important;
  background-color: transparent;
}
.custom-btn.light-btn::after, .custom-btn.light-btn::before {
  background-color: var(--light-color);
}
.custom-btn.light-btn span {
  color: var(--light-color);
}
.custom-btn.primary-btn {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
}
.custom-btn.primary-btn::after, .custom-btn.primary-btn::before {
  background-color: var(--light-color);
}
.custom-btn.primary-btn span {
  color: var(--light-color);
}

.general-section {
  width: 100%;
  padding: 90px 0px;
  position: relative;
  z-index: 9 !important;
}
@media (max-width: 960px) {
  .general-section {
    padding: 40px 0px;
  }
}

.heading {
  width: 100%;
  text-align: center;
  color: var(--secondary-color);
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: capitalize;
}
@media (min-width: 960px) {
  .heading {
    font-size: 50px;
    margin-bottom: 40px;
  }
}

.navbar {
  width: 100%;
  padding: 34px 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s linear;
}
.navbar.primary-bk, .navbar.scrolled {
  padding: 10px 0px;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 10px rgba(239, 51, 65, 0.3);
}
.navbar.primary-bk .brand-name img, .navbar.scrolled .brand-name img {
  height: 60px !important;
}
@media (max-width: 960px) {
  .navbar.primary-bk .navbar-nav, .navbar.scrolled .navbar-nav {
    top: 75px !important;
  }
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
@media (max-width: 960px) {
  .navbar .contain .hamburger {
    display: block !important;
  }
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--light-color);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 105px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 25px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .navbar .contain .navbar-nav {
    padding-inline-end: 94px;
  }
}
@media (max-width: 1199px) and (min-width: 961px) {
  .navbar .contain .navbar-nav .nav-link {
    font-size: 13px !important;
  }
  .navbar .contain .navbar-nav .custom-btn {
    width: 150px;
  }
  .navbar .contain .navbar-nav .custom-btn span {
    font-size: 15px;
  }
}
@media (max-width: 960px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    position: absolute;
    top: 158px;
    flex-direction: column;
    left: -100%;
    gap: 0px;
    padding: 20px 15px;
    transition: all 0.3s linear;
    justify-content: flex-start;
  }
  .navbar .contain .navbar-nav.active-nav {
    left: 0px;
  }
  .navbar .contain .navbar-nav li {
    width: 100%;
    padding: 10px 0px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .contain .navbar-nav li:last-child {
    border-bottom: 0px;
  }
  .navbar .contain .navbar-nav li .nav-link::after {
    display: none;
  }
}
.navbar .contain .navbar-nav li {
  margin: 0px;
  padding: 0px;
}
.navbar .contain .navbar-nav li .nav-link {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
  position: relative;
  z-index: 9;
  padding: 0px;
}
.navbar .contain .navbar-nav li .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--light-color);
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.2s linear;
}
.navbar .contain .navbar-nav li .nav-link:hover::after, .navbar .contain .navbar-nav li .nav-link.active::after {
  transform: scaleX(1);
}

header {
  width: 100%;
  padding: 140px 0px 60px;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 960px) {
  header {
    padding: 200px 0px 50px;
  }
}
header.small-header {
  padding: 140px 0px 100px !important;
}
header.sub-header {
  background-color: transparent;
  padding: 300px 0px 150px;
}
header.sub-header .no-margin {
  margin: 0px;
}
@media (min-width: 960px) {
  header.sub-header .no-margin .title {
    font-size: 50px !important;
  }
}
@media (max-width: 960px) {
  header.sub-header {
    padding: 200px 0px 50px;
  }
}
header.sub-header .intro-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
header.sub-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: -1;
}
header.sub-header h1 {
  font-size: 34px !important;
}
header.sub-header p {
  font-size: 15px !important;
  font-weight: 500 !important;
}
header.sub-header .contain {
  justify-content: flex-start;
}
header.not-found h1 {
  font-size: 250px !important;
  animation: translateY 1s linear infinite alternate;
}
@media (max-width: 960px) {
  header.not-found h1 {
    font-size: 50px !important;
  }
}
header.not-found h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--light-color);
}
header .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  header .contain {
    padding-bottom: 20px;
  }
}
header .contain .brand-name img {
  width: 300px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 25px;
}
header .contain h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}
@media (min-width: 960px) {
  header .contain h1 {
    font-size: 70px;
  }
}
header .contain h1.title-head {
  font-size: 30px !important;
}
@media (min-width: 960px) {
  header .contain h1.title-head {
    font-size: 50px !important;
  }
}
header .contain p {
  font-size: 15px;
  font-weight: 700;
  color: var(--light-color);
  margin: 20px 0px;
}
@media (min-width: 960px) {
  header .contain p {
    font-size: 20px;
  }
}
header .contain .custom-btn {
  width: 180px;
  border-radius: 10px;
}
header .contain .button-contain {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 20px;
}
header .contain .button-contain .download-btn {
  width: 180px;
  height: 60px;
  display: flex;
  align-content: center;
  align-items: center;
  transition: all 0.3s linear;
}
@media (max-width: 960px) {
  header .contain .button-contain .download-btn {
    width: calc(50% - 20px);
  }
}
header .contain .button-contain .download-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .contain .button-contain .download-btn:hover {
  transform: translateY(-10px);
}
header .slider-contain {
  width: 100%;
  position: relative;
  z-index: 9;
}
header .slider-contain .mySwiper2 {
  width: 450px;
  height: 450px;
  margin-inline-end: auto;
}
header .slider-contain .mySwiper2 .swiper-slide {
  width: 450px;
  height: 450px;
}
header .slider-contain .mySwiper2 .swiper-slide img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
header .slider-contain .mySwiper {
  width: 100%;
}
header .slider-contain .mySwiper .swiper-slide,
header .slider-contain .mySwiper img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
header .intro-img-circle {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline-start: auto;
  position: relative;
  z-index: 99;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 960px) {
  header .intro-img-circle {
    gap: 20px;
  }
}
header .intro-img-circle .flex-images {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 16px;
}
header .intro-img-circle .flex-images .small-img {
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
}
header .intro-img-circle .flex-images .small-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .intro-img-circle .flex-images .small-img img.active-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
header .intro-img-circle .flex-images .small-img.active img.active-img {
  opacity: 1;
}
@media (max-width: 960px) {
  header .intro-img-circle .flex-images .small-img {
    width: 90px !important;
    height: 40px !important;
  }
}
header .intro-img-circle .big-img {
  width: 100%;
  height: 500px;
}
@media (max-width: 992px) {
  header .intro-img-circle .big-img {
    height: 250px;
  }
}
header .intro-img-circle .big-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .intro-img-circle .big-img.img-1, header .intro-img-circle .big-img.img-2, header .intro-img-circle .big-img.img-3, header .intro-img-circle .big-img.img-4, header .intro-img-circle .big-img.img-5, header .intro-img-circle .big-img.img-6, header .intro-img-circle .big-img.img-7 {
  display: none;
}
header .intro-img-circle .big-img.active-img {
  display: block;
}

.meals .box {
  width: 100%;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 960px) {
  .meals .box {
    width: 70%;
    margin: 0px auto;
  }
}
.meals .box img {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 960px) {
  .meals .box img {
    height: 350px;
  }
}
.meals .box h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 20px 0px;
}
.meals .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.meals .box:hover {
  transform: translateY(-10px);
}
.meals .box:hover h2 {
  color: var(--primary-color);
}

.discover {
  background: #F5F5F5;
  position: sticky;
  top: 80px;
  left: 0;
}
.discover.active {
  z-index: 1 !important;
}
.discover .flex-data {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 960px) {
  .discover .flex-data {
    padding-inline-start: 100px;
  }
}
.discover .flex-data h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  .discover .flex-data h1 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
.discover .flex-data .data {
  width: 70% !important;
}
@media (max-width: 960px) {
  .discover .flex-data .data {
    width: 100% !important;
  }
}
.discover .flex-data h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  .discover .flex-data h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.discover .flex-data p {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
@media (min-width: 960px) {
  .discover .flex-data p {
    text-align: justify;
  }
}
.discover .swiper-wrapper {
  padding: 10px 0px 0px;
}
.discover .flex-data {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.discover .image-contain {
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 9;
}
@media (max-width: 960px) {
  .discover .image-contain {
    height: 350px;
  }
}
.discover .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 960px) {
  .discover .image-contain img {
    -o-object-position: right;
       object-position: right;
  }
}

.work {
  background-color: var(--primary-color);
}
.work.scroll {
  position: sticky;
  top: 80px;
}
.work .heading {
  color: var(--light-color);
}
.work .box-contain:nth-child(1) .number, .work .box-contain:last-child .number {
  color: var(--primary-color);
}
.work .box {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.3s linear;
}
@media (max-width: 960px) {
  .work .box {
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0px !important;
  }
}
.work .box .number {
  -webkit-text-stroke: 1px white;
  font-size: 150px;
  font-weight: 500;
  color: var(--light-color);
}
@media (max-width: 960px) {
  .work .box .number {
    font-size: 60px;
  }
}
.work .box .data h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 15px;
}
.work .box .data p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
@media (min-width: 960px) {
  .work .box .data p {
    text-align: justify;
    width: 80%;
  }
}
.work .box:hover {
  transform: translateY(-10px);
}

.questions {
  background-color: var(--light-color);
}
.questions.scroll {
  position: sticky;
  top: 80px;
}
.questions .contain {
  width: 100%;
}
.questions .contain span {
  font-size: 30px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0px;
}
@media (max-width: 960px) {
  .questions .contain span {
    font-size: 16px;
  }
}
.questions .contain h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 15px 0px;
}
@media (max-width: 960px) {
  .questions .contain h1 {
    font-size: 30px;
  }
}
.questions .contain p {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 40px;
}
.questions .contain p a {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 900;
  text-transform: capitalize;
}
.questions .contain .nav {
  gap: 10px;
  border: 0px;
  padding: 0px;
}
@media (min-width: 960px) {
  .questions .contain .nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.questions .contain .nav .nav-item {
  width: calc(33.3333333333% - 10px);
  height: 50px;
  padding: 0px;
  margin: 0px;
}
@media (min-width: 960px) {
  .questions .contain .nav .nav-item {
    width: 220px;
  }
}
.questions .contain .nav .nav-item .nav-link {
  width: 100%;
  height: 100%;
  padding: 0px;
  border: 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
}
.questions .contain .nav .nav-item .nav-link.active, .questions .contain .nav .nav-item .nav-link:hover {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}
.questions .tab-pane {
  transition: all 0.3s linear;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
.questions .tab-pane.show.active {
  transform: translateY(0px);
  opacity: 1 !important;
  visibility: visible !important;
}
.questions .tab-pane .card {
  width: 100%;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #F5F5F5;
  margin-bottom: 20px;
}
.questions .tab-pane .card:last-child {
  margin-bottom: 0px;
  border: 0px;
}
.questions .tab-pane .card .card-header {
  width: 100%;
  background-color: transparent;
  border: 0px;
  padding: 0px;
}
.questions .tab-pane .card .card-header .btn {
  width: 100%;
  display: block;
  gap: 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  padding-inline-end: 40px;
  text-align: start;
  text-decoration: none;
  z-index: 9;
}
@media (max-width: 960px) {
  .questions .tab-pane .card .card-header .btn {
    font-size: 20px;
  }
}
.questions .tab-pane .card .card-header .btn::before {
  content: "+";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-color);
  top: calc(50% - 15px);
  right: 10px;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.3s linear;
  pointer-events: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.questions .tab-pane .card .card-header .btn[aria-expanded=true]::before {
  content: "-";
}
.questions .tab-pane .card .card-body {
  padding: 20px 10px;
}
.questions .tab-pane .card .card-body p {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
  text-transform: capitalize;
}
@media (min-width: 960px) {
  .questions .tab-pane .card .card-body p {
    text-align: justify;
  }
}

.our-solutions .custom-heading {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 960px) {
  .our-solutions .custom-heading {
    margin-bottom: 35px;
  }
}
.our-solutions .custom-heading h1 {
  color: var(--secondary-color);
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 15px;
}
@media (max-width: 960px) {
  .our-solutions .custom-heading h1 {
    font-size: 25px;
  }
}
.our-solutions .custom-heading p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.our-solutions .box {
  width: 100%;
  border-radius: 50px;
  background-color: #DAE0E0;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
  text-align: center;
}
.our-solutions .box .box-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50px;
}
@media (max-width: 960px) {
  .our-solutions .box .box-img {
    height: 200px;
  }
}
.our-solutions .box .data {
  width: 100%;
  padding: 30px 25px !important;
}
@media (max-width: 960px) {
  .our-solutions .box .data {
    padding: 20px 15px;
  }
}
.our-solutions .box h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0px 0px 20px;
}
.our-solutions .box .list {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 10px;
}
.our-solutions .box .list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}
.our-solutions .box:hover {
  transform: translateY(-10px);
  background-color: var(--light-color);
  box-shadow: 0px 0px 10px rgba(239, 51, 65, 0.3);
}
.our-solutions .box:hover h2 {
  color: var(--primary-color);
}

.percentage {
  background-color: var(--primary-color);
}
.percentage .heading {
  color: var(--light-color);
  font-size: 35px;
}
.percentage .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--light-color);
  margin: 20px 0px 0px;
  text-align: center;
}
.percentage .box {
  width: 100%;
  text-align: center;
  transition: all 0.3s linear;
}
.percentage .box span {
  font-size: 50px;
  font-weight: 900;
  color: var(--light-color);
}
@media (min-width: 960px) {
  .percentage .box span {
    font-size: 150px;
  }
}
.percentage .box p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px 0px;
}
.percentage .box:hover {
  transform: translateY(-10px);
}

.contact-us .data h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 25px;
}
.contact-us .data .logo-icon {
  width: 250px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 960px) {
  .contact-us .data .logo-icon {
    height: 150px;
    height: 250px;
  }
}
.contact-us .form-contain .form-control {
  border-color: var(--dark-color) !important;
  color: var(--dark-color) !important;
}
.contact-us .form-contain .form-control::-moz-placeholder {
  color: var(--gray-color) !important;
}
.contact-us .form-contain .form-control::placeholder {
  color: var(--gray-color) !important;
}
@media (min-width: 960px) {
  .contact-us .form-contain .custom-btn {
    margin-inline-start: auto !important;
    margin-inline-end: 0px !important;
  }
}
.contact-us .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.contact-us .contain h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.contact-us .contain .list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-us .contain .list li a {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 15px;
}
.contact-us .contain .list li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-filter);
}
.contact-us .contain .list li a span {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
}
.contact-us .contain .list li a:hover img {
  animation: tada 0.3s linear both;
}
.contact-us .contain .list li a:hover span {
  color: var(--primary-color);
}
.contact-us .map-contain {
  width: 100%;
  height: 500px;
}
@media (max-width: 960px) {
  .contact-us .map-contain {
    height: 260px;
  }
}
.contact-us .map-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.form-contain .form-group {
  width: 100%;
  margin-bottom: 20px;
}
.form-contain .form-group .form-control {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border-radius: 0px;
  border: 0px;
  color: var(--light-color);
  border-bottom: 1px solid var(--light-color);
  resize: none;
}
.form-contain .form-group .form-control.text-area {
  height: 100px;
  padding: 20px 10px;
}
.form-contain .form-group .form-control::-moz-placeholder {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control::placeholder {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .error {
  display: none;
  align-items: center;
  align-content: center;
  margin-top: 5px !important;
  position: relative;
  z-index: 9;
  padding-inline-start: 30px;
  color: var(--danger-color);
  font-size: 16px;
  font-weight: 500;
}
.form-contain .form-group .error::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/form/error.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 0;
  z-index: -1;
}
html[dir=ltr] .form-contain .form-group .error::after {
  left: 0px;
  right: unset;
}
.form-contain .custom-btn {
  margin: 20px auto 0px;
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content .modal-body .form-contain {
  padding: 60px 40px;
}
.modal-dialog .modal-content .modal-body .form-contain .form-control {
  background-color: #FBFBFB;
}
.modal-dialog .modal-content .modal-body .form-contain .text-area {
  height: 140px;
}
.modal-dialog .modal-content .modal-body .form-contain .custom-btn {
  width: 100% !important;
}
.modal-dialog .modal-content .modal-body .form-contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .form-contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 20px 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-dialog .modal-content .modal-body .contain {
    padding: 30px 20px;
  }
}
.modal-dialog .modal-content .modal-body .contain img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain .link {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px 0px;
}

footer {
  width: 100%;
  padding: 40px 0px;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
}
footer.scroll {
  position: sticky;
  top: 80px;
}
footer .contain {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  gap: 20px;
}
footer .contain .brand-name img {
  width: 120px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .navbar-nav {
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
footer .contain .navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  padding: 0px;
}
footer .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
footer .contain .button-contain {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
footer .contain .button-contain .download-btn {
  width: 160px;
  height: 50px;
  display: block;
  transition: all 0.3s linear;
}
@media (max-width: 960px) {
  footer .contain .button-contain .download-btn {
    width: calc(50% - 10px);
  }
}
footer .contain .button-contain .download-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
footer .contain .button-contain .download-btn:hover {
  transform: translateY(-10px);
}
footer .contain .socail-media {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 15px;
}
footer .contain .socail-media li a {
  width: 24px;
  height: 24px;
  display: flex;
  align-content: center;
  align-items: center;
}
footer .contain .socail-media li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
footer .contain .socail-media li a:hover img {
  animation: tada 0.3s linear both;
}

.copyrights {
  width: 100%;
  padding: 10px 0px;
  background-color: #eb1624;
}
.copyrights p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
  text-align: center;
}

input[type=file] {
  display: none;
}

.form-label-shape {
  width: 100%;
  height: 50px;
  border: 1px solid white;
  padding: 0px 12px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 0px;
  cursor: pointer;
}
.form-label-shape::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/attach.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% - 12px);
  left: 12px;
  filter: var(--light-filter);
}
html[dir=ltr] .form-label-shape::after {
  right: 12px;
  left: unset;
}

.file__value {
  margin: 10px 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.file__value--text {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
}

.file__value--remove {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.file__value--remove::after {
  content: "X";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 50%;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--dark-color);
  font-size: 15px;
}
html[dir=ltr] .file__value--remove::after {
  left: unset;
  right: 0px;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */