.about-section {
    margin-top: 70px;
    width: 90%;
    max-width: 1200px;
}

.loading-circle {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-section .about-imgs {
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
}
.about-section img {
    width: calc(50% - 10px);
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
}
.about-section .text {
    margin-top: 10px;
    padding: 5px 20px 20px 20px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    background-color: rgba(240,240,240,1);
    border-radius: 25px;
}
.about-section .text p.small {
    font-size: 14px;
    margin-top: 25px;
}
.about-section .text h2 {
    font-size: 32px;
    margin-top: 15px;
}
.about-section .text p {
    padding-top: 15px;
    font-size: 18px;
    line-height: 1.6;
}
.about-section .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.about-section .list .item {
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
    display: flex;
}
.about-section .list .item span {
    position: relative;
    top: 3px;
    margin-left: 0;
    color: var(--blue);
}
.about-section .list .item p {
    padding-top: 0;
    margin-left: 5px;
    width: 100%;
}
.about-section a {
    text-decoration: none;
}
.about-section .button {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: var(--blue);
    color: #FFFF;
    border-radius: 50px;
    line-height: 50px;
    user-select: none;
    cursor: pointer;
    transition: all .3s;
}
.about-section .button:hover {
    background-color: rgb(12, 29, 51);
}
.about-section .button p {
    padding: 0;
    line-height: 50px;
}

@media screen and (min-width: 1200px) {
    .about-section img {
        height: 500px;
    }
    .about-section .text {
        padding: 30px 90px 50px 90px;
    }
    .about-section .text h2 {
        font-size: 62px;
    }
    .about-section .text p.small {
        font-size: 16px;
    }
    .about-section .text p {
        font-size: 20px;
    }
    .about-section .list { 
        margin-top: 10px;
    }
    .about-section .list .item {
        margin-top: 20px;
        width: 100%;
        margin-left: 0;
        display: flex;
    }
    .about-section .list .item span {
        position: relative;
        top: 3px;
        margin-left: 0;
        color: var(--blue);
        font-size: 32px;
    }
    .about-section .list .item p {
        padding-top: 0;
        margin-left: 5px;
        width: 100%;
        font-size: 24px;
    }
    .about-section .button {
        margin-top: 50px;
    }
}