.about {
    background-color: #243253;
    color: white;
}

.about h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.about p:first-of-type,
.about p:nth-of-type(2),
.about p:nth-of-type(3){
    font-size: 16px;
    /* font-weight: bold; */
    margin-bottom: 22px;
    /* max-width: 500px; */
    text-align: justify;
}
/*
.about p:nth-of-type(3) {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    /* max-width: 500px; */
  /*  text-align: center;
    line-height: 22px;
}
*/
.about a {
    display: block;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    background-color: #0047ba;
    margin-bottom: 50px;
}

.about .counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid white;
}

.counter div {
    flex: 1 0 33.33%;
    text-align: center;
    margin-bottom: 20px;
}

.counter div:not(:last-child) {
    border-right: 1px solid white;
}

[dir="rtl"] .counter div:not(:last-child) {
    border-right: none;
    border-left: 1px solid white;
}

.counter h2 {
    font-size: 60px;
    font-weight: 100;
    margin-bottom: 15px;
}

.counter h3 {
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .counter div {
        flex-basis: 50%;
    }

    .counter div:is(:nth-child(2)) {
        border-right: none;
    }

    [dir="rtl"] .counter div:is(:nth-child(2)) {
        border-right: none;
        border-left: none;
    }

    .counter h2 {
        font-size: 30px;
    }

    .counter h3 {
        font-size: 18px;
    }
}

@media screen and (min-width: 1020px) {
    .about h1 {
        font-size: 24px;
        text-align: start;
    }

    .about p:first-of-type,
    .about p:nth-of-type(2) {
        font-size: 18px;
        /* max-width: 700px; */
        text-align: justify;
    }

    .about p:nth-of-type(3) {
        font-size: 16px;
        /* max-width: 700px; */
        line-height: 28px;
        text-align: justify;
    }

    .about a {
        margin-bottom: 100px;
    }
}
