.main-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 3px;
}

.mainarea {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.srbtn2 {
    text-align: center;
    width: 20px;
    height: 40px;
	  color: #070b14;
    background: white;
}


.hero {
    text-align: center;
    padding: 5px 50px 5px 50px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.hero2 {
    text-align: center;
    padding: 0px 8px 0px 8px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.hero-title {
    font-size: 2em;
}

.hero-paragraph {
    font-size: 1.2em;
}

.box {
    width: 300px;
    background-color: #070b14;
    border: 0.5px solid white;
    border-radius: 10px;
    margin: 3px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.box2 {
    width: 97%;
    background-color: #0b1120;
    border: 0.5px solid #0284c7;
    border-radius: 10px;
    margin: 3px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.box3 {
    width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.box4 {
    padding: 8px 5px 5px 5px;
    text-align: center;
    width: 40px;
    height: 40px;
    border: 0.5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.box:hover {
    transform: scale(1.015);
}

.box h3 {
    font-size: 1.5em;
	  color: #ffffff;
}

.box p {
    font-size: 1em;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #0284c7;
    background-color: #0b1120;
    border: 1px solid #0284c7;
    border-radius: 25px;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    color: #0284c7;
    background-color: #0c1b2b;
}

.btn2 {
    display: inline-block;
    margin: 0px 0px 6px 0px;
    padding: 5px 10px;
    text-decoration: none;
    color: #0284c7;
    background-color: #0b1120;
    border: 1px solid #0284c7;
    border-radius: 25px;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.white-link {
    color: #0284c7;
    text-decoration: none;
}

.white-link:hover {
    color: white;
}


hr.pten {
  margin-bottom: 10px;
}


.hidden {
    display: none; /* Hides filtered elements */
}