.form-cont .col-6,.form-cont .col-8{padding:0 15px}
/***CONTACT***/
.contact-sctn {
    padding-top: clamp(72px, 7%, 120px);
    padding-bottom: clamp(72px, 7%, 120px);
}
.contact-sctn .section-wrap {
    justify-content: space-between;
}
.contact-sctn .maintitle{
    color: var(--primary)
}
.contact-sctn .subtitle {
    font-size: clamp(18px, 2.3vw, 30px);
    font-weight:500;
}
.contact-sctn .form-col {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #000;
    padding:40px;
    color:var(--primary);
    z-index: 9;
	width: 100%;
}
.contact-sctn .bottom-col{
    display:flex;
	justify-content: flex-end;
	width: 65%;
}
.contact-sctn .title-col {
    width: 32%;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-sctn .title-col ul{
    margin: 0;
    padding:0;
    list-style:none;
}
.contact-sctn .title-col ul li{
    display:flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
    font-weight: 700;
}
.contact-sctn .title-col ul li a{
    color: var(--blue);
}
.contact-sctn .title-col ul li a:hover{
    color: var(--secondary);
}
.contact-sctn .title-col p{
    text-wrap:balance
}
@media(min-width:801px){
.contact-sctn .title-col p:last-child{
	margin:0
}
}
@media(max-width:1024px){
    .contact-sctn .form-col{
        padding:20px
    }
}
@media(max-width:800px){
    .contact-sctn .title-col{
        width: 100%;
        text-align:center;
        max-width: 500px;
    }
    .contact-sctn .bottom-col{
        width:100%;
        justify-content:center
    }
    .contact-sctn .section-wrap{
        justify-content:center
    }
    .contact-sctn .title-col ul{
        text-align:left;
        max-width:240px;
        margin-right:auto;
        margin-left:auto;
    }
    .contact-sctn .maintitle{
        margin-bottom: 12px
    }
}