* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #111827;
    overflow-x: hidden;
}

/* ---------------- Hero Section ---------------- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #111827;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    outline: none;
    border: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    letter-spacing: -0.04em;
    margin-bottom: 0;
    font-family: 'Onest', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.hero-content h1 span {
    color: #3AABEC;
}

.description {
    margin-top: 24px;
    font-size: 16px;
    justify-content: center;
}

.description p {
    font-family: 'Inter', sans-serif;
}

.btn {
    margin-top: 40px;
    display: inline-block;
    background: #3AABEC;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    border-radius: 12px;
    padding: 20px 30px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Avatars */
.avatars {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

/* ---------------- Pointers Section ---------------- */
.pointers-wrapper {
    max-width: 1100px;
    margin: 60px auto;
}

.pointers-heading {
    position: relative;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.pointers-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#93b7ef 1px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.8;
    z-index: -1;
}

.pointers-heading h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 20px;
}

.pointers-heading h2 span {
    color: #3AABEC;
}

.pointers-heading p {
    font-size: 16px;
    color: #374151;
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.pointers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.box {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 18px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon {
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    border: 1.5px solid #3AABEC;
    color: #3AABEC;
    font-weight: bold;
    font-size: 16px;
}

.box p {
    margin: 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #4b5563;
}

.box.highlighted {
    border-width: 2px;
    border-color: #3AABEC;
    box-shadow: 0px 8px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.5s ease-in-out;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .btn {
        padding: 18px 28px;
        font-size: 15px;
    }

    .avatars img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .description {
        font-size: 15px;
    }

    .pointers-heading h2 {
        font-size: 28px;
    }

    .pointers-heading p {
        font-size: 15px;
    }

    .pointers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .box {
        padding: 20px 15px;
    }

    .icon {
        min-width: 24px;
        min-height: 24px;
        font-size: 14px;
    }

    .box p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .description {
        font-size: 14px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 14px;
    }

    .avatars img {
        width: 40px;
        height: 40px;
    }

    .pointers-heading h2 {
        font-size: 24px;
    }

    .pointers-heading p {
        font-size: 14px;
    }

    .box {
        padding: 18px 12px;
        gap: 12px;
    }

    .icon {
        min-width: 20px;
        min-height: 20px;
        font-size: 12px;
    }

    .box p {
        font-size: 14px;
    }
}


/* ------------Pillars section----------- */

.pillars-section {
    text-align: center;
    padding: 80px 20px;
    background: #f9fafb;
}

.pillars-section h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 20px;
}

.pillars-section h2 span {
    color: #3AABEC;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 40px auto;
}

.pillar-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0px 8px 20px rgb(37 99 235 / 10%);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card img {
    width: 210px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.pillar-card h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    margin-bottom: 16px;
    color: #111827;
    transition: all 0.3s ease;
}

.pillar-card p {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    transition: all 0.3s ease;
}

/* Hover Effect */
.pillar-card:hover {
    background: #eef4ff;
    border: 1px solid #3AABEC;
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgb(37 99 235 / 20%);
}
/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
    .pillars-section h2 {
        font-size: 36px;
    }

    .pillar-card {
        padding: 30px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .pillar-card img {
        width: 120px;
        margin-bottom: 25px;
    }

    .pillar-card h3 {
        font-size: 18px;
    }

    .pillar-card p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pillars-section {
        padding: 60px 15px;
    }

    .pillar-card {
        padding: 25px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .pillar-card img {
        width: 80px;
        margin-bottom: 20px;
    }

    .pillar-card h3 {
        font-size: 17px;
    }

    .pillar-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pillars-section h2 {
        font-size: 28px;
    }

    .pillar-card {
        padding: 20px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .pillar-card img {
        width: 70px;
        margin-bottom: 15px;
    }

    .pillar-card h3 {
        font-size: 16px;
    }

    .pillar-card p {
        font-size: 13px;
    }
}



/* ------roadmap------ */
/* .roadmap-section {
    width: 100%;
    overflow: hidden;
    padding: 80px 20px;
}

.roadmap-section h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 40px;
    text-align: center;
}

.roadmap-section h2 span {
    color: #2563eb;
}

.roadmap-intro {
    font-size: 16px;
    color: #374151;
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.roadmap-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh * 4);
    overflow: hidden;
}

.roadmap-container {
    display: flex;
    position: sticky;
    top: 0;
    height: 100vh;
    width: calc(100vw * 4);
    transition: transform 0.6s ease-out;
}

.milestone {
    flex: 0 0 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e0f1ff;
    border-right: 1px solid #e5e7eb;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    transition: background 0.3s ease;
    padding: 60px;
}

.milestone:hover {
    background-color: #93b7ef;
} */

.milestone-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
    height: 100%;
}

.milestone-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.milestone-days {
    color: #111827;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: Onest, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.milestone-title {
    color: #111827;
    letter-spacing: -.02em;
    margin-bottom: 0;
    padding-right: 0;
    font-family: 'Onest', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}

.milestone-title span {
    color: #3AABEC;
}

.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.milestone-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    margin-bottom: 15px;
}

.milestone-list i {
    color: #3AABEC;
    font-size: 16px;
}

.milestone-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.milestone-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
}



/* Responsive */
@media (max-width: 900px) {

    .milestone-text,
    .milestone-image {
        flex: unset;
    }

    .milestone-title {
        font-size: 32px;
    }
}




:root {
    --gap: clamp(28px, 4vw, 64px);
    --track-padding: 10vw;
}

* {
    box-sizing: border-box;
}

.timeline-section {
    width: 100%;
    overflow: hidden;
}

.timeline-text-h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 40px;
    text-align: center;
    padding-top: 80px;
}

.timeline-text-h2 span {
    color: #3AABEC;
}

.timeline-text-p {
    font-size: 16px;
    color: #374151;
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Line at top */
.timeline-line {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3AABEC, #93b7ef);
    opacity: 0.25;
    z-index: 1;
}

/* Horizontal track */
.timeline-track {
    margin-right: 50px;
    margin-left: 50px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding-inline: 0;
    height: 100vh;
}

/* Item container */
.timeline-item {
    flex: 0 0 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3%;
    position: relative;
    z-index: 2;
    /* height: 800px;  */
    justify-content: flex-start;
}

/* Marker + connector */
.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3AABEC;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 0 0 4px #93b7ef;
}

i {
    font-size: 20px;
}

.timeline-connector {
    width: 2px;
    height: 70px;
    background: #3AABEC;
}

/* Card below the line */
.card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(11, 59, 126, 0.1);
    text-align: left;
    margin-top: 10px;
    transition: box-shadow 0.3s ease;
    height: 400px;
}

.card:hover {
    box-shadow: 0 20px 60px rgba(11, 59, 126, 0.15);
}

@media (max-width: 768px) {
    .timeline-line {
        top: 30%;
    }

    .timeline-item {
        margin-top: 30%;
    }
}




/* ---------case study-------- */

.case-study-section {
    margin-bottom: -150px;
}

.case-study-h2 {
    padding: 80px 20px;
    background-color: #3AABEC;
    height: 380px;
}

.case-study-section h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.case-study-box {
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
}

.case-study-image {
    flex: 1;
}

.case-study-image img {
    width: 440px;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    flex: 1;
    text-align: left;
}

.case-study-quote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

.case-study-desc {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    margin-bottom: 25px;
}

.case-study-btn {
    display: inline-block;
    background: #3AABEC;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    border-radius: 12px;
    padding: 20px 30px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.case-study-btn:hover {
    background: #1d4ed8;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
    .case-study-box {
        margin-top: 120px;
        gap: 30px;
        padding: 30px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .case-study-quote {
        font-size: 18px;
    }

    .case-study-desc {
        font-size: 15px;
    }

    .case-study-btn {
        padding: 18px 28px;
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .case-study-box {
        flex-direction: column;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
        padding: 25px;
    }

    .case-study-content {
        text-align: center;
    }

    .case-study-quote {
        font-size: 18px;
    }

    .case-study-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .case-study-h2 {
        height: auto;
        padding: 60px 15px;
    }

    .case-study-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .case-study-box {
        padding: 20px;
        gap: 20px;
    }

    .case-study-quote {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .case-study-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .case-study-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .case-study-section h2 {
        font-size: 28px;
    }

    .case-study-box {
        padding: 15px;
    }

    .case-study-quote {
        font-size: 15px;
    }

    .case-study-desc {
        font-size: 13px;
    }

    .case-study-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .case-study-image img {
        height: auto;
    }
}




/* ---------------why us----------- */

.why-us {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.why-us-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.why-us-image {
    flex: 1;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.why-us-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us-text h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 40px;
}

.why-us-text h2 span {
    color: #3AABEC;
}

.why-us-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-text li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    margin-bottom: 15px;
}

.why-us-text .icon {
    color: #3AABEC;
    font-size: 18px;
}

/* ---------------- Responsive Styles ---------------- */
@media (max-width: 1200px) {
    .why-us-container {
        gap: 30px;
    }

    .why-us-text li {
        font-size: 18px;
    }

    .why-us-text .icon {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .why-us-container {
        flex-direction: column;
        gap: 25px;
    }

    .why-us-text h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .why-us-text li {
        font-size: 17px;
        gap: 15px;
    }

    .why-us-text .icon {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 0 15px;
        margin: 60px auto;
    }

    .why-us-text h2 {
        font-size: 28px;
    }

    .why-us-text li {
        font-size: 16px;
        gap: 12px;
    }

    .why-us-text .icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 0 10px;
        margin: 50px auto;
    }

    .why-us-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .why-us-text li {
        font-size: 15px;
        gap: 10px;
    }

    .why-us-text .icon {
        font-size: 13px;
    }
}


/* -------------how it works-------------- */

.how-it-works {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 40px;
}

.how-it-works h2 span {
    color: #3AABEC;
}

.works-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.work-box {
    background: #dbeeff;
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
    padding: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.work-box:hover {
    background: #2d72e3;
}

.work-box h3 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    margin-bottom: 25px;
    color: #111827;
}

.work-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* ---------------- Responsive Styles ---------------- */
@media (max-width: 1200px) {
    .works-container {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .how-it-works h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .work-box {
        min-width: 220px;
        padding: 20px;
    }

    .work-box h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .work-box img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 0 15px;
        margin: 60px auto;
    }

    .works-container {
        flex-direction: column;
        gap: 20px;
    }

    .work-box {
        width: 100%;
        min-width: auto;
    }

    .work-box h3 {
        font-size: 16px;
    }

    .work-box img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        margin: 50px auto;
    }

    .how-it-works h2 {
        font-size: 28px;
    }

    .work-box {
        padding: 15px;
        border-radius: 10px;
    }

    .work-box h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .work-box img {
        height: 120px;
    }
}


/* ----------faqs--------- */

.faq-section {
    padding: 80px 20px;
    background-color: #e0f1ff;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #111827;
    margin-bottom: 20px;
}

.faq-section h2 span {
    color: #3AABEC;
}

.faq-container {
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 40px auto;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #dadada;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px 0 24px;
    letter-spacing: -.02em;
    margin-bottom: 18px;
    padding-right: 72px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    display: block;
}

.faq-answer p {
    margin: 15px 0;
    color: #4b5563;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* adjust if answer is longer */
}

.faq-item.active .arrow {
    transform: rotate(45deg);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
}

/* ------------------- Responsive Styles ------------------- */
@media (max-width: 1200px) {
    .faq-container {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 20px;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 28px;
        padding-right: 40px;
    }

    .arrow {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 10px;
    }

    .faq-section h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 24px;
        padding-right: 30px;
    }

    .arrow {
        font-size: 16px;
    }
}