.btn {
    display: inline-block;
    padding: 11px 26px;
    background: var(--main-color);
    color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .50s ease;
}

.btn:hover {
    background: transparent;
    color: var(--main-color);
    box-shadow: 0 0 20px var(--main-color);
}

.btn2 {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    margin-left: 15px;
    transition: all .50s ease;
}

.btn2:hover {
    background: var(--main-color);
    color: var(--bg-color);
}
.ap{
    background: var(--second-bg-color);
}
.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-top: 0.8rem;
}

.about-img img {
    width: 100%;
    height: 80%;
    max-width: 90%;
    border-radius: 28px;
    object-fit: cover;
    border: 7px solid var(--main-color);
    box-shadow: 0 0 20px var(--main-color);

}

.about-text h2 {
    font-size: var(--h3-font);
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-text h3 {
    line-height: 1.3;
    margin-bottom: 10px;
}
.exp-area {
    margin-bottom: 20px;
}

.exp-area p span {
    color: var(--other-color);
    font-size: var(--p-font);
    font-weight: 400;
    margin-left: 8px;
}
.exp-area p {
    font-size: 26px;
    font-weight: 400;
    margin-left: 8px;
}
.exp-area2 p {
    font-size: 16px;
    font-weight: 300;
    margin-left: 8px;
}
.download {
    margin-top: 25px;
    text-align: center;
    font-size: var(--h3-font);
}
.main-btn{
    margin-top: 20px;
}

.center-text {
    text-align: center;
    position: relative;
}

.center-text h2 {
    font-size: var(--h2-font);
}
.center-text:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    width: 50%;
    height: .4rem;
    z-index: 1;
    transition: transform .5s linear;
    box-shadow: 0 0 20px var(--main-color);
}

.footer {
    background: var(--bg-color);
}

@media (max-width: 1240px) {
    .about {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-img img {
        text-align: center;
        width: 100%;
        height: 400px;
        max-width: 600px;
        border-radius: 28px;
        object-fit: cover;
        margin-top: 2rem;
    }
    
}
@media (max-width: 572px) {
    .exp-area p {
        font-size: 16px;
        font-weight: 300;
        margin-left: 8px;
    }
    .exp-area2 p {
        font-size: 16px;
        font-weight: 300;
        margin-left: 8px;
    }
    .center-text h2 {
        font-size: var(--h3-font);
    }
    .btn {
        display: inline-block;
        padding: 11px 26px;
        background: var(--main-color);
        color: var(--bg-color);
        border: 2px solid var(--main-color);
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        transition: all .50s ease;
        margin: 0.5rem;
    }
}
@media (max-width: 470px) {
    .about-img img {
        text-align: center;
        width: 100%;
        height: 300px;
        max-width: 300px;
        border-radius: 28px;
        object-fit: cover;
        margin-top: 1.5rem;
    }

    .exp-area p {
        font-size: 16px;
        font-weight: 300;
        margin-left: 8px;
    }
    .exp-area2 p {
        font-size: 16px;
        font-weight: 300;
        margin-left: 8px;
    }
    .center-text h2 {
        font-size: var(--h3-font);
    }
    .btn {
        display: inline-block;
        padding: 11px 26px;
        background: var(--main-color);
        color: var(--bg-color);
        border: 2px solid var(--main-color);
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        transition: all .50s ease;
        margin: 0.2rem;
    }
}