  :root {
  /**
     @color declaration
     */
  --clr-common-white: #ffffff;
  --clr-common-black: #222222;
  --clr-common-border: #c7c7c7;
  --clr-common-placeholder: #aaa;
  --clr-theme-1: #1f4941;
  --clr-theme-2: #8098ff !important;
  --clr-theme-3: #7c7c7c;
  --clr-bg-1: #1f4941;
  --clr-bg-2: #8098ff;
  --clr-bg-3: #fffcf6;
  --clr-bg-4: #f2f2f2;
}
        .bd-theme-settings-area {
            display: none;
        }
        .investigation-steps {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title .subtitle {
  color: #6c63ff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-title .title {
  font-size: 32px;
  font-weight: 700;
  color: #233;
  margin-top: 10px;
}

.process-box {
 /* background-color: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;*/
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  height: 100%;
}

.process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.process-icon {
  width: 50px;
  height: 50px;
  background-color: #fd1916;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-box h5 {
  font-weight: 600;
  color: #233;
  margin-bottom: 10px;
}

.process-box p {
  color: #555;
  font-size: 14px;
}


.process-main-box:hover .process-box h5,.process-main-box:hover .process-box p {
    color: white;
}

.header-logo img{
    width: 295px;
}

.bd-section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #fd1916;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 15px;
  line-height: 1;
  margin-bottom: 30px;
  margin-top: -3px;
}
.activity-content {
    border: 1px solid #d3d3d3;
    padding: 20px 20px 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--clr-common-white);
}

.process-box {
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 10px;
}

@media only screen and (max-width: 600px) {
  .arm-counter-item-wrapper {
    display: flex;
    gap: 2px 2px;
    flex-wrap: nowrap;
}

.pt-130 {
    padding-top: 10px;
}
.pb-130 {
    padding-bottom: 10px;
}
}


.custom-number {
    font-size: 50px;
    -webkit-text-stroke: 5px #fd1916;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0 25px;
    display: inline-block;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.line_wrap .line_item {
    width: 100%;
    float: left;
    height: 100%;
    position: relative;
    display: inline-block;
    border-right: none;
}
details {
    position: relative;
     /*margin-top: -30px;*/
}
details summary {
    display: block;
    cursor: pointer;
    color: red;
}
details summary:focus {
    outline: none;
}
details[open] {
    display: block;
    padding-bottom: 25px;
    animation: open 0.2s linear;
}
details[open] summary {
    position: absolute;
    bottom: 0;
    left: 0;
}
details #open {
    padding-left: 5px;
    text-align: middle;
}
details[open] #open {
    display: none;
}
details #close {
    display: none;
}
details[open] #close {
    display: block;
}
::-webkit-details-marker {
    display: none;
}
@keyframes open {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.details-1 #open {
    padding-left: 5px;
    text-align: middle;
    margin-left: 50%;
}
@media only screen and (max-width: 600px) {
    .details-1 #open {
        padding-left: 5px;
        text-align: middle;
        margin-left: 0%;
    }
}

.details-1 .circle-btn {
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-theme-2);
    border: 1px solid var(--clr-common-border);
    border-radius: 50%;
    font-size: 25px;
    font-weight: 400;
    position: relative;
}

