.blog-post {
    padding: 45px 0 76px;
}

.blog-post-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.blog-post__wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-post-box-left {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
    background-color: #F5FCFF;
    order: 1;
}

.blog-post-image {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.blog-post-image-content {
    padding: 20px 19px 30px 20px;
}

.blog-post-image-content h4 {
    color: var(--dark);
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.blog-post-image-content span {
    font-style: italic;
    font-size: 17px;
    padding-bottom: 20px;
    display: block;
}

.blog-post-box-right {
    width: 100%;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-top: 40px;
    padding: 30px 26px 39px;
    text-align: center;
    order: 2;
}

.blog-post-box-right h3 {
    font-size: 26px;
    padding-bottom: 15px;
    line-height: 1.46em;
    color: var(--loyal-blue);
}

.blog-post-box-right .form-col {
    width: 100%;
    margin: 0 0;
    padding: 0 0;
    position: relative;
}

.blog-post-box-right .form-col input {
    width: 100%;
    background-color: #F5FCFF;
    border: 1px solid var(--loyal-blue);
    height: 58px;
    border-radius: 40px;
    padding: 0 57px 0 29px;
    color: #343434;
    font-size: 18px;
}

.blog-post-box-right .form-col input::placeholder {
    color: #343434;
    opacity: 1;
}

.blog-post-box-right .form-col button {
    border: none;
    background-color: transparent;
    padding: 0 0;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    height: 100%;
    width: 42px;
    text-align: left;
    max-height: 58px;
    overflow: hidden;
}

.blog-post-box-right .form-col .btn-submit i {
    transition: var(--transition-ease);
}

@media(min-width: 768px) {
    .blog-post-heading {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .blog-post-heading h2 {
        padding-bottom: 0;
    }

    .blog-post-image-content {
        padding: 40px 40px 50px;
    }

    .blog-post-image-content h4 {
        padding-bottom: 2px;
    }

    .blog-post-image-content span {
        font-style: italic;
        font-size: 17px;
        padding-bottom: 15px;
    }

    .blog-post__wrapper {
        margin-top: 30px;
    }

    .blog-post-box-right .form-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-post-box-right {
        padding: 45px 26px 47px;
      }

    .blog-post-box-right h3 {
        padding-bottom: 20px;
    }
}

@media(min-width: 1200px) {
    .blog-post {
        padding: 47px 0 100px;
    }

    .blog-post__wrapper {
        margin-top: 26px;
        width: 100%;
    }

    .blog-post_wrapper:hover img {
        transform: scale(1.05);
    }

    .blog-post_wrapper:hover .btn-primary {
        box-shadow: 0 3px 6px rgba(9,59,83,.2);
        border-color: var(--aqua-blue);
        color: var(--aqua-blue);
        background: var(--white);
    }

    .blog-post-image-content {
        padding: 35px 50px;
    }

    .blog-post-box-right h3 {
        padding: 0 8px 12px;
    }

    .blog-post-box-right .form-col input:focus {
        box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
    }

    .blog-post-box-right .form-col .btn-submit:hover i {
        margin-left: 5px;
    }
}

@media(min-width: 1366px) {
    .blog-post-box-left {
        width: 678px;
    }

    .blog-post-box-right {
        margin-top: 0;
        width: 358px;
    }
}