/* @font-face {
  font-family: "overusedGrotesk";
  src: url(../fonts/OverusedGrotesk-VF.ttf) format("truetype");
  font-style: normal;
} */
@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Light.ttf") format("truetype");
  font-weight: 300; /* Light */
  font-style: normal;
}
@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Roman.ttf") format("truetype");
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-ExtraBold.ttf") format("truetype");
  font-weight: 800; /* ExtraBold */
  font-style: normal;
}

:root {
  --primary-color: #003996;
  --secondary-color: #e2694b;
  --sub-text: #aeb3bf;
  --main-text: #353535;
  --text-color: #14213d;
  --secondary-bg: #f6fbff;
  --orange-light: #ffbf9d;
  --color-blue: #64aaff;
  --warning-color: #ffe68c;
  --sky-blue: #c5e1f9;
  --bg-blue: #070d13;
  --red-gredient: linear-gradient(
    90deg,
    #e66161 33.33%,
    #ffaae8 66.66%,
    #ffd1d5 100%
  );
  --sub-text: #d5dbe2;
}

.container{
  max-width: 1280px;
}

/* btn style */
.fill-btn svg {
  display: inline-block;
  transition: transform 0.8s ease-out;
}
.fill-btn:hover svg {
  transform: translateX(10px);
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
}
.fill-btn:hover svg path {
  fill: #14213d;
}
.fill-btn:hover {
  color: #fff;
  text-decoration: none;
}
.fill-btn {
  background-image: linear-gradient(
    to right,
    #e55a37,
    #003996,
    #003996,
    #e55a37
  );
  /* box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.4); */
  transition: all 0.4s ease-in-out;
  background-size: 300% 100%;
  border-radius: 10px;
  padding: 10px 22px;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}

.fill-btn:hover {
  background-position: 98% 0;
  transition: all 0.4s ease-in-out;
}
/* outline */
.outline-btn svg {
  display: inline-block;
  transition: transform 0.8s ease-out;
}
.outline-btn:hover svg {
  transform: translateX(10px);
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
}
.outline-btn:hover svg path {
  fill: #14213d;
}
.outline-btn:hover {
  color: #fff;
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 12px;
  padding: 10px 22px;
  background: #070d13;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  /* transition: box-shadow 0.8s ease-out; */
}
.outline-btn:hover {
  box-shadow: 5px 5px 16px rgba(229, 90, 55, 0.4);
}
.outline-btn:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #e55a37, #003996);
  
}
.outline-btn:hover:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  top: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #003996, #e55a37);
  -webkit-animation: animate 0.8s ease-in;
}
@-webkit-keyframes animate{
  0% {
    background-position: 0px;
  }

  100% {
    background-position: 180px;
  }
}


.color-sub-text {
  color: var(--sub-text);
}

html {
  height: 100%;
  overflow-x: hidden;
}
body {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  font-family: "overusedGrotesk";
  position: relative;
  background: #fafbff;
}

.font-68 {
  font-size: 3.542vw;
  line-height: 120%;
}

/* comman style */
.sub-text {
  color: var(--sub-text);
}
.text-color {
  color: var(--text-color);
}
.w-100 {
  width: 100%;
}
.mb-200 {
  margin-bottom: 200px;
}
.btn-darkblue img {
  display: inline-block;
  transition: transform 0.3s ease-out;
}
.btn-darkblue:hover img {
  transform: translateX(22px);
}
.btn-darkblue {
  background: #191c2899;
  border: 1px solid #1c2734;
  border-radius: 500px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  vertical-align: middle;
  height: 52px;
  line-height: 48px;
  padding: 0 33px;
  cursor: pointer;
}
.btn-darkblue:hover {
  color: #fff;
  border: 1px solid #fff;
}
/* btn hover orange s */
.v-btn img {
  display: inline-block;
  transition: transform 0.3s ease-out;
}
.v-btn:hover img {
  transform: translateX(22px);
}
.v-btn {
  background: #e2694b;
  border: 1px solid #e2694b;
  border-radius: 500px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  vertical-align: middle;
  height: 52px;
  line-height: 48px;
  padding: 0 33px;
  cursor: pointer;
}
.v-btn:hover {
  color: #e2694b;
  background: #fff;
  border: 1px solid #e2694b;
}
/* btn blue footer */
.btn-blue img {
  display: inline-block;
  transition: transform 0.3s ease-out;
}
.btn-blue:hover img {
  transform: translateX(22px);
}
.btn-blue {
  background: #34415c;
  border: 1px solid #7d8594;
  border-radius: 500px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  vertical-align: middle;
  height: 52px;
  line-height: 48px;
  padding: 0 33px;
  cursor: pointer;
}
.btn-blue:hover {
  color: #fff;
  border: 1px solid #fff;
}
.bg-blue {
  background: var(--bg-blue);
}

.btn-secondary {
  background: var(--secondary-color);
  color: #fff;
  border: 0;
  transition: all 0.5s;
}

/* header style */
.header-fill-btn.show-in-white {
  display: inline-block !important;
}
nav .header-fill-btn {
  display: none;
}
header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
header {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ss_header {
  -webkit-box-shadow: 0 3px 15px -1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 15px -1px rgba(0, 0, 0, 0.05);
  background: #070d13;
  position: fixed;
  z-index: 9999;
  top: 0;
}

.ss_header .navbar-light .navbar-nav .nav-link {
  color: var(--main-text);
}

.ss_header a.nav-link {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.ss_header a.nav-link.active {
  color: var(--secondary-color) !important;
}

.ss_header a.nav-link:hover {
  color: var(--secondary-color) !important;
}
.navbar-light .navbar-toggler {
  color: transparent;
  border-color: transparent;
  padding: 0;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0;
}
.ss_main_logo_des {
  padding-left: 0;
  transition: 1s all;
  height: 36px;
}

.fixed .ss_main_logo_des {
  -webkit-transform: translateX(-50px) scale(0.5);
  -ms-transform: translateX(-50px) scale(0.5);
  transform: translateX(-50px) scale(0.5);
  opacity: 0;
}

.ss_mobiles_logo img {
  position: absolute;
  height: 42px;
  opacity: 0;
  transition: 0.5s all;
  left: 49px;
  top: 15px;
  -webkit-transform: translateX(-26px) scale(0.5);
  -ms-transform: translateX(-26px) scale(0.5);
  transform: translateX(-26px) scale(0.5);
}

.ss_main_logo {
  position: relative;
}
.ss_main_logo .logoiconA > img {
  /* height: 62px; */
  height: 60px;
  position: relative;
  z-index: 15;
  top: 3px;
}

.logoiconA {
  position: relative;
  padding: 10px;
  z-index: 10;
}
.desktop_menu {
  display: block;
}
.ss_headmenu {
  padding: 0;
}
.navbar-light {
  padding: 0;
}
.ss_hand_logo {
  position: absolute;
  bottom: -20px;
  left: 7px;
  height: 70px;
}
.ss_aye_logo,
.ss_hand_logo {
  opacity: 0;
  transition: 0.5s all;
}
.ss_aye_logo {
  position: absolute;
  right: 20px;
  top: -11px;
  z-index: 15;
}

.fixed .ss_mobiles_logo img {
  opacity: 1;
  left: 79px;
  top: 4px;
  height: 90px;
  z-index: 13;
}

.fixed .ss_aye_logo,
.fixed .ss_hand_logo {
  opacity: 1;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
/* end header */

/* section 1 style */
.head-1-text {
  font-size: 80px;
  line-height: 112px;
  font-weight: 800;
}
.video-bg-1 {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.video-bg-1-desc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 120px;
}

/* #set-height {
  display: block;
}
#v0 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
} */
.last-slide-text {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  margin: auto;
}

.last-slide-text h2 {
  font-size: 3.542vw;
  line-height: 120%;
  font-weight: 800;
  text-align: center;
  color: var(--text-color);
}
.last-slide-text p {
  font-size: 38px;
  line-height: 53px;
  font-weight: 600;
  text-align: center;
  color: var(--text-color);
}
/* scroll text */
.scrolling-text {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  will-change: transform;
  backface-visibility: hidden;
  white-space: nowrap;
}
.scrolling-text .scrolling-text-content {
  /* color: #fff;
  font-size: 120px;
  line-height: 1em; 
  margin: 50px 0;*/
}
.scrolling-text-content span {
  margin-right: 200px;
}

/* section 2 style */
.text-color {
  color: var(--text-color);
}
.fw-extra-dark {
  font-weight: 800;
}
.gredientcolor {
  background: linear-gradient(to right, #e55a37, #003996);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.desc1 {
  color: #003996;
  margin-bottom: 100px;
}
.desc1 span.color-orange {
  font-weight: 700;
  font-size: 80px;
  line-height: 140px;
}
.text-animation-block h1 {
  margin-bottom: 20px;
}

.font-30 {
  font-size: 30px;
  line-height: 45px;
}
.head-sec {
  margin-bottom: 30px;
}
.blue-dark-text {
  color: #003996;
}
.color-orange {
  color: #e55a37;
}

/* START FOOTER STYLE */
.foo-toch {
  display: block;
}
.flag-wd {
  width: 42px;
}
.social-icons li a img {
  transition: 0.5s;
  z-index: 3;
  position: relative;
}
.social-icons li a:hover img {
  transform: rotateY(360deg);
}
.social-icons li a:hover:before {
  top: 0;
}
.social-icons li:nth-child(1) a:before {
  background: #106aff;
}
.social-icons li:nth-child(2) a:before {
  background: #0077b7;
}
.social-icons li:nth-child(3) a:before {
  background: #0057ff;
}
.social-icons li:nth-child(4) a:before {
  background: #ed4989;
}

.social-icons li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
.link-z-index {
  position: relative;
  z-index: 2;
}
/* .social-icons .fb:hover {
  background: #106AFF;
}
.social-icons .linkedin:hover {
  background: #0077B7;
}
.social-icons .behance:hover {
  background: #0057FF;
}
.social-icons .drible:hover {
  background: #ED4989;
} */
.social-icons li a:hover {
  border: 2px solid #fff;
}
.fo-page-link li a:hover {
  color: #e2694b !important;
}
.footer-abt .round-bg {
  margin: 0 2px;
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-abt a img {
  margin-bottom: 16px;
}
.footer-abt .round-bg img {
  margin-bottom: 0;
}
.footer-top {
  background: #070d13;
  padding: 80px 0 60px;
  position: relative;
  /* overflow: hidden; */
}
.footer-top:after {
  /* content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url('../images/fo-eclips.svg') no-repeat;
  width:456px;
  height:456px; */
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -15%;
  top: 0;
  background: radial-gradient(
    56% 50% at 60% 13%,
    #017ce2 0%,
    rgba(1, 127, 203, 0) 100%
  );
}
.footer-bottom {
  position: relative;
  width: 100%;
  height: 100%;
}
.fo-video-desc {
  position: absolute;
  top: 80px;
}
.font-48 {
  font-size: 48px;
  line-height: 72px;
}
.fo-video {
  overflow: hidden;
  width: 100%;
  max-height: 493px;
  /* height: 71vh; */
}
.fo-video video {
  min-width: 100%;
  min-height: 50vh;
}
.cmn-text-hover:hover {
  background-size: 100% 100%, 100% 100%;
}
.cmn-text-hover {
  transition: 0.5s ease-out;
  background-image: linear-gradient(to bottom, #34415c, #34415c),
    linear-gradient(to bottom, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent !important;
}
.main-foo ul li a {
  transition: 0.5s ease-out;
  background-image: linear-gradient(to bottom, #34415c, #34415c),
    linear-gradient(to bottom, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
}
.main-foo ul li a:hover {
  background-size: 100% 100%, 100% 100%;
}
/* footer accordien */
.footer-accordian {
  position: relative;
  z-index: 1;
}
.footer-accordian .accordion-button:focus {
  box-shadow: none;
}
.footer-accordian .accordion-button {
  font-size: 22px;
  line-height: 33px;
  font-weight: 700;
  background: #f5f5fa;
  color: #14213d;
}
.footer-accordian .accordion-item {
  border: 1px solid #ececf1;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
}
.footer-accordian .accordion-item:focus {
  outline: none;
}
.footer-accordian .accordion-header {
  background: #f5f5fa;
}
.accordion-body a {
  color: #003996;
}
.footer-accordian .accordion-body {
  background: #f5f5fa;
  color: #7d8594;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
  border-top: 1px solid #ececf1;
  border-bottom: 2px solid #e2694b;
  border-left: 2px solid #e2694b;
  border-right: 2px solid #e2694b;
  border-radius: 0 0 12px 12px;
  box-shadow: 0px 4px 16px 0px rgba(226, 105, 75, 0.3);
}
.footer-accordian .accordion-button::after {
  background-image: url("../images/plus.svg");
}

.footer-accordian .accordion-button:focus {
  border-color: #e2694b;
}

.footer-accordian .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.svg");
}
.footer-accordian .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #e2694b;
  border-top: 2px solid #e2694b;
  border-radius: 12px 12px 0 0;
  border-left: 2px solid #e2694b;
  border-right: 2px solid #e2694b;
}
.footer-accordian .accordion-button:not(.collapsed):focus {
  outline: none !important;
  box-shadow: none !important;
}

/* PARTNER SECTION STYLE */
.partner-section {
  margin-bottom: 140px;
}
.partner-section h3 {
  color: var(--text-color);
}
.partner-card span {
  color: #d5dbe2;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}
.partner-card-box {
  display: inline-block;
}
.logo-card:last-child {
  margin: 0;
}
.logo-card {
  display: inline-block;
  vertical-align: top;
  width: 19%;
  margin-right: 12px;
}
.partner-card {
  background: #131c25;
  border: 1px solid #121a22;
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 330px;
  display: block;
  text-decoration: none;
}
.partner-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 25px;
}
.partner-card h3 {
  margin: 12px 0 4px;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
}
.rate-block img {
  margin: 0 4px 0 0;
  width: 28px;
  height: 28px;
}
.portal-img {
  height: 138px;
  object-fit: contain;
}
/* TESTIMONIAL SLICK SLIDER CSS */
.worries-slider-block p {
  color: #4d5461;
  font-size: 22px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 60px;
}
/* .worries-slider-block {
  margin-top: 200px;
} */
.worries-slider {
  /* padding-left: 630px; */
  position: relative;
  /* overflow: visible; */
}
.worries-slider-block .head-3 {
  font-size: 3.542vw;
  line-height: 120%;
  font-weight: 800;
}
.cluth-block img {
  width: 100%;
  /* margin-left: 100px; */
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.clutch-inside-text {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  margin: auto;
  text-align: center;
  transform: translate(-50%, -50%);
  /* height: 100%; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.clutch-inside-text h2 {
  color: #fff;
  font-weight: 800;
  font-size: 100px;
  line-height: 120px;
  margin-bottom: 12px;
}
.clutch-inside-text span {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #d5dbe2;
  margin-bottom: 30px;
  display: block;
}
.clutch-inside-text img {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  text-align: center;
  border-radius: 0;
}
.clutch-inside-text .rate-block {
  width: 100%;
}
.clutch-inside-text .rate-block img {
  width: 20px;
  margin: 0;
}
.cl-logo {
  width: 200px !important;
  height: 58px !important;
}
.cluth-block {
  position: relative;
  height: 100%;
  /* margin-left: 293px; */
  /* position: absolute; */
  /* background: url('../images/clutch-bg.jpg') no-repeat; */
  /* border-radius: 20px; */
  /* left: 200px; */
  /* margin-left: 130px; */
  /* width: 100%; */
}
.cluth-block:before {
  /* position: absolute;
  content: '';
  width: 300px;
  height: 368px;
  background: url('../images/clutch-bg.jpg') no-repeat;
  border-radius: 20px; */
}
.clutch-bg {
  z-index: 1;
  position: relative;
  width: 300px;
  text-align: center;
  padding-top: 50px;
}
.clutch-bg h2 {
  font-size: 100px;
  line-height: 120px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.clutch-bg p {
  font-size: 18px;
  line-height: 27px;
  color: #d5dbe2;
  font-weight: 600;
  margin-bottom: 30px;
}
.slider-big-cards a {
  /* height: 570px; */
}
.slider-big-cards {
  margin-bottom: 0 !important;
  /* padding-left: 50px; */
  /* margin: 0 auto; */
  /* position: absolute;
  width: calc(100% + 200px);
    right: -200px;
    margin-right: -200px; */
}
.worries-slider .slick-list {
  padding-left: 0 !important;
}
.exp-rate {
  padding-left: 20px;
}
/* .clutch-card{
  border: 1px solid #ECECF1;
  background: #F5F5FA;
  border-radius: 20px;
  padding: 25px;
  margin: 0 20px 0 0;
} */
.clutch-card img {
  width: auto;
  height: 83px;
}
.exp-rate img {
  width: 20px;
  height: 20px;
  margin: 0 1px;
}

.clutch-card h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  /* height: 70px; */
}
.clutch-card p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #7d8594;
  margin-bottom: 24px;
  /* height: auto; */
  height: 120px;
}
.clutch-card h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0px;
}
.clutch-card span {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: #7d8594;
}
.worries-slider .slick-arrow {
  background: #191c2899;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  opacity: 0;
}
.worries-slider:hover .slick-arrow {
  opacity: 1;
}
.worries-slider .slick-next {
  right: 190px;
}
.worries-slider .slick-prev {
  left: -10px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  bottom: 0;
  right: 0;
  background-color: transparent;
  border-radius: 25px 2px 0 0px;
}
.clutch-card {
  display: block;
  position: relative;
  background-color: #f5f5fa;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 0 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #ececf1;
  border-radius: 20px;
}
.clutch-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -25px;
  right: -28px;
  background: linear-gradient(244.54deg, #070d13 43.79%, #1a0232 100.78%);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}
.clutch-card:hover:before {
  transform: scale(60);
}
.clutch-card:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}
.clutch-card:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.clutch-card:hover p {
  color: #fff;
  transition: all 0.3s ease-out;
}
.clutch-card:hover h3 {
  color: #e2694b;
  transition: all 0.3s ease-out;
}
.clutch-card:hover h4,
.clutch-card:hover span {
  color: #fff;
  transition: all 0.3s ease-out;
}
.clutch-card:hover .exp-rate span {
  color: #fff !important;
  transition: all 0.3s ease-out;
}
.clutch-card:hover .hover-hide-logo {
  display: none;
}
.clutch-card:hover .show-logo {
  display: block !important;
  transform: translateY(0);
}
.clutch-card .show-logo {
  transform: translateY(100%);
  transition: all 0.35s ease;
}

/* NEW TESTIMONIAL STYLE */
.testimonial-tag {
  background: #f9e1db;
  color: #e55a37;
  font-size: 16px;
  font-weight: 600;
  border-radius: 500px;
  padding: 5px 12px;
  position: relative;
  bottom: 42px;
  z-index: 1;
}
.product-testimonial-bg {
  position: relative;
  padding: 30px;
  margin-bottom: 100px;
  margin-top: 30px;
  /* height: 525px !important; */
}
.product-testimonial-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5fa url("../images/home/we-bg.svg") no-repeat;
  width: 100%;
  height: 100%;
  border: 1px solid #ececf1;
  border-radius: 20px;
  z-index: -1;
  background-position: bottom right;
}
.left-testimonial-txt h4 {
  font-size: 22px;
  line-height: 33px;
  font-weight: 700;
  color: #14213d;
  margin-bottom: 6px;
}
.left-testimonial-txt h3 {
  font-size: 3.542vw;
  line-height: 120%;
  font-weight: 800;
  color: #14213d;
  margin-bottom: 12px;
}
.left-testimonial-txt p {
  font-size: 22px;
  line-height: 33px;
  font-weight: 500;
  color: #4d5461;
  margin-bottom: 32px;
}
.product-testimonial-bg img {
  width: 420px;
  margin: 0 auto 32px;
}
.product-testimonial-bg h3 {
  color: #14213d;
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-testimonial-bg p {
  color: #4d5461;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}
.product-testimonial-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
  width: 6px;
  height: 18%;
  bottom: -101px;
  background: linear-gradient(to bottom, #e2694b, #003996);
}
.product-testimonial-bg:last-child:before {
  display: none;
}
/* .product-testimonial {
  padding-left: 46%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
} */

/* WE TEXT SECTION ANIMATION STYLE */
.succes-block {
  cursor: pointer;
  /* z-index: -1; */
}
.product-testimonial {
  height: 100%;
}
.success-slick-slider1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
}

.scrollAnim {
  height: 100%;
  opacity: 0;
  transition: 0.8s;
  /* display: flex;
  justify-content: center; */
}

.head-big {
  transition: all 0.8s;
  font-size: 100px;
  text-align: center;
  line-height: 140px;
  font-weight: 800;
  margin-bottom: 300px;
}
.big-sub-text {
  color: var(--text-color);
}
.scrollAnim.anim {
  opacity: 1;
}
.anim h1,
.anim h2 {
  transition-delay: 0.1s;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  width: 150px;
  position: relative;
  bottom: -50px;
  z-index: 1;
  margin-left: 60px;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.we-img {
  width: 100%;
  max-width: 600px;
  transition: all 0.8s;
}
.we-text {
  font-size: 200px;
  font-weight: 900;
  line-height: 165px;
  background: linear-gradient(to right, #e2694b, #003996);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.8s;
}
.head-sub-grey {
  color: #a6acbb;
  font-weight: 700;
  font-size: 80px;
  line-height: 112px;
  transition: all 0.8s;
}

.anim-top {
  transform: translate(0, -300px);
}
.anim-left {
  transform: translate(-300px, 0);
}
.anim-right {
  transform: translate(80%, 80px);
}
.anim-bottom {
  transform: translate(0, 300px);
}
.anim .anim-left,
.anim .anim-right,
.anim .anim-top,
.anim .anim-bottom {
  transform: translate3d(0, 0, 0);
}
.transition2s {
  transition: all 1.2s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* CTO TEAM SECTION STYLE */
.text-80-primary {
  color: var(--text-color);
  font-size: 80px;
  line-height: 96px;
  font-weight: 800;
  transition: all 0.8s;
}
.big-arrow {
  position: relative;
  top: -120px;
}
.arrow-bg-two-desc {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.goal-clip {
  text-align: center;
  margin-bottom: 200px;
  max-width: 900px;
}
.arrow-bg-two {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}
.arrow-bg-profile {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: auto;
  margin-bottom: 17px;
}
.arrow-bg-two-desc h3 {
  color: #fff;
  font-size: 80px;
  font-weight: 800;
  line-height: 96px;
}
.arrow-profile-span {
  color: #fff;
  font-size: 36px;
  line-height: 54px;
  font-weight: 600;
}
.arrow-three-bg {
  background: #121212;
  position: relative;
  padding: 100px 0;
}
.arrow-three-bg:before {
  content: "";
  width: 455px;
  height: 455px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../images/arrow-ellipse.svg") no-repeat;
}
.arrow-three-bg:after {
  content: "";
  width: 455px;
  height: 455px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/fo-eclips.svg") no-repeat;
}
/* CALNDER CARD DESIGN */
.calender-card {
  border: 1px solid #383a4a;
  background: #272935;
  border-radius: 20px;
  width: 1400px;
  margin: auto;
  padding: 30px;
}
.good-fit {
  border: 1px solid #e2694b;
  background: #3a3230;
  border-radius: 8px;
  padding: 10px;
  color: var(--secondary-color);
}
.font-22 {
  font-size: 22px;
}
.time-slot-item {
  list-style: none;
  border: 1px solid #383a4a;
  background: #343644;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
/* scroll team section style */
.container-data {
  position: relative;
  top: -30px;
  left: 0;
  width: 100vh;
  height: calc(100vw);

  overflow: scroll;
  transform: rotate(-90deg);
  transform-origin: center calc(50vh);
}
.container-data::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.container-data::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin: 1em auto;
  padding: 2em;
  width: 500px;
  height: 500px;

  transform: rotate(90deg);

  border: 1px solid #333;
  box-shadow: 3px 3px 6px rgba(#333, 0.3);

  text-align: center;
}
.team-profile img {
  width: 160px;
}
.team-profile {
  border: 20px solid #343644;
  border-radius: 100px;
  width: 200px;
  height: 200px;
}
/* WOLRD SUCESS BLOCK STYLE */
.world-succ-block h2 span {
  color: var(--secondary-color);
}
.world-succ-block {
  background: #070d13;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.world-succ-block:before {
  /* content: '';
  width: 455px;
  height: 455px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('../images/arrow-ellipse.svg') no-repeat; */
  background: radial-gradient(
    50% 50% at 50% 50%,
    #6828a7 0%,
    rgba(1, 124, 226, 0) 100%
  );
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -15%;
  bottom: -34%;
  z-index: -1;
}
/* .world-succ-block:after{
  content: '';
  width: 455px;
  height: 455px;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../images/blue-eclips.svg') no-repeat;
} */
.world-succ-block:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -15%;
  top: -34%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #017ce2 0%,
    rgba(1, 124, 226, 0) 100%
  );
  z-index: -1;
}
.brand-logo-img {
  border: 1px solid #1c2734;
  background: #0f151c;
  border-radius: 12px;
  padding: 10px;
  min-width: 190px;
  width: auto;
  height: 158px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: 10px;
}

.b-dfg-logo {
  width: 100%;
  height: auto;
}
.b-mactd-logo {
  width: auto;
  height: 57px;
}
.brand-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(6, 1fr); */
}
#clutch-video-background {
  background-color: #0f151c;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  /* height: 355px;
  background: #0c0f22; */
}
.clutch-brand {
  position: relative;
}
/* .clutch-brand:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../images/clutch-bg.jpg') no-repeat;
  background-position: top right;
  border-radius: 20px;
  background-size: cover;
} */
.clutch-brand img {
  width: 100%;
  /* z-index: 1;
  border-radius: 20px; s*/
}
.clutch-brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  margin: auto;
  transform: translate(-50%, -50%);
}
#clutch-video-succ {
  background-color: #0f151c;
  box-sizing: border-box;
  width: 100%;
  height: 158px;
  object-fit: cover;
  border-radius: 12px;
}
.clutch-brand {
  border: 1px solid #1c2734;
  background: #0f151c;
  border-radius: 12px;
  height: 160px;
  display: inline-block;
  width: 210px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.clutch-brand video {
  height: 157px;
  object-fit: cover;
  border-radius: 10px;
}
.brand-logo-block .slick-arrow {
  background: #191c28e3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: all 0.5s linear;
}
.brand-logo-block:hover .slick-arrow {
  opacity: 1;
}
.brand-logo-block button.slick-prev {
  left: 14%;
  z-index: 1;
}
/* LAPTOP SLIDE ANIMATION STYLE */

.hoby-tag {
  border-radius: 50px;
  background: #131c25;
  border: 1px solid #121a22;
  color: #ececf1;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  text-transform: uppercase;
}
.section-pd {
  padding: 50px 0;
}
.orange-round {
  background: var(--secondary-color);
  width: 36px;
  height: 36px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rmn-desc h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 12px;
}
.rmn-desc p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #ececf1;
}
.hand-btn {
  position: absolute;
  right: -37px;
  bottom: 157px;
  z-index: 1;
}
.macbook5 {
  position: relative;
  bottom: -32px;
  z-index: 1;
}
.slightly-top {
  position: relative;
  top: -55px;
}

/* START HOME PAGE NEW STYLE */
.fw-800 {
  font-weight: 800;
}
.font-80 {
  font-size: 80px;
  line-height: 96px;
}
.head-4 {
  font-size: 28px;
  line-height: 42px;
}
.text-18 {
  font-size: 18px;
}
.text-38 {
  font-size: 38px;
}
.color-sub-text {
  color: var(--sub-text);
}

/* footer */
.fo-margin {
  margin-bottom: -150px;
  z-index: 1;
}
.top-footer-bg-desc {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}
.top-footer-bg-desc h3 {
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 20px;
}
.top-footer-bg-desc p {
  font-size: 20px;
  margin-bottom: 40px;
  width: 80%;
}
#fo-video-background {
  border-radius: 20px;
  border: 1px solid #1c2734;
  background-color: #08152f;
  box-sizing: border-box;
  width: 100%;
  height: 380px;
  object-fit: cover;
  background-position: right center;
}
.gredient-block {
  background: #070d13;
}
.footer-main {
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}

.gredient-block:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: 0;
  background: radial-gradient(
    100% 100% at 100% 4%,
    #017ce2 0%,
    rgba(1, 127, 203, 0) 100%
  );
  filter: blur(50px);
  top: 0;
}

.round-tag {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px 6px 16px;
  border-radius: 500px;
}
.bg-lightblack {
  background: #331f1e;
}
.bg-lightsky {
  background: #6b9ae733;
}
.text-sky {
  color: #6b9ae7;
}
.round-bg {
  padding: 10px;
  border: 1px solid #121a22;
  background: #0c1218;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.border-color {
  border-top: 1px solid #121a22;
}
.left-foo {
  width: 57%;
  display: flex;
  justify-content: start;
  gap: 20px;
}
.right-foo {
  width: 43%;
  display: flex;
  justify-content: end;
}
.link-col1 {
  width: 45%;
  position: relative;
}
.link-col2 {
  width: 27%;
}
.link-col3 {
  width: 28%;
}
.link-col4 {
  width: 45%;
}
.link-col5 {
  width: 45%;
  margin-right: 10px;
  z-index: 1;
}
.cursor-pointer {
  cursor: pointer;
}
.fo-page-link {
  z-index: 1;
}
.fo-link-hover:hover {
  color: #e55a37;
}
/* HERO SECTION STYLE */
.hero-section {
  padding-top: 90px;
  cursor: pointer;
}
.hero-slick-slider {
  height: 100vh;
  z-index: 1;
}
.hero-slick-slider .slick-slide {
  /* padding-bottom: 550px; */
  /* color: red !important; */
}
.glob-gif img {
  position: absolute;
  bottom: 21px;
  left: 0;
  margin: auto;
  width: 200px;
  /* top: 60%; */
  right: 0;
}
.glob-gif {
  text-align: center;
}

.hero-section {
  position: relative;
}
.block-pd {
  padding: 90px 0;
}
.award-img {
  max-width: 160px;
  width: 100%;
}
.award-img-last {
  max-width: 190px;
  width: 100%;
}
#we-video {
  /* z-index: 1; */
  position: relative;
}
#myVideo {
  top: -65px;
  position: relative;
}
/* KEY SUCCESS STYLE */
.key-description {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
}
.success-slick-slider1 img,
.success-slick-slider2 .large-txt {
  display: block;
  width: 100%;
}
.success-slick-slider .large-txt {
  font-size: 60px;
  font-weight: 800;
  line-height: 84px;
  color: #14213d;
}

/* MACBOOK STYLE */
.macbook-img {
  display: none;
  width: 70%;
  margin: auto;
  position: relative;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease, transform 1s ease;
}

.macbook-img.visible {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.hide-other {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hide-other.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* HOME HERO SECTION STYLE */
#main-video-top {
  border: 0;
  background-color: #070d13;
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - 90px);
  object-fit: cover;
  background-position: right center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}
.glob-part {
  position: absolute;
  width: 85%;
  top: 150px;
}
.friedli-btn {
  right: 40%;
  bottom: 20%;
}
/* VIDEO STYLE */
.block-pd.position-relative.video-block-main .right-rmn {
  justify-content: end;
}

.rmn-main-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.rmn-video video {
  height: 80vh;
}
.all-comman-height video {
  height: 80vh;
}
.video-block-main {
  position: relative;
}
.video-container {
  transition: all 1s ease-in-out;
}
.vdtext-container,
.more-video-btn {
  /* opacity: 0; */
  transition: all 1s ease-in-out;
}
.show-text .vdtext-container {
  display: block !important;
  opacity: 1;
}
.show-text .more-video-btn {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.more-video-btn {
  transform: translateY(60%);
}
/* .vdtext-container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
} */
.vd-right-tx {
  right: 0;
}
/* .vd-left-tx{
  left: 0;
} */

/* GLOB BIRD FLY TEXT STYLE */
.video-glob-container {
  position: relative;
  transition: opacity 1s ease-in-out;
}
.glob-text-container {
  position: absolute;
  bottom: auto;
  top: 50%;
  width: 55%;
  text-align: center;
  transition: all 2s ease-out;
}
.hidden-text-glob.animate-bottom {
  opacity: 1;
  transform: translateY(0);
}
.hidden-text-glob {
  display: none;
  font-size: 24px;
  color: #fff;
}
.visible-text-glob {
  opacity: 1;
  transform: translateY(0);
}
/* =============== START GET A QUOTE STYLE ================== */
/* .get-a-quote header .container {
  max-width: 100%;
  padding: 0 10px;
}
.get-a-quote .get-quote-footer .container {
  max-width: 100%;
  padding: 0 10px;
} */

.send-msg-icon {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.arrow-rotate {
  transform: rotate(180deg);
}
.video-block video {
  width: 100%;
  object-fit: contain;
  margin: auto;
  /* height: 500px; */
  /* height: calc(100vh - 130px); */
  /* height: auto; */
}
.get-quote-footer {
  background: #0a131c;
  padding: 20px 0;
  z-index: 1;
}
.quote-fo-logo img {
  width: 100%;
  height: auto;
}
.h2-orange-text {
  font-size: 26px;
  color: #e55a37 !important;
}
.quote-detail {
  background: #070d13;
  flex-grow: 1;
  /* height: 100vh; */
}
.chat-masqot-bg:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 10px 0;
  border-color: transparent #f5f5fa transparent transparent;
  top: 0px;
  left: -9px;
}
.chat-masqot-bg {
  position: relative;
  /* border: 1px solid #ececf1; */
  background: #f5f5fa;
  border-radius: 0 20px 20px 20px;
  padding: 19px 20px;
  margin-left: 24px;
  color: #14213d;
  /* font-weight: 600; */
  font-size: 18px;
  margin-top: 30px;
  text-align: left;
  word-break: break-word;
  /* overflow: hidden; */
}
.message {
  display: flex;
  align-items: flex-start;
}

.message.left {
  justify-content: flex-start;
}

.mascot-message {
  animation: grow-box 0.3s ease-out;
}

@keyframes grow-box {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.right-white-quote-detail:before {
  background: #e2694b;
  content: "";
  position: absolute;
  width: var(--progress, 0%);
  height: 4px;
  left: 0;
  top: 0;
}
.right-white-quote-detail {
  padding: 30px 0;

}

.chat-blue-masqot-bg:after {
  border-width: 0px 0 10px 10px;
  border-color: transparent transparent transparent #003996;
  top: 0;
  right: -9px;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
.chat-blue-masqot-bg {
  position: relative;
  background: #003996;
  border: 1px solid #ececf1;
  border-radius: 20px 0 20px 20px;
  padding: 20px;
  color: #fff;
  /* font-weight: 600; */
  font-size: 18px;
  margin-right: 24px;
  margin-top: 30px;
  word-break: break-word;
  /* margin-left: 124px; */
}
.bg-radius {
  border-radius: 20px;
  padding-left: 0;
  position: relative;
  left: -20px;
  background: #fafbff;
  height: 75vh;
  
}
.covresation-section {
  position: absolute;
  bottom: 20px;
  width: 97%;
}
.covresation-chat {
  background: #f5f5fa;
  border: 1px solid #ececf1;
  position: absolute;
  bottom: 20px;
  border-radius: 10px;
  padding: 19px 30px;
  width: 95%;
  justify-content: space-between;
  color: #aeb3bf;
}
.covresation-chat input {
  border: 0;
  background: #fafbff;
  width: 80%;
  font-weight: 600;
  padding: 17px 20px;
  border-radius: 10px;
}
.covresation-chat input:focus {
  outline: 0;
  border: 0;
  background: #fafbff;
}
.covresation-chat input::placeholder {
  color: #aeb3bf;
  font-size: 18px;
  font-weight: 600;
}
.bg-darkblue {
  background: #070d13;
}
.your-info {
  padding-left: 125px;
}
.your-info span {
  color: #4d5461;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
}
/* select box */
.co-input[type="number"]::-webkit-inner-spin-button,
.co-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.co-input[type="number"] {
  -moz-appearance: textfield;
}
.select-country {
  display: flex;
  width: 100%;
}
.co-number::focus {
  color: #14213d;
  font-size: 22px;
  font-weight: 700;
}
.co-number {
  background: #ececf1 url("../images/down-arrow.svg") no-repeat !important;
  width: 100px !important;
  border-radius: 10px 0 0 10px !important;
  background-position: 90% !important;
}
.select-option-block {
  /* width: calc(100% - 200px); */
}
.skip-wd {
  /* width: calc(100% - 400px); */
  width: auto;
}
.skip-text:hover {
  color: #e55a37;
}
.skip-text {
  color: #e55a37;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  margin-left: 20px;
  /* margin-right: 20px; */
}
.select-option-block button {
  width: 100%;
  border: 1px solid #ececf1;
  background: #f5f5fa;
  border-radius: 10px;
  color: #14213d;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
}
/* selection box get a quote */
.select-option-box .top-text-wrapper {
  margin: 20px 0 30px 0;
}
.select-option-box .grid-wrapper {
  display: flex;
  grid-gap: 20px;
  place-items: center;
  flex-wrap: nowrap;
}
.select-option-box label.radio-card {
  cursor: pointer;
  /* width: 31%; */
  width: 36%;
}
.select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper
  h4 {
  color: #fff;
}
.select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper
  svg
  path {
  fill: #fff;
}
.select-option-box label.radio-card .card-content-wrapper {
  background: #fff;
  border-radius: 16px;
  /* width: 246px; */
  min-height: 138px;
  padding: 15px;
  display: grid;
  box-shadow: 0 4px 20px 0 #0039960f;
  transition: 200ms linear;
  border: 1px solid #ececf1;
  width: 100%;
}
.select-option-box label.radio-card .check-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: solid 2px #e3e3e3;
  border-radius: 50%;
  transition: 200ms linear;
  position: relative;
  display: none;
}
.select-option-box label.radio-card .check-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.93552 4.58423C0.890286 4.53718 0.854262 4.48209 0.829309 4.42179C0.779553 4.28741 0.779553 4.13965 0.829309 4.00527C0.853759 3.94471 0.889842 3.88952 0.93552 3.84283L1.68941 3.12018C1.73378 3.06821 1.7893 3.02692 1.85185 2.99939C1.91206 2.97215 1.97736 2.95796 2.04345 2.95774C2.11507 2.95635 2.18613 2.97056 2.2517 2.99939C2.31652 3.02822 2.3752 3.06922 2.42456 3.12018L4.69872 5.39851L9.58026 0.516971C9.62828 0.466328 9.68554 0.42533 9.74895 0.396182C9.81468 0.367844 9.88563 0.353653 9.95721 0.354531C10.0244 0.354903 10.0907 0.369582 10.1517 0.397592C10.2128 0.425602 10.2672 0.466298 10.3112 0.516971L11.0651 1.25003C11.1108 1.29672 11.1469 1.35191 11.1713 1.41247C11.2211 1.54686 11.2211 1.69461 11.1713 1.82899C11.1464 1.88929 11.1104 1.94439 11.0651 1.99143L5.06525 7.96007C5.02054 8.0122 4.96514 8.0541 4.90281 8.08294C4.76944 8.13802 4.61967 8.13802 4.4863 8.08294C4.42397 8.0541 4.36857 8.0122 4.32386 7.96007L0.93552 4.58423Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
  transform: scale(1.6);
  transition: 200ms linear;
  opacity: 0;
}
.select-option-box label.radio-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper {
  box-shadow: 0px 2px 30px rgba(226, 105, 75, 0.5);
  background: #e2694b;
  border: 1px solid #e2694b;
}
.select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper
  .check-icon {
  background: #3057d5;
  border-color: #3057d5;
  transform: scale(1.2);
}
.select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper
  .check-icon:before {
  transform: scale(1);
  opacity: 1;
}
.select-option-box
  label.radio-card
  input[type="radio"]:focus
  + .card-content-wrapper
  .check-icon {
  box-shadow: 0 0 0 4px rgba(48, 86, 213, 0.2);
  border-color: #3056d5;
}
.select-option-box label.radio-card .card-content img {
  margin-bottom: 10px;
}
.select-option-box label.radio-card .card-content h4 {
  font-size: 20px;
  text-align: center;
  color: #e2694b;
  margin-bottom: 0px;
  font-weight: 500;
}
.select-option-box .card-content-wrapper .card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.select-option-box {
  margin-left: 130px;
}
.grey-arrow-btn {
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 10px;
  padding: 18px 32px;
  color: #4d5461;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.grey-arrow-btn:hover {
  color: #4d5461;
  /* border: 1px solid #e2694b; */
}
.grey-arrow-btn img {
  display: inline-block;
  transition: transform 0.3s ease-out;
}
.grey-arrow-btn:hover img {
  transform: translateX(-12px);
}
.select-option-box .select-small-box label.radio-card {
  width: auto;
}
.select-option-box .select-small-box label.radio-card .card-content-wrapper {
  min-height: auto;
}
.chat-description {
  /* overflow-y: hidden; */
  overflow-x: hidden;
  max-height: 60vh;
  padding-right: 10px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  /* width: 763px; */
}
.chat-description::-webkit-scrollbar {
  height: 4px;
  /* width: 5px;
  background: #ccc;
  border-radius: 10px; */
}
.chat-description::-webkit-scrollbar-thumb {
  /* background: #003996;
  border-radius: 10px; */
}
.comman-link:hover {
  color: #e2694b;
}

.fill-btn.call-btn {
  display: inline-block;
}
.quote-header-text span {
  font-weight: 400;
  font-size: 18px;
  color: #14213d;
  margin-right: 5px;
}
.quote-header-text a {
  font-weight: 600;
  font-size: 18px;
  color: #e2694b !important;
  text-decoration: underline !important;
  margin-right: 16px;
  cursor: pointer;
}
.quote-header-text a:hover{
  background: linear-gradient(to right, #e55a37, #017CE2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline !important;
}
.radio-card.disabled {
  pointer-events: none;
  opacity: 0.6;
}
.radio-card.disabled input[type="radio"] {
  pointer-events: none;
  cursor: not-allowed;
}
.select-option-box label.radio-card.disabled .card-content h4 {
  color: #aeb3bf;
}
.select-option-box
  .select-small-box
  label.radio-card.disabled
  .card-content-wrapper {
  background: #f5f5fa;
  border: 1px solid #ececf1;
}
.select-btn {
  /* width: calc(100% - 200px); */
  width: 97%;
  position: relative;
  bottom: 0;
  /* margin-left: 10px; */
  border-radius: 10px;
  background: #f5f5fa;
  display: inline-block;
  z-index: 1;
  border: 2px solid transparent;
  background: linear-gradient(#f5f5fa, #f5f5fa) padding-box,
    linear-gradient(90deg, #e55a37, #003996) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0;
}
.select-btn:hover .send-msg-icon {
  /* opacity: 1; */
}
.select-btn .send-msg-icon {
  /* opacity: 0; */
}

/* img card style */
.img-card .card-content-wrapper:hover img,
.img-card
  .select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper
  img {
  filter: none;
}
.img-card .card-content-wrapper img {
  border-radius: 16px;
  height: 100%;
}
.img-card .card-content h4 {
  position: absolute;
  padding: 1em;
  color: #fff !important;
}
.img-card .radio-card {
  position: relative;
}
.img-card .select-option-box label.radio-card .card-content img {
  border-radius: 16px;
}
.img-card .card-content-wrapper {
  padding: 0 !important;
}
.img-card .select-option-box label.radio-card .card-content h4 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  padding: 20px;
}
/* upload file style */
.fileuploaded-box {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 8px;
  width: 48%;
}
.file-list-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.file_name {
  white-space: initial;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}
.file-upload-result {
  color: #0b0b0b;
  font-weight: 600;
}
.file-upload-result span {
  color: #6d6d6d;
  font-size: 12px;
}
.upload-outer {
  box-shadow: 0px 4px 50px rgba(33, 33, 33, 0.08),
    0px 4px 6px rgba(33, 33, 33, 0.04);
  border-radius: 16px;
  background: #ffffff;
  padding: 20px;
  /* width: 50%; */
  margin-left: 24px;
}
.file-upload {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  background-color: #f5f5fa;
}
.file-upload:hover {
  background-color: #f5f5fa;
  cursor: pointer;
}
.file-upload-icon {
  font-size: 40px;
  color: #374151;
}
.file-upload-title {
  font-size: 18px;
  font-weight: 600;
  color: #14213d;
}
.file-upload-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: #00000066;
}

.file-upload-btn:hover {
  background-color: #e2694b;
}

.slect-time-options select {
  border: 1px solid #ececf1;
  background-color: #f5f5fa;
  border-radius: 35px;
  padding: 12px 50px 12px 50px;
  color: #14213d;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: 95% 22px;
  background-size: 12px;
  cursor: pointer;
}

.left-margin {
  margin-left: 24px;
}
.slect-time-options img {
  position: relative;
  left: 35px;
  z-index: 1;
}
.slect-time-options .form-select:focus {
  border-color: #ececf1;
  outline: 0;
  box-shadow: none;
}
.timer-arrow {
  border: 1px solid #ececf1;
  background: #f5f5fa;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  position: relative;
}
.s-left-arrow {
  margin-right: 12px;
}
.s-left-arrow:before {
  background-image: url("../images/down-arrow.svg");
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  background-position: center;
}
.s-right-arrow:before {
  background-image: url("../images/down-arrow.svg");
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-position: center;
}
.only-time-box {
  width: 90px;
}
.europ-time {
  margin-left: 115px;
}

.text-tt-anim {
  max-height: 200px;
  overflow: auto;
  cursor: pointer;
}
.text-tt-anim::-webkit-scrollbar {
  height: 0px;
  width: 0px;
  background: transparent;
}
.text-tt-anim::-webkit-scrollbar-thumb {
  background: transparent;
}
_::-webkit-full-page-media,
_:future,
:root .clutch-card {
  background-color: #f5f5fa;
  border: 1px solid #ececf1;
  overflow: hidden;
  position: relative;
}
.profile-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
}

/* SPIN CARD CSS*/
.text-animation-block .font-68 {
  line-height: 80px;
}
.text-animation-block {
  padding: 20px 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.client-card {
  background: #f5f5fa url("../images/we-bg.svg") no-repeat;
  background-size: 100%;
  border-radius: 20px;
  margin: auto;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.5s ease-out;
  overflow: hidden;
  border: 1px solid #ececf1;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-lines {
  background: url("../images/card-line.gif") no-repeat;
  width: 100%;
  /* height: 100%; */
  background-size: cover;
  background-position: center;
}

@keyframes clockwiseSpin {
  0% {
    transform: translateX(-100%) rotate(-180deg);
  }
  100% {
    transform: translateX(0%) rotate(0);
  }
}

@keyframes antiClockwiseSpin {
  0% {
    transform: translateX(100%) rotate(-180deg);
  }
  100% {
    transform: translateX(0%) rotate(-360deg);
  }
}

.clockwiseSpin {
  animation: clockwiseSpin 2s ease-in-out forwards;
}

.antiClockwiseSpin {
  animation: antiClockwiseSpin 2s ease-in-out forwards;
}

.client-card.visible {
  opacity: 1;
  animation-play-state: running;
}
.client-card h2 {
  font-size: 80px;
  font-weight: 800;
  margin-right: 24px;
}
.client-card:nth-child(2) {
  position: relative;
  top: 100px;
}

.client-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -25px;
  right: -28px;
  background: linear-gradient(244.54deg, #070d13 43.79%, #1a0232 100.78%);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}
.client-card:hover:before {
  transform: scale(52);
}
.client-card:hover h2 {
  background: transparent;
  -webkit-text-fill-color: #fff;
}
.client-card:hover p {
  color: #fff;
}
.client-card:hover .fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 1000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1000px, 0);
    transform: translate3d(0, 1000px, 0);
  }
  80% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* CHAR BY CHAR ANIMATION */
/* .tx{
  position: relative;
  z-index: 1;
} */

.text-scroll {
  display: none !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  /* position: sticky;
  top: 0; */
  /* background: #fafbff; */
}

.text-scroll .typewriter-animation {
  display: inline-block;
}
.sticky-wtext {
  background: #fafbff;
  z-index: 10;
  min-height: calc(0vh + (96px * 2));
  padding: 0 0 20px 0;
  position: sticky;
  top: 0;
  /* font-size: 60px; */
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* cltch */
/* .small-clutch img {
  width: 100px;
}
.small-clutch .ratings img {
  width: 20px;
  margin: 0;
} */
.assistant-message {
  width: 70%;
}
.assistant-message-info {
  width: 70%;
}
.user-message {
  width: 70%;
  margin-left: auto;
}
.pe-xs{
  padding-right: 0;
}
.get-a-quote .video-block, .get-a-quote .cards{
  margin-right: 50px;
}
.get-a-quote .cards{
  margin-top: -25px;
}
/* START MEDIA QUERY */
@media (min-width: 1400px) {
  .get-a-quote .desktop_menu .logoiconA {
    padding-left: 0;
  }
  /* .get-a-quote header .container {
    max-width: 1440px;
    padding: 0 10px;
  }
  .get-a-quote .get-quote-footer .container {
    max-width: 1440px;
    padding: 0 10px;
  } */
  .right-white-quote-detail {
    /* padding-right: 25px; */
  }
  
  .skip-text {
    font-size: 16px;
    margin-left: 10px;
    /* margin-right: 55px; */
  }
  .get-a-quote .desktop_menu .logoiconA {
    padding-left: 0;
  }
  /*  */
  .worries-slider {
    padding-left: 115px;
  }
  .brand-logo-block {
    padding-left: 18%;
  }
  .brand-logo-block button.slick-prev {
    left: 17%;
  }
  .file_name {
    width: 80px;
  }
}
@media (min-width: 1600px) {
  #clutch-video-background{
    height: 417px;
  }
  .glob-part{
    width: 68%;
  }
  .get-a-quote header .container {
    /* max-width: 1800px; */
    /* max-width: 1280px;
    padding: 0 10px; */
  }
  .get-a-quote .get-quote-footer .container {
    /* max-width: 1800px; */
    /* max-width: 1280px;
    padding: 0 10px; */
  }
  .right-white-quote-detail {
    /* padding-right: 45px; */
  }
 
  .skip-text {
    font-size: 16px;
    margin-left: 10px;
    /* margin-right: 70px; */
    margin-right: 25px;
  }
  .get-a-quote .desktop_menu .logoiconA {
    padding-left: 0;
  }
  .get-a-quote .quot-xs-block {
    justify-content: space-between !important;
  }
  .get-a-quote .quot-xs-block .d-flex {
    width: 100%;
  }
  .get-a-quote .single-input-margin {
    /* margin-right: 70px; */
  }
  /*  */
  .file_name {
    /* width: 140px; */
  }
  .worries-slider {
    padding-left: 160px;
  }
  .brand-logo-block {
    padding-left: 18%;
  }
}
@media (max-width: 1200px) {
  .brand-logo-block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .logo-card {
    width: 45%;
    margin: 0 30px 20px 0;
    vertical-align: top;
    height: 370px;
  }
  .partner-card {
    height: 370px;
  }
  .main-foo {
    display: block !important;
    margin-bottom: 10px !important;
  }
  .left-foo {
    width: 100%;
    margin-bottom: 10px;
  }
  .right-foo {
    width: 100%;
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .user-message {
    width: 82%;
  }
  .assistant-message {
    width: 82%;
  }
  .assistant-message-info {
    width: 100%;
  }
  .upload-outer {
    width: 100%;
    margin-left: 10px;
  }
  .file-upload {
    margin-bottom: 0 !important;
  }
  .file-upload-result {
    margin-top: 10px;
  }
  .fileuploaded-box {
    width: 100%;
  }
  .worries-slider-block .head-3 {
    font-size: 40px;
    line-height: 50px;
  }
  .cluth-block {
    text-align: center;
    margin: 0 0 30px 0;
  }
  .head-big {
    font-size: 40px;
    line-height: 50px;
  }
  .we-text {
    font-size: 150px;
    line-height: 160px;
  }
  .we-sucees-box {
    display: block !important;
    text-align: center;
  }
  .we-sucees-box .bounce {
    width: 160px;
  }

  .fo-video-desc {
    display: block !important;
  }
  .f-door {
    width: 200px;
    position: absolute;
    right: 0;
    bottom: -141px;
  }
  .fo-video {
    height: 100vh;
  }
  .text-animation-block .desc1 {
    font-size: 26px !important;
    line-height: 30px !important;
    margin-bottom: 40px;
  }
  .text-animation-block .head-sec {
    font-size: 28px;
    line-height: 40px;
  }
  .text-animation-block .slide-in-top {
    font-size: 50px;
    line-height: 60px;
  }
  .video-bg-1 {
    height: 70vh;
  }
  .footer-top .head-3 {
    font-size: 30px;
    line-height: 40px;
  }
  .footer-accordian .accordion-body {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  #upload-file-section{
    padding-bottom: 50px;
  }
  .pe-xs{
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
   .text-animation-block {
    height: auto;
    overflow-x: hidden;
  }
  .glob-text-container {
    width: 100%;
  }
  .hero-slick-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
  }
  .select-option-block button {
    font-size: 16px;
    padding: 14px 18px;
  }

  .bottom-selection-btn {
    margin: 0;
    flex-direction: column;
    padding: 0 30px;
    background: #fafbff;
  }
  .grey-arrow-btn {
    order: 2;
    width: 100%;
    margin: 10px 0 0 0 !important;
    padding: 14px 18px;
    font-size: 16px;
  }
  .covresation-chat textarea {
    max-height: 100% !important;
  }
  .quote-detail .bg-darkblue {
    display: none;
  }
  .covresation-section {
    left: 0;
    right: 0;
    margin: auto;
  }
  .chat-description {
    margin-bottom: 150px;
  }
  .get-a-quote {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .quote-detail > .xs-container > .row {
    height: 100%;
  }

  /* sfari */
  _::-webkit-full-page-media,
  _:future,
  :root {
    .covresation-chat textarea {
      max-height: 100% !important;
    }
    .bottom-selection-btn {
      margin: 0;
      flex-direction: column;
      padding: 0 30px;
    }
    .grey-arrow-btn {
      order: 2;
      width: 100%;
      margin: 10px 0 0 0 !important;
    }
    .quote-detail .bg-darkblue {
      display: none;
    }

    .covresation-section {
      left: 0;
      right: 0;
      margin: auto;
    }

    .chat-description {
      margin-bottom: 150px;
    }

    .get-a-quote {
      height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .quote-detail > .xs-container > .row {
      height: 100%;
    }
  }

  /* end */

  /* .quote-detail{
    height: calc(100vh - 170px);
  } */
  .video-block {
    display: none;
  }
  .skip-text {
    justify-content: center;
    margin-top: 10px;
  }
  .key-description {
    height: unset;
  }
  .your-info {
    padding-left: 70px;
    margin-bottom: 20px;
  }
  .covresation-chat input {
    width: 100%;
  }
  .top-footer-bg-desc p {
    width: 100%;
  }
  .dark-bg-logo.quote-logo {
    display: none;
  }
  .clutch-card p {
    height: auto;
  }
  .dark-bg-logo {
    width: 160px;
  }
  .card-lines {
    background-position: center;
  }
  .client-card h2 {
    font-size: 50px;
  }
  .client-card {
    padding: 30px;
  }
  .client-card .font-30 {
    font-size: 20px;
    line-height: 30px;
  }
  nav .outline-btn {
    padding: 8px 18px;
    font-size: 16px;
  }
  .hero-slick-slider .slick-slide {
    padding-left: 30px;
  }
  .z-index-position {
    position: relative;
    z-index: 1;
  }
  .quote-header-text {
    display: none !important;
  }
  .xs-contentend {
    justify-content: end !important;
  }
  .navbar .collapse:not(.show) {
    display: block;
    flex-basis: auto;
  }
  .navbar-brand:not(.quote-logo) .ss_main_logo_des {
    display: none;
  }
  .product-testimonial-bg h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .select-btn {
    width: 100%;
    margin: 0;
  }
  .single-input-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  input.co-input {
    width: 30%;
  }
  .font-68 {
    font-size: 28px;
    line-height: 40px;
  }
  .left-testimonial-txt p {
    font-size: 18px;
    line-height: 30px;
  }
  .clutch-inside-text h2 {
    font-size: 90px;
    line-height: 120px;
  }
  .cl-logo {
    width: 190px !important;
    height: 53px !important;
  }
  .clutch-inside-text {
    top: 54%;
  }
  .left-testimonial-txt h3 {
    font-size: 36px;
    line-height: 44px;
  }
  .product-testimonial-bg img {
    width: 100%;
  }
  .worries-slider-block p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .worries-slider-block {
    padding-top: 0;
  }
  .last-slide-text h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .font-48 {
    font-size: 30px;
    line-height: 40px;
  }
  .left-testimonial-txt {
    margin-bottom: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
  .product-testimonial-bg {
    height: auto !important;
  }
  .rmn-desc {
    margin-bottom: 35px;
  }
  .top-footer-bg-desc h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .last-slide-text p {
    font-size: 20px;
    line-height: 30px;
  }
  .mb-200 {
    margin-bottom: 50px;
  }
  .partner-card h3 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
  }
  .partner-card span {
    font-size: 16px;
    line-height: 24px;
  }
  .font-80 {
    font-size: 38px;
    line-height: 48px;
  }
  .text-animation-block .slide-in-top {
    font-size: 30px;
    line-height: 40px;
  }
  .text-animation-block .head-sec {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .head-3 {
    font-size: 40px;
    line-height: 50px;
  }
  .text-38 {
    font-size: 24px;
  }
  .rmn-desc h2 {
    font-size: 34px;
    line-height: 44px;
  }
  .rmn-desc p {
    font-size: 16px;
    line-height: 24px;
  }
  .desc1 span.color-orange {
    font-size: 26px;
    line-height: 30px;
  }
  .footer-bottom .head-3 {
    font-size: 36px;
    line-height: 46px;
  }
  .partner-section {
    margin-bottom: 30px;
  }
  .partner-section h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .brand-logo-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .world-succ-block h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .top-footer-bg-desc {
    left: 0;
    right: 0;
    padding: 0 20px;
  }
  #fo-video-background {
    height: 420px;
  }
  .footer-accordian .accordion-button {
    font-size: 18px;
    line-height: 28px;
  }
  .success-slick-slider .large-txt {
    font-size: 22px;
    line-height: 32px;
  }
  .we-text {
    text-align: center;
  }
  .bounce {
    width: 120px;
  }
  .macbook-img {
    width: 100%;
  }
  .worries-slider-block .head-3 {
    font-size: 34px;
    line-height: 44px;
  }
  .footer-abt .head-4 {
    margin-bottom: 20px;
  }
  .xs-mb-0 {
    margin-bottom: 0 !important;
  }
  .left-foo {
    display: block;
  }
  .right-foo {
    display: block;
  }
  .link-col1 {
    width: 100%;
    margin-bottom: 20px;
  }
  .link-col2 {
    width: 100%;
  }
  .link-col3 {
    width: 100%;
  }
  .link-col4 {
    width: 100%;
  }
  .link-col5 {
    width: 100%;
  }
  .footer-abt a {
    display: block;
    margin-bottom: 20px;
  }
  .footer-abt .head-4 {
    font-size: 20px;
    line-height: 30px;
  }
  .link-col2 ul li {
    padding-bottom: 10px !important;
  }
  .link-col3 ul li {
    margin-bottom: 10px !important;
  }
  .link-col1 ul li .text-18,
  .link-col2 ul li .text-18,
  .link-col3 ul li .text-18,
  .link-col4 ul li .text-18,
  .link-col5 ul li .text-18 {
    font-size: 16px;
  }
  .round-tag {
    padding: 4px 16px 4px 16px;
  }
  .copyright-block {
    display: block !important;
  }
  .copyright-block p {
    text-align: center;
    margin-bottom: 10px !important;
    font-size: 14px;
  }
  .copyright-block ul li a {
    font-size: 12px;
    margin: 0 10px;
  }
  .copyright-block ul {
    gap: 0 !important;
    justify-content: center;
  }

  .link-col2 .head-4,
  .link-col3 .head-4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px !important;
  }
  .link-col4 .mb-4,
  .link-col5 .mb-4 {
    margin-bottom: 10px !important;
  }
  .footer-accordian .accordion-item {
    margin-bottom: 20px;
  }
  .block-pd {
    padding: 50px 0;
  }
  /* get a quote */
 
  .chat-blue-masqot-bg {
    margin-left: 0;
    margin-right: 10px;
    font-size: 16px;
    width: 100%;
  }
  .right-chat img {
    width: 60px;
    height: 60px;
  }
  .select-option-box {
    margin-left: 0px;
    width: 100%;
  }
  .select-option-box label.radio-card {
    width: 100%;
    margin-bottom: 10px;
  }
  .select-option-box .grid-wrapper {
    display: block;
    text-align: left;
    margin-left: 65px;
  }
  .quot-xs-block {
    display: block !important;
  }
  .slect-time-options {
    width: 100% !important;
  }
  .chat-masqot-bg {
    font-size: 16px;
    width: 100%;
    margin-left: 10px;
  }
  .xs-wd {
    width: 60px;
    height: 60px;
  }
  .bg-radius {
    left: 0;
    border-radius: 0;
    height: 75vh;
  }
  .quote-detail{
    background: #fafbff;
  }
  .timer-arrow {
    margin-top: 10px;
  }
  .only-time-box {
    width: 100px;
  }
  .all-comman-height video {
    height: auto;
  }
  .xs-text-wm {
    width: 100%;
    margin-right: 15px;
  }
  .xs-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
  .video-block video {
    height: 50vh;
  }
  .quote-fo-logo h2 {
    font-size: 16px;
    text-align: center;
  }
  .quote-fo-logo img {
    width: 100%;
  }
  .select-option-box label.radio-card .card-content h4 {
    font-size: 16px;
  }
  .all-comman-height {
    flex-wrap: wrap !important;
  }
  .rmn-main-video {
    position: relative;
    top: 0;
    transform: none;
  }
  .rmn-video video {
    height: 50vh;
    width: 100%;
  }
  .success-slick-slider {
    bottom: 30px;
  }
  .exp-rate {
    padding-top: 0;
    padding-left: 0;
  }
  .cluth-block {
    padding: 0 12px;
    height: auto;
  }
  .clutch-card h3,
  .clutch-card h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .clutch-card p {
    font-size: 16px;
    line-height: 26px;
  }
  .clutch-card span {
    font-size: 16px;
    line-height: 22px;
  }
  .award-img {
    max-width: 80px;
  }
  .award-img-last {
    max-width: 100px;
  }
  .clutch-card {
    margin: 0;
  }
  /* .slider-big-cards {
    padding: 0 13px;
  } */
  .slider-big-cards .slick-dots li button:before {
    font-size: 26px;
    opacity: 0.25;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
  }
  .partner-card img {
    max-width: 100px;
    margin-bottom: 10px;
    height: auto;
  }
  .rate-block img {
    width: 20px;
    height: 20px;
  }
  #main-video-top {
    height: 80vh;
    /* width: 100% !important; */
  }
  #clutch-video-succ {
    width: 100%;
    height: 100%;
  }
  .clutch-brand {
    height: 100%;
    width: 200px;
  }
  .b-dfg-logo {
    width: auto;
    height: auto;
  }
  .partner-card-box .col-6:nth-child(3) {
    padding-right: 0;
  }
  .partner-card-box .col-6:nth-child(1) {
    padding-right: 0;
  }
  .brand-logo-img img {
    max-width: 100%;
  }
  .brand-logo-img {
    min-width: auto;
    /* width: 200px !important; */
    margin: 0 0px 0 0;
  }
  .brand-logo-block {
    padding-left: 210px;
    margin-bottom: 100px !important;
  }
  .clh-vd #clutch-video-background {
    background: transparent !important;
    height: 500px;
  }
  .slider-big-cards__item {
    margin: 0 10px 30px 10px;
  }
  .clutch-card h3 {
    height: auto;
  }
  .clh-vd {
    padding: 0px 10px;
    border: 0;
  }
  .mb-order2 {
    order: 2 !important;
  }
  /* mob slider */
  .slick-list {
    padding-left: 0px !important;
  }

  .slider-big-cards .slick-dots {
    z-index: 1;
    bottom: 20px;
  }
  .slider-big-cards {
    /* padding-bottom: 70px; */
    padding: 0;
  }
  .xs-pb-20 {
    padding-bottom: 20px;
  }
  .left-testimonial-txt h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .clh-vd.clutch-card:before {
    background: transparent;
  }
  .logo-card {
    margin: 0 12px 15px 0;
    height: auto;
    width: 47%;
  }
  .partner-card {
    height: auto;
    padding: 20px;
  }
  .logo-card:nth-child(2) {
    margin-right: 0;
  }
  .logo-card:nth-child(4) {
    margin-right: 0;
  }
  .text-scroll {
    min-height: 70vh;
    padding-bottom: 40px;
  }
  .text-tt-anim {
    max-height: 100px;
  }
  .text-scroll .text-tt-anim h2 {
    margin-bottom: 30px;
  }
  .sticky-wtext {
    min-height: calc(0vh + (38px * 3));;
  }

  .brand-logo-block .slick-dots li.slick-active button:before {
    color: #fff;
  }
  .brand-logo-block .slick-dots li button:before {
    font-size: 20px;
    color: #fff;
  }
  .brand-logo-block .slick-dots {
    left: 0;
    bottom: -50px;
  }
}
.orange {
  fill: #e55a37;
}
.decoration-none {
  text-decoration: none !important;
}
#meeting-slot {
  height: 100vh; /* Set the height to 100% of the viewport */
  overflow: hidden; /* Hide any overflow (no scroll) */
}
.spacer {
  height: 20px;
}

/* //hover effect */
.radio-card {
  display: inline-block;
  transition: all 0.3s ease; /* Add a transition for smooth effect */
}

.radio-card a {
  text-decoration: none;
}

.card-content-wrapper {
  background-color: white; /* Initial background color */
  padding: 20px; /* Add padding if necessary */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.select-option-box label.radio-card .card-content-wrapper:hover {
  background-color: #e2694b; /* Background turns orange on hover */
  color: white;
}

.select-option-box
  label.radio-card
  .card-content-wrapper:hover
  .card-content
  h4 {
  color: white; /* Text color turns white */
}

.card-content-wrapper:hover img,
.select-option-box
  label.radio-card
  input[type="radio"]:checked
  + .card-content-wrapper
  img {
  filter: brightness(0) invert(1); /* This will make the image white */
}

.card-content h4 {
  color: black; /* Default text color */
}

.card-content-wrapper img {
  transition: filter 0.3s ease; /* Smooth transition for image */
}

.quote-logo {
  padding: 15px 0;
}

#back-button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

.chat-section {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Base styling for each chat block */
.chat-block {
  width: 100%;
  /* display: flex; */
  overflow-y: auto;
  justify-content: flex-start;
  opacity: 0;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

/* Keyframe for sliding effect */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100%); /* Off-screen right */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Move to original position */
  }
}

/* Apply the slideIn animation */
.chat-block.visible {
  /* animation-name: slideIn; */
  opacity: 1;
}

.error-message {
  font-size: 14px;
  /* display: none; */
}
.error-input {
  position: absolute;
  /* margin-top: 5px; */
}

.mb-error {
  /* margin-bottom: 20px; */
}
#question-array {
  color: #fff;
}
#back-button.disabled {
  pointer-events: none; /* Prevent clicking */
  opacity: 0.5; /* Make it look disabled */
}

upload-message {
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-weight: bold;
}
.upload-message.info {
  background-color: #f0f8ff;
  color: #007bff;
}
.upload-message.success {
  /* background-color: #d4edda; */
  /* color: #155724; */
}
.upload-message.error {
  background-color: #f8d7da;
  color: #721c24;
}
#upload-file:disabled {
  pointer-events: none; /* Prevent clicking */
  opacity: 0.5; /* Make it look disabled */
}
#meeting-slot {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  width: 100%;
  /* max-width: 900px; */
  margin: auto;
}
.calendly-inline-widget {
  width: 100%;
  min-width: 800px;
  height: 500px;
}
.green-svg {
  filter: invert(28%) sepia(89%) saturate(393%) hue-rotate(90deg);
}
.covresation-chat textarea {
  border: 0;
  background: #fafbff;
  width: 85%;
  font-weight: 600;
  padding: 17px 20px;
  border-radius: 10px;
  resize: none; /* Prevent resizing by the user */
  max-height: 60px;
  /* margin: 10px 20px; */
}
.covresation-chat textarea:focus-visible {
  outline: none;
}
#chat-form {
  background: #fafbff;
  border-radius: 20px;
}
.covresation-chat textarea::-webkit-scrollbar {
  -webkit-appearance: none;
}
.calendly-popup {
  z-index: 9999 !important; /* Ensure it's above other elements */
  position: fixed !important; /* Fix position for popup */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-input-margin {
  /* margin-right: 60px; */
  margin-right: 25px;
  margin-left: 10px;
}

.get-a-quote header {
  position: relative !important;
}

@media (min-width: 768px) {
  .get-a-quote {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .quote-detail > .xs-container > .row {
    height: 100%;
  }

  .get-a-quote .video-block video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
  }

  .get-a-quote .video-block {
    height: 80%;
  }
}

/* Typing animation for assistant's questions */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #000; /* Change to match your text color */
  }
}

.typing-animation {
  overflow: hidden; /* Ensures the text doesn't wrap */
  white-space: nowrap; /* Keeps the text on a single line */
  border-right: 2px solid #000; /* Cursor effect */
  animation:
    typing 3s steps(40, end),
    blink-caret 0.75s step-end infinite;
}
/* Typing dots animation */
@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.typing-dots {
  display: inline-block;
  animation: blink 1.4s infinite;
}

.typing-dots::after {
  content: ".";
  animation: blink 1.4s infinite;
}

.typing-dots::before {
  content: ".";
  animation: blink 1.4s infinite;
  animation-delay: 0.2s;
}
.ml-2{
  margin-left: 0.5rem !important;
}
.detail-card-badge{
  background: #331F1E;
  padding: 4px 12px 4px 12px;
  border-radius: 500PX;
  font-size: 14px;
  line-height: 21px;
}
.detail-card-title{ 
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
}
.detail-card-desc{ 
  /* font-family: inherit; */
  font-weight: 400;
  font-size: 14px;
  /* font: small-caption; */
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  margin: 15% auto;
  padding: 20px 30px;
  border-radius: 10px;
  width: 320px;
  text-align: center;
  position: relative;
  animation: slideIn 0.4s ease-in-out;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  /* color: #fff; */
}

.modal-success {
  /* background-color: #28a745; */
}

.modal-error {
  /* background-color: #dc3545; */
}

.modal-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  color: #d33535;
  cursor: pointer;
}

@keyframes slideIn {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.white-space-nowrap {
  white-space: nowrap;
}
