.ed-section-hero .ed-section-content{
    padding: 0 20px;
    display: flex;
}
.ed-hero-box{
    padding: 80px;
    background-color: #E7F4FD;
    width: 50%;
}
.ed-hero-box .ed-title{
    font-family: "Sora";
    margin: 0;
    font-size: 50px;
    font-weight: 300;
}
.ed-hero-box .ed-description{
    margin: 30px 0 30px 0;
    font-size: 18px;
    line-height: 1.6em;
}
.ed-hero-box .ed-actions{
    display: flex;
    width: 100%;
    column-gap: 40px;
}
.ed-hero-box .ed-actions .ed-call{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.ed-hero-box .ed-button{
    background-color: #004975;
    color: #fff;
    border-radius: 5px;
    outline: none;
    text-decoration: none;
    border: none;
    padding: 15px 40px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
}
.ed-image{
    width: 50%;
    object-fit: cover;
}

.ed-section-contact{
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 0 auto;
}
.ed-section-contact .ed-section-content{
    padding:0 20px;
    display: flex;
    column-gap: 60px;
}
.ed-section-contact .ed-contact-box{
    width: 50%;
}
.ed-section-contact .ed-title{
    font-family: "Sora";
    font-size: 40px;
    margin: 0;
    font-weight: 300;
    color: #1a1a1a;
}
.ed-section-contact .ed-description{
    margin: 30px 0 50px 0;
    color: #444;
    font-size: 18px;
}
.ed-section-contact .ed-details{
    display: flex;
    column-gap: 40px;
    font-size: 18px;
    color: #444;
}
.ed-section-contact .ed-details .ed-title{
    font-size: 18px;
    font-weight: 600;
    color: #95949C;
}

.ed-section-contact .ed-contact-form-holder{
    width: 50%;
}




@media screen and (max-width: 1023px){
    .ed-section-hero{
        height: 400px;
    }
    .ed-section-hero .ed-section-content{
        flex-direction: column-reverse;
        padding: 0;
        height: 100%;
        position: relative;
    }
    .ed-image{
        width: 100%;
        height: 100%;
    }
    .ed-hero-box{
        width: calc(100% - 80px);
        padding: 20px;
        position: absolute;
        top: 50%;
        left: 20px;
        max-width: 600px;
        transform: translateY(-50%);
    }
    .ed-hero-box .ed-title{
        font-size: 30px;
    }
    .ed-hero-box .ed-description{
        font-size: 16px;
    }
    .ed-hero-box .ed-button{
        padding: 15px 20px;
    }
    .ed-section-contact .ed-section-content{
        flex-direction: column;
    }
    .ed-section-contact .ed-contact-box{
        width: 100%;
    }
    .ed-section-contact .ed-contact-form-holder{
        width: 100%;
    }
    .ed-section-contact .ed-title{
        font-size: 30px;
    }
    .ed-section-contact .ed-description{
        font-size: 16px;
    }
}