.container-h {
    margin-top: 120px;
    padding: 20px 0;
}
.para-title {
    font-size: 15px;
    text-align: center;
    color: #0B243D;
    text-transform: uppercase;
}
.heading-1 {
    font-size: 24px;
    color: #0B243D;
    text-transform: uppercase;
    text-align: center;
}
.container-b {
    padding: 20px 0;
    border-bottom: 1px solid #A0ACB6;
}
.img-wrapper {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-wrapper {
    padding: 20px 0;
}
.heading-2 {
    font-size: 20px;
    text-transform: uppercase;
}
.visit-link {
    font-size: 13px;
    font-family: Karla, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #030F20;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    text-decoration: none;
}
.visit-link::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url('../img/visit-url.png') no-repeat center center / 100%;
    margin-left: 10px;
}
.para-1 {
    font-size: 14px;
    color: #333;
}
.phone-number {
    font-size: 16px;
    font-family: Karla, Arial, Helvetica, sans-serif;
    color: #333;
}
.phone-number::before {
    content: '';
    width: 10px;
    height: 10px;
    display: inline-block;
    background: url('../img/phone-red.png') no-repeat center center / 100%;
    margin-right: 15px;
}
.email {
    font-size: 12px;
    color: #333;
}
.email::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url('../img/email-red.png') no-repeat center center / 100%;
    margin-right: 14px;
    margin-bottom: -4px;
}
.follow {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.yt-icon {
    width: 20px;
    margin-right: 20px;
    cursor: pointer;
}
.fb-icon,
.ig-icon {
    width: 18px;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.yt-icon:hover,
.fb-icon:hover,
.ig-icon:hover {
    transform: scale(1.2);
}
.container-grid {
    padding: 40px 0;
}
.content-card {
    padding-bottom: 25px;
    margin-bottom: 20px;
}
.content-title {
    font-size: 19px;
    color: #030F20;
    font-family: 'Kaisei Opti', 'Times New Roman', Times, serif;
    text-transform: uppercase;
    line-height: 2rem;
}
.break-word-md {
    display: none;
}
.fluid-style {
    background-color: #F8F8F8;
    padding: 40px 0;
}
.content-1 {
    padding: 20px 0;
}
.form-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #133957;
    letter-spacing: 0.05rem;
}
.form-input {
    border: none;
    border-bottom: 1px solid #838F99;
    background-color: #F8F8F8;
    width: 100%;
    font-size: 16px;
    padding: 5px 0;
    font-family: Karla, Arial, Helvetica, sans-serif;
    color: #333;
}
.form-input:focus,
.form-select:focus,
.form-text:focus {
    outline: none;
    box-shadow: none;
}
.form-input::placeholder {
    color: #eee;
}
.form-select {
    width: 100%;
    appearance: none;
    border: none;
    background-color: #F8F8F8;
    border-bottom: 1px solid #838F99;
    border-radius: 0;
    padding: 5px 0;
    color: #333;
    font-size: 16px;
    background-image: url('../img/arr-down-red.png');
    background-size: 15px;
    font-family: Karla, Arial, Helvetica, sans-serif;
}
.form-text {
    display: block;
    border: none;
    background-color: white;
    resize: none;
    width: 100%;
    padding-left: 5px;
    color: #333;
    font-size: 16px;
}
.submit-btn {
    background-color: white;
    border: 1px solid #A5312D;
    width: 100px;
    text-transform: uppercase;
    color: #B32225;
    font-size: 14px;
    padding: 5px 10px;
    font-family: Karla, Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 10px 0;
    transition: background-color 0.3s ease;
    letter-spacing: 0.05rem;
}
.submit-btn:hover {
    background-color: #B32225;
    color: white;
}
.file-name {
    font-size: 12px;
    color: #9DACB7;
    display: inline-block;
    margin-bottom: 0;
}
.upload-form {
    font-size: 16px;
    color: #133957;
    text-transform: uppercase;
    font-family: 'Kaisei Opti', 'Times New Roman', Times, serif;
    margin-right: 10px;
}
.upload-wrapper {
    overflow: hidden;
}
.upload-container {
    padding: 20px 0;
}

@media screen and (min-width: 768px) {
    .heading-1 {
        font-size: 34px;
    }
    .container-b {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .img-wrapper {
        width: 100%;
        height: 280px;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        position: relative;
    }
    .img-wrapper img {
        width: 65%;
    }
    .img-wrapper::after {
        content: '';
        width: 5px;
        height: 30px;
        background-color: #D8DEE3;
        border-radius: 5px;
        position: absolute;
        top: 0;
        right: 30px;
    }
    .container-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .break-word-md {
        display: block;
    }
    .fluid-style {
        padding: 60px 0;
    }
    .wrapper-1 {
        display: flex;
        align-items: center;
        max-width: 570px;
        margin: 0 auto;
    }
    .wrapper-2 {
        max-width: 570px;
        margin: 0 auto;
        padding: 20px;
    }
    .content-1 {
        width: 50%;
        padding: 20px;
    }
    .upload-container {
        max-width: 570px;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .upload-container div {
        width: 50%;
    }
    .upload-container .submit-wrapper {
        display: flex;
        justify-content: flex-end;
    }
    .heading-2.title {
        font-size: 30px;
    }
}
@media screen and (min-width: 1024px) {
    .container-b {
        padding-bottom: 60px;
        max-width: 750px;
        margin: 0 auto;
    }
    .img-wrapper {
        height: 320px;
        padding-left: 60px;
        justify-content: flex-start;
    }
    .container-grid {
        padding-bottom: 60px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .content-wrapper {
        padding-left: 20px;
    }
    .img-wrapper img {
        width: 73%;
    }
    .img-wrapper::after {
        right: 50px;
    }
    .wrapper-1,
    .wrapper-2,
    .upload-container {
        max-width: 750px;
    }
    .wrapper-2,
    .upload-container {
        padding: 20px 0;
    }
    .content-1.pl-0{
        padding-left: 0;
        padding-right: 40px;
    }
    .content-1.pr-0{
        padding-left: 40px;
        padding-right: 0;
    }
    .heading-1 {
        font-size: 40px;
    }
    .heading-2.title {
        font-size: 34px;
    }
    .upload-container div:first-child {
        width: 70%;
    }
}
@media screen and (min-width: 1200px) {
    .container-b {
        max-width: 870px;
    }
    .img-wrapper img {
        width: 70%;
    }
    .img-wrapper {
        padding-left: 60px;
        height: 370px;
        margin-left: 40px;
    }
    .container-grid {
        max-width: 870px;
        margin: 0 auto;
    }
    .wrapper-1, .wrapper-2, .upload-container {
        max-width: 800px;
    }
    .img-wrapper::after {
        right: 70px;
    }
}
@media screen and (min-width: 1400px) {
    .container-b,
    .container-grid {
        max-width: 950px;
    }
    .img-wrapper img {
        width: 65%;
    }
    .img-wrapper::after {
        right: 100px;
    }
}
