.headingCont{
    display: flex;
    width: 100%;
    margin-top: 1rem;
    flex-direction: column;
    row-gap: 1rem;
    background: #fff;
    border-bottom: 1px solid #f7f7f7;
}
.headingCont .container{
    margin-top: 2rem;
    display: flex;
    width: 100%;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    gap: .5rem;
    flex-direction: column;
}
.headingCont .container .imgCont{
    width: 100%;
    display: flex;
    justify-content: center;
}
.headingCont .container .imgCont img{
    width: 50%;
    border-radius: 4rem;
    filter: brightness(1.035);
}



.headingCont .container .textCont{
    width: 100%;
}

.headingCont .container .textCont h1{
    color: var(--accent);
    font-weight: 100;
    font-size: clamp(1.5rem, 3vw, 4rem);
    text-align: center;
}
.headingCont .container .textCont h2{
    font-size: clamp(2rem, 3vw, 4rem);
    text-align: center;
    font-weight: 700;
    color: #444;    
}
.headingCont .container .textCont h3{
    font-size: clamp(1.5rem, 2vw, 3rem);
    text-align: center;
    font-weight: 700;
    color: #666;
}
.headingCont .container .textCont li{
    text-align: left;
    color: #666;
    font-size: clamp(.7rem, 2vw, 1rem);
    list-style:inside;
}
.headingCont .container .textCont li:nth-child(1){
    margin-top: 2rem;
}

.headingCont .btnsCont{
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
    width: 100%;
}
.headingCont .btnsCont a{
    height: 2rem;
    width: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    border: 2px solid var(--accent);
}
.headingCont .btnsCont a:nth-child(1){
    background: var(--accent);
    color: #fff;
}
.headingCont .btnsCont a:nth-child(2){
    color: var(--accent);
}
.headingCont .btnsCont a:nth-child(2):hover{
    background: var(--accent);
    color: #fff;
}


.social{
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    padding: .3rem;
    background: #ffff;
    border-radius:3rem;
    gap: .3rem;
    width: max-content;
    box-shadow: 0 7px 18px rgba(0, 33, 63, 0.2);
    /* margin-left: auto; */
}

.social p{
    font-size: .5rem;
    color: #999;
}


@media(max-width:920px){
    .headingCont .container .imgCont img{
        width: 100%;
    }
    .social{
        margin-left: unset;
    }
}






.social .item{
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0, #f0f0f0, #f2f2f2);
    border-radius: 50%;
    padding: .4rem;
}
.social .item a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfdfdf;
    background: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 5px 8px rgba(0, 3, 49, 0.08);
}
.social .item a:hover{
    color: var(--accent);
    box-shadow: 0 5px 8px rgba(0,0,0, .180);
}