@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif !important;
  font-weight: 400;
}

h1,
h2 {
  font-size: 48px !important;
  line-height: 62px !important;
  color: #0a0a0a;
  margin-bottom: 30px !important;
}
p {
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.32px;
  margin: 0 !important;
  transition: all 0.5s ease-in-out;
}
section {
  padding: 80px 0;
}
.title {
  color: #ee3b24;
  position: relative;
  border: none;
  border-bottom: 3px solid;
  border-radius: 130px 100px/4px 4px;
}
.cls-btn {
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(96deg, #1b93d4 -7.55%, #4a29a4 107.41%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  border: 1px solid #1B93D4;
  margin-top: 30px;
}
.cls-btn-outline {
  padding: 10px 20px;
  background-color: transparent;
  color: #ee3b24;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 6px;
  border: 1px solid #1B93D4;
}

/* header */
header {
  background: #edefff;
}
header nav {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
header .nav-link,
.offcanvas .nav-link {
  color:  #262626;
  font-size: 16px;
  font-weight: 400;
}
header .nav-link:hover,
header .nav-link:focus {
  color: #ee3b24 !important;
}
/* header .navbar-nav {
  column-gap: 30px;
} */
.navbar-nav .dropdown-menu {
  border-radius: 15px;
  background: #fff;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 22px 22px 10px 22px!important;
}
.navbar-nav .dropdown-menu .menu-list {
    column-gap: 50px;
}
.navbar-nav .dropdown-menu h5 {
  color: #ee3b24;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid  #7D7D7D;
}
.navbar-nav .dropdown-menu a {
  color:  #7D7D7D;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px; 
  letter-spacing: 0.32px;
  margin-bottom: 12px;
}
.navbar-nav .dropdown-item:focus, 
.navbar-nav .dropdown-item:hover {
  background: #F7F7F7 !important;
  color:  #7D7D7D !important;
}
header .head-info a,
.offcanvas .head-info a {
  color:  #262626;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.offcanvas .head-info {
  flex-wrap: wrap;
  margin-top: 10px;
}
.navbar-toggler-icon {
  width: unset !important;
  height: unset !important;
}
.offcanvas {
  background-color: #edefff !important;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px !important;
}
.menu-list .dropdown-item {
  white-space: normal !important;
}

/* Hero section */
.img-section {
  position: relative;
  padding: 150px 0;
}
.img-section:before {
  content: '';
  position: absolute;
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.img-section iframe {
  max-width: 560px;
  width: 100%;
  border: 13px solid transparent;
  border-image-source: linear-gradient(45deg, #B7E1FF, #B7E1FF, #CAC0FA, #CAC0FA);
  border-image-slice: 1;
}

/* counter section */
.dark-section {
  padding: 80px 0;
  background-image: linear-gradient(110deg, #6523d1 1.23%, #00a3ff 97.51%);
  text-align: center;
}
.dark-section .counter-value {
  color: #fff;
  font-size: 56px !important;
  font-weight: 700;
  line-height: 66px !important;
  margin-bottom: 20px !important;
}
.dark-section p {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin: 0 !important;
}

/*  */
.sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sub-title h5 {
  color: #ee3b24;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 26px !important;
  text-transform: uppercase;
}

/* Choose us */
.choose-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.choose-box h3 {
  color: #262626;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  transition: all 0.5s ease-in-out;
}
.choose-box p {
  height: 130px;
}
.choose-box .icon svg {
  padding: 12px;
  border-radius: 50%;
  color: #ee3b24;
  border: 1px solid #ee3b24;
  transition: all 0.5s ease-in-out;
}
.choose-box svg path,
.choose-box .icon svg path {
  transition: all 0.5s ease-in-out;
}
.choose-box:hover {
  border-radius: 16px;
  background: #edefff;
}
.choose-box:hover h3 {
  color: #ee3b24;
}
.choose-box:hover svg path {
  fill: #ee3b24;
}
.choose-box:hover .icon svg {
  background-color: #ee3b24;
}
.choose-box:hover .icon svg path {
  fill: #fff !important;
}

/* popular css */
.popular-box {
  padding: 20px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid #d8d8d8;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  margin-bottom: 30px;
}
.popular-box img {
  width: 100%;
  margin-bottom: 12px;
}
.popular-box h3 {
  color: #262626;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.5s ease-in-out;
}
.popular-box:hover {
  border: 1px solid #ee3b24;
}
.popular-box:hover h3 {
  color: #ee3b24;
}
.popular-box:hover p {
  color: #595959;
}
.mob-pop-section {
  display: none;
}

/* How it work */
.light-section {
  background: #edefff;
}
.light-section video {
  max-width: 30%;
  height: 100%;
  margin: auto; 
  width: 100%;
  position: relative;
  border-radius: 50px;
}
.light-section .video {
  position: relative;
}
.light-section .video:before {
  content: '';
  position: absolute;
  background-color: #000;
  left: 15px;
  right: 15px;
  top: -20px;
  bottom: -10px;
  width: 33%;
  height: auto;
  margin: auto;
  border-radius: 50px;
}

/* Testimonial */
.testimonial-section,
.testimonial-box {
  position: relative;
}
.testimonial-section:before {
  content: '';
  position: absolute;
  background-image: url(../images1/test-img.png);
  background-repeat: no-repeat;
  width: 548px;
  height: 799px;
  right: 0;
  bottom: -350px;
}
.wrapper,
.popular {
  overflow-x: hidden;
}
.testimonial-box:before {
  content: '';
  position: absolute;
  background-image: url(../images1/test-squre.png);
  background-repeat: no-repeat;
  width: 153px;
  height: 166px;
  left: -110px;
  top: -100px;
}
.wrapper .slick-slider {
  margin: 0;
}
.wrapper .slick-initialized .slick-slide {
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wrapper .video-button {
  position: relative;
}
.wrapper .video-button video {
  border-radius: 14px 14px 0 0;
}
.wrapper button {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  background-color: transparent !important;
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.wrapper button svg path {
  fill: #fff !important;
}
.wrapper .video-box {
  position: relative;
}
.wrapper .video-box .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(21.450000762939453px);
}
.wrapper .video-box .info h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.wrapper .video-box .info p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}
.wrapper .desc {
  border-radius: 0px 0px 14px 14px;
  background: #edefff;
  padding: 20px 40px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .wrapper .desc {
    padding: 20px 30px !important;
  }
  .mob-p{
    letter-spacing: 0 !important;
  }

}

/* FAQ */
.accordion-header {
  margin: 0 !important;
}
.accordion-button:not(.collapsed) {
  background-color: #fff !important;
  box-shadow: unset !important;
}
.accordion-item:first-of-type {
  border-radius: 15px !important;
}
.accordion-item {
  border: 2px solid #ee3b24 !important;
  filter: drop-shadow(0px 6px 16px rgba(60, 73, 179, 0.19));
  margin-bottom: 30px;
  border-radius: 15px !important;
  padding: 15px 20px !important;
}
.accordion-button {
  border-radius: 12px !important;
  color: #ee3b24 !important;
  font-size: 20px !important;
  font-weight: 500;
  line-height: 30px;
  gap: 10px;
}
.accordion-body p {
  margin: 0;
}
.accordion-button:focus {
  border: 0 !important;
  box-shadow: unset !important;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg) !important;
  background-image: none !important;
}
.accordion .accordion-button:after {
  font-family: 'FontAwesome';
  content: '\f054';
  float: right;
  background-image: none !important;
  width: 35px;
  height: 35px;
  background: #ee3b24;
  color: #fff !important;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
}

/* Image section */
.image-section {
  position: relative;
  padding-bottom: 0;
}
.image-section:before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='440' viewBox='0 0 1440 440' fill='none'%3E%3Cpath d='M1785.6 78.7804C1785.6 78.7804 1753.92 -97.5823 748.8 78.7804C-256.32 255.144 -288 78.7804 -288 78.7804V1268.21C-288 1268.21 99.36 1419.08 748.8 1268.21C1398.24 1117.35 1785.6 1268.21 1785.6 1268.21V78.7804Z' fill='url(%23paint0_linear_2_18668)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2_18668' x1='-288' y1='63.0366' x2='1785.59' y2='1208.56' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%236523D1'/%3E%3Cstop offset='1' stop-color='%2300A3FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  z-index: -1;
  bottom: 0;
}
.image-section h2 {
  color: #fff !important;
  font-size: 37px !important;
  font-weight: 700 !important;
  line-height: 47px !important;
}
.image-section .gp-img img {
  height: 60px;
}
.brand-box img
{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px 20px;
}
.brand-box
{
    margin:15px 0;
}

/* footer */
footer {
  background: #262626;
  padding: 40px 0 0 0;
}
footer .row:first-child {
  margin-bottom: 32px;
}
footer .row:nth-child(2),
footer .row:nth-child(3) {
  margin-bottom: 42px;
}
footer .row:nth-child(4) {
  margin-bottom: 32px;
}
footer .row:nth-child(5) {
  padding-bottom: 32px;
}
footer h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
footer .info-box {
  text-align: center;
}
footer .info-box .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 auto 15px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(99deg, #6523d1 -50.58%, #00a3ff 118.72%);
}
footer .info-box svg path {
  fill: #fff;
}
footer .info-box a {
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  color: #fff !important;
}
footer ul {
  display: flex;
  justify-content: center;
  column-gap: 25px;
  margin: 0;
}
footer ul > li {
  list-style: none;
}
footer ul > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
}
footer ul > li > a:hover {
  color: #fff !important;
}
.footer-policy {
  background: #4e4e4e;
  padding: 15px 0;
}
.footer-policy ul {
  gap: 0;
}
.footer-policy ul > li > a {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.footer-policy ul > li {
  padding: 0 20px;
  border-right: 1px solid #fff;
}
.footer-policy ul > li:last-child {
  border: 0;
}
