@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  scroll-behavior: smooth;
  position: relative;
  z-index: -1;
}
/* #luxy{
  position: relative;
  z-index: -1;
} */
main {
  position: relative;
  z-index: -1;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
}
a{
  display: inline-block;
  text-decoration: none;
}
.footer-row {
  border-top: 1px solid var(--social-color);
  margin-top: 70px;
}
.footer-col {
  margin: 28px 0;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.home-col {
  position: relative;
}
.home-row {
  /* position: relative; */
}
.services-col {
  margin: 0 auto;
}
.home-col {
  margin-left: auto;
}
body {
  font-family: "Poppins", sans-serif;
}
:root {
  --primary-color: #242424;
  --pagination-color: #424242;
  --border-color: #ffcc00;
  --back-ground-color: #ffbc44;
  --hover-color: #2662fd;
  --secondary-color: #ffffff;
  --header-color: #80a3ff;
  --card-background-color: #c6c6c6;
  --text-color: #141414;
  --email-background-color: #F4F0F0;
  --social-color: #999999;
  --btn-color: #ccdaff;
  --slider-color: #ffbf00;
  --offcanvsbckground-color: #c3d4ff;
  --figma-blue-50: #8fb1fe;
  --review-color: #d9d9d9;
  --review-background-color: #ffbc44;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
}
.banner-container {
  margin-top: 1px !important;
  min-height: 100vh;
}
.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
/* title */
.title5 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.title4 {
  font-size: 24px;
  font-weight: 400;
}
.title1 {
  font-size: 72px;
  font-weight: 600;
  text-transform: capitalize;
}
.title2 {
  font-size: 55px;
  font-weight: 600;
  text-transform: capitalize;
}
.title3 {
  font-size: 32px;
  font-weight: 500;
}
/* Splash Background */
#splash-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

/* Smoke Effect */
/* Background */
#splash-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #141414, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

/* Golden Smoke */
.gold-smoke {
  position: absolute;
  inset: -60%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 195, 120, 0.12), transparent 40%),
    radial-gradient(circle at 75% 40%, rgba(255, 165, 60, 0.10), transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(255, 215, 130, 0.14), transparent 50%);
  filter: blur(70px);
  animation: goldSmoke 14s infinite ease-in-out;
}

/* Content */
.splash-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeIn 1.4s ease;
}

.splash-content img {
  width: 90px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 15px rgba(255, 190, 100, 0.8));
  animation: goldGlow 3s infinite ease-in-out;
}

.splash-content div {
  font-size: 36px;
  letter-spacing: 3px;
  margin: 0 auto;
}

.splash-content p {
  font-size: 14px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  color: #f5d18a;
}

/* Animations */
@keyframes goldSmoke {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-12%, -10%) scale(1.15); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes goldGlow {
  0% { filter: drop-shadow(0 0 8px rgba(255,190,100,.4)); }
  50% { filter: drop-shadow(0 0 26px rgba(255,210,140,1)); }
  100% { filter: drop-shadow(0 0 8px rgba(255,190,100,.4)); }
}

/* Golden Loader */
.gold-loader {
  width: 140px;
  height: 3px;
  margin: 22px auto 0;
  background: rgba(255, 215, 130, 0.25);
  overflow: hidden;
  border-radius: 5px;
}

.gold-loader span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd27d,
    #ffb347,
    #ffd27d,
    transparent
  );
  animation: goldLine 1.6s infinite ease-in-out;
}

/* Loader Animation */
@keyframes goldLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}



/* nav-sec */
.header-sec {
  position: fixed;
  width: 100%;
  /* overflow-x: hidden; */
  top: 0;
  z-index: 2;
  padding: 28px 0;
  background: var(--secondary-color);
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2), 0px 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.nav-hide {
  transform: translateY(-100%);
}
.nav-logo {
  max-width: 52px;
  margin-left: 20px;
}
.nav-logo > a {
  width: 100%;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-link {
  padding: 0 !important;
  position: relative;
  transition: color 0.6s ease;
  padding: 5px 10px;
  color: var(--primary-color);
  cursor: pointer;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 1%;
  top: 100%;
  width: 0%;
  height: 2px;
  background-color: var(--border-color);
  transition: width 0.35s ease;
  pointer-events: none;
}
/* hover */
.nav-link:hover {
  color: var(--border-color);
}
.nav-link:hover::after {
  width: 100%;
}
/* active (clicked / current page) */
.nav-link.active {
  color: var(--border-color);
}
.nav-link.active::after {
  width: 100%;
}
.drop-link {
  color: var(--primary-color);
  /* padding-right: 22px; */
}
.drop-link > .drop-down {
  font-size: 12px !important;
}
/* .nav-link::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 12px;
  border: 2px solid var(--hover-color);
  opacity: 0;
  transition: 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--hover-color);
  opacity: 0;
  transition: 0.3s ease;
}
/* Top-left corner */
/* .nav-link::before {
  top: 0;
  left: 0;
  border-bottom: none;
  border-right: none;
  transform: translate(-5px, 0);
} */
/* .nav-link::after {
  bottom: -10px;
  right: -10px;
  border-top: none;
  border-left: none;
  transform: translate(0, 0);
} */
/* .nav-link:hover::before {
  opacity: 1;
  transform: translate(-5px, 0);
}
.nav-link:hover::after {
  opacity: 1;
  transform: translate(-5px, -10px);
}  */
/* .nav-link.active::before {
  opacity: 1;
  transform: translate(-5px, 0);
}
.nav-link.active::after {
  opacity: 1;
  transform: translate(-5px, -10px);
} */
.nav-item {
  margin: 0 20px;
  height: 27px;
}
.offcanvas > ul {
  /* max-width: 558px;
  height: 67px;
  border-radius: 100px; */
  /* background: var(--card-background-color); */
  margin: 0 auto 0 24px;
  display: flex;
  align-items: center;
}
.offcanvas {
  flex-direction: row;
  align-items: center;
}
nav,
.navbar {
  border: none;
}
.navbar {
  border-top: 1px solid var(--primary-color) !important;
}
.primary-btn {
  padding: 16px 36px;
  border-radius: 8px !important;
  background: var(--hover-color);
  border-radius: 63px;
  color: var(--secondary-color);
  /* margin: 12px 20px 12px 0; */
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}
.primary-btn::before,
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
.primary-btn::before {
  left: -51%;
}
.primary-btn::after {
  right: -51%;
}
.primary-btn:hover::before {
  left: 0;
}
.primary-btn:hover::after {
  right: 0;
}
.primary-btn:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.nav-top,
.nav-top > ul {
  display: flex;
  align-items: center;
}
.social-list {
  margin-left: auto;
  max-width: 238px;
}
.nav-top-list > li {
  margin-left: 10px;
 padding-right: 20px;
  border-right: 1px solid var(--hover-color);
}
.nav-border{
  border: none !important;
}
.social-list > li {
  margin: 0 7.5px;
}
.nav-top-link {
  color: var(--hover-color);
  background: transparent;
}
.social-link {
  color: var(--primary-color);
  transition: 0.6s all linear;
  font-size: 20px;
}
.nav-top-link > span {
  margin-left: 15px;
}
.nav-top-link:hover {
  color: var(--border-color);
}
.social-link:hover {
  transform: translateY(-30%);
}
.follow-link {
  width: 77px;
  font-size: 16px;
}
.nav-form{
  position: relative;
  margin: 0 24px 0 0;
}
#search{
  max-width: 208.97px;
  padding: 12px 0 12px 35px;
  border-radius: 8px;
  border: none;
  outline: 1px solid var(--primary-color);
}
.nav-location {
  position: relative;
  display: flex;
  align-items: center;
  width: 196.19px;
  padding: 12px 12px;
  height: 45px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background: var(--secondary-color);
  margin: 0 27px 0 0;
}
.social-list{
  padding: 0;
}
.location-text {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}
/* Select covers entire area */
.location-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* invisible but clickable */
  cursor: pointer;
}

/* Icons stay visible */
.nav-location i {
  pointer-events: none; /* VERY IMPORTANT */
}

.dropdown-icon {
  margin-left: auto;
}
.none{
 
}
.serach-icon{
  position: absolute;
  top: 25%;
  left: 5%;
}
/* nav-end */
.modal-dialog{
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding: 0 15px;
  border-radius: 20px;
}
.modal-content {
  max-width: 700px;
  height: 750px;
  border-radius: 0;
  background: var(--secondary-color);
  /* text-align: center; */
  transition: all 0.4s ease;
}
.right-modal{
 background: linear-gradient(
  to right,
  #2b57ff,
  #4a74ff,
  #6f93ff,
  #8fb0ff
);
display: flex;
align-items: center;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
/* width: 50%; */
}
.left-modal{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.log-left-cont{
   border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.log-right-modal{
  border-top-left-radius: 20px ;
  border-bottom-left-radius: 20px ;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.modal-right-cont{
  width: 100%;
}
.modal-body-right{
  height: 45px !important;
}
.modal-cont{
  text-align: center;
  color: var(--secondary-color);
}
.input-cont {
  max-width: 556px;
  margin: 0 auto;
  /* display: flex; */
}
/* Remove Bootstrap default caret */
.dash-drop::after {
  display: none;
}

.form-drop {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: #f5f7fb;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  min-width: 200px;
}

/* Right arrow icon */
.drop-icon {
  font-size: 25px;
  transition: transform 0.3s ease;
}

/* Rotate when dropdown opens */
.dropdown.show .drop-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dash-menu {
  border-radius: 12px;
  padding: 8px 0;
}

.dash-menu .dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
}


/* .dash-menu{
  background: var(--figma-blue-50) !important;
}
.dash-drop{
  color: var(--primary-color);
}
.dash-drop::after {
 margin-left: 170px;
} */
.modal-title {
  /* margin: 0 0 0 auto; */
  text-align: center;
}
/* .modal-col{
  display: flex;
  flex-direction: column;
} */
#modal-email {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 20px;
  margin: 0 auto 24px;
  padding-left: 20px;
  background: var(--email-background-color);
}
#modal-password {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 20px;
  margin: 0 auto 24px;
  padding-left: 20px;
   background: var(--email-background-color);
}
#confirm-password {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 20px;
  padding-left: 20px;
  margin: 0 auto 24px;
   background: var(--email-background-color);
}
#address {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  margin-bottom: 24px;
  border-radius: 20px;
  padding-left: 20px;
   background: var(--email-background-color);
}
.modal-btn {
  padding: 14.5px 46px;
  background: var(--hover-color);
  border-radius: 20px;
  color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 24px;
  border: none;
  outline: none;
  cursor: pointer;
}
.modal-btn::before,
.modal-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
.modal-btn::before {
  left: -51%;
}
.modal-btn::after {
  right: -51%;
}
.modal-btn:hover::before {
  left: 0;
}
.modal-btn:hover::after {
  right: 0;
}
.modal-btn:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.modal-header {
  border: none;
  flex-direction: column;
  text-align: center;
}
.log-modal-body{
  height: 400px;
  flex: 0;
}
.log-modal-header{
  margin-top: 80px;
}
.modal-right-header{
  margin-top: 150px;
}
.log-modal-right-header{
  margin-top: 200px !important;
}
.right-btn-close{
 text-align: right;
}
.modal-cont>p{
  max-width: 306px;
  margin: 40px 0 0;
}
.apple-btn {
  display: flex;
  align-items: center;
  width: 266px;
  height: 48px;
  justify-content: center;
  border-radius: 20px;
  outline: 1px solid #989898;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.apple-btn::after,
.apple-btn::before {
  content: "";
  width: 50%;
  height: 100%;
  background: var(--hover-color);
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.4s all ease;
}
.apple-btn::after {
  right: -50%;
}
.apple-btn::before {
  left: -50%;
}
.apple-btn:hover::after {
  right: 0;
}
.apple-btn:hover::before {
  left: 0;
}
.apple-btn:hover{
  color: var(--secondary-color);
}
.apple-img {
  width: 20px;
  margin: 0 5px 0 0;
}
.apple-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.google-btn {
  display: flex;
  align-items: center;
  width: 266px;
  height: 48px;
  justify-content: center;
  border-radius: 20px;
  outline: 1px solid #989898;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
}
.google-btn::after,
.google-btn::before {
  content: "";
  width: 50%;
  height: 100%;
  background: var(--hover-color);
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.google-btn::after {
  right: -50%;
}
.google-btn::before {
  left: -50%;
}
.google-btn:hover::after {
  right: 0;
}
.google-btn:hover::before {
  left: 0;
}
.google-btn:hover{
  color: var(--secondary-color);
}
.log-btn{
  padding: 14.5px 46px;
  border-radius: 20px;
  background: var(--hover-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--secondary-color);
  transition: all 0.4s ease;
  border: none;
  outline: none;
}
.log-btn::after,
.log-btn::before{
  position: absolute;
  content: '';
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  transition: all 0.4s ease;
  z-index: -1;
}
.log-btn::after{
  right: -51%;
}
.log-btn::before{
  left: -51%;
}
.log-btn:hover::after{
  right: 0;
}
.log-btn:hover::before{
  left: 0;
}
.log-btn:hover {
  color: var(--hover-color);
}
.log-modal-btn{
  padding: 14.5px 68.5px;
  background: var(--hover-color);
  color: var(--secondary-color);
  border-radius: 20ex;
  position: relative;
  border: 0;
  outline: 0;
  overflow: hidden;
  z-index: 1;
}
.log-modal-btn::after,
.log-modal-btn::before{
  content: '';
  width: 51%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  z-index: -1;
  background: var(--secondary-color);
  border: none;
  outline:  none;
}
.log-modal-btn::after{
  right: -51%;
}
.log-modal-btn::before{
  left: -51%;
}
.log-modal-btn:hover::after{
  right: 0;
}
.log-modal-btn:hover::before{
  left: 0;
}
.log-modal-btn:hover{
  color: var(--hover-color);
  outline: 1px solid var(--hover-color) !important;
}
#sign-box{
  display: flex;
  width: 100%;
}
/* #sign-box .left-modal,
#sign-box .right-modal,
#sign-box .log-left-cont,
#sign-box .log-right-modal {
  display: none;
}
#sign-box.signup-active .left-modal,
#sign-box.signup-active .right-modal {
  display: block;
}
#sign-box.login-active .log-left-cont,
#sign-box.login-active .log-right-modal {
  display: block;
} */
.btn-cont{
  text-align: center;
  margin: 24px 0 ;
}
.input-cont-para {
  max-width: 271px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  margin-top: 24px;
}
.input-cont-para > p {
  margin-right: 8px;
  max-width: 216px;
}
.input-cont input:focus {
  border-color: #5b7cfa;
  box-shadow: 0 0 0 2px rgba(91, 124, 250, 0.2);
}
.btn-close{
  padding: 10px 10px;
}
.input-cont input:focus {
  border-color: #4f46e5;
}

/* Error message */
.error {
  color: #dc2626;
  font-size: 12px;
  margin-bottom: 4px;
  display: block;
}
.dropdown-menu {
  background: var(--header-color);
}
.dropdown-item {
  color: var(--secondary-color);
}
.dropdown-divider {
  display: none;
}
/* .status {
  margin-top: 15px;
  font-weight: 600;
}

.open-link {
  color: #28a745;
} */


/* banner-sec */
.banner-sec {
  position: relative;
  margin-top: 100px;
  padding: 50px 0 0 ;
}
.banner-sec::after {
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 0 100%, 27% 48%);
  background: var(--hover-color);
  width: 50%;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -22;
}

.background-circle {
  width: 365px;
  height: 365px;
  border-radius: 50%;
  background: var(--back-ground-color);
  /* padding-top: 500px; */
  position: absolute;
  /* right: 100%; */
  z-index: -1;
  top: 20%;
  left: 35px;
}
.banner-img {
  margin-top: 90px;
  max-width: 1212px;
  height: 935px;
  margin-left: auto;
  position: relative;
  perspective: 1200px; /* 3D depth */
}
.banner-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: all 0.7s; */
  transform-style: preserve-3d;
  animation: readyTurn 4s ease-in-out infinite;
  transform-origin: center bottom;
}
/* 3D turning animation */
/* @keyframes readyTurn {
  0% {
    transform: rotateY(0deg) rotateX(0deg) translateY(0);
  }
  25% {
    transform: rotateY(-8deg) rotateX(2deg) translateY(-4px);
  }
  50% {
    transform: rotateY(10deg) rotateX(-1deg) translateY(0);
  }
  75% {
    transform: rotateY(-6deg) rotateX(1deg) translateY(-3px);
  }
  100% {
    transform: rotateY(0deg) rotateX(0deg) translateY(0);
  }
} */
/* .banner-img:hover img {
  transform: scale(1.05);
} */
.banner-cont {
  max-width: 701px;
  /* margin-left: auto; */
}
.banner-cont > .title1 {
  margin: 0 0 35px 0;
  max-width: 719px;
  color: var(--primary-color);
}
.banner-cont > .title1 > span {
  color: var(--text-color);
  position: relative;
}
.hand-underline::after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: -18px;
  width: 62%;
  height: 34px;
  background: url(../images/Vector\ 1\ \(1\).png) no-repeat center / contain;
  transform: rotate(-3deg);
}
.banner-cont > .title5 {
  max-width: 337px;
  outline: 1px solid var(--secondary-color);
  border-radius: 5px;
  color: var(--secondary-color);
  padding: 5px 10px;
  margin-left: 130px;
}
.banner-cont > p {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  max-width: 719px;
  /* margin-left: 130px; */
}
.banner-btn {
  display: flex;
  align-items: center;
}
.play-btn {
  display: flex;
  align-items: center;
  margin-left: 24px;
  color: var(--primary-color);
}
.play-btn:hover {
  color: var(--back-ground-color);
}
.play-btn > span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--back-ground-color);
  margin-right: 12px;
  color: var(--primary-color);
  transition: 0.4s all ease;
}
.play-btn > span:hover {
  background: var(--secondary-color);
  outline: 2px solid var(--back-ground-color);
}
.book-btn {
  padding: 10px 25px;
  background: var(--hover-color);
  border-radius: 8px;
  color: var(--secondary-color);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
}
.book-btn::before,
.book-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
.book-btn::before {
  left: -50%;
}
.book-btn::after {
  right: -50%;
}
.book-btn:hover::before {
  left: 0;
}
.book-btn:hover::after {
  right: 0;
}
.book-btn:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
/* services-slider-sec */
.services-slider-sec {
  background: var(--slider-color);
  /* margin-top: 1050px; */
}
.services-swiper {
  max-width: 100% !important;
  height: 120px !important;
  background: var(--slider-color);
}
.services-slide {
  max-width: 97px !important;
  height: 36px !important;
  padding: 48px 0;
}
.ac-services-slide {
  max-width: 177px !important;
  height: 36px !important;
  padding: 48px 0;
}
.services-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.services-swiper .swiper-scrollbar,
.services-swiper .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
/* services-sec */
.services-sec {
  background: var(--offcanvsbckground-color);
  padding: 100px 0 0;
}
.services-cont>.title2{
  max-width: 1045px;
}
.services-card {
  max-width: 312px;
  height: 406px;
  border: none;
  background: var(--offcanvsbckground-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  height: 528px;
  background: var(--secondary-color);
}
.services-card-body{
  text-align: left;
  padding: 24px 30px;
}
.services-card-img {
  max-width: 78px;
  margin-bottom: 24px;
}
.services-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.services-sub-img {
  max-width: 111px;
  margin-bottom: 24px;
}
.services-sub-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.services-card-text {
  font-size: 16px;
  max-width: 252px;
}
.services-card-title {
  margin: 0 0 10px;
  font-size: 36px;
  max-width: 252px;
}
.learn-btn {
  padding: 10px 59.4px !important;
}
.card-swiper {
  max-width: 100% !important;
  height: 628px !important;
}
.card-slide {
  max-width: 312px !important;
  height: 528px !important;
}
.card-body {
  text-align: left;
}
.services-card-btn {
  max-width: 252px;
  margin: 0 auto;
}
.services-card .learn-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.services-card:hover .learn-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.swiper-button-prev {
  position: absolute;
  top: 90% !important;
  left: 44% !important;
  font-size: 35px;
  color: var(--primary-color);
  transition: 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  font-size: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.swiper-navigation-icon {
  display: none;
}
.swiper-button-next {
  position: absolute;
  top: 90% !important;
  right: 47% !important;
  font-size: 35px;
  color: var(--primary-color);
}
.services-btn {
  max-width: 328px;
  margin-left: auto;
}
.home-btn {
  padding: 10px;
  padding: 12px 32px;
  color: var(--primary-color);
  margin: 0 0 66px auto;
  border-radius: 8px;
  outline: 1px solid var(--primary-color);
  transition: all ease 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-btn::after,
.home-btn::before {
  position: absolute;
  width: 51%;
  height: 100%;
  content: "";
  background: var(--hover-color);
  top: 0;
  z-index: -1;
  transition: 0.3s all ease;
}
.home-btn::after {
  right: -51%;
}
.home-btn::before {
  left: -51%;
}
.home-btn:hover::after {
  right: 0;
}
.home-btn:hover::before {
  left: 0;
}
.busniess-btn {
  margin-left: 52px;
}
.home-btn.active {
  padding: 12px 32px;
  outline: none;
  background: var(--hover-color);
  color: var(--secondary-color);
}
.home-btn:hover {
  outline: none;
  color: var(--secondary-color);
}
.card-swiper .swiper-scrollbar,
.card-swiper .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
/* home-sec */
.home-sec {
  background: var(--offcanvsbckground-color);
  position: relative;
  z-index: -1;
  padding: 114px 0 109px;
}
.home-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 37%;
  background: var(--figma-blue-50);
  z-index: -2;
}
.home-img {
  max-width: 588px;
  height: 912px;
  position: relative;
  /* overflow: hidden; */
}
.home-img:hover img,
.home-sub-img:hover img {
  transform: scale(1.15);
}
.home-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s ease;
}
.home-cont>.title2{
  max-width: 708px;
}
.home-cont > .title3 {
  margin: 13px 0 24px;
}
.home-cont > .title1 {
  line-height: 149.8%;
}
.home-cont > p {
  margin-bottom: 100px;
  font-size: 16px;
  line-height: 27px;
  text-transform: capitalize;
}
.home-sub-img {
  max-width: 447px;
  height: 558px;
  margin-left: auto;
  overflow: hidden;
  position: relative;
}
.home-sub-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s ease;
}
.img-box {
  position: absolute;
  max-width: 246px;
  border-radius: 8px;
  padding: 18px 35px;
  bottom: 17%;
  right: -12%;
  background: var(--secondary-color);
}
.icon-box {
  width: 52.41px;
  height: 52.41px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 92px;
  right: 85px;
  background: var(--secondary-color);
}
.home-icon {
  width: 26.2px;
  margin: 0;
}
.home-icon > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-box > p {
  font-size: 16px;
  margin: 0;
}
.back-circle {
  width: 306px;
  height: 306px;
  border-radius: 50%;
  background: var(--back-ground-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 83%;
  right: -19%;
  z-index: -1;
}
.inner-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--figma-blue-50);
}
/* how-sec */
.how-sec {
  background: var(--figma-blue-50);
  z-index: -1;
  padding: 0 0 121px;
}
.how-header {
  margin-bottom: 86px;
}
.how-card {
  background: var(--figma-blue-50);
  border: none;
}
.how-card-text {
  font-size: 16px;
  max-width: 227.28px;
  margin: 0 auto;
  text-align: center;
}
.hover-box {
  text-align: center;
  /* position: relative; */
}
.how-card-title {
  margin: 0;
}
.how-card-img {
  width: 37px;
  margin: 0;
}
.how-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-line {
  width: 137.04px;
  height: 3px;
  background: var(--secondary-color);
  position: absolute;
  border: none;
  left: 85%;
  top: 12%;
  opacity: 1;
  z-index: 1;
}
/* .how-card:hover .img-circle {
  background: var(--back-ground-color);
}
.how-card:hover .side-line {
  background: var(--back-ground-color);
}
.how-card:hover .how-card-title {
  color: var(--back-ground-color);
} */
/* .how-card.active .how-card-title {
  color: var(--back-ground-color);
}
.how-card.active .img-circle {
  background: var(--back-ground-color);
}
.how-card.active .side-line {
  background: var(--back-ground-color);
} */
/* equipment-sec */
.equipment-sec {
  background: var(--figma-blue-50);
  padding: 0 0 100px;
}
.equipment-header {
  color: var(--secondary-color);
  margin-bottom: 50px;
}
.equipment-btn {
  text-align: right;
  margin-bottom: 20px;
}
.explore-btn {
  padding: 12px 32px;
  color: var(--primary-color);
  border-radius: 8px;
  outline: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.explore-btn::after,
.explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--hover-color);
  z-index: -1;
  transition: 0.4s ease;
}
.explore-btn::before {
  left: -50%;
}
.explore-btn::after {
  right: -50%;
}
.explore-btn:hover:before {
  left: 0;
}
.explore-btn:hover::after {
  right: 0;
}
.explore-btn:hover {
  color: var(--secondary-color);
  outline: 0;
}
.equipment-card {
  background: var(--figma-blue-50);
  border: none;
  max-width: 378px;
  background: transparent;
  border: none;
  transition: transform 0.35s ease;
  cursor: pointer;
}
.equipment-card:hover .equipment-img {
  background: var(--hover-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-12px);
}
.equipment-img-box {
  max-width: 378px;
  height: 372px;
  padding: 52px 40px;
  background:  #2453e6;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.equipment-img{
  max-width: 170px !important;
  margin: 0 auto;
  background:  #2453e6;
}
.equipment-img>img{
  object-fit: cover !important;
  background:  #2453e6;
}
.equipment-card-img {
  max-width: 299px;
  overflow: hidden;
  transition: transform 0.45s ease;
}
.equipment-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.equipment-card:hover .equipment-img-box {
  transform: translateY(-12px);
  background: #2453e6;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.equipment-card:hover img {
  transform: scale(1.12);
}
.equipment-card:hover .equipment-card-title {
  color: #ffffff;
  transform: translateY(-4px);
}

/* subtitle */
.card-body > .title4 {
  transition: opacity 0.3s ease;
}

.equipment-card:hover .title4 {
  opacity: 0.85;
}
.equipment-card-title {
  text-align: center;
  font-size: 32px;
  margin-top: 16px;
  color: var(--secondary-color);
}
.card-body > .title4 {
  text-align: center;
  color: var(--secondary-color);
}
.equipment-swiper {
  max-width: 100% !important;
  height: 500px !important;
}
.equipment-slide {
  max-width: 378px !important;
  height: 500px !important;
}
.equipment-swiper .swiper-scrollbar,
.equipment-swiper .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
/* testimonial-sec */
.testimonials-sec {
  padding: 100px 0 150px;
  background: linear-gradient(90deg, #c5e3ff 0%, #d9e8ff 50%, #ffffff 100%);
  /* height: 150vh; */
}
.testimonils-header > .title2 {
  /* text-align: center; */
}
.testimonils-header > .title2 > div {
  /* color: var(--hover-color); */
}
.testimonils-header > .title3 {
  /* text-align: center; */
  /* color: var(--header-color); */
  margin: 13px 0 50px;
}
.myswiper {
  max-width: 1260px;
  height: 650px;
  border-radius: 8px;
}
.slider-card {
  max-width: 1160px;
  height: 567px;
  border-radius: 8px;
  background: var(--card-background-color);
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  max-width: 1260px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  border-radius: 8px;
  cursor: pointer;
}
.card-text {
  max-width: 1160px;
  margin: 32px auto 56px;
  font-size: 24px;
  color: var(--text-color);
}
.slider-card-img {
  max-width: 150px;
  margin-right: auto;
  margin-top: 30px;
}
.slider-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-cont {
  display: flex;
  align-items: center;
}
.star-card {
  color: var(--border-color);
  font-size: 35px;
}
.star-card > span {
  color: var(--offcanvsbckground-color);
}
.swiper-pagination {
  position: absolute;
  bottom: -50%;
}
.card-body {
  text-align: center;
}
.card-body > .card-title {
  text-align: center;
  margin: 0 auto;
}
.card-title {
  max-width: 240px;
  font-size: 32px;
  font-weight: 500;
  margin-left: 10px;
}
.card-title > p {
  font-size: 20px;
}
.card-right-img {
  max-width: 102.67px;
  margin: 0 20px 80px auto;
}
.card-right-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-img-cont {
  display: flex;
  flex-direction: row;
}
.card-body {
  padding: 10px !important;
}
.card-top-img {
  max-width: 102.67px;
  margin: 50px 0 0 27px;
}
.card-top-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-right-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-pagination > span {
  width: 20px;
  height: 20px;
  background: var(--pagination-color);
}
.trustslider .swiper-scrollbar,
.trustslider .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
.myswiper .swiper-scrollbar,
.myswiper .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
.testimonial-cont > .title2 {
  text-align: center;
  margin-top: 70px;
}
/* trust-sec */
.trust-sec {
  padding: 26px 0;
  background: var(--offcanvsbckground-color);
}
/* .trust-container {
  margin-top: 1000px;
} */
.trustslider {
  max-width: 100% !important  ;
  height: 120px !important;
}
.trust-slide {
  height: 120px !important;
  width: 120px !important;
 background: linear-gradient(90deg, #c5e3ff 0%, #d9e8ff 50%, #ffffff 100%);
}
.trust-big-slide{
  max-width: 213px !important;
  height: 120px !important;
 background: linear-gradient(90deg, #c5e3ff 0%, #d9e8ff 50%, #ffffff 100%);
}
.trust-large-slide{
  max-width: 149px !important;
  height: 120px !important;
  background: linear-gradient(90deg, #c5e3ff 0%, #d9e8ff 50%, #ffffff 100%);
}
.swiper-wrapper {
  border: none !important;
}
.trust-slide-img {
  max-width: 120px;
  background: var(--secondary-color) !important;
}
.trust-slide-img> img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trus-slider-img-big{
  max-width: 213px;
}
.trus-slider-img-big>img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trus-slider-img-large{
  max-width: 149px;
}
.trus-slider-img-large>img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trustslider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.trustslider .swiper-scrollbar,
.trustslider .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
/* team-sec */
.team-sec {
  background: var(--review-background-color);
  padding: 100px 0;
  position: relative;
}
.team-sec::after {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  background: var(--offcanvsbckground-color);
  bottom: 0;
}
.team-header {
  margin-bottom: 50px;
}
/* .review-wraper {
  position: relative;
  z-index: 1;
}
.review-card {
  max-width: 312px;
  border: none;
  height: 350px;
  border-radius: 0;
  background: var(--secondary-color);
  position: relative;
  transition: all 0.35s ease;
  z-index: 1;
  cursor: pointer;
}
.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.review-card:hover::after {
  border-color: var(--hover-color);
}
.review-box {
  display: flex;
  padding: 16px;
  align-items: center;
}
.review-img {
  max-width: 102px;
  margin-right: 12px;
  transition: transform 0.35s ease;
}
.review-card:hover .review-img {
  transform: scale(1.08);
}
.review-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.review-card-cont {
  margin-bottom: 19px;
  font-size: 16px;
}
.review-card-cont {
  display: flex;
}
.review-icon {
  color: var(--border-color);
}
.review-rating {
  margin: 0 10px 0 6px;
}
.review-card-text {
  font-size: 16px;
  margin: 0 0 10px;
}
.review-number {
  padding: 5px 9px;
  border-radius: 10px;
  background: var(--review-color);
  font-size: 14px;
}
.request-btn {
  padding: 12px 32px !important;
  background: var(--btn-color);
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 8px;
}
.request-btn::after,
.request-btn::before {
  background: var(--hover-color);
  content: "";
  position: absolute;
  top: 0;
  width: 51%;
  height: 100%;
  z-index: -1;
  transition: 0.4s ease;
}
.request-btn::before {
  left: -51%;
}
.request-btn::after {
  right: -51%;
}
.request-btn:hover::after {
  right: 0;
}
.request-btn:hover::before {
  left: 0;
}
.request-btn:hover {
  color: var(--secondary-color);
}
.review-btn {
  max-width: 241px;
  margin: 0 auto;
  text-align: center;
} */
 .team-swiper{
  max-width: 100% !important;
  height: 450px !important;
 }
 .team-slide{
  max-width: 249.62px !important;
  height: 450px !important;
 }
 .team-swiper .swiper-scrollbar,
.team-swiper .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
 .team-card{
  max-width: 249.62px;
  height: 450px;
  background: var(--secondary-color);
  border-radius: 11.9px;
  overflow: hidden;
  transition: all 0.5s ease;
 }
 .team-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}
 .team-card-img{
  max-width: 249.62px;
  height: 250px;
  position: relative;
  border-radius: 11.9px;
 }
 .team-card-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11.9px;
  transition: transform 0.5s ease;
 }
/* .team-card-img::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
} */
.team-card-img:hover img {
  transform: scale(1.08);
}

.team-card-img:hover::after {
  opacity: 1;
}
 .team-icon-circle{
  width: 77.45px;
  height: 77.45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  position: absolute;
  top: 86%;
  left: 35%;
  border: 1px solid var(--primary-color);
 }
 .team-icon-circle>figure{
  margin: 0 ;
  width: 33.96px;
 }
 .team-icon-circle>figure>img{
  width: 100%;
  height: 100%;
  object-fit: contain;
 }
 .team-card-body{
  margin-top: 45.87px;
 }
 .team-card-body>.card-title{
  font-size: 14.5px;
 }
 .team-card-body>p{
  font-size: 11.91px;
 }
 .view-btn{
  font-size: 14.5px;
  color: var(--hover-color);
  transition: all 0.4s linear;
  position: relative;
 }
 .view-btn::after{
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  top: 100%;
  right: 100%;
  background: var(--hover-color);
  transition: all 0.4s linear;
 }
 .view-btn:hover::after{
  width: 100%;
  right: 0;
 }
.header-btn {
  text-align: right;
}
/* .review-explore-btn {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
} */
/* blog-sec */
.blog-sec {
  padding: 0 0 102px;
  background: var(--offcanvsbckground-color);
}
.blog-header {
  margin-bottom: 48px;
}
.blog-swiper {
  max-width: 100% !important;
  height: 552px !important;
}
.blog-slide {
  max-width: 512px !important;
  height: 552px !important;
}
.blog-card {
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  max-width: 512px;
  height: 552px ;
}
.blog-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}
.blog-card-img {
  max-width: 512px;
  position: relative;
  overflow: hidden;
}
.blog-card-img > img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
}
.blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card:hover .blog-card-img::after {
  opacity: 1;
}
.blog-card-title {
  max-width: 444px;
  font-size: 24px;
  margin: 15px 0 30px;
  text-align: left;
}
.blog-img-box {
  display: flex;
  align-items: center;
}
.blog-img {
  width: 73px;
  margin: 0;
}
.blog-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blog-img-box > p {
  font-size: 24px;
  margin: 0 0 0 auto;
  max-width: 144px;
}
.blog-card-box {
  display: flex;
}
.bookmark.active {
  height: 90px;
}
.bookmark {
  width: 17.5px;
  height: 25.62px;
  transition: height 0.3s ease;
  margin-top: 12px;
}
.bookmark > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bookmark.active {
  height: 60px;
}
.blog-swiper .swiper-scrollbar,
.blog-swiper .swiper-scrollbar-drag {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
/* app-sec */
.app-sec {
  background: var(--hover-color);
  position: relative;
  z-index: -2;
  padding: 50px 0;
}
.app-sec::after {
  content: "";
  clip-path: polygon(43% 0, 100% 0, 100% 100%, 0% 100%);
  background: var(--back-ground-color);
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.app-cont > .title2 {
  max-width: 708px;
  color: var(--secondary-color);
  margin-bottom: 32px;
}
.app-box {
  display: flex;
}
.apple-store-img {
  max-width: 193px;
  transition: all 0.4s linear;
}
.apple-store-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
.apple-store-img > a {
  width: 100%;
}
.apple-store-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.play-store-img {
  max-width: 193px;
  margin-right: 16px;
  transition: 0.4s all linear;
}
.play-store-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
.play-store-img > a {
  width: 100%;
}
.play-store-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobile-img {
  max-width: 427px;
  position: relative;
  perspective: 1000px;
}
.mobile-img > img {
  width: 100%;
  height: 100%;
}
.rating-bubble {
  background: #fff;
  max-width: 344px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 50%;
  right: -27%;
  pointer-events: none;
}
.rating-bubble::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -92px;

  width: 104px;
  height: 96px;

  background: var(--secondary-color);

  /* THIS MAKES BOTTOM THIN */
  border-radius: 0 0 50% 50%;

  clip-path: polygon(53% 0, 37% 32%, 22% 47%, 0 53%, 14% 40%, 21% 25%, 22% 0);
}
/* speech bubble tail */

.stars {
  margin-bottom: 8px;
}

.stars i {
  color: var(--secondary-color);
  font-size: 20px;
}

.stars i.active {
  color: var(--border-color);
}

.rating-bubble h3 {
  font-size: 18px;
  margin: 8px 0 12px;
  color: var(--primary-color);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--primary-color);
}

.brand .trust {
  color: var(--hover-color);
}
/* footer-sec */
.footer-sec {
  background: var(--primary-color);
  padding: 70px 0 30px;
}
.footer-header {
  text-align: center;
  color: var(--header-color);
  font-size: 36px;
  font-weight: 500;
}
.footer-form {
  text-align: center;
  margin: 32px 0 70px;
}
.footer-form-cont {
  max-width: 774px;
  height: 80px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--secondary-color);
}
#email {
  border: none;
  outline: none;
  width: 570px;
  height: 76px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding-left: 20px;
}
#submit {
  background: var(--hover-color);
  border: none;
  width: 184px;
  height: 70px;
  /* padding: 26px 64.5px; */
  border-radius: 19px;
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 5px 5px 5px 0;
}
#submit::before,
#submit::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
#submit::before {
  left: -50%;
}
#submit::after {
  right: -50%;
}
#submit:hover::before {
  left: 0;
}
#submit:hover::after {
  right: 0;
}
#submit:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.footer-social,
.footer-social > ul {
  display: flex;
  align-items: center;
  padding: 0;
}
.footer-social > ul > li {
  margin-right: 21px;
}
.footer-social-link {
  font-size: 24px;
  color: var(--social-color);
  transition: 0.6s all linear;
}
.footer-social-link:hover {
  transform: translateY(-30%);
  color: var(--hover-color);
}
.footer-main-cont > p {
  color: var(--social-color);
  font-size: 12px;
  margin-bottom: 40px;
}
.footer-link {
  color: var(--social-color);
  font-size: 16px;
}
.footer-link:hover {
  color: var(--header-color);
}
.footer-cont-header {
  color: var(--hover-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-cont > ul > li {
  margin-bottom: 8px;
}
.side-box {
  display: flex;
  align-items: center;
  color: var(--social-color);
}
.left-side > a {
  border-right: 1px solid var(--social-color);
  padding-right: 5px;
  font-size: 14px;
  color: var(--social-color);
}
.right-side > a {
  margin-left: 5px;
  font-size: 14px;
  color: var(--social-color);
}
.footer-low-img-cont {
  display: flex;
  align-items: center;
  max-width: 179px;
  margin-left: auto;
  margin-right: 30px;
}
.footer-lower-img {
  max-width: 35px;
  margin-right: 12px;
}
.footer-lower-img > a {
  width: 100%;
}
.footer-lower-img > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-logo {
  max-width: 52px;
  margin-bottom: 40px;
}
.footer-logo > a {
  width: 100%;
}
.footer-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mail-list{
  width: 350px;
}

/* media-quarry */
@media screen and (max-width: 1750px) {
  /* nav,
  .navbar {
    margin: 0 50px;
  } */
  /* .banner-cont > .title1 {
    margin-left: 80px;
  } */
  /* .banner-cont > p {
    margin-left: 80px;
  } */
  /* .banner-cont > .title5,
  .book-btn,
  .banner-img-box {
    margin-left: 80px;
  } */
}
@media screen and (max-width: 1650px) {
  /* .banner-cont > .title1 {
    margin-left: 50px;
  } */
  /* .banner-cont > p {
    margin-left: 50px;
  } */
  /* .banner-cont > .title5,
  .book-btn,
  .banner-img-box {
    margin-left: 50px;
  } */
  .title1 {
    font-size: 65px;
  }
}
@media screen and (max-width: 1500px) {
  /* .title1 {
    font-size: 72px;
  } */
  /* .banner-cont > p {
    font-size: 18px;
  } */
  .title1 {
    font-size: 65px;
  }
}
@media screen and (max-width: 1400px) {
  .title1 {
    font-size: 45px;
  }
  .banner-img {
    max-width: 900px;
  }
}

@media screen and (max-width: 1330px) {
  .title1 {
    font-size: 48px;
  }
  
  .background-circle {
    width: 265px;
    height: 264px;
    left: 70px;
  }
  .side-line {
    left: 75%;
  }
  .review-number {
    font-size: 10px;
    padding: 5px 7px;
  }
  .review-number {
    font-size: 10px;
    padding: 5px 7px;
  }
  .review-rating {
    margin: 0 5px;
  }
  .review-card-text {
    font-size: 12px;
    margin: 0 0 10px;
  }
  .blog-card{
    height: 470px;
  }
  .nav-form{
    margin-right: auto;
  }
  .nav-item{
    margin: 0 10px;
  }
  .nav-top-link{
    font-size: 14px;
  }
  .social-link{
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  /* .banner-img {
   max-width: 700px;
  } */
 
   #modal-email,
   #modal-password,
   #confirm-password,
   #address{
    width: 406px;
   }
   .input-cont{
    max-width: 406px;
    margin: 0 auto;
   }
   .form-drop{
    width: 406px;
   }
   .btn-cont{
    margin-top: 32px;
   }
   .apple-btn,
   .google-btn{
    width: 170px;
   }
  .card-text {
    margin: 10px 0 20px;
  }
  .col-20 {
    width: 50%;
  }
  .nav-location{
    margin-right: 10px;
    padding: 8px;
  }
  .nav-link{
    font-size: 14px;
  }
  .drop-link{
    font-size: 14px;
  }
  .nav-top-list>li{
    padding-right: 5px;
    margin-left: 5px;
  }
  .nav-logo{
    margin: 0;
  }
  .offcanvas>ul{
    margin: 0 0 0 10px;
  }
  .primary-btn{
    padding: 14px 24px;
  }
  #search{
    max-width: 196px;
  }
  .review-card {
    margin: 10px auto;
  }
  .footer-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .footer-main-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .app-sub-img {
    max-width: 100px;
    right: 32%;
  }
}
@media screen and (max-width: 1110px) {
  .nav-top-link > span {
    display: none;
  }
  .banner-star {
    font-size: 15px;
  }
  .banner-img-box > p {
    font-size: 28px;
  }
  .background-circle {
    left: 40px;
  }
  .home-img {
    height: 800px;
    max-width: 450px;
  }
  .back-circle {
    top: 74%;
    width: 256px;
    height: 256px;
    right: -17%;
  }
  .inner-circle {
    width: 190px;
    height: 190px;
  }
  .home-sub-img {
    height: auto;
    max-width: 350px;
  }
  .img-box {
    bottom: 25%;
  }
  .side-line {
    left: 75%;
    width: 110px;
  }
  .rating-bubble {
    padding: 15px;
    right: -33%;
  }
  .mobile-img {
    max-width: 350px;
  }
}
@media screen and (max-width: 991px) {
  .header-sec {
    padding: 15px 0;
  }
  .offcanvas {
    flex-direction: column;
    text-align: center;
    /* position: relative; */
    z-index: 99;
    background: var(--offcanvsbckground-color);
  }
  .offcanvas-backdrop {
    z-index: 9;
  }
  .offcanvas .dropdown-menu {
    position: absolute;
    z-index: 999;
  }
  .offcanvas-header {
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--hover-color);
  }
  .offcanvas > ul {
    background: var(--offcanvsbckground-color);
    margin: 0 !important;
    height: auto;
    border-radius: 0;
  }
  .nav-link {
    margin: 0 0 10px;
  }
  .drop-link {
    margin: 0 0 10px;
  }
  .nav-item {
    margin: 0;
  }
  .nav-btn {
    text-align: center;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%232662fd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .nav-top-list>li{
    border: none;
  }
  .nav-form{
    margin: 10px auto 0;
  }
  .modal-content{
    max-width: 600px;
  }
  .right-modal{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
  }
  .left-modal{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
  }
  .log-left-cont{
   border-top-left-radius: 20px !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
}
.log-right-modal{
  border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 0;
}
  .banner-img {
    max-width: 100%;
    height: auto;
  }
  .home-cont>.title2{
    margin: 0 auto;
  }
  .background-circle {
    left: 27%;
  }
  .banner-cont > .title5 {
    margin: 0 auto;
    text-align: center;
  }
  .banner-cont > .title1 {
    margin: 25px auto 50px;
    text-align: center;
  }
  .banner-cont {
    margin: 90px auto 0;
  }
  .title2 {
    font-size: 40px;
  }
  .title4 {
    font-size: 20px;
  }
  .banner-cont > p {
    margin: 0 auto;
    text-align: center;
  }
  .banner-img-box {
    max-width: 426px;
    margin: 25px auto 50px;
  }
  .banner-btn {
    text-align: center;
  }
  .book-btn {
    margin: 0 auto;
  }
  .banner-wraper {
    margin: 0 auto;
    height: auto;
  }
  .choose-container {
    margin-top: 1600px;
  }
  .home-row {
    flex-direction: column-reverse;
  }
  .home-img {
    margin: 0 auto;
    max-width: 100%;
  }
  .home-sub-img {
    margin: 15px auto;
    max-width: 100%;
  }
  .back-circle {
    right: 12%;
    top: 80%;
  }
  .img-box {
    right: 7%;
    bottom: 22%;
  }
  .services-cont {
    text-align: center;
  }
  .services-header {
    text-align: center;
  }
  .services-btn {
    margin: 0 auto;
    text-align: center;
  }
  .home-cont {
    text-align: center;
  }
  .card-slide {
    height: auto;
  }
  .card-swiper {
    height: auto;
  }
  .services-card {
    height: 400px;
  }
  .swiper-button-prev {
    left: 45% !important;
  }
  .swiper-button-next {
    right: 40% !important;
  }
  .how-card {
    margin: 0 auto;
  }
 
  .side-line {
    left: 110%;
  }
  .sub-side-line {
    transform: rotate(90deg);
    left: 33% !important;
    top: 115%;
  }
  .title3 {
    font-size: 28px;
  }
  .modal-dialog{
    flex-direction: column-reverse;
    align-items: center;
  }
  .home-col {
    margin-top: 120px;
  }
  .how-header {
    text-align: center;
    margin: 0;
  }
  .equipment-header {
    text-align: center;
  }
  .equipment-btn {
    text-align: center;
  }
  .testimonils-header {
    text-align: center;
  }
  .review-card {
    margin: 0 auto 10px;
  }
  .header-btn {
    text-align: center;
  }
  .team-header {
    text-align: center;
  }
  .blog-header {
    text-align: center;
  }
  .blog-swiper {
    height: auto;
  }
  .blog-slide {
    height: auto;
  }
  .blog-card {
    height: auto;
  }
  .mobile-img {
    margin: 0 auto;
  }
  .explore-btn {
    margin-bottom: 25px;
  }
  .footer-form-cont {
    max-width: 710px;
  }
  #submit {
    margin-left: auto;
  }
  #email {
    width: 500px;
    margin-right: auto;
  }
  .col-20 {
    width: 50%;
  }
  .footer-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .footer-main-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .card-text {
    font-size: 18px;
  }
  .card-title {
    font-size: 24px;
  }
  .card-title > p {
    font-size: 16px;
  }
  .star-card {
    font-size: 28px;
  }
  .card-right-img {
    max-width: 70px;
  }
  .card-top-img {
    max-width: 70px;
  }
  .swiper-pagination > span {
    height: 15px;
    width: 15px;
  }
  .slider-card-img {
    max-width: 150px;
  }
  .primary-btn {
    margin: 10px 0;
  }
  .about-cont {
    text-align: center;
    max-width: 656px;
    margin: 0 auto;
  }
  .about-img {
    margin: 20px auto;
  }
  .card-body {
    text-align: center;
  }
  .card-title {
    margin: 0 auto !important;
  }
  .banner-img {
    margin-top: 20px;
  }
  .banner-btn {
    text-align: center;
  }
  .book-btn {
    margin: 0 0 0 auto;
  }
  .play-btn {
    margin-right: auto;
  }
  .img-wraper {
    max-width: 100%;
    height: auto;
  }
  .navbar-toggler {
    padding: 0;
    border: 0;
  }
  .app-img {
    margin-bottom: 20px;
  }
  .app-sub-img {
    right: 40%;
    max-width: 150px;
  }
  .logo-img {
    right: 48%;
    bottom: 45%;
  }
  .app-cont > .title2 {
    margin: 0 auto 20px;
    text-align: center;
  }
  .app-cont > .title4 {
    margin: 20px auto;
  }
  .app-box {
    margin: 0 auto;
    max-width: 411px;
  }
}
@media screen and (max-width: 860px) {
  .background-circle {
    left: 24%;
  }
  .back-circle {
    right: 5%;
  }
  .side-line {
    left: 100%;
  }
}
@media screen and (max-width: 768px) {
  .nav-top-link > span {
    display: none;
  }
  .social-list > li {
    margin: 0 5px;
  }
  .background-circle {
    width: 165px;
    height: 165px;
    left: 28%;
  }
  .title3 {
    font-size: 24px;
  }
  .banner-img{
    margin-top: 250px;
  }
  .banner-cont>p{
    margin: 0 0 25px;
  }
  .banner-cont{
    margin-top: 170px;
  }
  .swiper-button-prev {
    left: 40% !important;
  }
  .swiper-button-next {
    right: 35% !important;
  }
  .nav-top-list > li {
    margin-right: 22px;
  }
  .home-img {
    height: 600px;
  }
  .footer-form-cont {
    max-width: 560px;
  }
  .back-circle {
    top: 75%;
    right: 8%;
  }
  .img-box {
    max-width: 200px;
    padding: 14px;
    bottom: 27%;
    right: 10%;
  }
  .img-box > p {
    font-size: 14px;
  }
  .icon-box {
    bottom: 75px;
  }
  .how-card {
    margin: 0 auto 120px;
  }
  .side-line {
    transform: rotate(90deg);
    width: 100px;
    left: 33% !important;
    top: 130% !important;
  }
  .blog-card-title{
    font-size: 15px;
  }
  .col-home {
    margin: 0;
  }
  .review-card {
    margin: 0 auto 10px;
  }
  .footer-logo {
    margin: 0 auto 19px;
  }
  #submit {
    margin-left: auto;
    width: 150px;
  }
  #email {
    width: 400px;
    margin-right: auto;
    height: 70px;
  }
  .col-20 {
    width: 100%;
  }
  .footer-cont {
    text-align: center;
  }
  .footer-main-cont {
    text-align: center;
  }
  .footer-social > ul {
    max-width: 248px;
    margin: 0 auto;
  }
  .slider-card-img {
    max-width: 150px;
  }
  .side-box {
    max-width: 344px;
    margin: 0 auto;
  }
  .footer-low-img-cont {
    margin: 0 auto;
  }
  .title1 {
    font-size: 40px;
  }
  .title2 {
    font-size: 36px;
  }
  .title4 {
    font-size: 18px;
  }
  .footer-header {
    font-size: 28px;
  }
  .choose-container {
    margin-top: 1450px;
  }
  .footer-cont {
    text-align: center;
    max-width: 500px;
  }
  .footer-main-cont {
    text-align: center;
  }
  .footer-social > ul {
    max-width: 248px;
    margin: 0 auto;
  }
  .slider-card-img {
    max-width: 150px;
  }
  .side-box {
    max-width: 344px;
    margin: 0 auto;
  }
  .footer-low-img-cont {
    margin: 0 auto;
  }
  .mail-list{
  width: 350px;
  margin: 0 auto;
}
.contact-list{
  max-width: 500px;
}
}
@media screen and (max-width: 650px) {
  .back-circle {
    right: 3%;
  }
  .img-box {
    right: 6%;
  }
  #email {
    width: 240px;
    margin-right: auto;
    height: 70px;
  }
  .footer-form-cont {
    max-width: 360px;
  }
  #submit {
    margin-left: auto;
    width: 90px;
    font-size: 12px;
  }
}
@media screen and (max-width: 576px) {
  .nav-logo {
    max-width: 30px;
  }
  .background-circle {
    left: 25%;
  }
  .banner-img {
    margin-top: 150px;
  }
  .play-btn > span {
    width: 50px;
    height: 50px;
  }
  .title3 {
    font-size: 16px;
  }
  .book-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  .swiper-button-prev {
    left: 35% !important;
  }
  .swiper-button-next {
    right: 30% !important;
  }
  .home-img {
    height: 500px;
  }
  .back-circle {
    width: 200px;
    height: 200px;
    right: 5%;
  }
  .inner-circle {
    width: 150px;
    height: 150px;
  }
  .blog-card-title {
    font-size: 22px;
  }
  .app-box {
    flex-direction: column;
  }
  .apple-store-img {
    margin: 0 auto;
  }
  .play-store-img {
    margin: 10px auto;
  }
  .mobile-img {
    max-width: 300px;
  }
  .rating-bubble {
    right: -28%;
    max-width: 170px;
  }
  #submit {
    margin-left: auto;
    width: 100px;
    font-size: 12px;
  }
  #email {
    width: 250px;
    margin-right: auto;
    height: 70px;
  }
  .footer-form-cont {
    max-width: 360px;
  }
  .star-card {
    font-size: 22px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-title > p {
    font-size: 12px;
  }
  /* .slider-card-img{
    max-width: 100px;
  } */
  .card-text {
    font-size: 12px;
  }
  .slider-card {
    height: 450px;
  }
  .myswiper {
    height: 550px;
  }
  .swiper-slide {
    height: 450px;
  }
  .swiper-pagination > span {
    height: 10px;
    width: 10px;
  }
  .card-right-img {
    max-width: 50px;
  }
  .card-top-img {
    width: 50px;
  }
  .card-choose-title {
    font-size: 20px;
  }
  .choose-card-text {
    font-size: 14px;
  }
  .choose-card-img {
    width: 40px;
  }
  .title1 {
    font-size: 36px;
  }
  .title2 {
    font-size: 28px;
  }
  .title4 {
    font-size: 14px;
  }
  .title5 {
    font-size: 14px;
  }
  .banner-cont > .title5 {
    max-width: 280px;
  }
  .banner-cont > p {
    font-size: 14px;
  }
  .img-box {
    max-width: 150px;
    padding: 8px;
  }
  .img-box > p {
    font-size: 10px;
  }
  .icon-box {
    bottom: 75%;
    right: 70px;
    width: 35px;
    height: 35px;
  }
  .home-icon {
    width: 18px;
  }
  .footer-header {
    font-size: 24px;
  }
  .choose-container {
    margin-top: 1550px;
    position: relative;
    z-index: 2;
  }
  .choose-container {
    margin-top: 1250px;
  }
  .faq-sec {
    padding: 30px 0;
  }
  .testimonials-sec {
    padding: 30px 0 0;
  }
  .navbar-toggler-icon {
    width: 25px !important;
    color: var(--btn-color) !important;
  }
  .navbar-toggler {
    padding: 0;
    border: 0;
  }
  .app-sub-img {
    max-width: 130px;
  }
  .app-box {
    flex-direction: column;
  }
  .play-img {
    margin: 0 auto 10px;
  }
  .apple-img {
    margin: 0 auto;
  }
  .modal-content {
    max-width: 400px;
    height: 580px;
    margin: 0 auto;
  }
  #modal-email {
    max-width: 250px;
    margin-bottom: 10px;
  }
  #modal-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
   #confirm-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
   #address {
    max-width: 250px;
    margin-bottom: 10px;
  }
  .modal-btn {
    padding: 16px 26px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .input-cont {
    max-width: 260px;
  }
    .form-drop{
    width: 250px;
   }
  .input-cont-para > p {
    font-size: 14px;
    margin: 0 auto;
  }
  .log-btn {
    font-size: 14px;
  }
  .apple-btn {
    width: 120px;
    height: 45px;
  }
  .google-btn {
    width: 120px;
    height: 45px;
  }
  .apple-img {
    margin: 0 10px 0 0;
  }
  /* .btn-cont {
    max-width: 255px !important;
  } */
  .input-cont-para {
    margin-top: 10px;
  }
  .stars > i {
    font-size: 15px;
  }
  .accordion {
    height: 500px;
  }
   .footer-link{
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .social-list > li {
    margin: 0 2px;
  }
  .nav-top {
    margin: 0 auto;
  }
  .nav-top-list > li {
    margin-right: 5px;
  }
  .background-circle {
    width: 100px;
    height: 100px;
    left: 28%;
  }
  .banner-img {
    height: 350px;
  }
  .banner-img-box {
    flex-direction: column;
  }
  .banner-sub-img {
    right: 20%;
    bottom: 10px;
  }
  .banner-img-box > p {
    margin: 0 auto;
    max-width: 160px;
    text-align: center;
  }
  .back-circle {
    right: -2%;
    width: 180px;
    height: 180px;
  }
  .home-img {
    height: 400px;
  }
  .inner-circle {
    width: 130px;
    height: 130px;
  }
  .slider-card-img {
    max-width: 120px;
  }
  .card-text {
    margin: 20px 0;
  }
  .card-top-img {
    max-width: 30px;
  }
  .card-right-img {
    max-width: 30px;
  }
  .about-cont > p {
    font-size: 14px;
  }
  .choose-container {
    margin-top: 1500px;
    position: relative;
    z-index: 2;
  }
  .testimonial-cont > .title2 {
    font-size: 24px;
  }
  .testimonils-header > .title2 {
    font-size: 26px;
  }
  .choose-container {
    margin-top: 1200px;
  }
  .app-sub-img {
    right: 36%;
  }
  .mobile-img {
    max-width: 250px;
  }
  .rating-bubble {
    right: -28%;
    max-width: 140px;
    height: 120px;
  }
  .rating-bubble > h3 {
    font-size: 14px;
    margin: 0 0 10px;
  }
  .rating-bubble > .brand {
    font-size: 12px;
  }
  .rating-bubble > .stars {
    font-size: 10px;
    margin: 0;
  }
}
@media screen and (max-width: 420px) {
  .banner-sub-img {
    right: 25%;
  }
  .slider-card-img {
    max-width: 100px;
  }
  .card-text {
    margin: 15px 0 10px;
  }
  .star-card {
    font-size: 10px;
  }
   .right-btn-close{
   text-align: right;
  }
  .title1 {
    font-size: 28px;
  }
  .title2 {
    font-size: 24px;
  }
  .title4 {
    font-size: 12px;
  }
  .back-circle {
    right: -2%;
    width: 140px;
    height: 140px;
    top: 79%;
  }
  .home-img {
    height: 350px;
  }
  .img-box {
    right: 2%;
  }
  .inner-circle {
    width: 100px;
    height: 100px;
  }
  .about-cont > p {
    font-size: 12px;
  }
  .choose-container {
    margin-top: 1100px;
    position: relative;
    z-index: 2;
  }
  .app-sub-img {
    max-width: 100px;
    right: 38%;
  }
  .rating-bubble {
    right: -12%;
    max-width: 100px;
    margin: 0;
  }
  .rating-bubble > h3 {
    font-size: 12px;
  }
  .rating-bubble > .stars > i {
    font-size: 10px;
    margin: 0;
  }
  .rating-bubble > .brand {
    font-size: 10px;
  }
  .brand > span {
    font-size: 10px;
  }
  #submit {
    width: 90px;
  }
  #email {
    width: 190px;
  }
}
@media screen and (max-width: 360px) {
  .choose-container {
    margin-top: 1100px;
  }
  .left-side {
    font-size: 12px;
  }
  .right-side {
    font-size: 12px;
  }
  .side-box {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}
