/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Inter,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --accent-color: #ff640d;
  --accent-color-rgb: 232, 69, 69;
  --heading-color: #1c083b;
  --heading-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #ff640d;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #ff640d;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.inter-regular {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Inter", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--accent-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 50px;
  background: rgba(244, 247, 254, 0.5);
  width: 100%;
  /* backdrop-filter: blur(15px); */
}

.header .logo img {
  /* max-height: 40px; */
  margin-right: 6px;
  width: 100%;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #03c0cd 50%, #7c2ce7 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* .header .btn-getstarted,
.header .btn-getstarted:focus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 15px 14px 22px;
  gap: 5px;
  background: #316DF0;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-left: 20px;
} */

.header .btn-getstarted,
.header .btn-getstarted:focus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9.5px 15px;
  gap: 5px;
  background: #ff5c36;
  border-radius: 2px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-left: 20px;
}

/* .header .btn-getstarted i {
  font-size: 13px;
  padding-left: 8px;
} */

/* .header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(270deg, #ff640d 0%, #7c2ce7 100%);
} */

@media (max-width: 1200px) {
  /* .header .logo {
    order: 1;
  } */

  /* .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  } */

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
/* .index-page .header {
  --background-color: #1c083b;
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
  border-bottom: 1px solid #755d9b;
} */

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #1c083b;
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #333333;
    padding: 18px 20px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  /* .navmenu li:last-child a {
    padding-right: 0;
  } */

  .scrolled .fixed-top ul li a {
    color: #fff;
  }

  .scrolled .fixed-top .dd-box-shadow a {
    color: #000;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 15px 15px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-bottom: 1px solid #d6d6d6;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #42325b;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  /* .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  } */

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #fff;
  padding: 68px 98px;
  position: relative;
}

/* .footer:after {
  content: "";
  background: url(../img/banner-wave-10.svg);
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 0;
} */

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .footer-text {
  margin-top: 22px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 0;
  max-width: 60%;
}

.footer .footer-about .copyright {
  margin-bottom: 0;
  margin-top: 95px;
  font-family: "inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #666666;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #000;
  font-size: 25px;
}


.footer .social-links a:last-child {
  margin-right: 0;
}

.footer h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 135%;
  text-transform: uppercase;
  color: #316DF0;
  position: relative;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 15px;
}

.footer .footer-links ul li {
  margin-bottom: 10px;
}


.footer .footer-links ul li a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
}

.footer .footer-links ul li a:hover {
  text-decoration: none;
}

.footer .footer-links .social-links {
  margin-top: 15px;
}


.footer .footer-links .social-links img {
  width: 25px;
  height: 25px;
  display: inline-block;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-links p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
  max-width: 95%;
}

.footer .footer-links p i {
  margin-right: 10px;
}

.break-space {
  margin-left: 20px;
  margin-right: 20px;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-upper {
  background: linear-gradient(90deg, #03C0CD 4.44%, #7C2CE7 95.93%);
  border-radius: 10px;
  padding: 42px;
  color: #fff;
  margin-bottom: 60px;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
}


.footer-upper h4 {
  font-family: Inter;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
  color: #fff;
  text-align: center;
}

.footer-upper .form-group-input {
  width: 340px;
  position: relative;
}

.footer-upper input {
  border-radius: 5px;
  padding: 14px 20px;
  height: 70px;

}

.footer-upper input:focus {
  box-shadow: none;
}

.footer-upper label {
  position: absolute;
  padding-left: 20px;
  top: 6px;
  left: 14px;
  color: #5E5E5E;
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
}

.footer-upper .subscribe-now {
  width: auto;
}

.footer-upper .footer-form-btn {
  background: #ff640d;
  padding: 20px 25px;
  color: #fff;
  border-radius: 5px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  height: 70px;
  display: inline-block;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #fd700e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #fd700e;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0 0;
  overflow: clip;
  position: relative;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  /* text-align: center; */
  padding-bottom: 56px;
}

.section-title h2 {
  font-family: "Inter";
  margin-bottom: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 46px;
  line-height: 125%;
  color: #1C083B;
}

.section-title p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  max-width: 60%;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: #fff;
  position: relative;
  overflow: clip;
}

/* .page-title::before {
    content: "";
    background: url(../img/banner-wave.svg);
    position: absolute;
    width: 530px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: top right;
    top: -130px;
    left: 0;
} */

.page-title .heading {
  padding: 80px 0;
  max-width: 820px;
  margin: 0 auto;
}

.page-title .heading h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 46px;
  line-height: 125%;
  text-align: center;
  color: #1C083B;
  margin-bottom: 0;
}

.page-title .heading h4 {
  font-size: 36px;
  line-height: 125%;
  text-align: center;
  color: #316DF0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  margin-bottom: 50px;
  margin-top: 8px;
}

.page-title .heading h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 125%;
  text-align: center;
  color: #1C083B;
  margin-bottom: 0;
}

.page-title .heading h6 {
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #4D545C;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  margin-bottom: 23px;
  margin-top: 8px;
}

.page-title .heading p {
  margin-top: 21px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #333333;
}

/* .page-title .heading p:last-child {
  margin-top: 15px;
} */

.page-title .heading .apply-now {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18.5px 30px;
  background: #316DF0;
  border-radius: 5px;
  width: 172px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin: 0 auto;
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  --background-color: #fff;
  width: 100%;
  position: relative;
  padding: 100px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .hero:before {
  content: "";
  background: url('../img/banner-wave.svg');
  position: absolute;
  width: 530px;
  height: 400px;
  background-repeat: no-repeat;
  background-position: top right;
  top: -130px;
  left: 0;
}

.hero:after {
  content: "";
  background: url("../img/banner-wave-1.svg");
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: bottom right;
} */

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 44px;
  color: #1C083B;
  margin-bottom: 0px;
  margin-top: 40px;
}

.hero p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Clients Section - Home Page
------------------------------*/
.clients {
  background: #fafafa;
  padding: 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 40px;
  max-width: 80%;
  transition: 0.3s;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/* About Section - Home Page
/* ------------------------------*/
/* .about {
  --background-color: #f1f2f3;
} */

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Stats Section - Home Page
------------------------------*/
.dashboard-report {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #1c083b;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 120px 0;
}

/* Services Section - Home Page
------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(var(--default-color-rgb), 0.1);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(var(--accent-color-rgb), 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/* Features Section - Home Page
------------------------------*/
.features .features-item {
  color: rgba(var(--default-color-rgb), 0.8);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-text {
  margin-top: 10px;
}

.features .features-item h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
  font-family: "Inter";
}

.features .features-item p {
  color: #222222;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.feature-bg {
  height: 150px;
  width: 100%;
  margin-top: -7rem;
  background: #1c083b;
}

.features .features-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

/* .features .features-item img {
  border: 6px solid var(--background-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
} */

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1 / span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

/* Portfolio Section - Home Page
------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(var(--background-color-rgb), 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--default-color-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/* Pricing Section - Home Page
------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(var(--default-color-rgb), 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: rgba(var(--accent-color-rgb), 0.2);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: rgba(var(--accent-color-rgb), 0.1);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: rgba(var(--default-color-rgb), 0.8);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(var(--default-color-rgb), 0.3);
}

.pricing ul .na i {
  color: rgba(var(--default-color-rgb), 0.3);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: var(--contrast-color);
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  border: 1px solid rgba(var(--default-color-rgb), 0.2);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

.pricing .featured .buy-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/* Faq Section - Home Page
------------------------------*/
.faq .section-title {
  text-align: center;
}

/* .faq-container {
  margin-top: 30px;
} */

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.7);
}

.faq .faq-container .faq-item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  z-index: 2;
  background: #fff;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-family: Inter;
  padding: 20px 15px;
  border: 1px solid #BFBFBF;
  border-radius: 35px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 135%;
  color: #333333;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item .faq-content {
  display: none;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-toggle:before {
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 24px;
  transition: 0.3s;
  cursor: pointer;
  color: #333;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  font-family: "Font Awesome 6 Free";
  content: '\2b';
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 0px;
  display: block;
}

.faq .faq-container .faq-body {
  margin-bottom: 20px;
}

.faq .faq-container .faq-body h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #333333;
  margin-bottom: 0;
}

.faq .faq-container .faq-body p {
  margin-bottom: 0;
  overflow: hidden;
  color: #666666;
  margin-top: 10px;
  max-width: 92%;
}

.faq .faq-container .faq-active .faq-toggle:before {
  content: '\f068';
}

/* Team Section - Home Page
------------------------------*/
.team {
  --background-color: #f4f4f4;
}

.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  margin-top: 80px;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: linear-gradient(90deg, #03C0CD 4.44%, #7C2CE7 95.93%);
  position: absolute;
  inset: 0;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-family: Inter;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
  color: var(--default-color);
  margin-bottom: 0;
}

.call-to-action p {
  color: var(--default-color);
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  max-width: 92%;
  margin-bottom: 40px;
  margin-top: 16px;
}

.call-to-action .cta-btn {
  background: #ff640d;
  padding: 20px 25px;
  color: #fff;
  border-radius: 5px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/* Testimonials Section - Home Page
------------------------------*/
.testimonials {
  --background-color: #1C083B;
  position: relative;
  padding: 100px 0 60px;
}

.testimonials:before {
  content: "";
  background: url(../img/testimonials-banner.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  top: 0;
  width: 100%;
  height: 100%;
}

.testimonials .section-title {
  text-align: center;
  margin-top: 70px;
}

.testimonials .section-title h2 {
  color: #fff;
  margin-bottom: 0;
}

.testimonials .section-title p {
  color: #03C0CD;
  max-width: 100%;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 5px;
}

.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

/* .testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
} */

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--accent-color-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/* Recent-posts Section - Home Page
------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 0;
}

/* Contact Section - Home Page
------------------------------*/
.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::-moz-placeholder,
.contact .php-email-form input[type="email"]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details Page
--------------------------------------------------------------*/
/* Portfolio-details Section - Portfolio Details Page
------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: rgba(var(--default-color-rgb), 0.03);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: rgba(var(--accent-color-rgb), 0.5);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services Details Page
--------------------------------------------------------------*/
/* Service-details Section - Services Details Page
------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.12);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: rgba(var(--default-color-rgb), 0.04);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
/* Blog Section - Blog Page
------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--accent-color);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 0;
}

.blog .pagination {
  margin-top: 30px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog .pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .pagination li a {
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .pagination li.active,
.blog .pagination li:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog .pagination li.active a,
.blog .pagination li:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
/* Blog-details Section - Blog Details Page
------------------------------*/
.blog-details .article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top a {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.blog-details .meta-bottom i {
  color: rgba(var(--default-color-rgb), 0.6);
  display: inline;
}

.blog-details .meta-bottom a {
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog-details .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .sidebar .sidebar-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.blog-details .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog-details .sidebar .search-form form {
  background: var(--background-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog-details .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.blog-details .sidebar .search-form form input[type="text"]:focus {
  outline: none;
}

.blog-details .sidebar .search-form form button {
  background: var(--accent-color);
  color: var(--background-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog-details .sidebar .search-form form button i {
  line-height: 0;
}

.blog-details .sidebar .search-form form button:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.blog-details .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog-details .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog-details .sidebar .categories ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  transition: 0.3s;
}

.blog-details .sidebar .categories ul a:hover {
  color: var(--accent-color);
}

.blog-details .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.blog-details .sidebar .recent-posts .post-item {
  display: flex;
  margin-top: 15px;
}

.blog-details .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog-details .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.blog-details .sidebar .recent-posts h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.blog-details .sidebar .recent-posts h4 a:hover {
  color: var(--accent-color);
}

.blog-details .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.blog-details .sidebar .tags {
  margin-bottom: -10px;
}

.blog-details .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog-details .sidebar .tags ul li {
  display: inline-block;
}

.blog-details .sidebar .tags ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog-details .sidebar .tags ul a:hover {
  color: var(--background-color);
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
}

.blog-details .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.4);
  font-size: 14px;
}

.blog-details .blog-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-details .blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-details .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-details .blog-author .social-links a {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-right: 5px;
}

.blog-details .blog-author p {
  font-style: italic;
  color: rgba(var(--default-color-rgb), 0.7);
  margin-bottom: 0;
}

.blog-details .comments {
  margin-top: 30px;
}

.blog-details .comments .comments-count {
  font-weight: bold;
}

.blog-details .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-details .comments .comment .comment-img {
  margin-right: 14px;
}

.blog-details .comments .comment .comment-img img {
  width: 60px;
}

.blog-details .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-details .comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-details .comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-details .comments .comment h5 .reply {
  padding-left: 10px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-details .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-details .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 5px;
}

.blog-details .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog-details .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog-details .comments .reply-form p {
  font-size: 14px;
}

.blog-details .comments .reply-form input {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.blog-details .comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-details .comments .reply-form textarea {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.blog-details .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-details .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog-details .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .comments .reply-form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: rgba(var(--accent-color-rgb), 0.8);
}

.header-btn {
  margin-top: 45px;
  display: flex;
  align-items: center;
}

.header-btn .start-now {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 23px 20px 30px;
  gap: 10px;
  background: #316DF0;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.header-btn .contact-sale {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 10px 15px 10px;
  gap: 4px;
  background: #316DF0;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-left: 15px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  color: #fff;
}


.banner-img {
  background: linear-gradient(180deg, #FAFAFA 0%, #D4F4FC 100%);
  border-radius: 10px;
}

.banner-img img {
  width: 88%;
  margin: -70px auto 0;
  display: block;

}

.heading-text {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  font-family: "Inter";
}

.boi-report-1 img {
  width: 100%;
}

.boi-report-card {
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 5px;
  padding: 20px 30px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.boi-report-card.active:after {
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  background: linear-gradient(90deg, #03c0cd 4.44%, #7c2ce7 95.93%);
  width: 100%;
  height: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.boi-report-card h4 {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
}

.boi-report-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 15px;
  font-family: Inter;
}

.boi-report-2 {
  position: relative;
}

.boi-report-2 img {
  width: 100%;
  position: absolute;
}

.boi-report-3 {
  margin-top: 10px;
}

.boi-report-3 h4 {
  color: #fff;
  font-family: Inter;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 0;
}

.boi-report-3 p {
  font-family: Inter;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 10px;
  max-width: 93%;
  color: #fff;
}

.boi-report-3 ul {
  padding-left: 15px;
  font-family: Inter;
  font-size: 22px;
  font-weight: 300;
  line-height: 35px;
}

.boi-report-4 {
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  padding: 37px;
  text-align: center;
  background: #fff;
  margin-top: 30px;
  /* min-height: 100%; */
}

.boi-report-4 .boi-icon {
  width: 122px;
  height: 122px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f8f8f8;
  font-size: 56px;
  color: #5e5e5e;
  line-height: 122px;
  border: 1px solid #e4e4e4;
}

.boi-report-4 .boi-text {
  margin-top: 8px;
}

.boi-report-4 .boi-text h4 {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  margin-bottom: 0;
  color: #222222;
  margin-top: 15px;
}

.boi-report-4 .boi-text p {
  margin-bottom: 0;
  margin-top: 10px;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #5e5e5e;
}

.testimonial {
  margin: 0 10px;
  padding-top: 30px;
  text-align: center;
}

.testimonial .description {
  color: #fff;
  position: relative;
  padding: 10px 0;
  max-width: 73%;
  margin: 0 auto 10px;
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.testimonial .description:before {
  content: "“";
  font-weight: 900;
  color: #1758A826;
  position: absolute;
  top: 36%;
  font-size: 13rem;
  z-index: -1;
  left: 43%;
}

.testimonial .testimonial-pic {
  text-align: center;
  margin: 0 auto;
}

.testimonial .testimonial-pic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonial .testimonial-review {
  margin: 25px 0 0 25px;
}

.testimonial .testimonial-title {
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin-top: 13px;
  margin-bottom: 5px;
  color: #03C0CD;
}

.testimonial span {
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin-top: 0px;
  color: #03C0CD;
}

.footer-bottom-link:hover {
  text-decoration: underline;
}

.footer .footer-links ul a:hover {
  text-decoration: underline;
}

/* Mouse scroll effect */
.mouse {
  position: absolute;
  bottom: 15px;
  z-index: 5;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
}

.mouse .mouse-icon {
  display: block;
  width: 25px;
  height: 45px;
  border: 2px solid white;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.mouse .mouse-wheel {
  height: 4px;
  margin: 2px auto 0;
  display: block;
  width: 4px;
  background-color: white;
  border-radius: 50%;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
  -moz-animation: 1.6s ease infinite wheel-up-down;
  animation: 1.6s ease infinite wheel-up-down;
}

.mouse:hover .mouse-icon {
  border-color: #fff;
}

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

.common-inquiries {
  margin-top: 20px;
}

.common-inquiries ul {
  padding-left: 40px;
  line-height: 26px;
}

.common-inquiries ul li {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #222222;
}

.common-inquiries-1 {
  background: #7c2ce7;
  color: #fff;
  padding: 45px 50px;
  border-radius: 5px;
  margin-top: 50px;
  min-height: 100%;
}

.common-inquiries-1 p {
  margin-bottom: 0;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.common-inquiries-1 ul {
  line-height: 24px;
  margin-top: 20px;
}

.common-inquiries-1 ul li {
  margin-bottom: 10px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.rank-carousel {
  margin-top: 25px;
}

.oly-partner-img {
  position: relative;
}

.rank-carousel img {
  border-radius: 5px;
}

.rank-carousel .tag {
  padding: 10.5px 25px;
  background: #FFFFFF;
  border: 1px solid #316DF0;
  border-radius: 25px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #316DF0;
}

.rank-carousel .owl-carousel-item {
  margin: 0 15px;
}

.details-upper {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  align-items: center;
}

.details-upper h3 {
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
}

.details-upper .register {
  background: #ff640d;
  padding: 12px 20px;
  color: #fff;
  border-radius: 5px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.details-upper .register .icon {
  font-weight: 900;
  line-height: 16px;
  background: #fff;
  border-radius: 3px;
  color: #ff640d;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 7px;
  padding-left: 3px;
}

.details-upper .register .icon i {
  transform: rotate(-46deg);
  font-size: 13px;
}


.rank-carousel .owl-dots.disabled,
.rank-carousel .owl-nav.disabled {
  display: block;
  position: absolute;
  right: 28px;
  top: -17%;
}

.rank-carousel .owl-nav.disabled button {
  border: 1px solid #e4e4e4;
  padding: 5px 10px !important;
  border-radius: 3px;
  height: 35px;
  width: 35px;
}

.rank-carousel .owl-nav.disabled button:last-child {
  margin-left: 10px;
}

.details-bottom {
  margin-top: 11px;
  margin-bottom: 11px;
}

.blog-list-item {
  border-bottom: 1px solid #E6E6E6;
  padding-top: 10px;
  padding-bottom: 10px;
}

.blog-list-item h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: #FD700E;
}

.blog-list-item p {
  margin-top: 5px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #1C083B;
}

.details-bottom-footer a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px;
  line-height: 17px;
  color: #666666;
}

.details-bottom-footer a i {
  font-size: 14px;
  line-height: 17px;
  color: #666666;
  margin-left: 5px;
}

.rank-carousel .owl-prev {
  position: absolute;
  top: 24%;
  left: -10%;
  width: 54px;
  height: 54px;
  background: #F4F7FE !important;
  border-radius: 8px;
}

.rank-carousel .owl-next {
  position: absolute;
  top: 24%;
  right: -10%;
  width: 54px;
  height: 54px;
  background: #F4F7FE !important;
  border-radius: 8px;
}

.rank-carousel .owl-prev i,
.rank-carousel .owl-next i {
  color: #1C083B;
}

.header-top {
  padding: 13px;
  height: 52px;
  background: #F7F7F7;
  border-bottom: 1px solid #D9D9D9;
  text-align: center;
}

.header-top p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  color: #1C083B;
  margin-bottom: 0;
}

.header-top span {
  color: #316DF0;
}

.left-logo-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sbam-logo {
  margin-left: 35px;
  width: 45%;
}

@media (min-width: 1200px) {
  .left-menu {
    padding: 0 20px;
  }

  .left-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .left-menu li {
    position: relative;
  }

  .left-menu a,
  .left-menu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #333333;
    padding: 6px 10px;
  }
}

.client-section {
  margin-top: 40px;
}

.client-section .client-logo {
  background: #FFFFFF;
  border: 1px solid #E1E5F4;
  box-shadow: 0px 15px 20px rgba(49, 109, 240, 0.1);
  border-radius: 100px;
  width: 16%;
  margin-right: 10px;
}

.client-section .client-logo:last-child {
  margin-right: 0;
}

.client-section .client-logo img {
  padding: 10px;
}

.section-title-why {
  /* text-align: center; */
  padding-bottom: 56px;
}

.section-title-why h2 {
  font-family: "Inter";
  margin-bottom: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 46px;
  line-height: 125%;
  color: #1C083B;
}

.section-title-why h2,
.section-title-why p {
  display: inline-block;
}

.section-title-why p {
  margin-left: 43px;
  width: 30%;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 0;
}

.why-us-container {}

.mb-0 {
  margin-bottom: 0;
}

.why-us-box {
  padding: 30px;
  background: linear-gradient(180deg, #F9FAFE 0%, #FFFFFF 100%);
  border: 1px solid #E1E5F4;
  border-radius: 10px;
  margin-bottom: 30px;
  min-height: 225px;
}

.why-us-box h4 {
  max-width: 85%;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 125%;
  color: #333333;
}

.why-us-box p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: #666666;
  margin-top: 10px;
}

.boi-report {
  margin-bottom: 30px;
}

.boi-report img {
  width: 100%;
}

.why-us-para {
  padding: 45px 0px 0px 30px;
  font-family: 'Inter';
}

/* section.why-us{
  padding: 120px 0;
} */
.why-us-para h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  color: #1C083B;
}

.why-us-para h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  margin-top: 5px;
}

.why-us-para p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin-top: 19px;
  color: #666666;
}


.new-boireport-1 .counters,
.new-boireport-1 .card {
  background: #fff;
  border: 1px solid #BFBFBF;
  border-radius: 10px;
  overflow: hidden;
  height: 726px;
}

.new-boireport-1 .bg-primary {
  background-color: #1a3d7d !important;
}

.new-boireport-1 .mn-300 {
  min-height: 300px;
}

.new-boireport-1 .carousel {
  min-height: 100vh;
  display: grid;
  row-gap: 2vh;
  position: relative;
  padding: 10px;
}

.new-boireport-1 .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #BFBFBF;
}

.new-boireport-1 .progress-bar__fill {
  width: 0;
  height: inherit;
  background: #316DF0;
  transition: all 0.16s;
}

.new-boireport-1 .progress-bar--primary {
  z-index: 2;
}

.new-boireport-1 .main-post-wrapper {
  grid-row: 0.25;
  grid-column: 0.1428571429;
  position: relative;
}

.new-boireport-1 .slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0px 10px 10px 0px;
}

.new-boireport-1 .main-post {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.new-boireport-1 .main-post__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.new-boireport-1 .main-post__image img {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: cover;

}

/* .new-boireport-1 .main-post__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 13, 14, 0.5);
} */

.new-boireport-1 .main-post__content {
  position: absolute;
  top: 40%;
  left: 4%;
  transform: translateY(-40%);
  color: #fff;
  width: 90%;
}

.new-boireport-1 .main-post__tag-wrapper {
  margin: 0;
  display: inline-flex;
  overflow: hidden;
}

.new-boireport-1 .main-post__tag {
  font-size: 0.95em;
  background: #c20000;
  padding: 6px 18px;
}

.new-boireport-1 .main-post__title {
  font-weight: 700;
  font-size: 1.95em;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.new-boireport-1 .main-post__link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
}

.new-boireport-1 .main-post__link-text {
  font-size: 0.9em;
}

.new-boireport-1 .main-post__link-icon--arrow {
  margin-left: 12px;
}

.new-boireport-1 .main-post__link-icon--play-btn {
  margin-right: 12px;
}

.new-boireport-1 .main-post__link:hover .main-post__link-text,
.new-boireport-1 .main-post__link:hover .main-post__link-icon--arrow path {
  color: #c20000;
  stroke: #c20000;
}

.new-boireport-1 .main-post--active {
  top: 0;
  z-index: 1;
  transition: top 0.9s 0.4s ease-out;
}

.new-boireport-1 .main-post--not-active {
  top: 100%;
  z-index: 0;
  transition: top 0.75s 2s;
}

.new-boireport-1 .main-post.main-post--active .main-post__tag-wrapper {
  width: 25%;
  transition: all 0.98s 1.9s;
}

.new-boireport-1 .main-post.main-post--not-active .main-post__tag-wrapper {
  width: 0;
  transition: width 0.3s 0.2s;
}

.new-boireport-1 .main-post.main-post--active .main-post__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 1.42s, transform 0.5s 1.4s;
}

.new-boireport-1 .main-post.main-post--not-active .main-post__title {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.2s 0.35s, opacity 0.5s 0.2s;
}

.new-boireport-1 .main-post.main-post--active .main-post__link {
  opacity: 1;
  transition: opacity 0.9s 2.2s;
}

.new-boireport-1 .main-post.main-post--not-active .main-post__link {
  opacity: 0;
  transition: opacity 0.5s 0.2s;
}

.new-boireport-1 .posts-wrapper {
  grid-row: 0.75;
  grid-column: 0.5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 14px;
  z-index: 1;
}

.new-boireport-1 .post {
  /* background: rgba(14, 13, 14, 0.6); */
  opacity: 1;
  color: #fff;
  position: relative;
  /* padding: 16px 20px; */
}

.new-boireport-1 .post__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
}

.new-boireport-1 .post__tag {
  color: #80837e;
}

.new-boireport-1 .post__title {
  font-weight: 400;
  font-size: 0.95em;
  line-height: 1.5;
}

.new-boireport-1 .post--active {
  opacity: 1;
  background: rgba(14, 13, 14, 0.75);
}

.new-boireport-1 .post:not(.post--active) {
  pointer-events: none;
}

.new-boireport-1 .hide-on-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .new-boireport-1 .main-post__title {
    font-size: 2.9em;
  }
}

@media screen and (min-width: 1024px) {
  .new-boireport-1 .hide-on-mobile {
    display: grid;
  }

  .new-boireport-1 .posts-wrapper {
    grid-column: 0.3333333333;
  }

  .new-boireport-1 .hide-on-desktop {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .new-boireport-1 .main-post__content {
    width: 45%;
  }

  .new-boireport-1 .posts-wrapper {
    grid-column: 0.5;
  }
}

.benifit-section {
  padding: 18px 30px 20px 30px;
  font-family: "Inter";
}

.benifit-section h5 {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #1C083B;
}

.benifit-section p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: #666666;
  margin-top: 10px;
  margin-bottom: 0;
}

.emji-secion {
  position: relative;
  text-align: center;
  margin-top: 30px;
}

/* .emji-secion:before {
  position: absolute;
  left: 90px;
  top: 0;
  content: '';
  background: url('../img/emoji-before.svg');
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
}

.emji-secion:after {
  position: absolute;
  right: 60px;
  bottom: 60px;
  content: '';
  background: url('../img/emoji-after.svg');
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
} */

.testimonial-new {
  background: #FFFFFF;
  border: 1px solid #BFBFBF;
  border-radius: 10px;
  padding: 32px 41px;
  margin-bottom: 20px;
}

.testimonial-header {
  justify-content: space-between;
}

.testimonial-header ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
  margin-top: 20px;
}

.testimonial-header ul li {
  padding: 0px 2px;
}

.testimonial-body p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #666666;
  max-width: 94%;
  margin-top: 20px;
}

.testimonial-body p:last-child {
  font-size: 15px;
  color: #333333;
}

.industries-section {
  width: 47%;
}

.industries-section h2 {
  font-family: "Inter";
  margin-bottom: 56px;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 125%;
  color: #1C083B;
}

.industries-left {
  width: 24%;
  margin-right: 10px;
}

.industries-right {
  width: 75%;
}

.industries-left p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 0;
}

.industries-right img {
  border-radius: 20px;
  width: 100%;
}

.industries-right p {
  margin-top: 28px;
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #666666;
  max-width: 95%;
}

.border-color {
  border: 1px solid #e6e6e6;
}

.pricing-section {
  padding-top: 105px;
  padding-bottom: 30px;
}

.pricing-section h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 125%;
  color: #1C083B;
  margin-bottom: 21px;
}

.pricing-left {
  width: 28%;
}

.pricing-left p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 0;
}

.pricing-right {
  width: 62%;
  margin-left: 30px;
}

.pricing-right .first {
  font-family: 'Inter';
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #666666;
}

.pricing-right .last {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: #999999;
  margin-top: 34px;
}

.sign-up-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 280px;
  height: 64px;
  padding: 20px 23px 20px 30px;
  background: #316DF0;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.sign-up-btn:hover {
  color: #fff !important;
}


.request-demo-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 280px;
  height: 64px;
  padding: 20px 23px 20px 30px;
  background: #FFFFFF;
  border: 1px solid #FD700E;
  border-radius: 10px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.request-demo-btn:hover {
  color: #FD700E !important;
}

.btn-list {
  margin-top: 50px;
}

.support-top {
  padding-left: 150px;
}

.support-section {
  padding-top: 145px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, #FAFAFA 0%, #D4F4FC 100%);
  border: 1px solid #E6E6E6;
  border-radius: 25px;
  margin-top: -37px;
}

.support-top h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 125%;
  color: #1C083B;
  margin-bottom: 12px;
}

.support-top h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 0;
}

.support-top p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #666666;
  max-width: 75%;
  margin-top: 23px;
}

.connect-with {
  padding: 10px;
  background: #FFFFFF;
  border-radius: 10px;
  margin-left: 20px;
}

.connect-with p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #1C083B;
  margin-bottom: 0;
  margin-left: 14px;
  margin-top: 0;
}

.blank-background {
  height: 80px;
  background: linear-gradient(180deg, #52C0FF 0%, #136FFF 100%);
  border-radius: 10px 0px 0px 10px;
}

.connect-with-1 {
  padding: 10px;
  background: #FFFFFF;
  border-radius: 10px;
}

.connect-with-1 p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #1C083B;
  margin-bottom: 0;
  margin-left: 14px;
  margin-top: 0;
  max-width: 48%;
}

.blank-background-1 {
  height: 80px;
  background: linear-gradient(180deg, #52C0FF 0%, #136FFF 100%);
  border-radius: 0px 10px 10px 0px;
}

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

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

.new-boireport-2 .section-title h2 {
  font-size: 36px;
}

.filling-dashbaord .bg {
  width: 100%;
  text-align: end;
  /* margin-top: -120px !important; */
}

.filling-dashbaord {
  position: relative;
  background: transparent;
}

.filling-dashbaord .heading {
  margin-bottom: 56px;
}

.filling-dashbaord h2 {
  font-family: "Inter";
  margin-bottom: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 46px;
  line-height: 125%;
  color: #1C083B;
}

.filling-dashbaord p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  max-width: 75%;
  margin-top: 10px;
}

.filling-dashbaord .box {
  padding: 25px;
  min-height: 188px;
  background: #316DF0;
  border-radius: 20px;
  margin-bottom: 14px;
}

.filling-dashbaord .box .icon-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #FAFAFA 0%, #D4F4FC 100%);
  border-radius: 50px;
}

.filling-dashbaord .box .icon-box img {
  padding-left: 15px;
  padding-top: 15px;
}

.filling-dashbaord .box p {
  font-family: "inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  margin-bottom: 0;
  max-width: 100%;
}


@media (min-width: 1400px) {
  .filling-dashbaord .bg {
    max-width: 1320px;
    margin: 0 auto;
  }
}

.pt-30 {
  padding-top: 30px;
}

.new-boireport-5 {
  background: #316DF0;
  /* margin-top: 134px; */
  padding: 50px 100px 50px 100px;
}

.contact-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-information h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 860;
  font-size: 36px;
  line-height: 125%;
  color: #FFFFFF;
  max-width: 100%;
}

.contact-information .free-trial-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 23px 20px 30px;
  gap: 10px;
  width: 210px;
  height: 64px;
  background: #FF5C36;
  border-radius: 5px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  border: 0;
}

.vertical-line {
  width: 0px;
  height: 100%;
  border-right: 1px solid #CCCCCC;
}

/* .why-us:before {
  content: "";
  background: url('../img/banner-wave-2.svg');
  position: absolute;
  height: 100%;
  width: 100%;
  top: 55px;
  background-repeat: no-repeat;
  background-position: top left;
  left: 0;
}

.why-us:after {
  content: "";
  background: url('../img/banner-wave-3.svg');
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  right: 0;
  z-index: 0;
  height: 470px;
  bottom: 50px;
} */

/* .new-boireport:before {
  content: "";
  background: url("../img/banner-wave-4.svg");
  position: absolute;
  height:100%;
  width:100%;
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 2;
  inset: 0;
  top: 12%;
} */

/* .new-boireport:after {
  content: "";
  background: url("../img/banner-wave-5.svg");
  position: absolute;
  height:100%;
  width:100%;
  background-size: 14%;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 2;
  inset: 0;
  margin-top: 10%;
} */

/* .new-boireport-2:before {
  content: "";
  background: url('../img/banner-wave-6.svg');
  position: absolute;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  bottom: 0;
  left: 0;
}

.new-boireport-2:after {
  content: "";
  background: url("../img/banner-wave-77.svg");
  position: absolute;
  height:100%;
  width:100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: top right;
 
} */
.new-boireport-2 {
  padding-bottom: 100px;
}

.new-boireport-3 {
  padding-top: 70px;
}

.dashboard_parent_34 {
  position: relative;
}

/* .dashboard_parent_34:before {
  content: "";
  background: url('../img/banner-wave-8.svg');
  position: absolute;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  top: 34%;
  left: 0;
} */
section.faq {
  padding-bottom: 60px;
}

section.faq .faq-inner {
  /* max-width: 820px; */
  margin: 0 auto;
}

/* .faq:before {
  content: "";
  background: url('../img/banner-wave-111.svg');
  position: absolute;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top right;
  top: 0;
  left: 0;
}

.faq:after {
  content: "";
  background: url('../img/banner-wave-11.svg');
  position: absolute;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  bottom: -120px;
  left: 0;
} */

.dashboard_parent {
  position: relative;
}

/* .dashboard_parent::before{
  content: "";
  background: url("../img/banner-wave-55.svg");
  position: absolute;
  top: 33.7%;
  left:-10px;
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: bottom left;
} */
.bg-transparent {
  background: transparent !important;
}

section.new-boireport-1.pt-30.bg-transparent {
  margin-top: -30px;
  padding: 0;
}

.mobile-menu {
  display: none;
}

.why-image img {
  width: 100%;
}

.contact-us-section {
  max-width: 820px;
  margin: 0 auto;
}

.contact-us {
  padding: 0;
}

.contact-us-section .form-group-input {
  position: relative;
  margin-bottom: 25px;
}

.contact-us-section .form-group-input input {
  padding: 24px 20px 0px 20px;
  height: 80px;
  min-height: 80px;
  background: #FCFCFC;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  font-family: 'Inter';
  width: 100%;
}

.contact-us-section .form-group-input textarea {
  padding: 40px 20px 0px 20px;
  background: #FCFCFC;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  font-family: 'Inter';
  width: 100%;
}

.contact-us-section .form-group-input input:focus,
.contact-us-section .form-group-input textarea:focus {
  outline: 0;
  border: 1px solid #316DF0;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
}

.contact-us-section .form-group-input input::placeholder,
.contact-us-section .form-group-input textarea::placeholder {
  color: #CCCCCC;
}

.contact-us-section .form-group-input input::-moz-placeholder,
.contact-us-section .form-group-input textarea::-moz-placeholder {
  color: #CCCCCC;
}

.contact-us-section .form-group-input input:-moz-placeholder,
.contact-us-section .form-group-input textarea:-moz-placeholder {
  color: #CCCCCC;
}

.contact-us-section .form-group-input label {
  position: absolute;
  padding-left: 20px;
  top: 15px;
  left: 2px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  color: #666666;
}

.contact-information-sec p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 135%;
  color: #999999;
  margin-top: 10px;
}

.contact-information-sec p:first-child {
  margin-top: -20px;
}

.send-massage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 23px 20px 30px;
  gap: 10px;
  height: 64px;
  background: #316DF0;
  border-radius: 10px;
  width: 100%;
  border: 0;
  margin-top: 30px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
}

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

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

.blog-section {
  padding: 0;
}

.blog-section-list {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 61px;
  border-bottom: 1px solid #E6E6E6;
}

.ready-category {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-left: 15px;
}

.blog-section-1 {
  padding: 0;
}

.blogging-list {
  margin-bottom: 50px;
}

.blog-section-list-1 {
  max-width: 820px;
  margin: 60px auto;
  padding-bottom: 80px;
}

.blogging-list-header {
  margin-bottom: 17px;
  margin-top: 17px;
}

.blogging-list-header p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #4D545C;
}

.blogging-list-header span {
  padding: 6px 15px;
  border: 1px solid #316DF0;
  border-radius: 18px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: #316DF0;
  margin-right: 15px;
}

.blogging-list-body h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #1C083B;
  word-break: break-all;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.blogging-list-body p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
  margin-top: 10px;
  word-break: break-all;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.profile_box {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.profile-img {
  width: 48px;
  height: 48px;
  padding: 3px;
  margin-right: 10px;
}

.profile-name h6 {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #4D545C;
}

.profile-name p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  color: #7F7F7F;
  margin-top: 3px;
  margin-bottom: 0;
}

.load-more {
  margin: 71px auto 0;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #316DF0;
  border-radius: 25px;
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.load-more a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #316DF0;
}

.blog-details-page {
  padding: 0 120px 120px 0px;
}

.blog-details-section {
  max-width: 820px;
  margin: 0 auto;
}

.blog-details-upper {
  margin-top: 46px;
}

.blog-details-upper p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #333333;
}

.blog-details-upper ul {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #333333;
  list-style: auto;
  padding-left: 19px;
  margin-top: 15px;
}

.blog-details-upper ul li {
  margin-bottom: 10px;
}

.blog-details-body {
  margin-top: 35px;
  font-family: 'Inter';
  padding-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
}

.blog-details-body h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 15px !important;
}

.blog-details-body p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 15px !important;
}

.blog-details-body ul {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  list-style: auto;
  padding-left: 19px;
}

.blog-details-body ul li {
  margin-bottom: 10px;
}

.blog-details-body .who-may {
  list-style: disc;
  padding-left: 35px;
}

.blog-author-footer .profile-img {
  width: 70px !important;
  height: 70px !important;
}

.blog-author-footer .profile-img img {
  width: 100%;
}

.blog-author-footer .profile-name h6 {
  font-size: 18px !important;
  line-height: 18px !important;
  color: #4D545C !important;
}

.blog-author-footer .profile-name p {
  font-size: 14px !important;
}

.team-title h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 860;
  font-size: 36px;
  line-height: 125%;
  color: #1C083B;
  margin-bottom: 0;
  margin-left: 50px;
}

.join-team .owl-carousel-item {
  margin: 0 15px;
}

.text-header {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 90px;
  align-items: center;
}

.join-team .owl-item {
  max-width: 310px !important;
}

.text-header .icon-image {
  width: 50px !important;
  margin-right: 15px;
  margin-left: 15px;
}

.text-header p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1C083B;
  margin-bottom: 0;
}

.join-team .owl-prev,
.join-team .owl-next {
  position: absolute;
  left: -17%;
  bottom: 22%;
  width: 54px;
  height: 54px;
  background: #F4F7FE !important;
  border-radius: 8px;
}

.join-team .owl-next {
  left: -11%;
}

@media screen and (min-width:1700px) {
  .join-team .owl-item {
    max-width: 370px !important;
  }
}

.about-us {
  max-width: 820px;
  margin: 0px auto;
  padding-bottom: 80px;
}

.about-section {
  border-bottom: 1px solid #666666;
  min-height: 300px;
}

.about-section h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #1C083B;
}

.about-section p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #666666;
  margin-bottom: 0;
}

.about-us-img-text {
  margin-top: 150px;
}

.about-us-img-text img {
  width: 90%;
}

.about-us-img-text h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #316DF0;
}

.about-us-img-text p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #333333;
  margin-bottom: 0;
  margin-top: 20px;
}

.carrers {
  padding: 0;
}

.job-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #E6E6E6;
  padding-top: 50px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 50px;
}

.carrers h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #1C083B;
  margin-bottom: 29px;
}

.hiring {
  padding: 14px;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  margin-bottom: 22px;
}

.hiring h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #333333;
  margin-bottom: 0;
}

.hiring h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #666666;
  margin-bottom: 0;
  margin-top: 10px;
}

.hiring a {
  margin-top: 31px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18.5px 30px;
  background: #316DF0;
  border-radius: 5px;
  width: 172px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}


.carrers-1 {
  padding: 0;
}

.job-list-1 {
  max-width: 820px;
  margin: 0 auto;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 50px;
}

.content-job {
  margin-bottom: 28px;
}

.content-job h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 20px;
}

.content-job p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 10px;
}


.job-list-2 {
  max-width: 820px;
  margin: 40px auto 0;
  padding-bottom: 120px;
}

.job-list-2 .apply-now {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18.5px 30px;
  background: #316DF0;
  border-radius: 5px;
  width: 172px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.terms-use {
  padding: 0;
}

.terms-use-1 {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.terms-use-1 h6 {
  margin-bottom: 18px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
}

.terms-content h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 10px;
}

.terms-content .first {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 10px;
}

.terms-content .second {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 20px;
}

.terms-content h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 10px;
  margin-top: 20px;
}

.terms-content a {
  color: #316DF0
}

.mobile-dashbaord {
  display: none;
}

.mobile-dashbaord h2 {
  font-family: "Inter";
  margin-bottom: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 46px;
  line-height: 125%;
  color: #1C083B;
}

.mobile-dashbaord p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #333333;
  max-width: 75%;
  margin-top: 10px;
  margin-bottom: 30px;
}

.mobile-dashbaord .box {
  padding: 25px;
  min-height: 188px;
  background: #316DF0;
  border-radius: 20px;
  margin-bottom: 14px;
}

.mobile-dashbaord .box .icon-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #FAFAFA 0%, #D4F4FC 100%);
  border-radius: 50px;
}

.mobile-dashbaord .box .icon-box img {
  padding-left: 15px;
  padding-top: 15px;
}

.mobile-dashbaord .box p {
  font-family: "inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  margin-bottom: 0;
  max-width: 100%;
}

.get-email {
  width: 340px;
  border: 1px solid #d6d6d6 !important;
  border-radius: 5px !important;
  padding: 15px 10px 15px 10px !important;
}

.left-side {
  display: flex;
}

.left-side .form-control {
  margin-right: 19px;
  padding: 20px 23px 20px 30px !important;
  width: 340px;
  height: 64px;
}

.subscribe-header {
  text-align: center;
  margin-bottom: 40px;
}

.subscribe-header h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

/* .sign-up-form {
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, #ffffff 5%, white 90%);
  box-shadow: 0px 15px 30px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 93%;
} */

.sign-up-form {
  width: 100%;
}

.sign-up-form input[type=email] {
  background-color: #fff;
  border: 0 !important;
  padding: 20px 15px !important;
  width: 100%;
  border-radius: 3px !important;
}

.sign-up-form input[type=email]:focus-visible {
  outline: 0;
}

.sign-up-form a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 5px;
  background: #FF5C36;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

/* .sign-up-form input[type=submit] {
  border: 0 !important;
    box-shadow: none;
    background-color: #316DF0;
    border-color: #316DF0;
    padding: 8px 20px 10px 20px !important;
    border-radius: 7px !important;
    color: var(--contrast-color);
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
}
.sign-up-form input[type=submit]:hover {
  background-color: 
color-mix(in srgb, #316DF0, transparent 10%);
} */

.boi-resource {
  padding: 0;
}

.boi-resource-1 {
  max-width: 650px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.resource-content .first {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 40px;
  text-align: center;
}

.resource-input label {
  font-family: 'Inter';
  margin-bottom: 10px;
}

.resource-input input {
  height: 49px;
  min-height: 49px;
}

.common-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  gap: 5px;
  background: #316DF0;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  border: 0;
  margin-top: 20px;
}

.common-btn i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.boi-report-page {
  padding: 0 120px 120px 0px;
}

.boi-report-page-section {
  max-width: 820px;
  margin: 0 auto;
}

.boi-report-page-upper {
  margin-top: 46px;
}

.boi-report-page-upper p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
}

.boi-report-page-upper ul {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
  list-style: auto;
  padding-left: 19px;
  margin-top: 15px;
}

.boi-report-page-upper ul li {
  margin-bottom: 10px;
}

.boi-report-page-body {
  margin-top: 35px;
  font-family: 'Inter';
  padding-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
}

.boi-report-page-body h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #333333;
  margin-bottom: 15px !important;
}

.boi-report-page-body p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 15px !important;
}

.boi-report-page-body ul {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  list-style: auto;
  padding-left: 19px;
}

.boi-report-page-body ul li {
  margin-bottom: 10px;
}

.boi-report-page-body .who-may {
  list-style: disc;
  padding-left: 35px;
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 10px;
  margin: 60px 0 60px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.widget-title {
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 600;
  margin: 0px 0 20px 0;
  padding: 15px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #d6d6d6;
  padding: 10px;
  align-items: center;
  border-radius: 5px;
}

.recent-posts-widget .post-item:hover {
  background: #F5F5F5;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: #316df0;
  ;
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.blog-details {
  padding: 60px 0 60px;
}

.blog-details .article p {
  font-size: 15px;
  font-family: 'Inter';
}

.d-flex.image-inside {
  justify-content: space-between;
}

.image-inside img {
  width: 49%;
  height: 220px;
}

.blog-details .article li {
  font-size: 15px;
  font-family: 'Inter';
  margin-bottom: 10px;
}

.post-item.active {
  background: #f5f5f5f5;
}

.recent-posts-widget .post-item h4 a.active {
  color: #316DF0;
}

.faq-section {
  padding: 0;
}

.faq-section-1 {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.resource-content .first {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #666666;
  margin-bottom: 40px;
  text-align: center;
}


/* Start Sign-up */

.login_section {
  min-height: calc(100vh - 56px);
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 60px 0 60px;
}

.login_box {
  width: 550px;
  padding: 51px 51px 16px;
  border-radius: 25px;
  box-shadow: 0px 0px 50px 0px #316DF040;
}

.login-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 35px;
  text-align: center;
  margin-bottom: 10px;
  color: #316DF0;
  margin-top: -35px;
  margin-bottom: 35px;
}

.login-form-input {
  margin-bottom: 18px;
}

.login-form-input label {
  color: #333333;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  text-align: left;
  margin-bottom: 11px;
  display: block;
}

.form-group label sup {
  color: #fd0202;
  top: 0px;
  right: 0px;
}

.f-14 {
  font-size: 14px;
}

.login-form-input input {
  padding: 23px 20px 23px 20px;
  border-radius: 5px;
  border: 1px solid #666666;
  font-family: Inter;
  color: #333333;
}

.login-form-input input:focus {
  box-shadow: none;
  border-color: inherit !important;
}

.height-65 {
  height: 65px;
}

.f-15 {
  font-size: 15px;
}

.login-btn {
  padding: 10px 23px 10px 30px;
  border-radius: 10px;
  width: 100%;
  background: #316DF0;
  color: #fff;
  height: 57px;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.48px;
  text-align: center;
  margin-top: 10px;
  font-family: 'Inter';
  border: #316DF0;
}

.login-btn i {
  margin-left: 5px;
  font-size: 15px;
}

.footer_bottom {
  border-top: 1px solid #e6e6e6;
}

.footer_bottom p {
  color: #666666;
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 400;
  line-height: 16.71px;
  text-align: center;
  margin-bottom: 0;
}

/* Start Add Company */

.add-company {
  min-height: calc(100vh - 56px);
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 0px 0 20px;
}

.add-company .tab-content {
  margin-top: 20px;
}

.reporting-company h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #333;
}

.reporting-company-data {
  background-color: var(--surface-color);
  padding: 20px;
  margin: 30px 0 20px 0;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.reporting-company-data h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 16px;
  line-height: 17px;
  color: #000;
  margin-bottom: 25px;
}

.need-help .accordion-button {
  padding: 10px 10px;
  margin: 0;
  background: #f5f5f5;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  border-radius: 0;
  position: relative;
  font-family: 'Inter';
}

.need-help .accordion-button:focus {
  box-shadow: none;
}

.need-help .panel-text {
  margin-bottom: 20px;
}

.need-help .panel-text h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "Inter";
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.need-help .panel-text h6 span {
  border-bottom: 1px solid #000;
}

.need-help .panel-text p {
  font-size: 14px;
  font-family: 'Inter';
  margin-bottom: 10px;
  color: #666;
}

.need-help .panel-text ol li {
  font-size: 14px;
  font-family: 'Inter';
  margin-bottom: 10px;
  color: #666;
}

.form-new-card {
  margin-top: 15px;
}

.form-new-card label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px !important;
  line-height: 17px;
  color: #666666 !important;
  display: block;
}

.form-new-card .form-control {
  padding: 15px;
  height: 49px !important;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 5px !important;
  font-family: 'Inter';
  color: #666666;
  font-size: 15px;
}

.form-new-card .form-control:hover {
  border-color: #28313C !important;
  box-shadow: none;
}

.form-new-card .form-select {
  padding: 10px;
  height: 49px !important;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  /* font-family: 'Inter'; */
  color: #666666;
  font-size: 15px;
}

.form-new-card .form-select:hover {
  border-color: #28313C !important;
  box-shadow: none;
}

.form-new-card .form-control:focus,
.form-new-card .form-select:focus {
  box-shadow: none;
}

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

.form-new-card .trash {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #ff0000;
}

.add-business {
  padding: 14px 15px 14px 22px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: auto;
  margin-top: 10px;
}

.add-business:hover {
  color: #fff;
}

.create-company .nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

.create-company .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  z-index: -9;
}

.create-company .nav .p-sub-menu.active:after,
.create-company .nav .p-sub-menu.active:hover:after {
  width: 100%;
  height: 3px;
  background: #FD700E;
  transition: width 0.3s, height 0.3s;
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
}

.create-company .nav .p-sub-menu {
  position: relative;
  font-size: 14px;
  display: block;
  color: #495057;
}

.create-company .nav-tabs .nav-link.active,
.create-company .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.create-company .nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.create-company .nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.create-company .p-sub-menu span {
  padding: 13px 13px;
  display: block;
  white-space: nowrap;
  text-align: center;
  font-family: 'Inter';
  font-size: 14px;
}

.create-company .nav-item {
  cursor: pointer;
}

.btnPrevious {
  padding: 11px 0 !important;
  text-align: center;
  border: 1px solid #316DF0;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 17px;
  background: #fff;
  color: #316DF0;
  border-radius: 5px;
  width: 130px;
}

.btnPrevious:hover {
  color: #316DF0;
}

.next-btn {
  padding: 11px 0px !important;
  background: #316DF0;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
  border-radius: 5px;
  color: #fff !important;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 17px;
  width: 130px;
  text-align: center;
  border: 1px solid #316DF0;
}

.cancel-btn {
  padding: 13px 40px !important;
  background: #ed4040;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
  border-radius: 5px;
  color: #fff !important;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  width: auto;
  text-align: center;
}

.add-more-section {
  padding: 10px 25px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-right: 10px;
}

.owner-invite-css {
  padding: 10px 25px;
  border-radius: 5px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  background: #fff;
  color: #FD700E;
  border: 2px solid #FD700E;
}

.add-more-section:hover {
  color: #fff;
}

.owner-invite-css:hover {
  color: #FD700E;
}

.company-accordian .card {
  background-color: var(--surface-color);
  padding: 0px;
  margin: 15px 0 15px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 0;
}

.company-accordian .card-header {
  padding: 15px;
  margin-bottom: 0;
  background-color: #316df0 !important;
  border-bottom: none;
  color: #fff;
  border-radius: 4px !important;
}

.company-accordian .card-header h5 {
  color: #fff;
  cursor: pointer;
  font-family: 'Inter';
  font-size: 15px;
}

.company-accordian .card-body {
  padding: 20px;
}

.company-accordian .right-angel {
  float: right;
  transition: transform 0.2s ease;
}

.company-accordian .right-angel.rotate {
  transform: rotate(90deg);
}

.delete-icon-owner,
.delete-icon-applicant {
  padding-bottom: 10px;
  justify-content: end;
  align-items: center;
  display: flex;
  margin-right: 0px;
  margin-left: 0;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 20px;
}

.applicant-doc {
  text-align: left;
  padding: 7px;
  display: flex;
  align-items: center;
  background-color: #eeeeee;
  border-color: #eeeeee;
}

.applicant-doc p {
  margin-bottom: 0;
  margin-left: 20px;
  font-family: 'Inter';
  color: #000;
  font-size: 15px;
}

.upload-doc {
  padding: 10px;
  background: #fe7725;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: auto;
  border: 0;
}

.remove-item {
  color: red;
  text-align: right;
  font-size: 17px;
  width: auto;
}

.benifical-owners h5,
.company-applicant h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 16px;
  line-height: 17px;
  color: #000;
  margin-bottom: 10px;
}

.benifical-owners-checkbox input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.benifical-owners-checkbox label {
  cursor: pointer;
}

.parent_guardian_info_note {
  margin-left: 27px;
  margin-top: 5px;
  color: #666666;
  font-size: 12px;
}

.benifical-owners,
.company-applicant {
  margin-bottom: 20px;
  border: 1px solid #d6d6d6;
  padding: 15px;
}

/* .file-choosen {
  position: relative;
  display: inline-block;
}

.file-choosen input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.custom-upload .custom-file-button {
  background: #316DF0;
  border: 2px solid #316DF0;
  border-radius: 5px;
  color: #fff !important;
  cursor: pointer;
  font-size: 14px !important;
  outline: none;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all 1s ease;
  font-weight: 500;
  display: inline-block;
}

.custom-file-button:hover {
  background: #fff;
  border: 2px solid #316DF0;
  color: #000 !important;
} */

.benifical-owners input[type="file"]::file-selector-button,
.company-applicant input[type="file"]::file-selector-button,
.appliant-popup input[type="file"]::file-selector-button {
  background: #316DF0;
  border: 2px solid #316DF0;
  border-radius: 5px;
  color: #fff !important;
  cursor: pointer;
  font-size: 14px !important;
  outline: none;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: all 1s ease;
  font-weight: 500;
  transition: 1s;
}

.benifical-owners input[type="file"]::file-selector-button:hover,
.company-applicant input[type="file"]::file-selector-button:hover,
.appliant-popup input[type="file"]::file-selector-button:hover {
  background: #fff;
  border: 2px solid #316DF0;
  color: #000 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}


.payment-page h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #316DF0;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 20px;
}

.pricing-table {
  margin-top: 25px;
  /* margin-bottom: 35px; */
}

.pricing-table .col-xl-3 {
  margin-bottom: 25px;
}

.pricing-table .plan {
  background: #FCFCFC;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  min-height: 100%;
}

.pricing-table .name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #666666;
  margin-bottom: 15px;
  min-height: 45px;
}

.pricing-table .price {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Inter';
  color: #316df0;
}

.pricing-table .price del {
  color: red;
  font-size: 20px;
}

.pricing-table .price span {
  color: #fd700e;
  font-size: 15px;
  vertical-align: super;
}

.pricing-table .price .old-amount {
  vertical-align: initial;
  color: red;
  font-size: 20px;
}

.pricing-table .subname {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #999999;
  line-height: 18px;
  margin-bottom: 10px;
  min-height: 54px;
}

.pricing-table .choose-btn {
  padding: 15px;
  background: #316DF0;
  box-shadow: 0px 10px 10px rgba(49, 109, 240, 0.25);
  border-radius: 5px;
  width: 100%;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
}

.pricing-table ul {
  list-style: none;
  padding-left: 0;
}

.pricing-table ul li {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #666666;
  margin-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 10px;
}

.pricing-table ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pricing-table ul li i {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  color: #666666;
  vertical-align: baseline;
}

.p-20 {
  padding: 20px;
}

.modal-title {
  font-family: 'Inter';
  font-size: 16px;
}

.modal-header .close {
  position: absolute;
  right: -15px;
  top: -15px;
  background: red;
  text-align: center;
  width: 28px;
  height: 28px !important;
  cursor: pointer;
  border-radius: 50% !important;
  line-height: 10px !important;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  border: 0;
}

.modal-header .close {
  padding: 0;
  margin: 0;
}

.modal-header .close span {
  display: block;
  margin-top: -4px;
  font-size: 21px;
  font-weight: 800;
}

.owner-invite .tabs {
  position: relative;
}

.owner-invite .border-bottom-grey {
  border-bottom: 1px solid #d6d6d6;
}

.owner-invite .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.owner-invite .tabs .nav .nav-link.active,
.owner-invite .tabs .nav .nav-item:hover,
.owner-invite .tabs .nav .nav-item:focus {
  border-bottom: 3px solid #FD700E !important;
}

.owner-invite .tabs .nav .nav-link.active,
.owner-invite .tabs .nav .nav-item.show .nav-link {
  border-bottom: 3px solid #1D82F5;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}

.owner-invite .tabs .nav .nav-item {
  padding: 14px 26px;
  line-height: 1.79;
  color: #28313c !important;
  margin-bottom: 0px;
  border: 0px;
  font-family: 'Inter';
}

.owner-invite .f-15 {
  font-size: 15px;
}

.owner-invite .nav-link {
  display: block;
}

.owner-invite .fade {
  transition: opacity 0.15s linear;
}

.owner-invite .alert {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 0;
}

.owner-invite textarea.form-control {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 15px;
  resize: none;
  height: auto !important;
}

.send-invite {
  padding: 12px 30px;
  background: #316DF0;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
  border-radius: 5px;
  border: 0;
  color: #fff;
  margin-top: 15px;
}

.send-invite:hover {
  color: #fff;
  background: #316DF0;
}

.owner-invite .invition-link h5 {
  font-size: 15px;
}

.owner-invite .invition-link p {
  font-size: 13px;
  color: #666666;
  margin-bottom: 0;
  word-break: break-all;
}

.owner-invite .btn-copy {
  background: transparent;
  margin-top: 20px;
  border: solid 1px #616e80;
  padding: 5px 14px;
  color: #51313c;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.gj-datepicker .btn {
  display: none !important;
}

.select2-selection__rendered {
  width: 100% !important;
  font-size: 15px !important;
}


#disclaimerCheck {
  color: #dc3232 !important;
  font-weight: 400;
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.radio-container {
  display: flex;
  flex-direction: column;
}

.radio-option {
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 16px;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
}

.radio-option:hover input~.radio-checkmark {
  background-color: #f3f3f3;
}

.radio-option input:checked~.radio-checkmark {
  background-color: #316df0;
  border: none;
}

.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-option input:checked~.radio-checkmark:after {
  display: block;
}

.radio-option .radio-checkmark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.radio-label {
  margin-left: 10px;
}

.add-company .error-message {
  color: #dc3232;
  font-weight: 400;
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.gj-unselectable.mb-3 {
  margin-bottom: 0px !important;
}

.quiz-sec {
  padding-bottom: 60px;
}

.quiz {
  max-width: 820px;
  margin: 0 auto 70px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.quiz #progressBar {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 13px;
  margin-bottom: 20px;
  height: 13px;
  margin-left: 25px;
}

.quiz #progress {
  height: 100%;
  width: 0;
  background-color: rgb(253 112 14);
  border-radius: 13px;
  transition: width 0.4s ease;

}

.quiz #result {
  font-style: normal;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: #000000;
}

.progress-title {
  margin-left: 25px;
}

.progress-title h5 {
  font-family: 'Inter';
  font-size: 14px;
  color: #aba9a9;
  margin-bottom: 10px;
}

.quiz-content h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  color: #000;
  margin-bottom: 25px;
  max-width: 610px;
}

.quiz-content .form-check {
  margin-bottom: 15px;
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  background: var(--ffffff, #FFF);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 20px;
}

.quiz-content .form-check-label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 15px;
  line-height: 17px;
  color: #666666;
  width: 100%;
  cursor: pointer;
}

.quiz-content .form-check-input {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  margin-top: -3px;
  margin-left: 0px;
  cursor: pointer;

}

.quiz-content .form-check-input:checked {
  background-color: #ff5c36;
  border-color: #ff5c36;
}

.quiz-content .form-check-input:focus {
  box-shadow: none !important;
}

.quiz-content p {
  margin-bottom: 10px;
  font-family: 'Inter';
  color: #666666;
  font-size: 14px;
}

.quiz-content ul {
  padding-left: 15px;
  margin-bottom: 20px;
}

.quiz-content ul li {
  margin-bottom: 8px;
  font-size: 15px;
  font-family: 'Inter';
  color: #000;
  font-weight: 500;
}

.quiz-content .quiz-btn {
  padding: 25px 30px;
  background: #ff5c36;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  display: flex;
  align-items: center;
  border: 0;
  gap: 10px;
  width: 100%;
  justify-content: center;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
}

.quiz-last-step {
  margin-top: 35px;
  justify-content: center;
  display: flex;
}

.quiz-last-step a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  gap: 10px;
  width: 100%;
  background: #FF5C36;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
}

.disclaimer {
  margin-top: 20px;
}

.disclaimer p {
  font-size: 14px;
  margin-bottom: 0;
  font-family: 'Inter';
  color: #666;
}

.quiz-header {
  padding: 25px 40px;
}

.quiz-header h6 {
  font-weight: 800;
  font-size: 26px;
  color: #000;
  margin-bottom: 5px;
}

.quiz-header p {
  margin-bottom: 0;
  font-size: 15px;
}

.quiz-header h6 span {
  color: #0d56a4;
}

.proogress-header {
  border-left: 1px solid #CCCCCC;
}

.quiz-time {
  margin-left: 25px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.quiz-time h2 {
  color: #ff5c36;
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 10px;
}

.quiz-time p {
  margin-bottom: 0;
}

.quiz-ques {
  padding: 40px 40px 50px;
  background: #f9f9f9;
}

.last-step-result {
  padding: 40px 40px 50px;
  background: #f9f9f9;
}

.last-ans {
  width: 100%;
}

.last-ans .form-check-inline:last-child {
  margin-right: 0;
}

.result-output .left-img {
  margin-right: 20px;
}

.result-output .left-img img {
  width: 60px;
}

.result-output .right-content p {
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
}


.document-modal p {
  font-size: 14px;
  margin-bottom: 0;
}


.company-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 10px;
  justify-content: space-between;
}

.company-title h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 0;
}

.company-title .edit-icon {
  padding: 10px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: auto;
}

.company-title .edit-icon .fa-pen {
  font-size: 12px;
  margin-right: 2px;
}

.reporting-company-data .review-radio-btn .radio-option {
  margin: 10px 0;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid #d6d6d6;
  padding: 15px;
  width: 500px;
  background: #f5f5f5f5;
  border-radius: 5px;
  padding-left: 30px;
}

.reporting-company-data .review-radio-btn .radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.reporting-company-data .review-radio-btn .radio-checkmark {
  position: absolute;
  top: 15px;
  left: 10px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
}

.reporting-company-data .review-radio-btn .radio-option:hover input~.radio-checkmark {
  background-color: #f3f3f3;
}

.reporting-company-data .review-radio-btn .radio-option input:checked~.radio-checkmark {
  background-color: #316df0;
  border: none;
}

.reporting-company-data .review-radio-btn .radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.reporting-company-data .review-radio-btn .radio-option input:checked~.radio-checkmark:after {
  display: block;
}

.reporting-company-data .review-radio-btn .radio-option .radio-checkmark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.reporting-company-data .review-radio-btn .radio-label {
  margin-left: 10px;
}

.reporting-company-data .review-radio-btn label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px !important;
  line-height: 17px;
  color: #666666 !important;
}

.reporting-company-data .form-control {
  height: 49px !important;
  background: #FFFFFF;
  border-radius: 5px !important;
  font-family: 'Inter';
  color: #666666;
  font-size: 15px;
}

.reporting-company-data .border-bottom {
  border-bottom: 1px solid #d6d6d6 !important;
  padding-bottom: 10px;
  margin-bottom: 0px;
}


.review-table .table thead th {
  background: #FAFAFA;
  border: 1px solid #E6E6E6;
  padding: 10px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 13px;
  text-transform: capitalize;
  color: #333333;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  text-align: left;
  white-space: nowrap;
}

.review-table .table thead th:first-child,
.review-table .table tbody td:first-child {
  padding-left: 17px;
}

.review-table .table tbody td {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #333333;
  white-space: nowrap;
  padding: 10px;
  text-align: left;
}

.review-table .table .success {
  color: #2CA74A;
}

.review-table .table .pending {
  color: #FF9900;
}

.review-table table {
  border: 1px solid #dee2e6 !important;
  border-collapse: collapse !important;
}

.review-checkbox {
  height: 15px;
  width: 15px;
  vertical-align: middle;
}

.review-table .table thead th:nth-child(1) {
  width: 10%;
}

.review-table .table thead th:nth-child(2) {
  width: 25%;
}

.review-table .table thead th:nth-child(3) {
  width: 28%;
}

.review-table .table thead th:nth-child(4) {
  width: 20%;
}

.review-table .table thead th:nth-child(5) {
  width: 20%;
}

.review-table .table thead th:nth-child(6) {
  width: 10%;
}


.review-table .edit {
  color: #666;
  font-size: 15px;
  margin-right: 15px;
}

.review-table .delete {
  color: red;
  font-size: 15px;
}

.review-table.appliant-table thead th:nth-child(1) {
  width: 10%;
}

.review-table.appliant-table thead th:nth-child(2) {
  width: 25%;
}

.review-table.appliant-table thead th:nth-child(3) {
  width: 28%;
}

.review-table.appliant-table thead th:nth-child(4) {
  width: 20%;
}

.review-table.appliant-table thead th:nth-child(5) {
  width: 20%;
}

.review-table.appliant-table thead th:nth-child(6) {
  width: 10%;
}

.terms-content {
  height: 300px;
  overflow-y: scroll;
  padding: 20px 20px 0px;
}

/* Scrollbar styling */
.terms-content::-webkit-scrollbar {
  width: 10px;
  background: #e3e8ec;
}

.terms-content::-webkit-scrollbar-thumb {
  background-color: #FD700E;
  border-radius: 3px;
  width: 15px;
}

.terms-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}


.terms-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.terms-content ul {
  padding-left: 30px;
}

.terms-content ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  list-style: circle;
  margin-bottom: 5px;
}

.terms-content h2 {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  margin-top: 20px;
  margin-bottom: 5px;
}

.terms-content-1 {
  padding: 20px;
}

.terms-content-1 h3 {
  font-size: 15px;
  margin-top: 30px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.terms-content-1 p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.accept-checkbox input {
  height: 20px;
  cursor: pointer;
  width: 20px;
  margin-right: 10px;
}

.accept-checkbox label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px;
  line-height: 27px;
  color: #666666;
}

.terms-content .border_bottom {
  padding-bottom: 7px;
  border-bottom: 1px solid #d6d6d6;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.benifical-owners .company-formed .custom-control-label {
  font-size: 15px !important;
  padding-top: 0 !important;
  vertical-align: super;
  cursor: pointer;
}

.benifical-owners .company-formed .custom-control-input {
  width: 20px;
  height: 20px;
}

.footer_bottom .justify-content-lg-end {
  justify-content: center !important;
}

.mobile-case {
  display: none;
}

.crm-module {
  margin-bottom: 30px;
}

.crm-module fieldset {
  border: 1px solid #d5d5d5;
  width: 100%;
  padding: 5px 15px;
  margin-bottom: 20px;
}

.crm-module legend {
  border-bottom: 0;
  float: inherit;
  width: auto;
  font-size: 17px;
  padding-left: 10px;
  padding-right: 10px;
  color: #316DF0;
  font-weight: 600;
}

.crm-module legend span {
  color: #FD700E;
  font-size: 12px;
}

.partner-checkbox input {
  height: 20px;
  width: 20px;
}

.partner-checkbox label {
  vertical-align: super;
  font-size: 16px !important;
  padding-left: 10px;
  display: inline-block;
}

.partner-btn {
  padding: 20px 40px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 19px;
  border: 0;
}

.form-group .error-border {
  border: 1px solid #dc3232 !important;
}

.review-submit {
  margin-left: 25px;
}

.appliant-popup label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px !important;
  line-height: 17px;
  color: #666666 !important;
  display: block;
  margin-bottom: 12px;
}

.appliant-popup select {
  padding: 10px;
  height: 49px !important;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  font-family: 'Inter';
  font-size: 14px;
  width: 100%;
  color: #666666;
}

.appliant-popup select:hover,
.appliant-popup select:focus {
  border-color: #28313C !important;
  box-shadow: none;
}

.appliant-popup label sup {
  color: #fd0202;
  top: 0px;
  right: 0px;
}

/* Agreement */

.agreement-section {
  border: 1px solid #d6d6d6;
  margin-bottom: 10px;
}

.agreement-header {
  width: 100%;
  padding: 60px;
  background: url('../img/asset.png');
  background-size: 100%;
  height: 900px;
  background-repeat: no-repeat;
}

/* .agreement-header {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 60px;
}

.agreement-header:before {
  content: "";
  background: color-mix(in srgb, #316df0, transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.agreement-header .banner-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
} */

.banner-text-logo {
  position: relative;
  z-index: 2;
}

.banner-text-logo .banner-logo {
  width: 40%;
  margin-bottom: 50px;
}

.banner-text-logo h3 {
  color: #fff;
  font-family: 'Inter';
  font-size: 90px;
  font-weight: 700;
  margin-top: 80px;
  line-height: 100px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.banner-text-logo p {
  color: #fff;
  font-family: 'Inter';
  letter-spacing: 15px;
  font-size: 35px;
  margin-top: 30px;
}

.agreement-1 {
  z-index: 2;
  position: relative;
  padding: 20px;
}

.agreement-awards {
  margin-top: -50px;
}

.agreement-awards p {
  max-width: 250px;
  margin: 0 auto;
  background: #FF5C36;
  padding: 13px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  width: 100%;
}

.agreement-logo {
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  padding: 5px 5px 0px;
  margin-top: 20px;
  min-height: 205px;
}

.height-100 {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.agreement-logo img {
  width: 60%;
  margin-bottom: 10px;
}

.agreement-logo h6 {
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

.agreement-logo p {
  font-size: 10px;
  color: #555;
  font-weight: 500;
}

.body-watermark {
  background: url('../img/asset-5.png');
  background-size: 85%;
  background-position: center;
  background-repeat: no-repeat;
}

.small-logo {
  padding: 20px 20px 0;
  display: flex;
  justify-content: end;
  margin-bottom: 15px;
}

.small-logo img {
  width: 50px;
}

.agreement-2 {
  padding: 0px 20px 20px;
}

.agreement-2 h2 {
  color: #ff5c36;
  font-size: 55px;
  position: relative;
  margin-bottom: 50px;
}

.agreement-2 h2:after {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 0;
  width: 43px;
  background: #0087bd;
  height: 5px;
}

.agreement-2 .d-flex {
  width: 100%;
}

.agreement-2 p {
  position: relative;
  color: #0087bd;
  font-size: 16px;
  font-weight: 500;
}

.agreement-2 .line-1 {
  width: 85%;
}

.agreement-2 .line-2 {
  width: 73%;
}

.agreement-2 .line-3 {
  width: 69%;
}

.agreement-2 .line-4 {
  width: 76%;
}

.agreement-2 .line-5 {
  width: 67%;
}

.agreement-2 .line-6 {
  width: 84%;
}

.agreement-2 .line-7 {
  width: 75%;
}

.agreement-2 .line-8 {
  width: 68%;
}

.agreement-2 .line-9 {
  width: 79%;
}

.agreement-2 .line-10 {
  width: 80%;
}

.agreement-2 .line-11 {
  width: 65%;
}

.agreement-2 .line-12 {
  width: 80%;
}

.agreement-2 .line-13 {
  width: 79%;
}

.agreement-2 .line-14 {
  width: 75%;
}

.agreement-2 .line-15 {
  width: 85%;
}

.agreement-2 .line-16 {
  width: 82%;
}

.agreement-2 .line-17 {
  width: 81%;
}

.agreement-2 .line-18 {
  width: 78%;
}

.agreement-2 .line-19 {
  width: 61%;
}

.agreement-2 .line-20 {
  width: 29%;
}

.agreement-2 .line-21 {
  width: 64%;
}


.agreement-2 hr {
  border-top: 3px solid #0087bd;
  opacity: 1;
}

.page-line {
  border-top: 3px solid #0087bd;
  margin: 20px auto;
  width: 96%;
  justify-content: space-between;
  display: flex;
  padding-top: 10px;
  color: #0087bd;
  font-size: 15px;
  font-weight: 300;
}

.page-line a {
  color: #0087bd;
}

.agreement-3 {
  padding: 10px 20px 20px;
}

.agreement-3 p {
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
}

.agreement-3 p .input {
  border-bottom: 1px dashed #000;
  padding: 0 5px;
}

.agreement-3 h6 {
  color: #0087bd;
  font-size: 16px;
  padding: 15px 0px;
}

.blue-text {
  color: #0087bd;
  font-size: 15px;
  font-weight: 500;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.display-block {
  display: block;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 1rem;
  margin-left: 30px;
}

.notice-to h6 {
  font-weight: 600;
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
  margin-bottom: 0px;
  padding: 8px 0;
}

.notice-to input {
  border: 0;
  font-weight: 600;
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
  margin-bottom: 0px;
  padding: 8px 0;
  background: transparent;
  display: block;
  line-height: 1.2;

}

.notice-to input:focus {
  box-shadow: none;
  outline: 0;
}

.notice-to .email-address span {
  font-weight: 600;
  font-size: 15px;
  color: #3d3d3d;
  min-width: 54px;
}

.notice-to .email-address input {
  width: 261px;
}

.notice-to .email-address {
  width: 100%;
}


.notice-to-1 h6 {
  font-weight: 600;
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
  margin-bottom: 9px;
  padding: 8px 0;
}

.notice-to-1 input {
  border: 0;
  border-bottom: 1px dashed #000;
  display: block;
  background: transparent;
  width: 350px;
  margin-bottom: 12px;
  padding: 5px 0;
  font-size: 14px;
}

.notice-to-1 input:focus {
  box-shadow: none;
  outline: 0;
}

.notice-to-1 .email-address span {
  font-weight: 500;
  font-size: 15px;
  color: #3d3d3d;
  min-width: 70px;
}


.agreement-4 {
  padding: 10px 20px 20px;
}

.agreement-4 h3 {
  color: #ff5c36;
  font-size: 15px;
  font-family: 'Inter';
  margin-bottom: 0;
}

.agreement-4 h2 {
  color: #3d3d3d;
  font-size: 37px;
  position: relative;
  margin-bottom: 25px;
  margin-top: 10px;
  line-height: 50px;
}

.agreement-4 h2:after {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 0;
  width: 65px;
  background: #0087bd;
  height: 5px;
}

.business-line {
  border: 1px solid #0087bd;
  border-radius: 10px;
  margin: 120px 0px;
}

.business-line h5 {
  padding: 15px;
  border-bottom: 1px solid #0087bd;
  color: #0087bd;
  font-size: 19px;
  font-weight: 600;
}

.business-line p {
  padding: 10px;
  border-bottom: 1px solid #0087bd;
  color: #3d3d3d;
  font-size: 17px;
}

.business-line p:last-child {
  border-bottom: 0;
}

.agreement-4 p {
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
  margin-bottom: 15px;
}

.notice-to-2 h6 {
  font-weight: 600;
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
  margin-bottom: 0px;
  padding: 8px 0;
  margin-top: 20px;
}

.notice-to-2 input {
  border: 0;
  display: block;
  background: transparent;
  width: 300px;
  margin-bottom: 0px;
  padding: 5px 0;
  font-weight: bolder;
  font-size: 15px;
  color: #3d3d3d;
  padding-block: 0px;
  padding-inline: 0px;
}

.notice-to-2 input:focus {
  box-shadow: none;
  outline: 0;
}

.notice-to-2 .email-address span {
  font-weight: 600;
  color: #3d3d3d;
  min-width: 90px;
}

.notice-to-2 .email-address {
  width: 100%;
}

.notice-to-2 .name-title {
  margin-bottom: 0px;
  padding: 5px 0;
  font-size: 15px;
}


.notice-to-3 .email-address span {
  min-width: 100px !important;
}

.select-checkbox {
  margin: 50px 25px 30px;
}

.select-checkbox table {
  width: 100%;
  border: 1px solid #0087bd;
  border-radius: 10px;
}

.select-checkbox table tr td {
  border: 1px solid #0087bd;
  padding: 20px;
  color: #0087bd;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.select-checkbox table tr td:last-child {
  border-right: 0;
}

.select-checkbox input {
  height: 20px;
  width: 20px;
}

.select-checkbox span {
  vertical-align: super;
  padding-left: 5px;
}

.depository-table {
  margin: 30px 25px;
}

.depository-table table {
  width: 100%;
  border: 1px solid #0087bd;
  border-radius: 10px;
}

.depository-table table tr td {
  border: 1px solid #0087bd;
  padding: 15px 0px 15px 20px;
  color: #0087bd;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.depository-table input {
  height: 20px;
  width: 20px;
}

.depository-table span {
  vertical-align: super;
  padding-left: 5px;
}

.depository-table table p {
  font-size: 15px;
  color: #3d3d3d;
  font-family: 'Inter';
  margin-bottom: 0;
}

.upload-check {
  margin: 30px 25px;
  display: flex;
  align-items: center;
}

/* .upload-check img {
  width: 50px;
  height: 50px;
} */

.upload-check p {
  border: 1px solid #0087bd;
  border-radius: 10px;
  color: #0087bd;
  font-size: 15px;
  padding: 10px;
  max-width: 500px;
  margin-left: 20px;
  margin-bottom: 0;
}


.paymet-data-container table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #d6d6d6;
}

.paymet-data-container td {
  padding: 12px 20px;
  border: 1px solid #ddd;
  font-size: 16px;
  text-align: left;
  font-family: 'Inter';
}

.paymet-data-container tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.paymet-data-container tbody tr:nth-child(odd) {
  background-color: #fff;
}

.paymet-data-container tbody tr:hover {
  background-color: #f1f1f1;
}

.paymet-data-container td:first-child {
  font-weight: 600;
  background-color: #f9f9f9;
  width: 270px;
}

.paymet-data-container td:last-child {
  font-weight: 500;
  color: #333;
}

.paymet-data-container th {
  padding: 15px;
  text-align: left;
  background-color: #f36b22;
  color: white;
  border-bottom: 2px solid #ddd;
}


.accept-signup input {
  height: 20px;
  width: 20px;
  margin-right: 7px;
  float: left;
  cursor: pointer;
}

.accept-signup label {
  vertical-align: middle !important;
  cursor: pointer;
}

#terms_link {
  display: contents !important;
  color: #007bff !important;
  font-size: 14px;
}

.already-login {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 40px;
}

.already-login p {
  color: #4D545C !important;
  font-family: Inter;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 16.94px;
  margin-bottom: 0;
}

.already-login a {
  padding: 0px !important;
  font-family: Inter;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 16.94px;
  text-align: center;
  border: 0 !important;
  color: #316df0;
  display: inline;
}

.quiz-section {
  width: 100%;
  background: url('https://boir.echeck.money/assets/img/bg-banner.png');
  background-size: 100% 540px;
  min-height: 100%;
  background-repeat: no-repeat;
}

.login_header_1 {
  padding: 25px;
  margin-bottom: 50px;
  width: 100%;
}

#reporting_company_header h6 span {
  color: #fd700e !important;
  font-size: 14px !important;
  vertical-align: bottom;
  padding-left: 5px;
}

.save_this_owner,
.save_this_applicant {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.primary-btn-orange {
  padding: 15px 30px;
  background: #fe7725;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: auto;
  border: 0;
}

.crm-module .error {
  font-size: 13px;
}


.sign-up-form-home {
  margin-top: 15px;
  margin-bottom: 15px;
}

.sign-up-form-home .form-control {
  padding: 12px 15px !important;
  border-radius: 3px !important;
  border: 0 !important;
}

.sign-up-form-home .form-check-input {
  padding: 0 !important;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.sign-up-form-home .form-check label {
  color: #fff;
  margin-left: 5px;
  font-size: 14px;
  margin-top: 3px;
}

.sign-up-form-home .form-check label a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
}

.submit-sign-up {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 5px;
  background: #ff5c36;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  margin-top: 15px;
  border-radius: 2px;
}

.submit-sign-up:hover {
  color: #fff !important;
}

.sign-up-form-home .error-message-single {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
}

.sign-up-form-home .input-container {
  margin-bottom: 20px;
}

.banner-section #error-message {
  padding: 7px;
  font-size: 14px;
  margin-top: 4px;
}

.page-heading-compnay-signup {
  font-family: inter;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.sign-up-form button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 5px;
  background: #ff5c36;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  margin-top: 15px;
  border-radius: 2px;
  border: 0;
}

.topbar {
  background: linear-gradient(204.08deg, #0D56A4 23.99%, #316DF0 97.67%);
  text-align: center;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.topbar h4 {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  color: #FFFFFF;
  font-family: 'Inter';
}

.counter-list {
  padding-right: 15px;
}

.counter-top {
  display: flex;
  margin-left: 40px;
}

.counter-list h5 {
  margin-bottom: 0;
  padding: 6px;
  background: #FF5C36;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  min-width: 45px;
}

.counter-list p {
  margin-bottom: 0;
  padding: 0px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 7px;
  font-weight: 400;
}

.topbar-close {
  position: absolute;
  right: 20px;
}

.topbar-close a {
  color: #fff;
  font-size: 16px;
  opacity: 0.7;
  background: transparent;
  border: 1px solid #d2d0d0;
  padding: 2px 5px;
  border-radius: 3px;
}

.send-invite:disabled {
  background-color: grey;
  opacity: 1;
  pointer-events: none;
}

.swal-modal,
.swal2-popup {
  border-radius: 25px !important;
  width: 512px !important;
  padding: 1.25em !IMPORTANT;
}

.swal-footer {
  text-align: center !important;
}

.swal-button--confirm,
.swal2-confirm {
  text-transform: capitalize;
  background-color: #1d82f5 !important;
  border: 1px solid #1d82f5 !important;
  padding: 16.5px 30px !important;
  font-size: 16px !important;
  border-radius: 5px !important;
}

.swal-button--confirm:focus,
.swal2-confirm:focus {
  box-shadow: none !important;
}

.swal2-cancel {
  text-transform: capitalize;
  background-color: #1d82f5 !important;
  border: 1px solid #1d82f5 !important;
  padding: 16.5px 30px !important;
  font-size: 16px !important;
  border-radius: 5px !important;
  color: red !important;
  background: #fff !important;
  border: 1px solid red !important;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25) !important;
}

.swal2-cancel:focus {
  box-shadow: none !important;
}

.swal-text,
.swal2-content {
  font-family: 'Inter' !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  text-align: center !important;
  margin-bottom: 25px !important;
}

.swal2-content p {
  max-width: 90%;
  margin: 0 auto 15px;
}

#save-review {
  width: 200px;
}

.coupon-box {
  margin-top: 20px;
  border-top: 1px solid #d6d6d6;
  padding-top: 20px;
}

.coupon-header {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
  background: #316DF0 !important;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
  border-radius: 5px !important;
  justify-content: space-between;
  padding: 10px;
  color: #fff;
  align-items: center;
}

.coupon-header h4 {
  font-size: 17px;
  margin-bottom: 0;
}

.coupon-header p {
  margin-bottom: 0;
  font-size: 15px;
}

.coupon-input input {
  width: 280px;
  border-right: 0 !important;
  border-radius: 0.25rem 0px 0px 0.25rem;
  text-transform: uppercase;
  height: 42px !important;
}

.coupon-apply {
  padding: 9px 15px !important;
  background: #FF5C36;
  border-radius: 0px 5px 5px 0px;
  color: #fff !important;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  width: auto;
  height: 42px;
  text-align: center;
}

.coupon-left {
  display: flex;
}

.coupon-payment-table .table tr td {
  vertical-align: middle;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  border: 1px solid #E6E6E6;
  padding: 6px 6px 6px 15px;
  text-align: lef;
}

.coupon-payment-table .table {
  width: 100%;
  border-collapse: collapse !important;
}

.coupon-payment-table table tbody td:first-child {
  font-weight: 600;
  background: #f7f7f7;
}

.coupon-payment-table table tbody td:last-child {
  text-align: right;
}

.success-page {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 0px 35px 10px rgba(25, 135, 84, 0.1);
  border-radius: 5px;
  padding: 0px 40px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.sucess-banner {
  background: url(../img/success-banner.svg);
  text-align: center;
  background-repeat: no-repeat;
  background-size: 800px;
  background-position: top;
}

.sucess-banner .sucess-text {
  padding-top: 100px;
  padding-bottom: 30px;
}

.sucess-banner .sucess-text h1 {
  max-width: 479px;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 125%;
  text-align: center;
  color: #316DF0;
  margin: 10px auto;
  font-family: 'Inter';
}

.sucess-banner .sucess-text p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #333333;
}

.success-body {
  border-top: 1px dashed #d6d6d6;
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: 1px dashed #d6d6d6;
  max-width: 900px;
  margin: 0 auto;
}

.success-body h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.success-body .sucess-text-1 {
  padding: 15px 20px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-bottom: 15px;
}

.success-body h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px;
  line-height: 17px;
  color: #666666;
  margin-bottom: 5px;
}

.success-body p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: #000000;
  word-break: break-all;
}

.width-49 {
  width: 49%;
}

.success-body .badge {
  text-transform: uppercase;
  margin-right: 10px;
  padding: 7px;
  font-size: 12px;
  font-weight: 500;
}

.success-body .download-invoice {
  padding: 7px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  line-height: 12px;
}

.success-footer {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 30px auto;
}

.success-footer h5 {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: #333333;
}

.success-footer p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #333333;
  margin-top: 5px;
}

.success-footer .go-dashboard {
  padding: 12px;
  background: #316DF0;
  box-shadow: 0px 10px 10px rgba(49, 109, 240, 0.25);
  border-radius: 5px;
  color: #fff;
  width: 245px;
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  margin-top: 5px;
}

.success-footer .go-dashboard:hover {
  color: #fff;
}

.pl-12 {
  padding-left: 0;
}

.pr-12 {
  padding-right: 0;
}

.middle-text {
  padding: 10px;
  background: linear-gradient(204.08deg, #0D56A4 5.44%, #001937 97.67%);
  justify-content: center;
  align-items: center;
}

.middle-text p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #fff;
}

.middle-text span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: #FFD600;
  box-sizing: border-box;
  padding: 5px 10px;
  border: 1px dashed #FFD600;
  border-radius: 3px 0px 0px 3px;
  margin-left: 5px;
  display: inline-block;
  border-right: 0;
}

.middle-text .copy-code {
  margin-left: -5px;
  border: 1px solid #FFD600;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: #333;
  padding: 5px 10px;
  background: #FFD600;
  border-radius: 0px 3px 3px 0px;
  border-left: 0;
}

.coupon-main {
  margin-top: 20px;
  align-items: center;
}

.coupon-main label {
  flex-shrink: 0;
  min-width: 100px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px !important;
  line-height: 17px;
  color: #666666 !important;
  display: block;
}

.coupon-main input {
  height: 49px !important;
  background: #FFFFFF;
  border-radius: 5px !important;
  font-family: 'Inter';
  color: #666666;
  font-size: 15px;
  width: 270px;
  text-transform: uppercase;
}

.coupon-main input:hover {
  border-color: #28313C !important;
  box-shadow: none;
}

.coupon-main input:focus {
  box-shadow: none;
}

.coupon-main .primary-btn-orange {
  margin-left: 15px;
  flex-shrink: 0;
  padding: 15px !important;
}

.coupon-confimation-main {
  margin-top: 20px;
  align-items: center;
}

.coupon-confimation-main .coupon_apply_message {
  min-width: 340px;
  padding: 14px;
  font-size: 14px;
}

.coupon-confimation-main .remove_coupon {
  background: grey;
  flex-shrink: 0;
  margin-left: 15px;
  padding: 15px !important;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: auto;
  border: 0;
  margin-top: -15px;
}

.error-payment {
  margin-left: 100px;
}

.error-payment span {
  color: red;
  font-size: 13px;
}

.page-heading-compnay-signup-title {
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  margin-top: 0px;
  margin-bottom: 5px;
}

.new-header {
  background: url('../img/bg-boi.png');
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}


.left-logo-new {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.new-header .sbam-logo {
  margin-left: 40px;
  width: 16%;
}

.new-notofication {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid #3178B1;
  padding: 15px 0px;
}

.new-notofication img {
  width: 20px;
  margin-right: 10px;
}

.new-notofication p {
  margin-bottom: 0;
  color: #fff;
}

.left-new-footer {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 5px;
}

.left-new-footer .sbam-logo-footer {
  margin-left: 40px;
  width: 30%;
}

.new-footer-text {
  padding: 5px;
  text-align: left;
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #333333;
  margin-top: 0px;
  max-width: 600px;
}

.right-new-footer {
  padding: 5px;
  display: flex;
  justify-content: end;
}

.new-tab {
  background: #F5F5F5;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-tab-design {
  border-radius: 50px;
  background: #fff;
  padding: 6px;
  border: 1px solid #e6e6e6;
}

.new-tab .nav {
  border-bottom: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.new-tab .nav-tabs .nav-link.active,
.new-tab .nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background: #316DF0;
  border: 1px solid #F5F5F5;
  border-radius: 50px;
  padding: 15px 25px;
}


.no-data:not(.active) {
  pointer-events: none;
  background-color: transparent;
  cursor: not-allowed;
  border: 0;
  box-shadow: none;
  color: grey;
  opacity: 0.8;
}


.new-tab .nav-tabs .nav-link:focus,
.new-tab .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.new-tab .nav-tabs .nav-link .number {
  background: #333333;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 26px;
}

.new-tab .nav-tabs .nav-link .text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #333333;
  padding-left: 5px;
}

.new-tab .nav-tabs .nav-link.active .number {
  background: #fff;
  color: #316DF0;
}

.new-tab .nav-tabs .nav-link.active .text {
  color: #FFFFFF;
}

/* .reporting-company-data.first {
  border: 1px solid #316DF0;
    box-shadow: 0px 10px 10px rgba(49, 109, 240, 0.25);
} */

.tab-content .w-100.d-flex.justify-content-center.align-items-center.py-4.mt-4 {
  border-top: 1px solid #e6e6e6;
}

.new-tab .nav-tabs .nav-link.completed .number {
  background: #198754;
}

.new-tab .nav-tabs .nav-link.completed .text {
  color: #198754;
}

.new-tab .nav-tabs .nav-link.completed.active .number {
  background: #fff;
}

.new-tab .nav-tabs .nav-link.completed.active .text {
  color: #fff;
}

.ein-number {
  margin-bottom: 5px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 16px;
  line-height: 17px;
  color: #000;
}

.company-ein {
  display: flex;
  align-items: center;
}

.fetch-data {
  padding: 14px 30px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  width: auto;
  margin-top: 30px;
  margin-left: 30px;
  border: 0;
}

.fetch-data:hover {
  background-color: #0056b3;
}

.company-ein input {
  width: 500px;
}

.card-exam {
  padding: 10px 10px;
  height: 100%;
}

.circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 auto 15px;
  background: #f3f0f2;
  font-size: 25px;
  color: #316df0;
}

.circle svg {
  width: 21px;
  fill: #316df0;
}

.card-exam-title {
  text-align: center;
}

.card-exam-title .first {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 7px;
}

.card-exam-title .other {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}

.card-link {
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}

.card-link a {
  text-decoration: none;
  padding: 14px 30px;
  background: #316DF0;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  width: auto;
}

.otp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.otp-modal-box {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 375px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}

.otp-modal-box input {
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid #CCCCCC !important;
  border-radius: 5px !important;
  font-family: 'Inter';
}

.otp-modal-box input:focus-visible {
  outline: 0;
}

.error-message-single {
  float: left;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: 13px;
  color: red;
}

.verify-otp {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #316DF0;
  box-shadow: 0px 10px 15px rgba(49, 109, 240, 0.25);
  border-radius: 5px;
  color: #fff !important;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  width: auto;
  text-align: center;
}

.resend-otp {
  color: #fe7725;
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.close-otp {
  position: absolute;
  right: -15px;
  top: -15px;
  background: red;
  text-align: center;
  width: 28px;
  height: 28px !important;
  border: 0;
  border-radius: 50% !important;
  line-height: 10px !important;
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.otp-modal-box h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  margin-bottom: 5px;
  color: #316DF0;
}

.otp-modal-box p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #666666;
  max-width: 100%;
  margin: 0 auto 20px;
}

.timer-resend {
  width: 100%;
  margin-top: 10px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.timer {
  font-size: 13px;
}

.border-ein {
  border: 1px solid #d6d6d6;
  background: #fafafa;
  width: 100%;
  padding: 15px;
}

.border-ein .form-check-label {
  cursor: pointer;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 510;
  font-size: 14px !important;
  line-height: 17px;
  color: #666666 !important;
}

.border-ein .filing_receive_request {
  margin-top: 0px;
  cursor: pointer;
}

.border-ein .form-check-input {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.border-ein .form-check-input:focus {
  box-shadow: none !important;
}

.exemptNotAllowed .readingOnly {
  background-color: #f5f5f5;
  color: #6c757d;
  border: 1px solid #ddd;
  pointer-events: none;
  cursor: not-allowed;
}

.finhiden {
  display: none;
}

.readingOnly .select2-container--default .select2-selection--single {
  background-color: #f5f5f5;
  color: #6c757d;
  border: 1px solid #ddd;
  pointer-events: none;
  cursor: not-allowed;
  display: none;
}

.finBenState .card-body .applicant-doc,
.finAppState .card-body .applicant-doc {
  pointer-events: none;
  opacity: 0.5;
  display: none;
}

.type-filing-error {
  color: #fd0202;
  top: 0px;
  right: 0px;
}

.guardian_info_note {
  margin-left: 27px;
  margin-top: 5px;
}