:root {
  --primary: #082255;
  --secondary: #153f92;
  --dark: #101113;
  --light: #d6d7da;
}
@font-face {
  font-family: Manrope-medium;
  src: url(../font/Manrope-Medium.ttf);
}
@font-face {
  font-family: Manrope-regular;
  src: url(../font/Manrope-Regular.ttf);
}
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  /* border-radius: 5px; */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}
/* Global css start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Manrope-regular;
  color: #434449;
  background-color: #ffffff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Manrope-medium;
  font-weight: 500;
  line-height: 1.2;
}
h1 {
  font-size: 56px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 25px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 20px;
}
p {
  font-family: Manrope-regular;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
a {
  text-decoration: none !important;
}
.main {
  margin-top: 55px;
}
.section {
  padding: 75px 0;
}
section.video {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;                                                                                                                                                                                                                                                                                                                                                                                                                
  bottom: 0;
  background-color: rgba(8, 34, 85, 0.281);
}
.banner {
  height: 100vh;
}
.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}
.section-content {
  font-size: 16px;
  font-weight: 400;
}
.btn-primary {
  font-family: Manrope-regular;
  font-size: 16px;
  padding: 15px 44px;
  border-radius: 20px;
  background-color: var(--primary);
  color: #ced6fc;
  display: inline-block;
}
.btn-outline-white{
  font-family: Manrope-regular;
  font-size: 16px;
  padding: 15px 44px;
  border-radius: 20px;
  background-color: transparent;
  color: #ffff;
  border: 1px solid #ffff;
  display: inline-block;
}
.btn-outline-white:hover {
  background-color: #ffff;
  color: var(--primary);
}
.btn-outline {
  font-family: Manrope-regular;
  font-size: 16px;
  border-radius: 20px;
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  display: inline-block;
}
.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.background-gradient {
  background: linear-gradient(to right, #0a1c48, #0d2c85) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-dark {
  color: #434449 !important;
}
.btn-primary:hover {
  font-family: Manrope-medium;
  font-size: 16px;
}
.border-radius {
  border-radius: 20px;
}
.border-primary {
  border: 1px solid var(--primary) !important;
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
/* Global css end */
#back-to-top {
  display: inline-block;
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#back-to-top:hover {
  cursor: pointer;
  background-color: var(--secondary);
}
#back-to-top:active {
  background-color: var(--secondary);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Navbar css  start*/
.navbar {
  z-index: 100;
}
.nav-link:hover {
  color: var(--primary);
}
.dropdown-menu .nav-link:hover {
  color: white;
  font-size: 27px !important;
  transition: font-size 0.3s ease !important;
}
.logo-img {
  width: 204px;
  height: auto;

  /* margin-right: 20px; */
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right:10px !important; 
    padding-left:10px !important; 
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
.dropdown {
  position: inherit !important;
}
.dropdown-menu {
  width: 100vw;
  left: 0 !important;
  right: 0 !important;
  top: 100%;
  margin-top: 0 !important;
  border-radius: 0;
  border-top: white !important;
  background-color: #08225570;
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* Optional: align items inside */
.dropdown-menu .dropdown-item {
  white-space: normal;
  color: white !important;
}

/* Hamburger */
.hamburger {
  width: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 999999;
  /* top: 20px; */
  background-color: var(--primary);
  border-radius: 5px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Active state (X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* SIDEBAR */
.side-nav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #ffff;
  overflow-x: hidden;
  padding-top: 60px;
  box-shadow: 0px 41px 90px 0px rgba(125, 137, 161, 0.1),
    0px 164px 164px 0px rgba(125, 137, 161, 0.09),
    0px 370px 222px 0px rgba(125, 137, 161, 0.05),
    0px 657px 250px 0px rgba(125, 137, 161, 0.01),
    1px 1027px 250px 0px rgba(125, 137, 161, 0);
  z-index: 2;
}
.side-nav a {
  padding: 10px 20px;
  display: block;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
}
.side-nav a:hover {
  color: var(--secondary);
  font-size: 1.4rem;
}
.side-nav .close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  color: white;
}
/* Navbar css  end*/

/* About section css start */
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 300px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logo_items {
  display: inline-block;
  animation: 20s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 70px;
  margin: 0 20px;
}
/* About section css end */

/* product css start */
.product {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard {
  position: relative;
  width: 600px;
  max-width: 100%;
  transform: perspective(1000px) translateY(100px) scale(0.9) rotateX(30deg);
  transition: transform 0.3s ease-out, width 0.3s ease-out;
  will-change: transform, width;
}

.pointer {
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url("../images/pointer.gif");
  background-size: cover;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 99;
}

.tooltip {
  position: absolute;
  top: auto;
  left: 27px;
  right: 0;
  background-color: var(--primary);
  color: var(--light);
  padding: 14px 14px;
  font-size: 14px;
  border-radius: 8px 0 8px 0;
  white-space: wrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  width: 380px;
  z-index: 9999 !important;
}

.pointer:hover .tooltip {
  opacity: 1;
}
.p1 {
  top: 11%;
  left: 62%;
  transform: translate(-50%, -50%);
}
.p2 {
  top: 12%;
  left: 34%;
  transform: translate(-50%, -50%);
}
.p3 {
  top: 25%;
  left: 67%;
  transform: translate(-50%, -50%);
}
.p4 {
  top: 25%;
  left: 43%;
  transform: translate(-50%, -50%);
}
.p5 {
  top: 43%;
  left: 69%;
  transform: translate(-50%, -50%);
}
.p6 {
  top: 53%;
  left: 45%;
  transform: translate(-50%, -50%);
}
.p7 {
  top: 62%;
  left: 30%;
  transform: translate(-50%, -50%);
}
.p8 {
  top: 65%;
  left: 61%;
  transform: translate(-50%, -50%);
}
/* product css end */
/* solution css start */
.leftBox {
  position: sticky;
  top: 80px;
}

.leftBox img {
  width: 100%;
  height: 80vh;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.rightBoxCard {
  height: 100vh;
  padding: 2rem;
  margin-bottom: 50px;
}

/* solution css end */
/* Why choose us css start */
.scrollmenu {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.scrollmenu::-webkit-scrollbar {
  display: none;
}
.scrollmenu .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: none !important;
}

.scrollmenu .nav-item {
  flex-shrink: 0;
}

.scrollmenu .nav-tabs .nav-link {
  color: #434449 !important;
  margin-bottom: -1px;
  background: 0 0;
  border: none !important;
  border-radius: 5px 5px 0 0 !important;
  font-size: 16px;
  font-weight: 600;
}
.scrollmenu .nav-tabs .nav-link.active {
  color: #042a49 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  border-bottom: 2px solid var(--primary) !important;
  border-radius: 5px 5px 0 0 !important;
}
/* Why choose us css end */
/* Price table css start */
.linear-background {
  background: linear-gradient(
    93.79deg,
    rgba(8, 34, 85, 1) 46.00000083446503%,
    rgba(21, 63, 146, 1) 100%
  );
  height: 425px;
  color: #ffff;
  padding-top: 60px;
}
.card-comparison {
  border-radius: none !important;
  box-shadow: 0px 1px 2px 0px rgba(142, 150, 185, 0.25);
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}

.card-comparison .highlight {
  background-color: #ced6fc;
}

.card-comparison .price {
  font-size: 2rem;
  color: #000;
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0 !important;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #000;
}

.features-list li i {
  margin-right: 10px;
}

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

.btn-demo {
  background-color: #2c3fc1;
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  margin-top: 20px;
}
.price-card {
  position: relative;
  margin-top: -130px;
}
/* Price table css end */
/* testimonial table css start */

/* #news-slider{
  margin-top: 80px;
} */
.post-slide {
  margin: 20px 41px 0px;
  box-shadow: 5px 2px 0px 0px rgba(92, 132, 245, 1);
  position: relative;
}
.post-slide .post-img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}
.post-slide .over-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 34, 85, 0.3);
  transition: all 0.5s linear;
}
.post-slide .post-content {
  color: #ffff;
  padding: 25px 45px 97px 106px;
  border-radius: 15px;
  position: relative;
  z-index: 10;
}
.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  line-height: 150%;
  margin: 25px 0;
  font-size: 16px;
}
.post-avatar {
  width: 114px !important;
  height: 114px !important;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  bottom: 10px;
  left: -41px;
  z-index: 10;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
}
.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}
@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

/* testimonial table css end */
/* faq section css start */
.accordion {
  --bs-accordion-btn-focus-box-shadow: none !important;
}
.accordion-item {
  border: 1px solid #d6d7da !important;
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid #d6d7da !important;
}
.accordion-button:not(.collapsed) {
  background-color: white !important;
  box-shadow: none !important;
}
/* faq section css end */
/* blog table css start */
.blog .card {
  box-shadow: 0px 1px 2px 0px rgba(8, 34, 85, 0.25) !important;
  background-color: #ffffff;
  border: none !important;
}
/* blog table css end */
/* Footer table css start */
.footer {
  background: linear-gradient(to right, #0a1c48, #0d2c85);
}

.footer-brand {
  font-size: 2rem;
}

.footer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d1d1;
}

.footer a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #6c757d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #d1d1d1;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #ffffff10;
  border-color: #ffffff;
  color: #ffffff;
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
/* Footer table css end */

/* pms page css start */
.feature-accordian {
  .accordion {
    --bs-accordion-border-color: none !important;
    --bs-accordion-border-radius: none !important;
  }

  .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e5e5e5 !important;
  }
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 20px 0;
    color: rgba(67, 68, 73, 1);
    font-size: 20px;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
  }

  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  .accordion button[aria-expanded="true"] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    /* transition: all 200ms linear; */
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1em;
  }
}
/* pms page css end */
/* about us page css start */
.team-card {
  box-shadow: var(--123-box-shadow, 5px 2px 0px 0px rgba(92, 132, 245, 1));
  border: none !important;
  border-radius: none !important;
  position: relative;
  max-width: 360px;
  max-height: 498px;
}
.team-overlay {
  /* background-color: rgba(8, 34, 85, 0.26); */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: background-color 0.4s ease, transform 0.4s ease;
}
.team-card:hover {
  .team-overlay {
    background-color: rgba(8, 34, 85, 0.13);
  }
}
.team-content {
  background-color: rgba(8, 34, 85, 0.26);
  padding: 17px 7px;
  color: var(--light);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid white;
  z-index: 10;
}
.team-social {
  height: 50px;
  width: 50px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* about us page css end */
/* contact us page css start */

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  border-radius: 0;
  color: #434449;
  padding: 20px 0;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
  color: #434449;
}
.info-box {
  border: 1px solid #ffffff33;
  padding: 15px;
  text-align: center;
  color: white;
  background-color: transparent;
}
.info-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid white;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* contact us page css end */
/* faq page css start */
.faq-tab .nav-link {
  padding-bottom: 10px;
}
.faq-tab .nav-link.active {
  border-bottom: 1px solid var(--primary);
}
/* faq page css end */

/* Media query start */
@media (max-width: 1440px) {
  .banner {
    height: 90vh;
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 41px 0;
  }
  .banner {
    height: 67vh;
  }
  .tooltip {
    width: 300px;
  }
  .price-card {
    margin-top: -105px;
  }
}
@media (max-width: 768px) {
  .main {
    margin-top: 52px;
  }
  .banner {
    height: 50vh;
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 43px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  .logo-img {
    width: 200px;
    height: auto;
  }
  .dropdown-menu {
    background-color: #ffff !important;
    padding: 0 0 !important;
    border: none !important;
  }
  .section {
    padding: 30px 0;
  }
  .section-content {
    font-size: 15px;
  }
  .price-card {
    margin-top: 0;
  }
  .accordion button[aria-expanded="true"] + .accordion-content {
    max-height: max-content !important;
  }
  .tooltip {
    width: 230px;
  }
  .rightBoxCard {
    height: auto;
    margin-bottom: 0;
  }
}
@media (max-width: 425px) {
  .logo-img {
    width: 174px;
    height: auto;
  }
  .banner {
    height: 28vh;
  }
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 17px;
  }
  h6 {
    font-size: 16px;
  }
  .section-content {
    font-size: 14px;
  }
  
  .main {
    margin-top: 51px;
  }
  .hamburger {
    right: 18px;
  }
  .rightBoxCard {
    height: auto;
    margin-bottom: 0;
    padding: 1rem;
  }
}

/* Media query end */

.circle_container {
  display: flex;
  justify-content: center;
}

.circle_wrap {
  position: relative;
  max-height: 500px;
}

.circle_line {
  width: 100%;
  top: 50%;
  border-bottom: 1px dashed var(--primary);
  height: 4px;
  position: absolute;
}

.circle_line.line2 {
  transform: rotate(-33deg);
}

.circle_line {
  width: 100%;
  top: 50%;
  border-bottom: 1px dashed var(--primary);
  height: 4px;
  position: absolute;
}

.circle_line.line3 {
  transform: rotate(33deg);
}

.circle_line {
  width: 100%;
  top: 50%;
  border-bottom: 1px dashed var(--primary);
  height: 4px;
  position: absolute;
}

.circle_line.line4 {
  transform: rotate(90deg);
}

.circle_line {
  width: 100%;
  top: 50%;
  border-bottom: 1px dashed var(--primary);
  height: 4px;
  position: absolute;
}

.circle {
  height: 500px;
  width: 500px;
  border: 1px dashed var(--primary);
  border-radius: 50%;
  position: relative;
}

.circle_hf_logo {
  position: absolute;
  background: white;
  width: 200px;
  top: 47%;
  left: 150px;
  z-index: 33;
}

.circle_item_1 {
  top: -45px;
  left: 50%;
  transform: translate(-50%);
}

.circle_item_2 {
  top: 84px;
  right: -28px;
}

.circle_item {
  z-index: 2;
  position: absolute;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.circle_item_block {
  width: 90px;
  height: 90px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  background-color: #fff;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.circle_item_name {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  transition: 0.4s;
  white-space: nowrap;
  background-color: #fff;
  position: absolute;
  bottom: -27px;
  z-index: 3;
}
.circle_item_block .item_img,
.list_item_block.blue_img {
  display: block;
}
.circle_item_block .active_img,
.list_item_block .active_img {
  display: none;
}
.circle_item:hover .item_img,
.circle_item.circle_item_active .item_img,
.list_item_block :hover .item_img,
.list_item.list_item_active .blue_img {
  display: none;
}
.circle_item:hover .active_img,
.circle_item.circle_item_active .active_img,
.list_item:hover .active_img,
.list_item.list_item_active .active_img {
  display: block;
}
.circle_item:hover .circle_item_name,
.list_item:hover .list_name {
  color: var(--primary);
}
.circle_item:hover .circle_item_block,
.list_item:hover .list_item_block {
  background-color: var(--primary);
}

.circle_item.circle_item_active .circle_item_block,
.list_item.list_item_active .list_item_block {
  background-color: var(--primary);
}

.circle_item.circle_item_active .circle_item_name,
.list_item.list_item_active .list_name {
  color: var(--primary);
}

.circle_item_3 {
  top: 340px;
  right: -13px;
}

.circle_item {
  z-index: 2;
  position: absolute;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.circle_item_4 {
  bottom: 26px;
  right: 26px;
}

.circle_item_5 {
  bottom: -44px;
  right: 207px;
}

.circle_item_6 {
  bottom: 72px;
  left: -18px;
}

.circle_item_7 {
  top: 83px;
  left: -25px;
}

.circle_item_8 {
  top: 30px;
  left: 26px;
}

.container_gray_mini {
  width: 100%;
  max-width: none;
  padding: 30px 30px 40px;
  margin: 0 0 0 auto;
  background-color: #f4f4f4b3;
  border-radius: 12px;
}

.list_container {
  overflow-x: auto; 
  display: none;
}
.list_wrap {
  position: relative;
  white-space: nowrap;
  /* overflow-y: hidden; */
  /* overflow-x: auto; */
  margin-bottom: 30px;
  height: 150px;
  max-height: 150px;
}
.list_item {
  display: inline-block;
  height: 140px;
  width: 116px;
  max-width: 116px;
  max-height: 140px;
}

.list_item_block {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid var(--primary);
  white-space: normal;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.list_item_block .active_img {
  display: none;
}

.list_name {
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center;
  white-space: normal;
  width: 120px;
  max-width: 120px;
  height: 56px;
  padding: 0 5px 20px;
  bottom: 3px;
  margin: 0 auto;
  position: absolute;
}

.list_item.list_item_active .list_item_block {
  background-color: var(--primary);
}

.list_divider {
  height: 1px;
  position: absolute;
  top: 35px;
  left: 40px;
  width: 649px;
  border-bottom: 1px dashed var(--primary);
}

.content-section {
  display: none;
}

.active-content {
  display: block;
}
@media (max-width: 768px) {
  .circle_wrap {
    display: none;
  }
  .list_container {
    display: block;
  }
}
.error{
  color: red;
}
.form-group {  
    margin-bottom: 1rem;
}
.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}