.top-article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.top-article .right-top-article {
    width: 40%;
}
.top-article .right-top-article img {
    width: 100%;
}
.top-article .left-top-article {
    width: 45%;
}
.top-article .left-top-article h1 {
    font-size: var(--ft);
    color: var(--txt3);
}
.top-article .left-top-article p {
    font-size: var(--fp);
    color: var(--txt2);
    line-height: var(--lh);
    font-weight: 300;
    margin: 25px 0;
    text-align: justify;
}
.sec2 {
	margin-top: 60px;
}
.sec2>ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.about-page {
    position: relative;
}
.about-page:after {
    content: '';
    position: absolute;
    background-image: url(../img/Intersect.svg);
    width: 25%;
    height: 375px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    right: 0;
    bottom: -100px;
}

.sec2>ul>li {
    width: 31%;
    box-shadow: var(--bs);
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--br2);
}
.sec2>ul>li img {
    display: block;
    margin: 0 auto;
}
.title-sec-2 {
    text-align: center;
    margin: 20px 0;
    color: var(--txt4);
    font-size: var(--ft2);
    font-weight: 500;
}

.sec2>ul>li p {
    font-weight: 100;
    font-size: var(--fp);
    line-height: var(--lh);
    text-align: center;
    color: var(--txt4);
}
.main-txt-about , .left-vision {
    color: var(--txt4);
    font-size: var(--fp);
    line-height: var(--lh);
    font-weight: 400;
}
h2 ,h3 ,h4 {
    font-size: var(--ft);
	color:var(--txt3);
    font-weight: 600;
}
.vision {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-top: 60px;
}
.vision .right-vision {
    width: 50%;
}
.vision .left-vision {
    width: 48%;
}
.faq {
    padding: var(--pad);
}
.qWrapper {
    transition: all ease-in-out .4s;
    width: 100%;
    overflow: hidden;
    max-height: 70px;
    padding: 0 30px;
    border-radius: var(--br);
    box-shadow: var(--bs);
    margin-bottom: 20px;
    box-sizing: border-box;

}
div.content > div:last-of-type ~ hr {
    display: none;
}
.collapse {
    max-height: 600px;
    background-color: #EAF7FF;
}
.qTitle {
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
    cursor: pointer;  
}
.qTitle h4 {
    font-size: var(--ft2);
    color: var(--txt3);
}
.qTitle .qArrow {
    width: 20px;
    height: 20px;
	min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out .4s;
    background-image: url(../img/plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.qWrapper p {
    color: var(--txt2);
    font-size: var(--fp);
    font-weight: 300;
    line-height: var(--lh);
}
.qWrapper p a {
	color: var(--m);
}
.collapse .qTitle .qArrow {
    background-image: url(../img/mines.svg);
    background-position: center;
}
article.postsingle .txtpost, .archivepage .subtxtcat {
    margin-top: 60px !important;
}
.titleFAQ {
	font-weight: bold;
    font-size: var(--ft);
    color: var(--m);
}

@media screen and (max-width: 768px) {
    .top-article {
        flex-direction: column-reverse;
    }
    .top-article .left-top-article {
        width: 100%;
		margin-top: 2rem;
    }
    .top-article .right-top-article {
        width: 75%;
    }
    .sec2>ul {
        flex-wrap: wrap;
    }
    .sec2>ul>li , .vision .right-vision ,.vision .left-vision {
        width: 100%;
    }
    .vision .right-vision img {
        width: 100%;
    }
    .vision {
        flex-wrap: wrap;
    }
    .faq {
        padding: var(--pad2);
		margin-bottom: 5rem;
    }
    .qWrapper {
        padding: 0 20px;
    }
    .qTitle h4 {
        font-size: var(--fp);
    }
    .qTitle .qArrow {
        width: 10px;
        height: 10px;
        min-width: 10px;
    }
    footer {
        margin-top: 125px !important;
    }
	
	.about-page:after{
		display: none;
	}
}
@media screen and (max-width: 576px) {
    ul.archivepost li a .underImgunderarticles img {
        width: 80px;
        height: 80px;
    }
    ul.archivepost ul li {
        height: auto;
    }
}