/* Import */
/* Hover Transistion */
/* Custom scroll Bar */
/* Custom scroll Bar Inner */
/* Custom scroll Bar Inner */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: SFLightFont;
  src: url(/assets/fonts/SF-Pro-Display-Light.woff);
}
@font-face {
  font-family: SFRegularFont;
  src: url(/assets/fonts/SF-Pro-Display-Regular.woff);
}
@font-face {
  font-family: SFMediumFont;
  src: url(/assets/fonts/SF-Pro-Display-Medium.woff);
}
@font-face {
  font-family: SFSemiBoldFont;
  src: url(/assets/fonts/SF-Pro-Display-Semibold.woff);
}
@font-face {
  font-family: SFBoldFont;
  src: url(/assets/fonts/SF-Pro-Display-Bold.woff);
}
:root {
  --vh: 1vh;
}

/* Header Section */
.header_wrapper {
  /* display: none; */
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.header_wrapper .logo img {
  max-width: 240px;
  width: 100%;
  max-height: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper .logo img {
    transition: 0.5s;
    max-width: 200px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper .logo img {
    transition: 0.5s;
    max-width: 180px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper .nav_area {
    transition: 0.5s;
    display: none;
  }
}
.header_wrapper .main_menu_list {
  gap: 8px 50px;
}
.header_wrapper .main_menu_list li {
  position: relative;
}
.header_wrapper .main_menu_list li a,
.header_wrapper .main_menu_list li h6 {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper .main_menu_list li a,
  .header_wrapper .main_menu_list li h6 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.header_wrapper .main_menu_list li a:hover,
.header_wrapper .main_menu_list li h6:hover {
  opacity: 0.8;
}
.header_wrapper .header_btn_area {
  position: relative;
  z-index: 100;
  gap: 10px 16px;
}
@media all and (max-width: 991px) {
  .header_wrapper .header_btn_area {
    transition: 0.5s;
    gap: 10px 12px;
  }
}
.header_wrapper .header_btn_area .sign_in_btn {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper .header_btn_area .sign_in_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.header_wrapper .header_btn_area .sign_in_btn:hover {
  opacity: 0.8;
}
.header_wrapper .header_btn_area .sign_up_btn {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  padding: 12px 23px;
  border-radius: 10px;
  border: 1px solid #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .header_wrapper .header_btn_area .sign_up_btn {
    transition: 0.5s;
    padding: 10px 20px;
  }
}
@media all and (max-width: 767px) {
  .header_wrapper .header_btn_area .sign_up_btn {
    transition: 0.5s;
    padding: 10px 16px;
  }
}
.header_wrapper .header_btn_area .sign_up_btn:hover {
  background-color: rgba(85, 83, 83, 0.818);
}
@media all and (max-width: 991px) {
  .header_wrapper .header_btn_area .sign_in_desk_btn,
  .header_wrapper .header_btn_area .sign_up_desk_btn {
    transition: 0.5s;
    display: none !important;
  }
}
.header_wrapper .menu_toggle_btn {
  display: none;
}
.header_wrapper .menu_toggle_btn i {
  font-size: 22px;
  color: white;
}
.header_wrapper .menu_toggle_btn img {
  max-width: 100%;
  color: white;
}
@media all and (max-width: 991px) {
  .header_wrapper .menu_toggle_btn {
    transition: 0.5s;
    display: block;
  }
}

.active_menu {
  font-weight: 700 !important;
}

.navbar_fixed {
  top: 0;
  padding: 10px 0;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  mix-blend-mode: inherit;
  box-shadow: 0px 0px 4px 0px rgba(198, 208, 243, 0.76);
  background-color: rgba(28, 60, 170, 0.89);
}
@media all and (max-width: 991px) {
  .navbar_fixed {
    transition: 0.5s;
    padding: 8px 0;
  }
}

.mobile_menu_area {
  position: absolute;
  top: 50px;
  right: 0px;
  padding: 16px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 43px 100px -35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.mobile_menu_area .nav_list {
  align-items: start !important;
  flex-direction: column;
}
.mobile_menu_area .nav_list a.active span,
.mobile_menu_area .nav_list a.active svg,
.mobile_menu_area .nav_list .menu_item.active span,
.mobile_menu_area .nav_list .menu_item.active svg {
  color: #265fe4;
}
.mobile_menu_area .nav_list a.active::before,
.mobile_menu_area .nav_list .menu_item.active::before {
  display: none;
}
.mobile_menu_area .nav_list a.mega_active svg,
.mobile_menu_area .nav_list .menu_item.mega_active svg {
  transform: rotate(0);
}
.mobile_menu_area.active_mobile_menu {
  top: 40px;
  opacity: 1;
  visibility: visible;
}
.mobile_menu_area .industry_menu_area {
  display: none;
}
.mobile_menu_area .industry_mega_menu svg {
  transform: rotate(-90deg);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.mobile_menu_area .mobile_header_btn_area .header_btn {
  display: flex !important;
}

.header_wrapper_new {
  position: fixed;
  top: 25px;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper_new {
    transition: 0.5s;
    top: 20px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new {
    transition: 0.5s;
    top: 15px;
  }
}
.header_wrapper_new.navbar_fixed {
  top: 10px;
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}
.header_wrapper_new.navbar_fixed .header_area {
  padding: 12px 12px 12px 16px;
}
@media all and (max-width: 991px) {
  .header_wrapper_new.navbar_fixed .header_area {
    transition: 0.5s;
    padding: 10px 14px;
  }
}
.header_wrapper_new .header_area {
  position: relative;
  padding: 16px 16px 16px 20px;
  border-radius: 30px;
  border: 1.5px solid #ccd8f9;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .header_wrapper_new .header_area {
    transition: 0.5s;
    border-radius: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper_new .header_area {
    transition: 0.5s;
    padding: 16px 16px;
    border-radius: 20px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new .header_area {
    transition: 0.5s;
    padding: 12px 14px;
    border-radius: 12px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new .header_area .header_btn {
    transition: 0.5s;
    display: none;
  }
}
.header_wrapper_new .logo img {
  max-width: 160px;
  max-height: 40px;
}
@media all and (max-width: 991px) {
  .header_wrapper_new .nav_list_desktop {
    transition: 0.5s;
    display: none !important;
  }
}
.header_wrapper_new .nav_list_desktop a,
.header_wrapper_new .nav_list_desktop button,
.header_wrapper_new .nav_list_desktop .menu_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px 16px;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
}
@media all and (max-width: 991px) {
  .header_wrapper_new .nav_list_desktop a,
  .header_wrapper_new .nav_list_desktop button,
  .header_wrapper_new .nav_list_desktop .menu_item {
    transition: 0.5s;
    font-size: 14px;
    border-radius: 6px;
  }
}
.header_wrapper_new .nav_list_desktop a span,
.header_wrapper_new .nav_list_desktop button span,
.header_wrapper_new .nav_list_desktop .menu_item span {
  position: relative;
  z-index: 2;
  color: #666;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.header_wrapper_new .nav_list_desktop a span svg,
.header_wrapper_new .nav_list_desktop button span svg,
.header_wrapper_new .nav_list_desktop .menu_item span svg {
  margin-left: 4px;
  transform: rotate(-90deg);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.header_wrapper_new .nav_list_desktop a::before,
.header_wrapper_new .nav_list_desktop button::before,
.header_wrapper_new .nav_list_desktop .menu_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e9eefb;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.header_wrapper_new .nav_list_desktop a.active,
.header_wrapper_new .nav_list_desktop button.active,
.header_wrapper_new .nav_list_desktop .menu_item.active {
  background-color: #e9eefb;
}
.header_wrapper_new .nav_list_desktop a.active span,
.header_wrapper_new .nav_list_desktop a.active svg,
.header_wrapper_new .nav_list_desktop button.active span,
.header_wrapper_new .nav_list_desktop button.active svg,
.header_wrapper_new .nav_list_desktop .menu_item.active span,
.header_wrapper_new .nav_list_desktop .menu_item.active svg {
  color: #265fe4;
}
.header_wrapper_new .nav_list_desktop a.active::before,
.header_wrapper_new .nav_list_desktop button.active::before,
.header_wrapper_new .nav_list_desktop .menu_item.active::before {
  display: none;
}
.header_wrapper_new .nav_list_desktop a:hover svg,
.header_wrapper_new .nav_list_desktop button:hover svg,
.header_wrapper_new .nav_list_desktop .menu_item:hover svg {
  transform: rotate(0);
}
.header_wrapper_new .nav_list_desktop a:hover::before,
.header_wrapper_new .nav_list_desktop button:hover::before,
.header_wrapper_new .nav_list_desktop .menu_item:hover::before {
  border-radius: 0;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
}
.header_wrapper_new .nav_list_desktop .industry_mega_menu_wrapper:hover .menu_item::before {
  border-radius: 0;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
}
.header_wrapper_new .nav_list_desktop .industry_mega_menu_wrapper:hover .menu_item svg {
  transform: rotate(0);
}
.header_wrapper_new .nav_list_desktop .industry_mega_menu_wrapper:hover .industry_menu_area {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header_wrapper_new .nav_list_desktop .industry_menu_area {
  position: absolute;
  top: 105%;
  left: 0;
  z-index: 10;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .header_wrapper_new .industry_mega_menu {
    transition: 0.5s;
    width: 100%;
  }
}
.header_wrapper_new .industry_menu_area .inner_area {
  padding: 32px;
  margin-top: 10px;
  border-radius: 30px;
  border: 1.5px solid #ccd8f9;
  background: #fff;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .header_wrapper_new .industry_menu_area .inner_area {
    transition: 0.5s;
    border-radius: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper_new .industry_menu_area .inner_area {
    transition: 0.5s;
    padding: 28px 14px;
    border-radius: 20px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new .industry_menu_area .inner_area {
    transition: 0.5s;
    padding: 12px 8px;
    border-radius: 12px;
    max-height: 300px;
    overflow: auto;
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .header_wrapper_new .industry_menu_area .inner_area::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .header_wrapper_new .industry_menu_area .inner_area::-webkit-scrollbar-track {
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
  }
  .header_wrapper_new .industry_menu_area .inner_area::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 5px;
  }
  .header_wrapper_new .industry_menu_area .inner_area::-webkit-scrollbar-thumb:hover {
    background: #f84f4f;
    cursor: grab;
  }
}
.header_wrapper_new .industry_menu_area .inner_area p {
  color: #666;
}
.header_wrapper_new .industry_menu_area .industry_item_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 32px;
}
@media all and (max-width: 991px) {
  .header_wrapper_new .industry_menu_area .industry_item_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px 24px;
    margin-top: 0px;
  }
}
.header_wrapper_new .industry_menu_area .industry_item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background-color: #f6f9ff;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .header_wrapper_new .industry_menu_area .industry_item {
    transition: 0.5s;
    padding: 10px 14px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new .industry_menu_area .industry_item {
    transition: 0.5s;
    gap: 12px 8px;
    padding: 10px 8px;
    border-radius: 6px;
  }
  .header_wrapper_new .industry_menu_area .industry_item::before {
    display: none;
  }
}
.header_wrapper_new .industry_menu_area .industry_item::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.header_wrapper_new .industry_menu_area .industry_item.active_mega {
  background-color: #265fe4;
}
.header_wrapper_new .industry_menu_area .industry_item.active_mega span {
  color: white !important;
}
.header_wrapper_new .industry_menu_area .industry_item.active_mega::before {
  display: none;
}
.header_wrapper_new .industry_menu_area .industry_item:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.header_wrapper_new .industry_menu_area .industry_item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .header_wrapper_new .industry_menu_area .industry_item .icon {
    transition: 0.5s;
    width: 42px;
    height: 42px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new .industry_menu_area .industry_item .icon {
    transition: 0.5s;
    width: 28px;
    height: 28px;
  }
}
@media all and (max-width: 991px) {
  .header_wrapper_new .industry_menu_area .industry_item .icon img {
    transition: 0.5s;
    max-width: 14px;
  }
}
.header_wrapper_new .industry_menu_area .industry_item span {
  color: #000 !important;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_wrapper_new .industry_menu_area .industry_item span {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header_wrapper_new .industry_menu_area .industry_item span {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .header_wrapper_new .industry_menu_area .industry_item span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.header_wrapper_new .menu_toggle_btn {
  display: none;
}
@media all and (max-width: 991px) {
  .header_wrapper_new .menu_toggle_btn {
    transition: 0.5s;
    display: block;
  }
}
.header_wrapper_new .menu_toggle_btn img {
  width: 16px;
  height: 20px;
}
.header_wrapper_new .mobile_menu_area {
  right: -12px;
}
.header_wrapper_new .mobile_menu_area.active_mobile_menu {
  top: 48px;
}

/* Footer Section */
.footer_wrapper {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 416px;
  padding-bottom: 40px;
  margin-top: -180px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_wrapper {
    transition: 0.5s;
    padding-top: 300px;
  }
}
@media all and (max-width: 991px) {
  .footer_wrapper {
    transition: 0.5s;
    margin-top: -150px;
    padding-top: 250px;
  }
}
.footer_wrapper .menu_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  align-items: start;
  gap: 20px 30px;
}
@media all and (max-width: 767px) {
  .footer_wrapper .logo_area {
    transition: 0.5s;
    margin-bottom: 50px;
  }
}
.footer_wrapper .logo_area a:hover {
  opacity: 0.8;
}
.footer_wrapper .logo_area img {
  max-width: 240px;
  width: 100%;
  max-height: 60px;
}
.footer_wrapper .logo_area h5 {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 260px;
  width: 100%;
  margin-top: 24px;
}
@media all and (max-width: 991px) {
  .footer_wrapper .logo_area h5 {
    transition: 0.5s;
    font-size: 14px;
    margin-top: 12px;
  }
}
.footer_wrapper .menu_area h3 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
@media all and (max-width: 767px) {
  .footer_wrapper .menu_area h3 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.footer_wrapper .menu_area li a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 16px;
}
.footer_wrapper .menu_area li a:hover {
  opacity: 0.8;
}
@media all and (max-width: 767px) {
  .footer_wrapper .menu_area li a {
    transition: 0.5s;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media all and (min-width: 1200px) {
  .footer_wrapper .link_menu_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: relative;
    left: 60px;
  }
}
.footer_wrapper .social_list_area {
  margin-top: 82px;
  gap: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_wrapper .social_list_area {
    transition: 0.5s;
    margin-top: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper .social_list_area {
    transition: 0.5s;
    margin-top: 50px;
    gap: 12px;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper .social_list_area {
    transition: 0.5s;
    margin-top: 40px;
    gap: 8px;
  }
}
.footer_wrapper .social_list_area a,
.footer_wrapper .social_list_area button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper .social_list_area a,
  .footer_wrapper .social_list_area button {
    transition: 0.5s;
    width: 40px;
    height: 40px;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper .social_list_area a,
  .footer_wrapper .social_list_area button {
    transition: 0.5s;
    padding: 4px;
    width: 32px;
    height: 32px;
  }
}
.footer_wrapper .social_list_area a:hover,
.footer_wrapper .social_list_area button:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper .social_list_area a img,
  .footer_wrapper .social_list_area button img {
    transition: 0.5s;
    max-width: 90%;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper .social_list_area a img,
  .footer_wrapper .social_list_area button img {
    transition: 0.5s;
    max-width: 70%;
  }
}
.footer_wrapper .copy_right_area {
  margin-top: 113px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper .copy_right_area {
    transition: 0.5s;
    margin-top: 80px;
    padding-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper .copy_right_area {
    transition: 0.5s;
    margin-top: 40px;
    padding-top: 10px;
  }
}
.footer_wrapper .copy_right_area p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media all and (max-width: 767px) {
  .footer_wrapper .copy_right_area p {
    transition: 0.5s;
    font-size: 14px;
  }
}

.footer_wrapper_new {
  padding-top: 122px;
  padding-bottom: 42px;
  background: #f6f9ff;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .footer_wrapper_new {
    transition: 0.5s;
    padding-top: 100px;
    padding-bottom: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_wrapper_new {
    transition: 0.5s;
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper_new {
    transition: 0.5s;
    padding-top: 60px;
    padding-bottom: 24px;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper_new {
    transition: 0.5s;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.footer_wrapper_new .footer_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper_new .footer_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper_new .footer_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.footer_wrapper_new .logo_area {
  grid-column: span 2;
}
@media all and (min-width: 992px) {
  .footer_wrapper_new .logo_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    grid-column: span 3;
  }
}
@media all and (min-width: 768px) {
  .footer_wrapper_new .logo_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    max-width: 347px;
    width: 100%;
  }
}
.footer_wrapper_new .logo_area .logo img {
  max-width: 200px;
  max-height: 60px;
}
.footer_wrapper_new .logo_area p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 14px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_wrapper_new .logo_area p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper_new .logo_area p {
    transition: 0.5s;
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
  }
}
.footer_wrapper_new .menu_item .menu {
  color: #1d1b16;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_wrapper_new .menu_item .menu {
    transition: 0.5s;
    font-size: 14px;
  }
}
@media all and (max-width: 991px) {
  .footer_wrapper_new .menu_item .menu {
    transition: 0.5s;
    font-size: 14px;
  }
}
.footer_wrapper_new .menu_list {
  margin-top: 18px;
}
.footer_wrapper_new .menu_list li {
  margin-top: 10px;
}
@media all and (max-width: 991px) {
  .footer_wrapper_new .menu_list li {
    transition: 0.5s;
    margin-top: 4px;
  }
}
.footer_wrapper_new .menu_list a {
  color: #595b5f;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_wrapper_new .menu_list a {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 991px) {
  .footer_wrapper_new .menu_list a {
    transition: 0.5s;
    font-size: 14px;
  }
}
.footer_wrapper_new .menu_list a:hover {
  opacity: 0.8;
}
.footer_wrapper_new .copyright_area {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 173, 222, 0.3);
  max-width: 1104px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_wrapper_new .copyright_area {
    transition: 0.5s;
    padding-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_wrapper_new .copyright_area {
    transition: 0.5s;
    padding-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .footer_wrapper_new .copyright_area {
    transition: 0.5s;
    padding-top: 12px;
  }
}
.footer_wrapper_new .copyright_area p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}
@media all and (max-width: 991px) {
  .footer_wrapper_new .copyright_area p {
    transition: 0.5s;
    font-size: 14px;
  }
}

/*
!Utilities Or Helper CSS
*/
*,
::before,
::after {
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: SFRegularFont;
  font-size: 16px;
  min-height: calc(var(--vh, 1vh) * 100 - 20px);
}

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: SFRegularFont;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a,
span {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus {
  outline: none !important;
}

input,
select,
textarea {
  font-weight: 400;
  font-size: 16px;
  color: #101010;
}
input:disabled,
select:disabled,
textarea:disabled {
  color: #9da3bc !important;
  background-color: #eaeaee !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #235de4 !important;
}

.btn:focus {
  outline: none !important;
}

button:focus {
  outline: none !important;
}

button {
  cursor: pointer;
  border: none !important;
  padding: 0;
  background-color: transparent;
}
button:disabled {
  opacity: 0.6;
  pointer-events: none;
}

button:hover {
  border: none !important;
}

.niceSelect.disabled {
  background-color: #eaeaee !important;
}

*::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px;
  color: #696f8c !important;
  text-align: start;
}

*::placeholder,
*::-moz-placeholder,
.placeholder_text {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px;
  color: #696f8c !important;
  text-align: start;
}

.emojionearea .emojionearea-editor:empty:before {
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 20px;
  color: #696f8c !important;
  text-align: start;
}

::-moz-selection {
  color: #000;
  background: #b4f3d1;
}

::selection {
  color: #000;
  background: #b4f3d1;
}

::-moz-selection {
  color: #000;
  background: #b4f3d1;
}

/*  Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Common Class */
@media all and (max-width: 575px) {
  .container {
    transition: 0.5s;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 12px;
}

.d-hide {
  display: none;
}

@media all and (max-width: 767px) {
  .d-min-md-block {
    transition: 0.5s;
    display: none !important;
  }
}

.d-max-lg-block {
  display: none !important;
}
@media all and (max-width: 1199px) {
  .d-max-lg-block {
    transition: 0.5s;
    display: block !important;
  }
}

.d-min-lg-block {
  display: block !important;
}
@media all and (max-width: 1199px) {
  .d-min-lg-block {
    transition: 0.5s;
    display: none !important;
  }
}

.g-xs {
  gap: 10px 8px;
}

.g-sm {
  gap: 8px 12px;
}
@media all and (max-width: 767px) {
  .g-sm {
    transition: 0.5s;
    gap: 8px;
  }
}

.g-lg {
  gap: 10px 15px;
}

.text-sm {
  font-size: 14px;
}

@media all and (max-width: 767px) {
  .mm-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

@media all and (max-width: 991px) {
  .mlg-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}
@media all and (max-width: 991px) {
  .mt-32 {
    transition: 0.5s;
    margin-top: 20px;
  }
}

.mt-42 {
  margin-top: 42px;
}
@media all and (max-width: 991px) {
  .mt-42 {
    transition: 0.5s;
    margin-top: 28px;
  }
}

.mt-56 {
  margin-top: 56px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-56 {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .mt-56 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-63 {
  margin-top: 63px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-63 {
    transition: 0.5s;
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  .mt-63 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-n10 {
  margin-top: -10px;
}

.w-90 {
  width: 90% !important;
}

.w-80 {
  width: 80% !important;
}

.w-70 {
  width: 70% !important;
}

.w-60 {
  width: 60% !important;
}

.text-1e {
  color: #1e8b34 !important;
}

.text-90 {
  color: #909090 !important;
}

.text-fe {
  color: #fe2828;
}

.text-e8 {
  color: #e82749 !important;
}

.text-primary {
  color: #235de4 !important;
}

.text-7b {
  color: #7b7b7b !important;
}

.text-ff {
  color: #ffae1b !important;
}

.text-17 {
  color: #17a584 !important;
}

.bg-primary {
  background-color: #235de4;
}

.bg-f1 {
  background-color: #f1f5fe;
}

.bg-ff {
  background-color: #ffecc9 !important;
}

.bg-b1 {
  background-color: #b1e5fc !important;
}

.bg-b6 {
  background-color: #b6f0b5 !important;
}

.default_section_gap {
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .default_section_gap {
    transition: 0.5s;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .default_section_gap {
    transition: 0.5s;
    margin-top: 50px;
  }
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start;
  gap: 10px 20px;
}
@media all and (max-width: 767px) {
  .two-grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: none;
}
.overlay.hide_sidebar {
  z-index: 1001;
}
.overlay.inbox_overlay {
  z-index: 1001;
  background: rgba(0, 0, 0, 0.01);
}

.scrolltop {
  display: none;
}

.main_content_wrapper {
  margin-left: 282px;
  margin-top: 20px;
  margin-right: 24px;
  margin-bottom: 24px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .main_content_wrapper {
    transition: 0.5s;
    margin-left: 24px;
  }
}
@media all and (max-width: 767px) {
  .main_content_wrapper {
    transition: 0.5s;
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media all and (min-width: 1200px) {
  .main_content_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .main_content_wrapper.setting_grid_wrapper {
    margin-top: 0;
    margin-left: 586px;
  }
}

@media all and (min-width: 768px) {
  .content_no_space {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: -32px;
    width: calc(100% + 32px);
  }
}

@media all and (min-width: 992px) {
  .hide-sidebar .main_content_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: 24px;
  }
}
@media all and (max-width: 767px) {
  .hide-sidebar .main_content_wrapper {
    transition: 0.5s;
    margin-left: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hide-sidebar .content_md_no_space {
    transition: 0.5s;
    margin-left: -32px;
  }
}

.short_sidebar_active .main_content_wrapper {
  margin-left: 74px;
}
@media all and (min-width: 1200px) {
  .short_sidebar_active .main_content_wrapper.setting_grid_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: 120px;
  }
}

.setting_content_wrapper {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .setting_content_wrapper {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.modal-body {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.hide_dropdown_arrow::after {
  display: none;
}

.word-break-all {
  word-break: break-all;
}

.table-responsive {
  min-height: 300px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
  background: rgba(52, 64, 84, 0.6);
  border-radius: 5px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #edeef2;
  border-radius: 5px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.table_header_right {
  text-align: end;
  justify-content: end;
}

.table_action_right {
  justify-content: end;
}

@media all and (max-width: 767px) {
  .m-sm-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.niceSelect .list {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.niceSelect .list::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
.niceSelect .list::-webkit-scrollbar-track {
  background: rgba(52, 64, 84, 0.6);
  border-radius: 5px;
}
.niceSelect .list::-webkit-scrollbar-thumb {
  background: #edeef2;
  border-radius: 5px;
}
.niceSelect .list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.niceSelect .current {
  display: flex;
  align-items: center;
  height: 100%;
}

.emojionearea-editor {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.emojionearea-editor::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.emojionearea-editor::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.emojionearea-editor::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.emojionearea-editor::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.skeleton {
  height: 32px;
  width: 32px;
  border-radius: 5px;
  background: rgba(130, 130, 130, 0.2);
  background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
  background-size: 800px 100px;
  animation: wave-squares 2s infinite ease-out;
}
.skeleton.line {
  width: 100px;
  height: 30px;
}
.skeleton.button {
  width: 120px;
}
@media all and (max-width: 767px) {
  .skeleton.button {
    transition: 0.5s;
    width: 60px;
  }
}

@keyframes wave-lines {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes wave-squares {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.animate_scale_up_down {
  animation: animationScaleUpDown 1s linear infinite alternate;
  -webkit-animation: animationScaleUpDown 1s linear infinite alternate;
}

@keyframes animationScaleUpDown {
  from {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
  to {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
.blur-overlay {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.0784313725);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.border_space {
  padding: 16px 24px 24px 24px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
  background: #fff;
}
@media all and (max-width: 991px) {
  .border_space {
    transition: 0.5s;
    padding: 20px 16px;
  }
}
.border_space h6 {
  color: #000;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .border_space h6 {
    transition: 0.5s;
    font-size: 16px;
  }
}

@media all and (min-width: 992px) {
  .is-show-status {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .is-show-status .sidebar_wrapper,
  .is-show-status .setting_sidebar_layout {
    top: 37px;
  }
  .is-show-status .sidebar_wrapper {
    height: calc(var(--vh, 1vh) * 100 - 37px);
  }
  .is-show-status .sidebar_wrapper .inner_main_menu {
    max-height: calc(var(--vh, 1vh) * 100 - 307px);
  }
  .is-show-status .short_sidebar_active .sidebar_wrapper .inner_main_menu {
    max-height: calc(var(--vh, 1vh) * 100 - 297px);
  }
  .is-show-status .setting_sidebar_wrapper .inner_main_menu {
    max-height: none;
  }
}
.is-show-status .main_content_wrapper {
  margin-top: 57px;
}
@media all and (max-width: 991px) {
  .is-show-status .main_content_wrapper {
    transition: 0.5s;
    margin-top: 47px;
  }
}

.landing_inner_title {
  color: #14358a;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px;
}
@media all and (min-width: 1200px) {
  .landing_inner_title {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    letter-spacing: -1.44px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .landing_inner_title {
    transition: 0.5s;
    font-size: 40px;
    line-height: 42.4px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .landing_inner_title {
    transition: 0.5s;
    font-size: 32px;
    line-height: 44.4px;
  }
}
@media all and (max-width: 767px) {
  .landing_inner_title {
    transition: 0.5s;
    font-size: 28px;
    line-height: 30.4px;
  }
}

.pricing_title {
  color: #14358a;
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_title {
    transition: 0.5s;
    font-size: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_title {
    transition: 0.5s;
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  .pricing_title {
    transition: 0.5s;
    font-size: 34px;
  }
}

.business_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14348a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #14348a;
  background: #e5f9fe;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .business_btn {
    transition: 0.5s;
    padding: 18px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .business_btn {
    transition: 0.5s;
    padding: 14px 24px;
  }
}
@media all and (max-width: 767px) {
  .business_btn {
    transition: 0.5s;
    font-size: 14px;
    padding: 12px 20px;
  }
}
.business_btn:hover {
  background: #dfedf0;
}

.choose_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  height: 51px;
  border-radius: 10px;
  background: linear-gradient(52deg, #0097fe -5.7%, #14358a 94.69%);
}
@media all and (max-width: 767px) {
  .choose_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.choose_btn:hover {
  color: #fff;
  background: linear-gradient(52deg, #1c8dd9 -5.7%, #2858d0 94.69%);
}

.submit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 196.823px;
  height: 50.823px;
  padding: 12px;
  border-radius: 5px;
  background: linear-gradient(86deg, #038aef 0%, #124097 100%);
}
@media all and (max-width: 991px) {
  .submit_btn {
    transition: 0.5s;
    font-size: 14px;
    width: 160px;
    height: 44px;
  }
}
.submit_btn:hover {
  background: linear-gradient(45deg, #1a92ed 0%, #1d5dd4 100%);
}

.contact_sale_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b2f9b;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 234px;
  height: 55px;
  border-radius: 5px;
  background: #fff;
}
.contact_sale_btn:hover {
  opacity: 0.9;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact_sale_btn {
    transition: 0.5s;
    height: 48px;
  }
}
@media all and (max-width: 767px) {
  .contact_sale_btn {
    transition: 0.5s;
    font-size: 14px;
    height: 44px;
  }
}

/* Pricing Section */
.pricing_wrapper {
  margin-top: 147px;
  padding-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper {
    transition: 0.5s;
    margin-top: 100px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper {
    transition: 0.5s;
    margin-top: 60px;
  }
}
.pricing_wrapper .header_area h5 {
  max-width: 598px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pricing_wrapper .pricing_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 60px;
  margin-top: 161px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    gap: 30px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 40px;
    margin-top: 120px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 40px;
    margin-top: 70px;
  }
}
.pricing_wrapper .pricing_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 25px;
  border-radius: 24px;
  height: 100%;
  background: #e5f9fe;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper .pricing_item {
    transition: 0.5s;
    padding: 26px 20px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item {
    transition: 0.5s;
    padding: 26px 16px;
  }
}
.pricing_wrapper .pricing_item:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}
.pricing_wrapper .pricing_item.premium_pricing_item {
  background: #005fe7;
}
.pricing_wrapper .pricing_item.premium_pricing_item h3,
.pricing_wrapper .pricing_item.premium_pricing_item .price {
  color: white;
}
.pricing_wrapper .pricing_item.premium_pricing_item h3 span,
.pricing_wrapper .pricing_item.premium_pricing_item .price span {
  color: rgba(255, 255, 255, 0.68);
}
.pricing_wrapper .pricing_item.premium_pricing_item ul li h4 {
  color: white;
}
.pricing_wrapper .pricing_item.premium_pricing_item .choose_btn {
  color: #005fe7;
  background: white;
}
.pricing_wrapper .pricing_item.premium_pricing_item .choose_btn:hover {
  color: #005fe7;
  background: rgb(238, 238, 238);
}
.pricing_wrapper .pricing_item h3,
.pricing_wrapper .pricing_item .price {
  color: #005fe7;
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .pricing_wrapper .pricing_item h3,
  .pricing_wrapper .pricing_item .price {
    transition: 0.5s;
    font-size: 20px;
  }
}
.pricing_wrapper .pricing_item h3 span,
.pricing_wrapper .pricing_item .price span {
  color: #181059;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .pricing_wrapper .pricing_item h3 span,
  .pricing_wrapper .pricing_item .price span {
    transition: 0.5s;
    font-size: 14px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item .price {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.pricing_wrapper .pricing_item ul {
  margin-top: 22px;
}
.pricing_wrapper .pricing_item ul li {
  display: grid;
  grid-template-columns: minmax(0, 12px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 5px;
  margin-bottom: 15px;
}
@media all and (max-width: 991px) {
  .pricing_wrapper .pricing_item ul li {
    transition: 0.5s;
    margin-bottom: 12px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item ul li {
    transition: 0.5s;
    gap: 10px 12px;
  }
}
.pricing_wrapper .pricing_item ul .icon img {
  max-width: 12px;
}
.pricing_wrapper .pricing_item ul h4 {
  color: #68718b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item ul h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.pricing_wrapper .choose_btn {
  margin-top: 24px;
}

/* Inclusive Section */
.inclusive_pricing_wrapper {
  overflow: hidden;
  margin-top: 218px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inclusive_pricing_wrapper {
    transition: 0.5s;
    margin-top: 180px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .inclusive_pricing_wrapper {
    transition: 0.5s;
    margin-top: 140px;
  }
}
@media all and (max-width: 767px) {
  .inclusive_pricing_wrapper {
    transition: 0.5s;
    margin-top: 100px;
  }
}
.inclusive_pricing_wrapper .header_area h5 {
  max-width: 665px;
}
.inclusive_pricing_wrapper .pricing_grid {
  margin-top: 59px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .inclusive_pricing_wrapper .pricing_grid {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .inclusive_pricing_wrapper .pricing_grid {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.inclusive_pricing_wrapper .pricing_item h3 {
  text-align: start;
}
.inclusive_pricing_wrapper .pricing_item .price {
  text-align: center;
  margin-top: 38px;
}
@media all and (max-width: 991px) {
  .inclusive_pricing_wrapper .pricing_item .price {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.inclusive_pricing_wrapper .pricing_item ul {
  margin-top: 43px;
}
@media all and (max-width: 991px) {
  .inclusive_pricing_wrapper .pricing_item ul {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.inclusive_pricing_wrapper .pricing_item ul li {
  align-items: start;
  gap: 5px;
}
.inclusive_pricing_wrapper .choose_btn {
  height: 60px;
  margin-top: 36px;
}
@media all and (max-width: 991px) {
  .inclusive_pricing_wrapper .choose_btn {
    transition: 0.5s;
    height: 50px;
    margin-top: 20px;
  }
}

.mt-150 {
  margin-top: 150px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .mt-150 {
    transition: 0.5s;
    margin-top: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-150 {
    transition: 0.5s;
    margin-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-150 {
    transition: 0.5s;
    margin-top: 80px;
  }
}
@media all and (max-width: 767px) {
  .mt-150 {
    transition: 0.5s;
    margin-top: 60px;
  }
}

.mt-80 {
  margin-top: 80px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .mt-80 {
    transition: 0.5s;
    margin-top: 64px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-80 {
    transition: 0.5s;
    margin-top: 48px;
  }
}
@media all and (max-width: 991px) {
  .mt-80 {
    transition: 0.5s;
    margin-top: 32px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .mt-100 {
    transition: 0.5s;
    margin-top: 74px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-100 {
    transition: 0.5s;
    margin-top: 48px;
  }
}
@media all and (max-width: 991px) {
  .mt-100 {
    transition: 0.5s;
    margin-top: 32px;
  }
}

.mt-42 {
  margin-top: 42px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-42 {
    transition: 0.5s;
    margin-top: 32px;
  }
}
@media all and (max-width: 991px) {
  .mt-42 {
    transition: 0.5s;
    margin-top: 28px;
  }
}

.mt-45 {
  margin-top: 45px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-45 {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 991px) {
  .mt-45 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-50 {
  margin-top: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-50 {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 991px) {
  .mt-50 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .py-150 {
    transition: 0.5s;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .py-150 {
    transition: 0.5s;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .py-150 {
    transition: 0.5s;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media all and (max-width: 767px) {
  .py-150 {
    transition: 0.5s;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.color-6e {
  color: #6e6e6e !important;
}

.color-f3 {
  color: #f33434 !important;
}

.color-66 {
  color: #666;
}

.bg-f6 {
  background-color: #f6f9ff;
}

.z-1002 {
  z-index: 1002;
}

.left-placeholder {
  display: none;
  visibility: hidden;
}

/* Step 1: hide bg-primary background initially */
.bg-primary[data-animated=false] {
  background-color: transparent !important;
}

/* Step 2: allow background to appear after animation begins */
.bg-primary[data-animated=true] {
  background-color: var(--bs-primary); /* or your actual color */
}

.marketing_page_title {
  color: #000;
  text-align: center;
  font-family: SFBoldFont;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px;
}
.marketing_page_title span {
  color: #235de4;
}
@media all and (min-width: 1200px) {
  .marketing_page_title {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    letter-spacing: -1.44px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_page_title {
    transition: 0.5s;
    font-size: 36px;
    line-height: 43.2px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_page_title {
    transition: 0.5s;
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_page_title {
    transition: 0.5s;
    font-size: 28px;
    line-height: 33.6px;
  }
}
@media all and (max-width: 767px) {
  .marketing_page_title {
    transition: 0.5s;
    font-size: 24px;
    line-height: 28.8px;
  }
}

.connection_title {
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .connection_title {
    transition: 0.5s;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .connection_title {
    transition: 0.5s;
    font-size: 18px;
    line-height: 27px;
  }
}
@media all and (max-width: 767px) {
  .connection_title {
    transition: 0.5s;
    font-size: 16px;
    line-height: 24px;
  }
}

.campaing_title {
  color: #000;
  font-family: SFBoldFont;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 37.8px;
}
@media all and (min-width: 1200px) {
  .campaing_title {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    letter-spacing: -1.08px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .campaing_title {
    transition: 0.5s;
    font-size: 32px;
    line-height: 43.2px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .campaing_title {
    transition: 0.5s;
    font-size: 28px;
    line-height: 29.4px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .campaing_title {
    transition: 0.5s;
    font-size: 24px;
    line-height: 25.6px;
  }
}
@media all and (max-width: 767px) {
  .campaing_title {
    transition: 0.5s;
    font-size: 20px;
    line-height: 21.8px;
  }
}

.package_title {
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .package_title {
    transition: 0.5s;
    font-size: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package_title {
    transition: 0.5s;
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package_title {
    transition: 0.5s;
    font-size: 22px;
  }
}
@media all and (max-width: 767px) {
  .package_title {
    transition: 0.5s;
    font-size: 20px;
  }
}

.header_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #265fe4;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border-radius: 16px;
  border: 1.5px solid #cfdeff;
  padding: 10px 36px;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .header_btn {
    transition: 0.5s;
    padding: 10px 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_btn {
    transition: 0.5s;
    font-size: 14px;
    padding: 8px 28px;
    border-radius: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header_btn {
    transition: 0.5s;
    font-size: 12px;
    padding: 6px 24px;
    border-radius: 8px;
  }
}
@media all and (max-width: 767px) {
  .header_btn {
    transition: 0.5s;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 4px;
  }
}
.header_btn.fill {
  color: white;
  padding: 11px 24px;
  background: #265fe4;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .header_btn.fill {
    transition: 0.5s;
    padding: 11px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header_btn.fill {
    transition: 0.5s;
    padding: 10px 16px;
  }
}
@media all and (max-width: 991px) {
  .header_btn.fill {
    transition: 0.5s;
    padding: 8px 14px;
  }
}
.header_btn.fill:hover {
  background: #3660c2;
}
.header_btn:hover {
  background-color: #cfdeff;
}

.marketing_hero_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  border-radius: 16px;
  background: linear-gradient(91deg, #265fe4 0.17%, #6794ff 99.83%);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_btn {
    transition: 0.5s;
    padding: 16px 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_btn {
    transition: 0.5s;
    padding: 12px 24px;
    border-radius: 12px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_btn {
    transition: 0.5s;
    padding: 8px 16px;
    border-radius: 8px;
  }
}
.marketing_hero_btn span {
  color: white;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 1199px) {
  .marketing_hero_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.marketing_hero_btn.marketing_hero_sm_btn {
  padding: 14px 36px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_btn.marketing_hero_sm_btn {
    transition: 0.5s;
    padding: 12px 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_btn.marketing_hero_sm_btn {
    transition: 0.5s;
    padding: 10px 24px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_btn.marketing_hero_sm_btn {
    transition: 0.5s;
    padding: 8px 14px;
  }
}
.marketing_hero_btn.secondary {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  background: #e4ecff;
}
.marketing_hero_btn.secondary span {
  color: #235de4;
}
.marketing_hero_btn.secondary:hover {
  background: #d6def3;
}
.marketing_hero_btn:hover {
  background: linear-gradient(30deg, #265fe4 0.17%, #6794ff 99.83%);
}

.price_choose_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 20px;
  border-radius: 10px;
  border: 1px solid #265fe4;
  background: #f4f7ff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.price_choose_btn span {
  color: #265fe4;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
}
.price_choose_btn:hover {
  background: rgba(38, 95, 228, 0.3019607843);
}

.hero_btn_area {
  gap: 12px 16px;
  margin-top: 48px;
}
@media all and (max-width: 991px) {
  .hero_btn_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.hero_btn_area .hero_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 18px 40px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero_btn_area .hero_btn {
    transition: 0.5s;
    padding: 18px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_btn_area .hero_btn {
    transition: 0.5s;
    padding: 16px 24px;
  }
}
@media all and (max-width: 767px) {
  .hero_btn_area .hero_btn {
    transition: 0.5s;
    padding: 12px 20px;
  }
}
.hero_btn_area .hero_btn span {
  position: relative;
  z-index: 5;
  font-size: 18px;
  color: #1b3daa;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_btn_area .hero_btn span {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .hero_btn_area .hero_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.hero_btn_area .bg_btn {
  border: 1px solid #fff;
  background: #e5f9fe;
  position: relative;
  overflow: hidden;
}
.hero_btn_area .bg_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}
.hero_btn_area .bg_btn::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1583f8, #00c9ff);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}
.hero_btn_area .border_btn {
  border: 1px solid #fff;
  background: transparent;
}
.hero_btn_area .border_btn:hover {
  background: linear-gradient(to right, #1583f8, #00c9ff);
}
.hero_btn_area .border_btn:hover img {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  opacity: 1;
}
.hero_btn_area .border_btn span {
  color: #fff;
}
.hero_btn_area .border_btn img {
  max-width: 24px;
  max-height: 24px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .hero_btn_area .border_btn img {
    transition: 0.5s;
    max-height: 20px;
  }
}
@media all and (min-width: 1200px) {
  .hero_btn_area .border_btn img {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    opacity: 0;
  }
}

.read_more_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 12px;
  border: 1px solid #d0d2e4;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.read_more_btn span {
  color: #265fe4;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.read_more_btn svg {
  color: #265fe4;
}
.read_more_btn:hover {
  background-color: #265fe4;
}
.read_more_btn:hover span,
.read_more_btn:hover svg {
  color: white;
}

.marketing_header_area {
  text-align: center;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.marketing_header_area .marketing_page_title {
  margin-top: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_header_area .marketing_page_title {
    transition: 0.5s;
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_header_area .marketing_page_title {
    transition: 0.5s;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .marketing_header_area .marketing_page_title {
    transition: 0.5s;
    margin-top: 12px;
  }
}
.marketing_header_area p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
  max-width: 692px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_header_area p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
@media all and (max-width: 991px) {
  .marketing_header_area p {
    transition: 0.5s;
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px;
  }
}

.heading_badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 8px 24px;
  border-radius: 12px;
  border: 1.5px solid #ccd8f9;
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .heading_badge {
    transition: 0.5s;
    font-size: 14px;
    padding: 7px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .heading_badge {
    transition: 0.5s;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 8px;
  }
}
@media all and (max-width: 767px) {
  .heading_badge {
    transition: 0.5s;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
  }
}

.connection_item {
  padding: 16px 16px 28px 16px;
  border-radius: 25px;
  border: 1.5px solid #e9ecf6;
  background: linear-gradient(180deg, #e9efff 3.41%, #fff 99.15%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .connection_item {
    transition: 0.5s;
    padding: 14px 14px 24px 14px;
    border-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .connection_item {
    transition: 0.5s;
    padding: 12px 12px 20px 12px;
    border-radius: 16px;
  }
}
@media all and (max-width: 767px) {
  .connection_item {
    transition: 0.5s;
    padding: 10px 10px 16px 10px;
    border-radius: 12px;
  }
}
.connection_item .image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .connection_item .image {
    transition: 0.5s;
    height: 250px;
    border-radius: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .connection_item .image {
    transition: 0.5s;
    height: 200px;
    border-radius: 12px;
  }
}
@media all and (max-width: 767px) {
  .connection_item .image {
    transition: 0.5s;
    height: 220px;
    border-radius: 10px;
  }
}
.connection_item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.connection_item .content {
  margin-top: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .connection_item .content {
    transition: 0.5s;
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .connection_item .content {
    transition: 0.5s;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .connection_item .content {
    transition: 0.5s;
    margin-top: 12px;
  }
}
.connection_item .content p,
.connection_item .content ul {
  margin-top: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .connection_item .content p,
  .connection_item .content ul {
    transition: 0.5s;
    line-height: 22px;
  }
}
@media all and (max-width: 991px) {
  .connection_item .content p,
  .connection_item .content ul {
    transition: 0.5s;
    margin-top: 6px;
  }
}
.connection_item .content ul {
  padding-left: 20px;
}
.connection_item .content ul li {
  list-style-type: disc;
}
.connection_item .content p,
.connection_item .content ul li {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .connection_item .content p,
  .connection_item .content ul li {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
@media all and (max-width: 991px) {
  .connection_item .content p,
  .connection_item .content ul li {
    transition: 0.5s;
    font-size: 12px;
    line-height: 20px;
  }
}

.social_list p {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-right: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social_list p {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .social_list p {
    transition: 0.5s;
    font-size: 16px;
    margin-right: 6px;
  }
}
@media all and (max-width: 767px) {
  .social_list p {
    transition: 0.5s;
    font-size: 14px;
    margin-right: 4px;
  }
}
.social_list a,
.social_list button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.social_list a svg,
.social_list button svg {
  position: relative;
}
@media all and (max-width: 991px) {
  .social_list a svg,
  .social_list button svg {
    transition: 0.5s;
    max-width: 14px;
  }
}
.social_list a::before,
.social_list button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  opacity: 0;
  visibility: hidden;
  background-color: #235de4;
  transition: all 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social_list a,
  .social_list button {
    transition: 0.5s;
    width: 42px;
    height: 42px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .social_list a,
  .social_list button {
    transition: 0.5s;
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
}
@media all and (max-width: 767px) {
  .social_list a,
  .social_list button {
    transition: 0.5s;
    width: 32px;
    height: 32px;
    border-radius: 4px;
  }
}
.social_list a:hover svg,
.social_list button:hover svg {
  color: white;
}
.social_list a:hover::before,
.social_list button:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.line-clamp2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_layout_item {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_layout_item {
    transition: 0.5s;
    border-radius: 12px;
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_layout_item {
    transition: 0.5s;
    border-radius: 8px;
    height: 280px;
  }
}
@media all and (max-width: 767px) {
  .blog_layout_item {
    transition: 0.5s;
    border-radius: 6px;
    height: 260px;
  }
}
.blog_layout_item:hover .blog_image {
  transform: scale(1.1);
}
.blog_layout_item:hover .content {
  opacity: 0.8;
}
.blog_layout_item .blog_image {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.blog_layout_item .blog_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 56.25%);
}
.blog_layout_item .blog_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_layout_item .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: calc(100% - 40px);
}
@media all and (max-width: 991px) {
  .blog_layout_item .content {
    transition: 0.5s;
    left: 10px;
    width: calc(100% - 20px);
  }
}
.blog_layout_item .content span {
  display: block;
}
.blog_layout_item .blog_status {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_layout_item .blog_status {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
@media all and (max-width: 991px) {
  .blog_layout_item .blog_status {
    transition: 0.5s;
    font-size: 12px;
    line-height: 20px;
  }
}
.blog_layout_item .connection_title {
  color: white;
  line-height: normal;
  margin-top: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_layout_item .connection_title {
    transition: 0.5s;
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_layout_item .connection_title {
    transition: 0.5s;
    margin-top: 8px;
  }
}
@media all and (max-width: 767px) {
  .blog_layout_item .connection_title {
    transition: 0.5s;
    margin-top: 4px;
  }
}
.blog_layout_item .description {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin-top: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_layout_item .description {
    transition: 0.5s;
    font-size: 16px;
    line-height: 23px;
    margin-top: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_layout_item .description {
    transition: 0.5s;
    margin-top: 8px;
  }
}
@media all and (max-width: 991px) {
  .blog_layout_item .description {
    transition: 0.5s;
    font-size: 14px;
    line-height: 21px;
  }
}
@media all and (max-width: 767px) {
  .blog_layout_item .description {
    transition: 0.5s;
    margin-top: 6px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_layout_item.features_item {
    transition: 0.5s;
    height: 620px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_layout_item.features_item {
    transition: 0.5s;
    height: 580px;
  }
}
@media all and (min-width: 1200px) {
  .blog_layout_item.features_item {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    height: 720px;
  }
}
@media all and (min-width: 768px) {
  .blog_layout_item.features_item .content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    bottom: 32px;
  }
}

.blog_item {
  padding: 12px 12px 36px 12px;
  border-radius: 16px;
  border: 1.5px solid #eee;
  background: linear-gradient(180deg, #dde5f9 0%, #fff 100%);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_item {
    transition: 0.5s;
    border-radius: 12px;
    padding: 12px 12px 30px 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_item {
    transition: 0.5s;
    border-radius: 8px;
    padding: 12px 12px 24px 12px;
  }
}
@media all and (max-width: 767px) {
  .blog_item {
    transition: 0.5s;
    border-radius: 6px;
    padding: 12px 10px 20px 10px;
  }
}
.blog_item .image {
  position: relative;
  width: 100%;
  height: 265px;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_item .image {
    transition: 0.5s;
    border-radius: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_item .image {
    transition: 0.5s;
    border-radius: 6px;
  }
}
@media all and (max-width: 767px) {
  .blog_item .image {
    transition: 0.5s;
    height: 240px;
    border-radius: 4px;
  }
}
.blog_item .image .blog_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_item .blog_status {
  position: absolute;
  left: 12px;
  bottom: 14px;
  padding: 6px 12px;
  color: #1d1b16;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 8px;
  background: #fff;
}
@media all and (max-width: 991px) {
  .blog_item .blog_status {
    transition: 0.5s;
    padding: 5px 8px;
  }
}
.blog_item .share_btn {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  background: #fff;
}
.blog_item .share_btn img {
  max-width: 20px;
}
.blog_item .share_btn:hover {
  opacity: 0.9;
}
.blog_item .content {
  margin-top: 20px;
}
.blog_item .title {
  color: #1d1b16;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 12px;
  min-height: 48px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_item .title {
    transition: 0.5s;
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_item .title {
    transition: 0.5s;
    font-size: 18px;
    min-height: 42px;
    margin-top: 8px;
  }
}
@media all and (max-width: 767px) {
  .blog_item .title {
    transition: 0.5s;
    font-size: 16px;
    min-height: 38px;
    margin-top: 4px;
  }
}
.blog_item .read_more_btn {
  margin-top: 24px;
}
@media all and (max-width: 991px) {
  .blog_item .read_more_btn {
    transition: 0.5s;
    margin-top: 20px;
  }
}

.blog_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.blog_info li {
  color: #757576;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  list-style-type: disc;
}
.blog_info li:first-of-type {
  list-style-type: none;
}

.pagination_area {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr) minmax(0, 0.6fr);
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .pagination_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 16px 4px;
  }
}
.pagination_area .niceSelect {
  min-width: none;
  height: 32px;
  padding-left: 12px;
  border-radius: 8px;
  border: 1px solid #e1e3e4;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media all and (max-width: 767px) {
  .pagination_area .niceSelect {
    transition: 0.5s;
    padding-left: 6px;
  }
}
.pagination_area .niceSelect .list {
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.pagination_area .niceSelect::after {
  width: 8px;
  height: 8px;
}
.pagination_area .niceSelect .current {
  color: #16141d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
@media all and (max-width: 767px) {
  .pagination_area .niceSelect .current {
    transition: 0.5s;
    font-size: 12px;
  }
}
.pagination_area .number_list {
  gap: 4px;
}
@media all and (max-width: 767px) {
  .pagination_area .number_list {
    transition: 0.5s;
    grid-column: span 2;
  }
}
.pagination_area .number_list li a,
.pagination_area .number_list li button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Gray-600, #475467);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-width: 26px;
  min-height: 26px;
  border-radius: 6px;
}
.pagination_area .number_list li a:hover,
.pagination_area .number_list li button:hover {
  background: #f8f8f9;
}
.pagination_area .number_list li a.pagination_active,
.pagination_area .number_list li button.pagination_active {
  color: #272e35;
  background-color: #f8f8f9;
}
@media all and (max-width: 767px) {
  .pagination_area .pagination_action_list {
    transition: 0.5s;
    grid-row: 1;
    grid-column: 2;
  }
}
.pagination_area .pagination_action_list a,
.pagination_area .pagination_action_list button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e1e3e4;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media all and (max-width: 767px) {
  .pagination_area .pagination_action_list a,
  .pagination_area .pagination_action_list button {
    transition: 0.5s;
    padding: 8px 10px;
  }
}
.pagination_area .pagination_action_list a:hover,
.pagination_area .pagination_action_list button:hover {
  background-color: rgba(224, 224, 228, 0.8);
}
.pagination_area .pagination_action_list a span,
.pagination_area .pagination_action_list button span {
  color: #16141d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
@media all and (max-width: 767px) {
  .pagination_area .pagination_action_list a span,
  .pagination_area .pagination_action_list button span {
    transition: 0.5s;
    font-size: 12px;
  }
}
.pagination_area.inbox_pagination_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pagination_area.blog_pagination_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
@media all and (min-width: 1200px) {
  .pagination_area.blog_pagination_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    gap: 10px 50px;
  }
}
@media all and (min-width: 768px) {
  .pagination_area.blog_pagination_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    justify-content: end;
  }
}
@media all and (max-width: 767px) {
  .pagination_area.blog_pagination_area {
    transition: 0.5s;
    flex-direction: column;
  }
}

.calender_area {
  /* Custom DatePicker Styles */
  /* Header */
  /* Calendar */
  /* Weekdays */
  /* Calendar Grid */
  /* Responsive Design */
  /* Dark theme support */
  /* Animation for month transitions */
  /* Loading state */
}
.calender_area.custom-datepicker {
  padding: 14px 14px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  border-radius: 11.566px;
  border: 1.084px solid #e1e1e1 !important;
  background: #fff;
  box-shadow: 0px 0.723px 7.229px 0px rgba(0, 0, 0, 0.07);
}
@media all and (max-width: 767px) {
  .calender_area.custom-datepicker {
    transition: 0.5s;
    padding: 10px 6px;
  }
}
.calender_area .custom-datepicker * {
  box-sizing: border-box;
}
.calender_area .datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 7.349px;
}
.calender_area .datepicker-title {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .calender_area .datepicker-title {
    transition: 0.5s;
    font-size: 22px;
  }
}
@media all and (max-width: 991px) {
  .calender_area .datepicker-title {
    transition: 0.5s;
    font-size: 18px;
  }
}
.calender_area .datepicker-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .calender_area .datepicker-nav {
    transition: 0.5s;
    width: 28px;
    height: 28px;
  }
}
.calender_area .datepicker-nav:hover:not(:disabled) {
  background: #e5e7eb;
  color: #374151;
}
.calender_area .datepicker-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.calender_area .datepicker-nav .nav-icon {
  max-width: 16px;
  max-height: 16px;
}
@media all and (max-width: 767px) {
  .calender_area .datepicker-nav .nav-icon {
    transition: 0.5s;
    max-width: 14px;
    max-height: 14px;
  }
}
.calender_area .datepicker-calendar {
  margin: 8px;
}
.calender_area .datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 8px;
}
.calender_area .datepicker-weekdays .datepicker-weekday {
  padding: 12px 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #696f8c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .calender_area .datepicker-weekdays .datepicker-weekday {
    transition: 0.5s;
    padding: 10px 8px;
  }
}
@media all and (max-width: 767px) {
  .calender_area .datepicker-weekdays .datepicker-weekday {
    transition: 0.5s;
    font-size: 14px;
    padding: 10px 6px;
  }
}
.calender_area .datepicker-weekdays .datepicker-weekday.disabled {
  color: #cc3b3b;
}
.calender_area .datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 4px;
}
.calender_area .datepicker-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #0b1234;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .calender_area .datepicker-day {
    transition: 0.5s;
    height: 42px;
  }
}
@media all and (max-width: 767px) {
  .calender_area .datepicker-day {
    transition: 0.5s;
    font-size: 14px;
    height: 36px;
  }
}
.calender_area .datepicker-day:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.calender_area .datepicker-day:hover:not(.disabled):not(.empty) {
  background: #eff6ff;
  color: #2563eb;
  transform: scale(1.05);
}
.calender_area .datepicker-day.selected {
  background: #3b82f6 !important;
  color: white !important;
}
.calender_area .datepicker-day.selected:hover:not(.disabled) {
  background: #2563eb;
  transform: scale(1);
}
.calender_area .datepicker-day.pre-selected {
  background: #eef3ff;
  color: #0b1234;
  position: relative;
}
.calender_area .datepicker-day.pre-selected::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
}
@media all and (max-width: 767px) {
  .calender_area .datepicker-day.pre-selected::before {
    transition: 0.5s;
    width: 4px;
    height: 4px;
  }
}
.calender_area .datepicker-day.pre-selected.pre-selected.disabled {
  cursor: not-allowed;
}
.calender_area .datepicker-day.pre-selected:not(.disabled):hover {
  background: #d9dee9;
  color: #0b1234;
}
.calender_area .datepicker-day.disabled {
  background: #f1f1f1;
  color: #0b1234;
  cursor: not-allowed;
}
.calender_area .datepicker-day.disabled-weekday, .calender_area .datepicker-day.disabled-range, .calender_area .datepicker-day.disabled-specific {
  color: #cc3b3b;
  background: transparent;
}
.calender_area .datepicker-day.disabled-previous {
  opacity: 0.2;
  background: #f1f1f1;
}
.calender_area .datepicker-day.disabled-other-month {
  color: #d1d5db;
  background: transparent;
  opacity: 0.5;
  cursor: default;
}
.calender_area .datepicker-day.prev-month, .calender_area .datepicker-day.next-month {
  font-weight: 400;
}
.calender_area .datepicker-calendar {
  animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.calender_area .custom-datepicker.loading {
  pointer-events: none;
  opacity: 0.7;
}
.calender_area .custom-datepicker.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.credit_usages_modal .modal-dialog {
  max-width: 828px;
}
@media all and (max-width: 991px) {
  .credit_usages_modal .modal-dialog {
    transition: 0.5s;
    max-width: 95%;
  }
}
.credit_usages_modal .modal-content {
  border-radius: 16px;
  background: linear-gradient(119deg, #f0f4ff 3.41%, #fff 98.88%);
}
.credit_usages_modal .modal-header {
  align-items: start;
}
.credit_usages_modal .modal-header .title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-top: 0;
}
.credit_usages_modal .modal-header p {
  color: #666;
  margin-top: 4px;
}
.credit_usages_modal .modal-header .btn-close {
  font-size: 14px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.credit_usages_modal .modal-header .btn-close:hover {
  background-color: #eaeaee;
}
.credit_usages_modal .table thead th {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 12px;
  border: none;
  background: #e9f0ff;
}
.credit_usages_modal .table tbody td {
  color: #353636;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(234, 234, 238, 0.5);
}
@media all and (max-width: 767px) {
  .credit_usages_modal .table tbody td {
    transition: 0.5s;
    padding: 12px 10px;
    min-width: 120px;
  }
}
.credit_usages_modal .table .name_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px 12px;
}
.credit_usages_modal .table .name_grid img {
  max-width: 24px;
}
.credit_usages_modal .table .name_grid p {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.swiper {
  width: 100%;
}

@media all and (min-width: 1200px) {
  .container-custom {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    max-width: 1100px;
    width: 100%;
  }
}

.header_area h5 {
  color: #68718b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  .header_area h5 {
    transition: 0.5s;
    font-size: 14px;
  }
}

.form_area {
  /* Floating label effect */
}
.form_area ::-moz-placeholder {
  color: #8d8d8d !important;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 500 !important;
}
.form_area ::placeholder {
  color: #8d8d8d !important;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 500 !important;
}
.form_area .input_row {
  position: relative;
  margin-bottom: 45px;
}
@media all and (max-width: 991px) {
  .form_area .input_row {
    transition: 0.5s;
    margin-bottom: 30px;
  }
}
.form_area .input_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0px 35px;
}
@media all and (max-width: 767px) {
  .form_area .input_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.form_area .input_filed {
  font-size: 14px;
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #8d8d8d !important;
}
.form_area .form_label {
  position: absolute;
  left: 0px;
  top: -2px;
  color: #8d8d8d;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s ease;
  pointer-events: none;
}
.form_area .input_filed:focus + .form_label,
.form_area .input_filed.not-empty + .form_label {
  top: -20px;
  left: 0px;
  font-size: 12px;
  color: #007bff;
}
.form_area .submit_btn {
  margin-top: 45px;
}
@media all and (max-width: 991px) {
  .form_area .submit_btn {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.step_form_area ::-moz-placeholder {
  color: #696f8c !important;
  text-align: start;
}

.step_form_area ::placeholder,
.step_form_area .placeholder_text,
.step_form_area .emojionearea-editor:before {
  color: #696f8c !important;
  text-align: start;
}
.step_form_area label {
  display: block;
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}
@media all and (max-width: 767px) {
  .step_form_area label {
    transition: 0.5s;
    margin-bottom: 5px;
  }
}
.step_form_area label .star {
  color: #e82749;
}
.step_form_area h3 {
  color: #353636;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.step_form_area .input_row {
  position: relative;
  margin-bottom: 16px;
}
.step_form_area .input_row .input_field,
.step_form_area .input_row .bootstrap_select,
.step_form_area .input_row .form-select {
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  border: 1px solid #fff;
  padding: 9px 12px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .input_row .password_input_filed {
  padding-right: 40px;
}
.step_form_area .input_row .quantity_input_field {
  text-align: center;
  padding-left: 35px;
  padding-right: 35px;
}
.step_form_area .input_row .textarea_field {
  height: auto;
}
.step_form_area .input_row .nice_select_top_height {
  height: 40px;
}
.step_form_area .input_row .niceSelect_area {
  height: 40px;
  line-height: 39px;
  width: 100%;
  border: 1px solid #fff;
  padding: 9px 12px;
  padding-right: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .input_row .niceSelect_area .current {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.step_form_area .input_row .niceSelect_area::after {
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.step_form_area .input_row .niceSelect_area .list {
  padding: 8px 8px 8px 8px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.step_form_area .input_row .niceSelect_area .list .option {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  min-height: auto;
  line-height: normal;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 4px;
}
@media all and (max-width: 767px) {
  .step_form_area .input_row .niceSelect_area .list .option {
    transition: 0.5s;
    font-size: 14px;
  }
}
.step_form_area .input_row .niceSelect_area .list .selected {
  position: relative;
  padding-right: 28px;
}
.step_form_area .input_row .niceSelect_area .list .selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}
.step_form_area .input_row .niceSelect_status_area {
  height: 40px;
  line-height: 39px;
  width: 100%;
  border: 1px solid #fff;
  padding: 9px 12px;
  padding-right: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .input_row .niceSelect_status_area .current {
  position: relative;
  top: -8.5px;
  display: inline;
  color: #113206;
  font-family: SFRegularFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 4px 10px;
  background: #b6f0b5;
}
.step_form_area .input_row .niceSelect_status_area::after {
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.step_form_area .input_row .niceSelect_status_area .list {
  padding: 8px 8px 8px 8px;
  width: 238px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.step_form_area .input_row .niceSelect_status_area .list .option {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  min-height: auto;
  line-height: normal;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 4px;
}
@media all and (max-width: 767px) {
  .step_form_area .input_row .niceSelect_status_area .list .option {
    transition: 0.5s;
    font-size: 14px;
  }
}
.step_form_area .input_row .niceSelect_status_area .list .selected {
  position: relative;
  padding-right: 28px;
}
.step_form_area .input_row .niceSelect_status_area .list .selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}
.step_form_area .input_row .refineText {
  border: 1px solid #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .input_row h5 {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
.step_form_area .textarea_header_top {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .textarea_header_top .input_field.textarea_field {
  border: none !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  box-shadow: none;
}
.step_form_area .textarea_header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 8px;
  border-bottom: 1px solid #e6e6e7;
  background: #f5f6f8;
}
.step_form_area .eye_icon_area {
  top: 34px;
}
.step_form_area .quantity_btn {
  position: absolute;
  left: 5px;
  top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.step_form_area .quantity_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.step_form_area .quantity_btn img {
  max-width: 16px;
}
.step_form_area .plus_quantity_btn {
  position: absolute;
  left: auto;
  right: 5px;
  top: 6px;
}
.step_form_area .quantity_btn .voice_type_area {
  gap: 10px 43px;
}
.step_form_area .quantity_btn .voice_type_area .form-check-label {
  font-family: SFRegularFont;
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  margin-bottom: 0;
}
.step_form_area .quantity_btn .voice_type_area .form-check-label:hover {
  opacity: 0.8;
}
.step_form_area .voice_type_area {
  gap: 10px 43px;
}
.step_form_area .voice_type_area .form-check-label {
  position: relative;
  top: 2px;
  font-family: SFRegularFont;
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  margin-bottom: 0;
}
.step_form_area .voice_type_area .form-check-label:hover {
  opacity: 0.8;
}
.step_form_area .bottom_text {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
.step_form_area .inactive .current {
  background-color: #ffbab6 !important;
}
.step_form_area .twilio_account_radio_area {
  margin-top: 28px;
}
.step_form_area .twilio_account_radio_area .form-check {
  position: relative;
  padding: 0;
}
.step_form_area .twilio_account_radio_area .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.step_form_area .twilio_account_radio_area .form-check-input:checked + .form-check-label {
  border: 1px solid #235de4;
  opacity: 1;
  box-shadow: 0px 4px 4px 0px rgba(35, 93, 228, 0.25);
  background: #fff;
}
.step_form_area .twilio_account_radio_area .form-check-input:checked + .form-check-label .check_icon {
  display: block;
}
.step_form_area .twilio_account_radio_area .form-check-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 34px 20px;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid #e3e5ed;
  text-align: center;
  opacity: 0.6;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .step_form_area .twilio_account_radio_area .form-check-label {
    transition: 0.5s;
    padding: 30px 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .step_form_area .twilio_account_radio_area .form-check-label {
    transition: 0.5s;
    padding: 24px 16px;
  }
}
@media all and (max-width: 767px) {
  .step_form_area .twilio_account_radio_area .form-check-label {
    transition: 0.5s;
    padding: 20px 12px;
  }
}
.step_form_area .twilio_account_radio_area .form-check-label:hover {
  background-color: #dfedf0;
}
.step_form_area .twilio_account_radio_area .form-check-label .user_icon {
  max-width: 40px;
}
.step_form_area .twilio_account_radio_area .check_icon {
  position: absolute;
  top: -14px;
  right: -14px;
  max-width: 30px;
  display: none;
}
.step_form_area .submit_content_area {
  text-align: center;
  max-width: 443px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.step_form_area .submit_content_area .check_success_icon {
  max-width: 215px;
  max-height: 215px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .step_form_area .submit_content_area .check_success_icon {
    transition: 0.5s;
    max-width: 200px;
    max-height: 200px;
  }
}
@media all and (max-width: 767px) {
  .step_form_area .submit_content_area .check_success_icon {
    transition: 0.5s;
    max-width: 170px;
    max-height: 170px;
  }
}
.step_form_area .submit_content_area h4 {
  color: #253456;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  margin-top: 32px;
}
@media all and (max-width: 767px) {
  .step_form_area .submit_content_area h4 {
    transition: 0.5s;
    font-size: 20px;
    margin-top: 24px;
  }
}
.step_form_area .submit_content_area p {
  color: #253456;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.18px;
  margin-top: 12px;
}
@media all and (max-width: 991px) {
  .step_form_area .submit_content_area p {
    transition: 0.5s;
    font-size: 16px;
    margin-top: 8px;
  }
}
.step_form_area .two_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0px 16px;
}
@media all and (max-width: 767px) {
  .step_form_area .two_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.step_form_area .three_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px 24px;
}
@media all and (max-width: 991px) {
  .step_form_area .three_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
}
.step_form_area .form_submit_btn {
  padding: 12px 10px 12px 30px;
  border-radius: 12px;
  width: 100%;
  background: #235de4;
}
.step_form_area .form_submit_btn span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}
@media all and (max-width: 767px) {
  .step_form_area .form_submit_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.step_form_area .form_submit_btn:hover {
  opacity: 0.9;
}
.step_form_area .inner_row_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 28px);
  align-items: center;
  gap: 10px;
}
.step_form_area .participant_remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.step_form_area .participant_remove:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.step_form_area .checkbox_area {
  gap: 10px 60px;
  margin-bottom: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .step_form_area .checkbox_area {
    transition: 0.5s;
    gap: 10px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .step_form_area .checkbox_area {
    transition: 0.5s;
    gap: 10px 30px;
  }
}
@media all and (max-width: 767px) {
  .step_form_area .checkbox_area {
    transition: 0.5s;
    gap: 10px 20px;
    margin-bottom: 20px;
  }
}
.step_form_area .checkbox_area .form-check-label {
  margin-top: 3px;
  cursor: pointer;
}
.step_form_area .checkbox_area .form-check-label:hover {
  opacity: 0.8;
}
.step_form_area .setting_action_btn_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 32px;
}
.step_form_area .setting_action_btn_area .cancel_btn {
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .setting_action_btn_area .cancel_btn {
  padding: 8px 16px;
}
.step_form_area .setting_action_btn_area .create_event_btn {
  padding: 8px 16px;
}
.step_form_area .partipants_area {
  margin-top: 24px;
}
.step_form_area .participants_user_area .two_grid {
  margin-top: 12px;
}
.step_form_area .note_area {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.step_form_area .note_area .note_header {
  gap: 4px;
  padding: 6px 10px;
  border-bottom: 1px solid #e6e6e7;
  background: #f5f6f8;
}
.step_form_area .note_area .note_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.step_form_area .note_area .note_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.step_form_area .note_area .note_btn img {
  max-width: 16px;
}
.step_form_area .note_area .emojionearea {
  border: none !important;
  background-color: transparent;
  box-shadow: none !important;
}
.step_form_area .note_area .emojionearea .emojionearea-picker {
  top: 0;
  left: 0;
  z-index: 50000;
}
.step_form_area .note_area .emojionearea-editor {
  padding: 0;
  height: 180px;
}
.step_form_area .note_area .emojionearea-button {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 73px;
  top: -36px;
  width: 28px;
  height: 28px;
}
.step_form_area .note_area .emojionearea-button:hover {
  opacity: 0.9;
}
.step_form_area .nav-pills {
  padding: 4px;
  border-radius: 8px;
  background: #f6f9ff;
}
.step_form_area .nav-pills .nav-link {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 6px 16px;
}
@media all and (max-width: 767px) {
  .step_form_area .nav-pills .nav-link {
    transition: 0.5s;
    padding: 6px 12px;
  }
}
.step_form_area .nav-pills .nav-link:hover {
  opacity: 0.8;
}
.step_form_area .nav-pills .nav-link.active {
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(7, 9, 18, 0.16);
}
.step_form_area .tab-content {
  margin-top: 16px;
}
.step_form_area .permission_area {
  margin-top: 10px;
}
.step_form_area .permission_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0px 20px;
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .step_form_area .permission_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.step_form_area .permission_grid .custom_switch_area {
  margin-bottom: 14px;
}
@media all and (max-width: 767px) {
  .step_form_area .permission_grid .custom_switch_area {
    transition: 0.5s;
    margin-bottom: 12px;
  }
}

/* Hero Section */
.hero_wrapper {
  position: relative;
  padding-top: 175px;
  padding-bottom: 30px;
  min-height: 806px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_wrapper {
    transition: 0.5s;
    min-height: 706px;
  }
}
@media all and (max-width: 767px) {
  .hero_wrapper {
    transition: 0.5s;
    padding-top: 100px;
    min-height: 506px;
  }
}
.hero_wrapper .hero_content_area {
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero_wrapper .hero_content_area h1 {
  color: white;
  text-align: center;
  font-family: SFBoldFont;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: -1px;
}
.hero_wrapper .hero_content_area h1 b {
  font-weight: 700;
  color: #235de4;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 60px;
    line-height: 72px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 40px;
    line-height: 48px;
  }
}
@media all and (min-width: 768px) {
  .hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    letter-spacing: -1.44px;
  }
}
@media all and (max-width: 767px) {
  .hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 26px;
    line-height: 34px;
  }
}
.hero_wrapper .hero_content_area h4 {
  color: #e6e8ec;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 24px;
  max-width: 692px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero_wrapper .hero_content_area h4 {
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_wrapper .hero_content_area h4 {
    transition: 0.5s;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .hero_wrapper .hero_content_area h4 {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
    margin-top: 12px;
  }
}
.hero_wrapper .hero_btn_area {
  gap: 12px 16px;
  margin-top: 48px;
}
@media all and (max-width: 991px) {
  .hero_wrapper .hero_btn_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.hero_wrapper .hero_btn_area .hero_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 18px 40px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero_wrapper .hero_btn_area .hero_btn {
    transition: 0.5s;
    padding: 18px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_wrapper .hero_btn_area .hero_btn {
    transition: 0.5s;
    padding: 16px 24px;
  }
}
@media all and (max-width: 767px) {
  .hero_wrapper .hero_btn_area .hero_btn {
    transition: 0.5s;
    padding: 12px 20px;
  }
}
.hero_wrapper .hero_btn_area .hero_btn span {
  position: relative;
  z-index: 5;
  font-size: 18px;
  color: #1b3daa;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_wrapper .hero_btn_area .hero_btn span {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .hero_wrapper .hero_btn_area .hero_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.hero_wrapper .hero_btn_area .bg_btn {
  border: 1px solid #fff;
  background: #e5f9fe;
  position: relative;
  overflow: hidden;
}
.hero_wrapper .hero_btn_area .bg_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}
.hero_wrapper .hero_btn_area .bg_btn::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1583f8, #00c9ff);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}
.hero_wrapper .hero_btn_area .border_btn {
  border: 1px solid #fff;
  background: transparent;
}
.hero_wrapper .hero_btn_area .border_btn:hover {
  background: linear-gradient(to right, #1583f8, #00c9ff);
}
.hero_wrapper .hero_btn_area .border_btn:hover img {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  opacity: 1;
}
.hero_wrapper .hero_btn_area .border_btn span {
  color: #fff;
}
.hero_wrapper .hero_btn_area .border_btn img {
  max-width: 24px;
  max-height: 24px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .hero_wrapper .hero_btn_area .border_btn img {
    transition: 0.5s;
    max-height: 20px;
  }
}
@media all and (min-width: 1200px) {
  .hero_wrapper .hero_btn_area .border_btn img {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    opacity: 0;
  }
}

/* Business Section */
.business_wrapper {
  padding-top: 80px;
  padding-bottom: 183px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business_wrapper {
    transition: 0.5s;
    padding-top: 50px;
    padding-bottom: 150px;
  }
}
@media all and (max-width: 767px) {
  .business_wrapper {
    transition: 0.5s;
    padding-top: 40px;
    padding-bottom: 100px;
  }
}
.business_wrapper h4 {
  color: #68718b;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.3px;
  margin-top: 24px;
  max-width: 470px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 991px) {
  .business_wrapper h4 {
    transition: 0.5s;
    font-size: 16px;
    margin-top: 12px;
  }
}
.business_wrapper .business_btn_area {
  gap: 12px 6px;
  margin-top: 48px;
}
@media all and (max-width: 991px) {
  .business_wrapper .business_btn_area {
    transition: 0.5s;
    margin-top: 40px;
  }
}

/* Twilio Form Section */
.twilio_form_wrapper {
  margin-top: -200px;
  padding-bottom: 100px;
  background: #f6f6f6;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper {
    transition: 0.5s;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper {
    transition: 0.5s;
    padding-bottom: 60px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper {
    transition: 0.5s;
    padding-bottom: 40px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper {
    transition: 0.5s;
    margin-top: -100px;
  }
}
.twilio_form_wrapper .twilio_form_area {
  position: relative;
  z-index: 2;
  padding: 80px 56px;
  border-radius: 24px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .twilio_form_wrapper .twilio_form_area {
    transition: 0.5s;
    padding: 60px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .twilio_form_area {
    transition: 0.5s;
    padding: 50px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .twilio_form_area {
    transition: 0.5s;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    padding: 40px 20px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .twilio_form_area {
    transition: 0.5s;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    padding: 30px 16px;
  }
}
.twilio_form_wrapper .twilio_form_area.step_twilio_form_area {
  padding: 0;
  overflow: hidden;
  background: #e9eff2;
}
.twilio_form_wrapper .heading_area {
  text-align: center;
  max-width: 842px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.twilio_form_wrapper .heading_area h1 {
  color: #000;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  letter-spacing: 0.56px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .heading_area h1 {
    transition: 0.5s;
    font-size: 46px;
    line-height: 53px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .heading_area h1 {
    transition: 0.5s;
    font-size: 32px;
    line-height: 39px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .heading_area h1 {
    transition: 0.5s;
    font-size: 24px;
    line-height: 35px;
  }
}
.twilio_form_wrapper .heading_area h3 {
  color: #171717;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .heading_area h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .heading_area h3 {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .heading_area h3 {
    transition: 0.5s;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .heading_area h3 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.twilio_form_wrapper .twilio_outer_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px 48px;
  margin-top: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .twilio_outer_grid {
    transition: 0.5s;
    gap: 20px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .twilio_outer_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
    gap: 20px 20px;
  }
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .twilio_outer_grid {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .twilio_outer_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.twilio_form_wrapper .twilio_outer_grid .content_area .submit_btn {
  margin-top: 57px;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .twilio_outer_grid .content_area .submit_btn {
    transition: 0.5s;
    margin-top: 40px;
  }
}
.twilio_form_wrapper .info_item_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 20px 16px;
  margin-bottom: 24px;
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .info_item_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 20px) repeat(1, minmax(0, 1fr));
    gap: 20px 12px;
  }
}
.twilio_form_wrapper .info_item_grid h4 {
  color: #171717;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.22px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .info_item_grid h4 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .info_item_grid h4 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.twilio_form_wrapper .info_item_grid p {
  color: #171717;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .info_item_grid p {
    transition: 0.5s;
    margin-top: 8px;
  }
}
.twilio_form_wrapper .outer_img_area {
  text-align: center;
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .outer_img_area {
    transition: 0.5s;
    display: none;
  }
}
.twilio_form_wrapper .outer_img_area img {
  max-height: 550px;
}
.twilio_form_wrapper .twilio_step_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 20px 10px;
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .twilio_step_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.twilio_form_wrapper .twilio_step_content_area {
  background-color: white;
}
.twilio_form_wrapper .twilio_step_content_area,
.twilio_form_wrapper .step_form_area {
  padding: 80px 60px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .twilio_form_wrapper .twilio_step_content_area,
  .twilio_form_wrapper .step_form_area {
    transition: 0.5s;
    padding: 60px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .twilio_step_content_area,
  .twilio_form_wrapper .step_form_area {
    transition: 0.5s;
    padding: 60px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .twilio_step_content_area,
  .twilio_form_wrapper .step_form_area {
    transition: 0.5s;
    padding: 30px 22px;
  }
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .twilio_step_content_area,
  .twilio_form_wrapper .step_form_area {
    transition: 0.5s;
    padding: 30px 20px;
  }
}
.twilio_form_wrapper .step_header h3 {
  color: #2f3241;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .step_header h3 {
    transition: 0.5s;
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .step_header h3 {
    transition: 0.5s;
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .step_header h3 {
    transition: 0.5s;
    font-size: 24px;
  }
}
.twilio_form_wrapper .step_header h4 {
  color: #09090a;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .step_header h4 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .step_header h4 {
    transition: 0.5s;
    font-size: 16px;
    margin-top: 12px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .step_header h4 {
    transition: 0.5s;
    font-size: 14px;
    margin-top: 10px;
  }
}
.twilio_form_wrapper .step_header h4 strong,
.twilio_form_wrapper .step_header h4 a {
  color: #004dff;
}
.twilio_form_wrapper .step_grid_area {
  margin-top: 48px;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .step_grid_area {
    transition: 0.5s;
    margin-top: 40px;
  }
}
.twilio_form_wrapper .step_grid {
  display: grid;
  grid-template-columns: minmax(0, 40px) minmax(0, 1fr) minmax(0, 24px);
  align-items: center;
  gap: 10px 12px;
  padding: 10px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 1px solid #e8e8e8;
  margin-top: 24px;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .step_grid {
    transition: 0.5s;
    margin-top: 20px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .step_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 30px) minmax(0, 1fr) minmax(0, 20px);
    margin-top: 10px;
  }
}
.twilio_form_wrapper .step_grid.active_item {
  border: 1px solid #f4f6f8;
  background: #f4f6f8;
}
.twilio_form_wrapper .step_grid.active_item .icon {
  background-color: white !important;
}
.twilio_form_wrapper .step_grid.active_item .check_icon {
  display: block;
}
.twilio_form_wrapper .step_grid .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #f6f6f6;
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .step_grid .icon {
    transition: 0.5s;
    height: 30px;
  }
}
.twilio_form_wrapper .step_grid .icon img {
  max-width: 20px;
}
.twilio_form_wrapper .step_grid h4 {
  color: #2f3241;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .step_grid h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.twilio_form_wrapper .step_grid .check_icon {
  display: none;
}
.twilio_form_wrapper .progress {
  border-radius: 16px;
  background: #fff;
}
.twilio_form_wrapper .progress .progress-bar {
  border-radius: 16px;
  background-color: #235de4;
}
.twilio_form_wrapper .back_step_grid {
  display: grid;
  grid-template-columns: minmax(0, 57px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 20px 16px;
  margin-top: 20px;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .back_step_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 40px) repeat(1, minmax(0, 1fr));
  }
}
.twilio_form_wrapper .back_step_grid .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 100%;
  height: 57px;
  background-color: #fff;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25));
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .back_step_grid .icon {
    transition: 0.5s;
    height: 40px;
  }
}
.twilio_form_wrapper .back_step_grid .icon:hover {
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.025));
  -webkit-filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.025));
}
.twilio_form_wrapper .back_step_grid h4 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .twilio_form_wrapper .back_step_grid h4 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .back_step_grid h4 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .back_step_grid h4 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.twilio_form_wrapper .back_step_grid h6 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .back_step_grid h6 {
    transition: 0.5s;
    font-size: 14px;
    margin-top: 6px;
  }
}
.twilio_form_wrapper .form_inner_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  margin-top: 24px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #fff;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_form_wrapper .form_inner_area {
    transition: 0.5s;
    padding: 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
}
@media all and (min-width: 768px) {
  .twilio_form_wrapper .form_inner_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    min-height: 600px;
  }
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .form_inner_area {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }
}
.twilio_form_wrapper .form_inner_area .form_submit_btn {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .twilio_form_wrapper .form_inner_area .form_submit_btn {
    transition: 0.5s;
    margin-top: 40px;
  }
}
.twilio_form_wrapper .arrow_down_btn {
  position: absolute;
  top: 25%;
  right: -10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(35, 93, 228, 0.8);
}
.twilio_form_wrapper .arrow_down_btn:hover {
  opacity: 0.8;
}
.twilio_form_wrapper .arrow_down_btn img,
.twilio_form_wrapper .arrow_down_btn svg {
  max-width: 16px;
}
.twilio_form_wrapper .arrow_down_btn path {
  fill: white;
}
.twilio_form_wrapper .twilio_content_area {
  position: relative;
  padding-right: 6px;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  overflow-x: hidden;
}
.twilio_form_wrapper .twilio_content_area ul {
  padding-left: 20px;
}
.twilio_form_wrapper .twilio_content_area li {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  list-style-type: disc;
}
.twilio_form_wrapper .twilio_content_area .twilio_content_item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  padding-bottom: 16px;
  border-bottom: 1px solid #d0d5dd;
}
@media all and (max-width: 991px) {
  .twilio_form_wrapper .twilio_content_area .twilio_content_item h3 {
    transition: 0.5s;
    font-size: 18px;
    padding-bottom: 12px;
  }
}

/* Twilio Steup Guide Section  */
.twilio_setup_guide_area {
  position: relative;
  margin-top: -250px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_setup_guide_area {
    transition: 0.5s;
    margin-top: -200px;
  }
}
@media all and (max-width: 767px) {
  .twilio_setup_guide_area {
    transition: 0.5s;
    margin-top: -140px;
  }
}
.twilio_setup_guide_area .steup_guide_image {
  text-align: center;
}

@media all and (min-width: 768px) {
  .twilio_step_content_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: sticky;
    top: 100px;
    margin-top: 40px;
  }
}
.twilio_step_content_area .steup_guide_list {
  margin-top: 40px;
}
@media all and (max-width: 991px) {
  .twilio_step_content_area .steup_guide_list {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.twilio_step_content_area .steup_guide_list li {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  list-style: number;
  color: #2d2f4a;
  text-align: start;
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_step_content_area .steup_guide_list li {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .twilio_step_content_area .steup_guide_list li {
    transition: 0.5s;
    font-size: 16px;
  }
}
.twilio_step_content_area .list_note {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #2d2f4a;
}
@media (min-width: 768px) and (max-width: 991px) {
  .twilio_step_content_area .list_note {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .twilio_step_content_area .list_note {
    transition: 0.5s;
    font-size: 16px;
  }
}
.twilio_step_content_area .info_list li {
  display: grid;
  grid-template-columns: minmax(0, 18px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 12px;
  list-style: none;
}
.twilio_step_content_area .info_list li .icon {
  width: 100%;
}

.twilio_step_wrapper {
  padding: 40px 0;
  margin-top: 40px;
}
@media all and (max-width: 991px) {
  .twilio_step_wrapper {
    transition: 0.5s;
    padding: 30px 0;
  }
}
.twilio_step_wrapper .steup_guide_grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  align-items: start;
  gap: 24px;
}
@media all and (max-width: 767px) {
  .twilio_step_wrapper .steup_guide_grid {
    transition: 0.5s;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}
.twilio_step_wrapper .steup_guide_grid.last_steup_guide_grid {
  grid-template-columns: 8fr 4fr;
}
@media all and (max-width: 767px) {
  .twilio_step_wrapper .steup_guide_grid.last_steup_guide_grid {
    transition: 0.5s;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}
.twilio_step_wrapper .steup_guide_grid.steup_guide_three_grid {
  grid-template-columns: 1fr 1fr 1fr;
}
@media all and (max-width: 767px) {
  .twilio_step_wrapper .steup_guide_grid.steup_guide_three_grid {
    transition: 0.5s;
    grid-template-columns: 1fr;
    gap: 24px 16px;
  }
}

/* Hero Section */
.marketing_hero_wrapper {
  position: relative;
  padding-top: 205px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper {
    transition: 0.5s;
    padding-top: 150px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper {
    transition: 0.5s;
    padding-top: 120px;
  }
}
.marketing_hero_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80%;
  max-height: 100vh;
  background: linear-gradient(180deg, #dde5f9 3.41%, #fff 99.15%);
}
.marketing_hero_wrapper .hero_content_area {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.marketing_hero_wrapper .hero_content_area h1 {
  color: #000;
  text-align: center;
  font-family: SFBoldFont;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: -1px;
}
.marketing_hero_wrapper .hero_content_area h1 b {
  font-weight: 700;
  color: #235de4;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 60px;
    line-height: 72px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 40px;
    line-height: 48px;
  }
}
@media all and (min-width: 768px) {
  .marketing_hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    letter-spacing: -1.44px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .hero_content_area h1 {
    transition: 0.5s;
    font-size: 26px;
    line-height: 34px;
  }
}
.marketing_hero_wrapper .hero_content_area p {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 24px;
  max-width: 692px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .hero_content_area p {
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .hero_content_area p {
    transition: 0.5s;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .hero_content_area p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
    margin-top: 12px;
  }
}
.marketing_hero_wrapper .marketing_hero_btn {
  margin-top: 36px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .marketing_hero_btn {
    transition: 0.5s;
    margin-top: 24px;
  }
}
.marketing_hero_wrapper .hero_image {
  position: relative;
  margin-top: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .hero_image {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .hero_image {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.marketing_hero_wrapper.hero_pricing_wrapper .hero_content_area {
  max-width: 996px;
}
.marketing_hero_wrapper.hero_pricing_wrapper .hero_content_area p {
  max-width: 778px;
}
.marketing_hero_wrapper.features_hero_wrapper .hero_content_area {
  max-width: 996px;
}
.marketing_hero_wrapper.features_hero_wrapper .hero_content_area p {
  max-width: 696px;
}
.marketing_hero_wrapper.marketing_hero_wrapper::before {
  min-height: 100%;
}
.marketing_hero_wrapper.marketing_hero_wrapper .hero_content_area {
  max-width: 996px;
}
.marketing_hero_wrapper.marketing_hero_wrapper .hero_content_area p {
  max-width: 778px;
}
.marketing_hero_wrapper.industry_hero_wrapper .hero_content_area {
  max-width: 1088px;
}
.marketing_hero_wrapper.industry_hero_wrapper .hero_content_area p {
  max-width: 778px;
}
.marketing_hero_wrapper .contact_form_area {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 50px 40px;
  padding: 80px 60px;
  border-radius: 16px;
  border: 1.5px solid #e1e1e1;
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.07);
}
.marketing_hero_wrapper .contact_form_area.calender_form {
  display: block;
  padding: 70px 100px 80px 100px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .contact_form_area.calender_form {
    transition: 0.5s;
    padding: 60px 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area.calender_form {
    transition: 0.5s;
    padding: 50px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area.calender_form {
    transition: 0.5s;
    padding: 30px 24px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area.calender_form {
    transition: 0.5s;
    padding: 30px 16px;
  }
}
.marketing_hero_wrapper .contact_form_area.calender_form .campaing_title {
  font-family: SFSemiBoldFont;
  font-weight: 600;
  text-align: center;
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.marketing_hero_wrapper .contact_form_area.calender_form .contact_item .contact_label {
  color: #000;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .contact_form_area {
    transition: 0.5s;
    padding: 60px 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area {
    transition: 0.5s;
    padding: 50px 40px;
    border-radius: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area {
    transition: 0.5s;
    gap: 50px 20px;
    padding: 30px 24px;
    border-radius: 10px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 30px 16px;
    border-radius: 8px;
  }
}
.marketing_hero_wrapper .contact_form_area .campaing_title {
  font-family: SFRegularFont;
  font-weight: 400;
  max-width: 460px;
  text-align: start;
  width: 100%;
}
.marketing_hero_wrapper .contact_form_area .connection_title {
  margin-top: 70px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .contact_form_area .connection_title {
    transition: 0.5s;
    margin-top: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area .connection_title {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .connection_title {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.marketing_hero_wrapper .contact_form_area .schedule_grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 30px 44px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area .schedule_grid {
    transition: 0.5s;
    gap: 30px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .schedule_grid {
    transition: 0.5s;
    grid-template-columns: 1fr auto;
    gap: 30px 24px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area .schedule_grid {
    transition: 0.5s;
    grid-template-columns: 1fr;
    gap: 30px 24px;
  }
}
.marketing_hero_wrapper .contact_form_area .time_area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 2px;
  max-height: 440px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.marketing_hero_wrapper .contact_form_area .time_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.marketing_hero_wrapper .contact_form_area .time_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.marketing_hero_wrapper .contact_form_area .time_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.marketing_hero_wrapper .contact_form_area .time_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .time_area {
    transition: 0.5s;
    gap: 14px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area .time_area {
    transition: 0.5s;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 10px;
  }
}
.marketing_hero_wrapper .contact_form_area .time_area a,
.marketing_hero_wrapper .contact_form_area .time_area button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 13.5px 16px;
  border-radius: 16px;
  min-width: 176px;
  border: 1.5px solid #e1e1e1 !important;
  background: #fff;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .contact_form_area .time_area a,
  .marketing_hero_wrapper .contact_form_area .time_area button {
    transition: 0.5s;
    padding: 12px 16px;
    border-radius: 14px;
    min-width: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area .time_area a,
  .marketing_hero_wrapper .contact_form_area .time_area button {
    transition: 0.5s;
    padding: 12px 16px;
    border-radius: 10px;
    min-width: 130px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .time_area a,
  .marketing_hero_wrapper .contact_form_area .time_area button {
    transition: 0.5s;
    padding: 12px 14px;
    border-radius: 8px;
    min-width: 120px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area .time_area a,
  .marketing_hero_wrapper .contact_form_area .time_area button {
    transition: 0.5s;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 4px;
    min-width: auto;
  }
}
.marketing_hero_wrapper .contact_form_area .time_area a.active,
.marketing_hero_wrapper .contact_form_area .time_area button.active {
  color: white;
  background: #265fe4;
}
.marketing_hero_wrapper .contact_form_area .time_area a.active:hover,
.marketing_hero_wrapper .contact_form_area .time_area button.active:hover {
  background: #265fe4;
}
.marketing_hero_wrapper .contact_form_area .time_area a:hover,
.marketing_hero_wrapper .contact_form_area .time_area button:hover {
  background: #eeeded;
}
.marketing_hero_wrapper .contact_form_area .contact_item {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area .contact_item {
    transition: 0.5s;
    margin-top: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .contact_item {
    transition: 0.5s;
    margin-top: 12px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area .contact_item {
    transition: 0.5s;
    margin-top: 8px;
  }
}
.marketing_hero_wrapper .contact_form_area .contact_item .contact_label,
.marketing_hero_wrapper .contact_form_area .contact_item a {
  color: #6e6e6e;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .contact_item .contact_label,
  .marketing_hero_wrapper .contact_form_area .contact_item a {
    transition: 0.5s;
    font-size: 14px;
  }
}
.marketing_hero_wrapper .contact_form_area .contact_item a {
  display: block;
  color: #000;
  margin-top: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .contact_form_area .contact_item a {
    transition: 0.5s;
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .contact_item a {
    transition: 0.5s;
    margin-top: 8px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .contact_form_area .contact_item a {
    transition: 0.5s;
    margin-top: 4px;
  }
}
.marketing_hero_wrapper .contact_form_area .contact_item a:hover {
  opacity: 0.8;
}
.marketing_hero_wrapper .contact_form_area .item_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px 12px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .contact_form_area .item_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 20px) repeat(1, minmax(0, 1fr));
    gap: 10px 8px;
  }
}
.marketing_hero_wrapper .hero_form_area ::-moz-placeholder {
  color: #cecece;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.marketing_hero_wrapper .hero_form_area ::placeholder {
  color: #cecece;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .hero_form_area ::-moz-placeholder {
    -moz-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
  }
  .marketing_hero_wrapper .hero_form_area ::placeholder {
    transition: 0.5s;
    font-size: 14px;
  }
}
.marketing_hero_wrapper .hero_form_area .two_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0px 16px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .hero_form_area .two_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.marketing_hero_wrapper .hero_form_area .input_row {
  margin-bottom: 16px;
}
.marketing_hero_wrapper .hero_form_area .input_row label {
  display: block;
  color: #000;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .hero_form_area .input_row label {
    transition: 0.5s;
    font-size: 14px;
    margin-bottom: 8px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .hero_form_area .input_row label {
    transition: 0.5s;
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.marketing_hero_wrapper .hero_form_area .input_row .input_filed {
  color: #a7a3a3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 16px;
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1.5px solid #e1e1e1;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .hero_form_area .input_row .input_filed {
    transition: 0.5s;
    font-size: 14px;
    height: 42px;
    border-radius: 12px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .hero_form_area .input_row .input_filed {
    transition: 0.5s;
    font-size: 12px;
    height: 38px;
    border-radius: 8px;
    padding: 0 12px;
  }
}
.marketing_hero_wrapper .hero_form_area .input_row textarea.input_filed {
  padding-top: 14px;
  padding-bottom: 14px;
  height: auto;
}
.marketing_hero_wrapper .privacy_grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 1fr);
  align-items: start;
  gap: 20px 32px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.marketing_hero_wrapper .privacy_grid .privacy_left_area,
.marketing_hero_wrapper .privacy_grid .privacy_content_area {
  border-radius: 20px;
  border: 1px solid #c7c7c7;
  background: #fff;
}
.marketing_hero_wrapper .privacy_grid .privacy_left_area {
  padding: 36px 24px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.marketing_hero_wrapper .privacy_grid .privacy_left_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.marketing_hero_wrapper .privacy_grid .privacy_left_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.marketing_hero_wrapper .privacy_grid .privacy_left_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.marketing_hero_wrapper .privacy_grid .privacy_left_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (min-width: 992px) {
  .marketing_hero_wrapper .privacy_grid .privacy_left_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    height: calc(100vh - 220px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_grid .privacy_left_area {
    transition: 0.5s;
    padding: 30px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .privacy_left_area {
    transition: 0.5s;
    padding: 24px 16px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .privacy_left_area {
    transition: 0.5s;
    position: fixed;
    top: 0px;
    left: -10%;
    width: 80vw;
    z-index: 1005;
    max-width: 400px;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  .marketing_hero_wrapper .privacy_grid .privacy_left_area.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .privacy_grid .privacy_left_area {
    transition: 0.5s;
    padding: 20px 16px;
  }
}
.marketing_hero_wrapper .privacy_grid .privacy_content_area {
  padding: 36px 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_grid .privacy_content_area {
    transition: 0.5s;
    padding: 30px 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .privacy_content_area {
    transition: 0.5s;
    padding: 24px 20px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .privacy_grid .privacy_content_area {
    transition: 0.5s;
    padding: 20px 16px;
  }
}
.marketing_hero_wrapper .privacy_grid .accordion {
  background-color: transparent;
}
.marketing_hero_wrapper .privacy_grid .accordion-item {
  border-radius: 0;
  border: none;
}
.marketing_hero_wrapper .privacy_grid .accordion-item:not(:first-child) {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_grid .accordion-item:not(:first-child) {
    transition: 0.5s;
    margin-top: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .accordion-item:not(:first-child) {
    transition: 0.5s;
    margin-top: 12px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .privacy_grid .accordion-item:not(:first-child) {
    transition: 0.5s;
    margin-top: 10px;
  }
}
.marketing_hero_wrapper .privacy_grid .accordion-button {
  align-items: start;
  color: #000;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 0px;
  outline: none;
  box-shadow: none !important;
  padding: 0;
  background-color: transparent;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_grid .accordion-button {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .accordion-button {
    transition: 0.5s;
    font-size: 16px;
  }
}
.marketing_hero_wrapper .privacy_grid .accordion-button::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  display: block;
  height: 10px;
  margin-top: 4px;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 10px;
  background: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_grid .accordion-button::after {
    transition: 0.5s;
    height: 8px;
    width: 8px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .accordion-button::after {
    transition: 0.5s;
    height: 6px;
    width: 6px;
  }
}
.marketing_hero_wrapper .privacy_grid .accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg);
}
.marketing_hero_wrapper .privacy_grid .accordion-body {
  padding: 0;
  margin-top: 12px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .accordion-body {
    transition: 0.5s;
    margin-top: 10px;
  }
}
.marketing_hero_wrapper .privacy_grid .order_list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 10px 12px;
  border-radius: 6px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_grid .order_list a {
    transition: 0.5s;
    font-size: 14px;
    border-radius: 4px;
  }
}
.marketing_hero_wrapper .privacy_grid .order_list a:hover {
  background: rgba(208, 210, 214, 0.4);
}
.marketing_hero_wrapper .privacy_grid .order_list a.active {
  background: #f6f9ff;
}
.marketing_hero_wrapper .privacy_content_area .privacy_header_area {
  padding-bottom: 28px;
  border-bottom: 1px solid #e2e9fa;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header_area {
    transition: 0.5s;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header_area {
    transition: 0.5s;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header_area {
    transition: 0.5s;
    padding-bottom: 16px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header_area {
    transition: 0.5s;
    padding-bottom: 14px;
  }
}
.marketing_hero_wrapper .privacy_content_area .privacy_header h2 {
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header h2 {
    transition: 0.5s;
    font-size: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header h2 {
    transition: 0.5s;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header h2 {
    transition: 0.5s;
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header h2 {
    transition: 0.5s;
    font-size: 22px;
  }
}
.marketing_hero_wrapper .privacy_content_area .privacy_header .status {
  color: #505050;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin-top: 4px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header .status {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header .status {
    transition: 0.5s;
    font-size: 14px;
    margin-top: 2px;
  }
}
@media all and (max-width: 767px) {
  .marketing_hero_wrapper .privacy_content_area .privacy_header .status {
    transition: 0.5s;
    font-size: 12px;
    margin-top: 2px;
  }
}
.marketing_hero_wrapper .privacy_content_area .left_icon {
  display: none;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_content_area .left_icon {
    transition: 0.5s;
    display: block;
  }
}
.marketing_hero_wrapper .privacy_content_area .left_icon img {
  width: 16px;
}
.marketing_hero_wrapper .privacy_item {
  margin-top: 28px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_item {
    transition: 0.5s;
    margin-top: 24px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.marketing_hero_wrapper .privacy_item .sub_privacy_item {
  padding-left: 20px;
}
.marketing_hero_wrapper .privacy_item .sub_privacy_item .privacy_item {
  margin-top: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_item .sub_privacy_item .privacy_item {
    transition: 0.5s;
    margin-top: 20px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item .sub_privacy_item .privacy_item {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.marketing_hero_wrapper .privacy_item p,
.marketing_hero_wrapper .privacy_item li,
.marketing_hero_wrapper .privacy_item h6 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .privacy_item p,
  .marketing_hero_wrapper .privacy_item li,
  .marketing_hero_wrapper .privacy_item h6 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_item p,
  .marketing_hero_wrapper .privacy_item li,
  .marketing_hero_wrapper .privacy_item h6 {
    transition: 0.5s;
    font-size: 16px;
    line-height: 130%;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item p,
  .marketing_hero_wrapper .privacy_item li,
  .marketing_hero_wrapper .privacy_item h6 {
    transition: 0.5s;
    font-size: 14px;
    line-height: 120%;
  }
}
.marketing_hero_wrapper .privacy_item h3 {
  color: #000;
  font-family: SFBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .privacy_item h3 {
    transition: 0.5s;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_item h3 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.marketing_hero_wrapper .privacy_item h4 {
  color: #000;
  font-family: SFBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .privacy_item h4 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_item h4 {
    transition: 0.5s;
    font-size: 17px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item h4 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.marketing_hero_wrapper .privacy_item h5 {
  color: #000;
  font-family: SFBoldFont;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .marketing_hero_wrapper .privacy_item h5 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_hero_wrapper .privacy_item h5 {
    transition: 0.5s;
    font-size: 19px;
  }
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item h5 {
    transition: 0.5s;
    font-size: 17px;
  }
}
.marketing_hero_wrapper .privacy_item h6 {
  font-family: SFBoldFont;
  font-weight: 700;
}
.marketing_hero_wrapper .privacy_item p,
.marketing_hero_wrapper .privacy_item h6 {
  margin-top: 16px;
}
@media all and (max-width: 991px) {
  .marketing_hero_wrapper .privacy_item p,
  .marketing_hero_wrapper .privacy_item h6 {
    transition: 0.5s;
    margin-top: 12px;
  }
}
.marketing_hero_wrapper .privacy_item a {
  color: #235de4;
  text-decoration: underline;
}
.marketing_hero_wrapper .privacy_item a:hover {
  opacity: 0.9;
}
.marketing_hero_wrapper .privacy_item ul,
.marketing_hero_wrapper .privacy_item ol {
  padding-left: 24px;
}
.marketing_hero_wrapper .privacy_item ul li {
  list-style-type: disc;
}
.marketing_hero_wrapper .privacy_item .number_list li {
  list-style-type: number;
}

/* Real Connection Section */
.real_connection_wrapper .connection_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .real_connection_wrapper .connection_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .real_connection_wrapper .connection_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.real_connection_wrapper.key_features_wrapper .marketing_header_area {
  max-width: 500px;
}

/* SMS Campaing Section */
.sms_campaing_wrapper {
  background: #f6f9ff;
}
.sms_campaing_wrapper .marketing_header_area {
  max-width: 618px;
}
.sms_campaing_wrapper .marketing_header_area p {
  max-width: 550px;
}
.sms_campaing_wrapper .sms_campaing_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 20px 0px;
}
@media all and (max-width: 767px) {
  .sms_campaing_wrapper .sms_campaing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media all and (min-width: 768px) {
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) .image {
    grid-column: 2;
  }
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) .content {
    grid-row: 1;
  }
}
@media all and (min-width: 768px) {
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) .content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-right: 100px;
    margin-left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) .content {
    transition: 0.5s;
    margin-right: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) .content {
    transition: 0.5s;
    margin-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_campaing_wrapper .sms_campaing_grid:nth-child(odd) .content {
    transition: 0.5s;
    margin-right: 20px;
  }
}
.sms_campaing_wrapper .sms_campaing_grid .image img {
  max-width: 660px;
  width: 100%;
}
@media all and (min-width: 768px) {
  .sms_campaing_wrapper .sms_campaing_grid .content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    max-width: 505px;
    width: calc(100% - 100px);
    margin-left: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .sms_campaing_wrapper .sms_campaing_grid .content {
    transition: 0.5s;
    margin-left: 70px;
    width: calc(100% - 70px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sms_campaing_wrapper .sms_campaing_grid .content {
    transition: 0.5s;
    margin-left: 50px;
    width: calc(100% - 50px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_campaing_wrapper .sms_campaing_grid .content {
    transition: 0.5s;
    margin-left: 20px;
    width: calc(100% - 20px);
  }
}
.sms_campaing_wrapper .sms_campaing_grid .content ul {
  padding-left: 20px;
}
.sms_campaing_wrapper .sms_campaing_grid .content ul li {
  list-style-type: disc;
}
.sms_campaing_wrapper .sms_campaing_grid .campaing_title {
  margin-bottom: 20px;
}
@media all and (max-width: 991px) {
  .sms_campaing_wrapper .sms_campaing_grid .campaing_title {
    transition: 0.5s;
    margin-top: 10px;
  }
}
.sms_campaing_wrapper .sms_campaing_grid p,
.sms_campaing_wrapper .sms_campaing_grid ul li {
  color: #68718b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 4px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sms_campaing_wrapper .sms_campaing_grid p,
  .sms_campaing_wrapper .sms_campaing_grid ul li {
    transition: 0.5s;
    font-size: 14px;
    line-height: 18px;
  }
}
@media all and (max-width: 991px) {
  .sms_campaing_wrapper .sms_campaing_grid p,
  .sms_campaing_wrapper .sms_campaing_grid ul li {
    transition: 0.5s;
    font-size: 12px;
    line-height: 16px;
  }
}
.sms_campaing_wrapper .sms_campaing_grid p b,
.sms_campaing_wrapper .sms_campaing_grid ul li b {
  color: #000;
}
.sms_campaing_wrapper .sms_campaing_grid .marketing_hero_btn {
  margin-top: 42px;
}
@media all and (max-width: 991px) {
  .sms_campaing_wrapper .sms_campaing_grid .marketing_hero_btn {
    transition: 0.5s;
    margin-top: 30px;
  }
}

/* Automated Section */
.automated_wrapper .marketing_header_area {
  max-width: 660px;
}
.automated_wrapper .marketing_header_area p {
  max-width: 448px;
}
.automated_wrapper .nav-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px 0;
  text-align: center;
}
.automated_wrapper .nav-pills .nav-link {
  color: #000;
  font-family: SFMediumFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 28px;
  width: 100%;
  border-radius: 0;
  border-bottom: 1.5px solid #ced8ec !important;
  background-color: transparent;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .automated_wrapper .nav-pills .nav-link {
    transition: 0.5s;
    font-size: 20px;
    padding-bottom: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .automated_wrapper .nav-pills .nav-link {
    transition: 0.5s;
    font-size: 18px;
    padding-bottom: 16px;
  }
}
@media all and (max-width: 767px) {
  .automated_wrapper .nav-pills .nav-link {
    transition: 0.5s;
    font-size: 16px;
    padding-bottom: 12px;
  }
}
.automated_wrapper .nav-pills .nav-link:hover {
  opacity: 0.8;
}
.automated_wrapper .nav-pills .nav-link.active {
  border-color: #265fe4 !important;
}
.automated_wrapper .automated_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 30px 20px;
}
@media all and (max-width: 767px) {
  .automated_wrapper .automated_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.automated_wrapper .automated_grid .image img {
  max-width: 780px;
  width: 100%;
}
@media all and (min-width: 768px) {
  .automated_wrapper .automated_grid .image {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    order: 2;
  }
}
.automated_wrapper .automated_grid .content {
  max-width: 502px;
  width: 100%;
}
.automated_wrapper .automated_grid .campaing_title {
  font-family: SFSemiBoldFont;
  font-weight: 600;
}
.automated_wrapper .automated_grid p {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 16px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .automated_wrapper .automated_grid p {
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .automated_wrapper .automated_grid p {
    transition: 0.5s;
    font-size: 16px;
    line-height: 26px;
  }
}
@media all and (max-width: 991px) {
  .automated_wrapper .automated_grid p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
  }
}
.automated_wrapper .automated_grid .marketing_hero_btn {
  margin-top: 42px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .automated_wrapper .automated_grid .marketing_hero_btn {
    transition: 0.5s;
    margin-top: 30px;
  }
}
@media all and (max-width: 991px) {
  .automated_wrapper .automated_grid .marketing_hero_btn {
    transition: 0.5s;
    margin-top: 24px;
  }
}

/*  Faq Section */
.texttoren_faqa_wrapper {
  background: #f6f9ff;
}
.texttoren_faqa_wrapper .accordion {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.texttoren_faqa_wrapper .accordion-item {
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f4;
  background: white;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .texttoren_faqa_wrapper .accordion-item {
    transition: 0.5s;
    border-radius: 12px;
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-item {
    transition: 0.5s;
    border-radius: 8px;
    padding: 16px;
  }
}
@media all and (max-width: 767px) {
  .texttoren_faqa_wrapper .accordion-item {
    transition: 0.5s;
    border-radius: 4px;
    padding: 12px;
  }
}
.texttoren_faqa_wrapper .accordion-item:not(:first-child) {
  margin-top: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .texttoren_faqa_wrapper .accordion-item:not(:first-child) {
    transition: 0.5s;
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-item:not(:first-child) {
    transition: 0.5s;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .texttoren_faqa_wrapper .accordion-item:not(:first-child) {
    transition: 0.5s;
    margin-top: 12px;
  }
}
.texttoren_faqa_wrapper .accordion-button {
  position: relative;
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  padding: 0;
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
  box-shadow: none !important;
  background-color: transparent;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .texttoren_faqa_wrapper .accordion-button {
    transition: 0.5s;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-button {
    transition: 0.5s;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
  }
}
@media all and (max-width: 767px) {
  .texttoren_faqa_wrapper .accordion-button {
    transition: 0.5s;
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
  }
}
.texttoren_faqa_wrapper .accordion-button.collapsed {
  border-bottom-left-radius: 16px !important;
  border-bottom-right-radius: 16px !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .texttoren_faqa_wrapper .accordion-button.collapsed {
    transition: 0.5s;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-button.collapsed {
    transition: 0.5s;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }
}
@media all and (max-width: 767px) {
  .texttoren_faqa_wrapper .accordion-button.collapsed {
    transition: 0.5s;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }
}
.texttoren_faqa_wrapper .accordion-button:not(.collapsed)::before {
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.texttoren_faqa_wrapper .accordion-button::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 2px;
  background-color: #000;
}
@media all and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-button::after {
    transition: 0.5s;
    right: 0px;
    width: 14px;
  }
}
.texttoren_faqa_wrapper .accordion-button::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 19px;
  width: 2px;
  height: 16px;
  background-color: #000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-button::before {
    transition: 0.5s;
    top: 6px;
    right: 6px;
    height: 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .texttoren_faqa_wrapper .accordion-button {
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .texttoren_faqa_wrapper .accordion-button {
    transition: 0.5s;
    font-size: 16px;
    line-height: 26px;
  }
}
@media all and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-button {
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px;
  }
}
.texttoren_faqa_wrapper .accordion-body {
  padding: 16px 0 0;
}
.texttoren_faqa_wrapper .accordion-body p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media all and (max-width: 991px) {
  .texttoren_faqa_wrapper .accordion-body p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}

/* Testimonial Section */
.marketing_testimonial_wrapper .first_slider_area,
.marketing_testimonial_wrapper .second_slider_area {
  max-width: 2000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.marketing_testimonial_wrapper .first_slider_area .swiper,
.marketing_testimonial_wrapper .second_slider_area .swiper {
  margin: 0 10px;
}
.marketing_testimonial_wrapper .first_slider_area .swiper-slide,
.marketing_testimonial_wrapper .second_slider_area .swiper-slide {
  width: auto !important;
}
@media all and (min-width: 768px) {
  .marketing_testimonial_wrapper .second_slider_area .testimonial_item {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    max-width: 370px;
  }
}
.marketing_testimonial_wrapper .testimonial_item {
  max-width: 342px;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1.5px solid #e1e1e1;
  background: #f6f9ff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_testimonial_wrapper .testimonial_item {
    transition: 0.5s;
    padding: 20px 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_testimonial_wrapper .testimonial_item {
    transition: 0.5s;
    padding: 18px 14px;
  }
}
@media all and (max-width: 767px) {
  .marketing_testimonial_wrapper .testimonial_item {
    transition: 0.5s;
    padding: 16px 12px;
  }
}
.marketing_testimonial_wrapper .user_grid {
  display: grid;
  grid-template-columns: minmax(0, 48px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 12px;
}
@media all and (max-width: 767px) {
  .marketing_testimonial_wrapper .user_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 36px) repeat(1, minmax(0, 1fr));
  }
}
.marketing_testimonial_wrapper .user_grid .user_image {
  width: 100%;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 767px) {
  .marketing_testimonial_wrapper .user_grid .user_image {
    transition: 0.5s;
    height: 36px;
  }
}
.marketing_testimonial_wrapper .user_grid h5 {
  color: #000;
  font-family: SFBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_testimonial_wrapper .user_grid h5 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marketing_testimonial_wrapper .user_grid h5 {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .marketing_testimonial_wrapper .user_grid h5 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.marketing_testimonial_wrapper .user_grid p {
  color: #6b6b6b;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
}
@media all and (max-width: 991px) {
  .marketing_testimonial_wrapper .user_grid p {
    transition: 0.5s;
    font-size: 12px;
  }
}
.marketing_testimonial_wrapper .content {
  margin-top: 20px;
}
.marketing_testimonial_wrapper .content p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.marketing_testimonial_wrapper .content p:not(:first-child) {
  margin-top: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .marketing_testimonial_wrapper .content p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
@media all and (max-width: 991px) {
  .marketing_testimonial_wrapper .content p {
    transition: 0.5s;
    font-size: 12px;
    line-height: 20px;
  }
}

/*  Mobile Banner  Section */
.mobile_banner_wrapper .banner_area {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px 80px;
  padding: 36px 16px 16px 100px;
  border-radius: 30px;
  background: #265fe4;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .mobile_banner_wrapper .banner_area {
    transition: 0.5s;
    gap: 20px 60px;
    border-radius: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mobile_banner_wrapper .banner_area {
    transition: 0.5s;
    padding: 36px 16px 16px 60px;
    gap: 20px 40px;
    border-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mobile_banner_wrapper .banner_area {
    transition: 0.5s;
    padding: 30px 16px 16px 40px;
    gap: 20px 30px;
    border-radius: 16px;
  }
}
@media all and (max-width: 767px) {
  .mobile_banner_wrapper .banner_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
    padding: 30px 16px;
    border-radius: 12px;
  }
}
.mobile_banner_wrapper .banner_area .content {
  max-width: 692px;
  width: 100%;
}
@media all and (max-width: 767px) {
  .mobile_banner_wrapper .banner_area .image {
    transition: 0.5s;
    display: none;
  }
}
.mobile_banner_wrapper .banner_area .connection_title {
  font-family: SFMediumFont;
  font-weight: 500;
  color: white;
}
.mobile_banner_wrapper .banner_area h4 {
  color: #fff;
  font-family: SFBoldFont;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  margin-top: 20px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .mobile_banner_wrapper .banner_area h4 {
    transition: 0.5s;
    font-size: 42px;
    line-height: 51px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mobile_banner_wrapper .banner_area h4 {
    transition: 0.5s;
    font-size: 36px;
    line-height: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mobile_banner_wrapper .banner_area h4 {
    transition: 0.5s;
    font-size: 32px;
    line-height: 41px;
    margin-top: 16px;
  }
}
@media all and (max-width: 767px) {
  .mobile_banner_wrapper .banner_area h4 {
    transition: 0.5s;
    font-size: 28px;
    line-height: 37px;
    margin-top: 12px;
  }
}

/* Free Trail Section */
.free_tail_wrapper {
  position: relative;
}
.free_tail_wrapper .free_trail_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr) minmax(0, 0.35fr);
  align-items: center;
  gap: 20px 30px;
}
@media all and (max-width: 767px) {
  .free_tail_wrapper .free_trail_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media all and (max-width: 767px) {
  .free_tail_wrapper .left_image {
    transition: 0.5s;
  }
  .free_tail_wrapper .left_image img {
    position: absolute;
    top: -30px;
    left: 0;
    max-width: 40%;
  }
}
@media all and (max-width: 767px) {
  .free_tail_wrapper .right_image {
    transition: 0.5s;
  }
  .free_tail_wrapper .right_image img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 40%;
  }
}
.free_tail_wrapper .content {
  position: relative;
  z-index: 2;
}

/* Sms Tools Section */
.sms_tools_wrapper .tools_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}
@media all and (max-width: 767px) {
  .sms_tools_wrapper .tools_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.sms_tools_wrapper .tools_item {
  padding: 24px;
  border-radius: 25px;
  background: #f6f9ff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sms_tools_wrapper .tools_item {
    transition: 0.5s;
    padding: 24px 20px;
    border-radius: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_tools_wrapper .tools_item {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 12px;
  }
}
@media all and (max-width: 767px) {
  .sms_tools_wrapper .tools_item {
    transition: 0.5s;
    padding: 16px 12px;
    border-radius: 8px;
  }
}
.sms_tools_wrapper .tools_item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_tools_wrapper .tools_item .icon {
    transition: 0.5s;
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }
}
@media all and (max-width: 767px) {
  .sms_tools_wrapper .tools_item .icon {
    transition: 0.5s;
    width: 36px;
    height: 36px;
    border-radius: 4px;
  }
}
.sms_tools_wrapper .tools_item .icon img {
  max-width: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_tools_wrapper .tools_item .icon img {
    transition: 0.5s;
    max-width: 20px;
  }
}
@media all and (max-width: 767px) {
  .sms_tools_wrapper .tools_item .icon img {
    transition: 0.5s;
    max-width: 16px;
  }
}
.sms_tools_wrapper .tools_item ul {
  margin-top: 12px;
  padding-left: 20px;
}
@media all and (max-width: 991px) {
  .sms_tools_wrapper .tools_item ul {
    transition: 0.5s;
    margin-top: 8px;
  }
}
.sms_tools_wrapper .tools_item ul li {
  list-style-type: disc;
}
.sms_tools_wrapper .tools_item p,
.sms_tools_wrapper .tools_item li {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sms_tools_wrapper .tools_item p,
  .sms_tools_wrapper .tools_item li {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 991px) {
  .sms_tools_wrapper .tools_item p,
  .sms_tools_wrapper .tools_item li {
    transition: 0.5s;
    font-size: 14px;
  }
}
.sms_tools_wrapper .tools_item p {
  margin-top: 12px;
}
@media all and (max-width: 991px) {
  .sms_tools_wrapper .tools_item p {
    transition: 0.5s;
    margin-top: 8px;
  }
}

.pricing_wrapper_new .marketing_header_area {
  max-width: 660px;
}
.pricing_wrapper_new .marketing_header_area p {
  max-width: 486px;
}
.pricing_wrapper_new .pricing_grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 27px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper_new .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper_new .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-align: start;
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid #eee;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.pricing_wrapper_new .pricing_grid .pricing_item.features_item {
  background: #265fe4;
}
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .package_title,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item p,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .price,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .price span,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .price .price_label,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .free_trail,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .free_trail span,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .heading,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .features_list .features_name,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .price_footer p,
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .credit_usage_btn {
  color: white;
}
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .pricing_area::after {
  background: #4e7eee;
}
.pricing_wrapper_new .pricing_grid .pricing_item.features_item .price_choose_btn:hover {
  opacity: 0.8;
  background: white;
}
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item {
  overflow: hidden;
}
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .pricing_area .package_title,
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .pricing_area p,
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .pricing_area a,
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .pricing_area .price {
  position: relative;
  z-index: 1;
}
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .pricing_area::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  background: linear-gradient(0deg, #feffff 0%, #dde5f9 100%);
}
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .price_choose_btn {
  background: #265fe4;
}
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .price_choose_btn span {
  color: white;
}
.pricing_wrapper_new .pricing_grid .pricing_item.enterprise_item .price_choose_btn:hover {
  background: rgba(38, 95, 228, 0.8980392157);
}
.pricing_wrapper_new .pricing_grid .pricing_item:hover {
  transform: translateY(-10px);
}
@media all and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .pricing_item {
    transition: 0.5s;
    border-radius: 12px;
    padding: 24px 16px;
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item .pricing_area {
  position: relative;
  padding-bottom: 24px;
}
.pricing_wrapper_new .pricing_grid .pricing_item .pricing_area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -24px;
  width: calc(100% + 48px);
  height: 1.5px;
  background-color: #e9e7ec;
}
@media all and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .pricing_area::after {
    transition: 0.5s;
    left: -16px;
    width: calc(100% + 32px);
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item p {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.pricing_wrapper_new .pricing_grid .pricing_item .price {
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 16px;
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item .price span {
  color: #000;
  font-family: SFBoldFont;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 32px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 28px;
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item .price .price_label {
  color: #666;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .price .price_label {
    transition: 0.5s;
    font-size: 14px;
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item .free_trail {
  display: block;
  text-align: center;
  color: #666;
  font-family: SFMediumFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 12px;
}
.pricing_wrapper_new .pricing_grid .pricing_item .free_trail span {
  color: #235de4;
}
@media all and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .pricing_item .free_trail {
    transition: 0.5s;
    margin-top: 8px;
  }
}
.pricing_wrapper_new .pricing_grid .pricing_item .free_trail:hover {
  opacity: 0.8;
}
.pricing_wrapper_new .pricing_grid .pricing_item .credit_usage_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #265fe4;
  text-align: center;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.pricing_wrapper_new .pricing_grid .pricing_item .credit_usage_btn:hover {
  opacity: 0.8;
}
.pricing_wrapper_new .pricing_grid .package_label {
  position: absolute;
  top: -16px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 14px;
  border: 1px solid #265fe4;
  max-width: 100%;
  min-width: 140px;
  background: #fff;
}
.pricing_wrapper_new .pricing_grid .package_label.byong_package_label {
  min-width: 180px;
}
.pricing_wrapper_new .pricing_grid .package_label span {
  color: #265fe4;
  text-align: right;
  font-family: SFSemiBoldFont;
  font-size: 13.258px;
  font-style: normal;
  font-weight: 600;
}
.pricing_wrapper_new .pricing_grid .list_area {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 40px;
}
.pricing_wrapper_new .pricing_grid .heading {
  color: #000;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper_new .pricing_grid .heading {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .heading {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper_new .pricing_grid .heading {
    transition: 0.5s;
    font-size: 14px;
  }
}
.pricing_wrapper_new .pricing_grid .features_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .features_list {
    transition: 0.5s;
    gap: 12px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper_new .pricing_grid .features_list {
    transition: 0.5s;
    gap: 8px;
  }
}
.pricing_wrapper_new .pricing_grid .features_list li {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 14px;
}
@media all and (max-width: 991px) {
  .pricing_wrapper_new .pricing_grid .features_list li {
    transition: 0.5s;
    grid-template-columns: minmax(0, 18px) repeat(1, minmax(0, 1fr));
    gap: 20px 10px;
  }
}
.pricing_wrapper_new .pricing_grid .features_list li .features_name {
  color: #000;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.pricing_wrapper_new .pricing_grid .price_footer {
  margin-top: auto;
}
.pricing_wrapper_new .pricing_grid .price_footer p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.pricing_wrapper_new .pricing_grid .price_footer p span {
  font-family: SFMediumFont;
  font-weight: 500;
}

/* Blog Section */
.blog_wrapper .marketing_header_area {
  max-width: 100%;
}
.blog_wrapper .blog_layout_grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 20px;
}
@media all and (max-width: 767px) {
  .blog_wrapper .blog_layout_grid {
    transition: 0.5s;
    grid-template-columns: 1fr;
  }
}
.blog_wrapper .blog_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper .blog_grid {
    transition: 0.5s;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
}
@media all and (max-width: 767px) {
  .blog_wrapper .blog_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Blog Details Section */
.blog_deatils_wrapper {
  position: relative;
  padding-top: 205px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_deatils_wrapper {
    transition: 0.5s;
    padding-top: 150px;
  }
}
@media all and (max-width: 767px) {
  .blog_deatils_wrapper {
    transition: 0.5s;
    padding-top: 120px;
  }
}
.blog_deatils_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80%;
  max-height: 100vh;
  background: linear-gradient(180deg, #dde5f9 3.41%, #fff 99.15%);
}
.blog_deatils_wrapper .container {
  position: relative;
}
.blog_deatils_wrapper .category {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_deatils_wrapper .category {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_deatils_wrapper .category {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .blog_deatils_wrapper .category {
    transition: 0.5s;
    font-size: 14px;
  }
}
.blog_deatils_wrapper .title {
  color: #000;
  font-family: SFBoldFont;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  max-width: 1076px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .blog_deatils_wrapper .title {
    transition: 0.5s;
    font-size: 38px;
    line-height: 47px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog_deatils_wrapper .title {
    transition: 0.5s;
    font-size: 34px;
    line-height: 43px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_deatils_wrapper .title {
    transition: 0.5s;
    font-size: 30px;
    line-height: 39px;
  }
}
@media all and (max-width: 767px) {
  .blog_deatils_wrapper .title {
    transition: 0.5s;
    font-size: 26px;
    line-height: 37px;
  }
}
.blog_deatils_wrapper .blog_image img {
  max-height: 700px;
}
.blog_deatils_wrapper .content_area p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_deatils_wrapper .content_area p {
    transition: 0.5s;
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }
}
@media all and (max-width: 767px) {
  .blog_deatils_wrapper .content_area p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
}
.blog_deatils_wrapper .details_item {
  margin-top: 24px;
}
@media all and (max-width: 991px) {
  .blog_deatils_wrapper .details_item {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.blog_deatils_wrapper .details_item h4 {
  color: #1d1b16;
  font-family: SFMediumFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog_deatils_wrapper .details_item h4 {
    transition: 0.5s;
    font-size: 20px;
    line-height: 24px;
  }
}
@media all and (max-width: 767px) {
  .blog_deatils_wrapper .details_item h4 {
    transition: 0.5s;
    font-size: 18px;
    line-height: 22px;
  }
}

/* SMS Teamplate Section */
.sms_template_wrapper .sms_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_template_wrapper .sms_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .sms_template_wrapper .sms_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.sms_template_wrapper .sms_template_item {
  padding: 28px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f4;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sms_template_wrapper .sms_template_item {
    transition: 0.5s;
    padding: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sms_template_wrapper .sms_template_item {
    transition: 0.5s;
    padding: 24px 20px;
  }
}
@media all and (max-width: 767px) {
  .sms_template_wrapper .sms_template_item {
    transition: 0.5s;
    padding: 20px 16px;
  }
}
.sms_template_wrapper .sms_template_item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 12px;
  background: #f6f9ff;
}
@media all and (max-width: 991px) {
  .sms_template_wrapper .sms_template_item .icon {
    transition: 0.5s;
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }
}
.sms_template_wrapper .sms_template_item .content {
  text-align: center;
  margin-top: 28px;
}
@media all and (max-width: 991px) {
  .sms_template_wrapper .sms_template_item .content {
    transition: 0.5s;
    margin-top: 24px;
  }
}
.sms_template_wrapper .sms_template_item .content p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}
@media all and (max-width: 991px) {
  .sms_template_wrapper .sms_template_item .content p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
    margin-top: 12px;
  }
}
.sms_template_wrapper .sms_template_item .content .copy_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  height: 42px;
  margin-top: 28px;
  border-radius: 12px;
  background: #ecf2ff;
}
.sms_template_wrapper .sms_template_item .content .copy_btn.copied {
  background-color: #4caf50;
  transform: scale(1.05);
}
.sms_template_wrapper .sms_template_item .content .copy_btn.copied span {
  color: white;
  animation: fadeInOut 2s ease forwards;
}
@media all and (max-width: 991px) {
  .sms_template_wrapper .sms_template_item .content .copy_btn {
    transition: 0.5s;
    border-radius: 8px;
    height: 38px;
    margin-top: 24px;
  }
}
.sms_template_wrapper .sms_template_item .content .copy_btn:hover {
  opacity: 0.8;
}
.sms_template_wrapper .sms_template_item .content .copy_btn span {
  color: #265fe4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media all and (max-width: 991px) {
  .sms_template_wrapper .sms_template_item .content .copy_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(3px);
  }
}/*# sourceMappingURL=marketing-landing.css.map */