.img-banner-custom {
    width: 100%; 
    border-radius: 20px;
}

.custom-h4 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 0px;
        color: #2d4a73;
        font-weight: 700;
    }
    .blue-list {
        list-style: none;
        padding-left: 0px;
    }

    .custom-p {
        font-size: 25px;
    }

    .blue-list li {
        font-size: 18px;
        position: relative;
        margin-bottom: 0.5em;
        padding-left: 1.2em;
        font-weight: 600;
    }

    .frame-custom {
        border-radius: 20px;
    }

    .blue-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 15px;
        height: 15px;
        background-color: #2d4a73;
    }

    .imgs-block, .job-block {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }

    .col-4-custom {
        width: 24%;
    }

    .about-block-img-custom, .job {
        border: 2px solid #2d4a73;
        border-radius: 20px;
        width: 100%;
        object-fit: cover;
    }

    .job {
        object-fit: contain;
    }

    .ceh, .job {
        height: 174px;
    }
    .about-block-text-custom {
        margin: 10px 0px;
        font-weight: 600;
    }

    .custom-table {
        border-collapse: separate;
        border-spacing: 5px;
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        max-width: 1200px;
        margin-left: -5px;
    }

    .custom-table th, .custom-table td {
        padding: 5px;
        background-color: white;
    }

    .custom-table th {
        background-color: #f6f6f6;
        color: #2d4a73;
        text-align: left;
        font-weight: bold;
        padding: 5px;
    }

    .custom-table tbody tr:nth-child(odd) td {
        background-color: #f6f6f6;
    }

    .custom-table tbody tr:nth-child(even) td {
        background-color: #e3e3e3;
    }
    
    .frame-container {
        display: flex;
        justify-content: center;
    }

    .blue-fon {
        background-color: #004773;
        margin-top: 30px;
        border-radius: 20px;
    }

    .blue-fon .custom-h4 {
        color: white;
    }

    .form-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .row-form {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .row-form.center {
        justify-content: center;
    }

    .button-form-custom {
        background: white;
        color: #004773;
        border: 2px solid white;
        border-radius: 20px;
        font-size: 16px;
        font-weight: 600;
        padding: 5px 40px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .button-form-custom:hover {
        background: transparent;
        color: white;
    }

    .col-2-custom {
        width: 49%;
    }

    .form-input-custom {
        width: 100%;
        border-radius: 10px;
        padding: 5px 10px !important;
        font-size: 16px;
        line-height: 20px;
    }

    textarea.form-input-custom {
        height: 4em !important;
    }

    .form-input-custom::placeholder {
        color: #004773 !important;
        font-size: 16px;
        line-height: 20px;
    }

    .modal-custom {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content-custom {
    background-color: white;
    border: 3px solid #004773;
    border-radius: 20px;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.close-custom {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

   
    @media (min-width: 1600px) {
        .container.custom {
            padding: 0px 150px;
        }
    }
    

    @media (max-width: 2000px) {
        .ceh, .job {
            height: 170px;
        }
    }

    @media (max-width: 1600px) {
        .ceh, .job {
            height: 130px;
        }
    }

    @media (max-width: 1400px) {
        .ceh, .job {
            height: 130px;
        }
    }

    @media (max-width: 1200px) {
        .ceh, .job {
            height: 120px;
        }
    }

    @media (max-width: 991px) {
        .col-4-custom {
            width: 49%;
        }

        .ceh, .job {
            height: 174px;
        }
    }
    @media (min-width: 768px) {
        .mobile {
            display: none;
        }
    }
    @media (max-width: 767px) {
        .col-4-custom, .col-2-custom {
            width: 100%;
        }
        .ceh, .job {
            height: unset;
        }
        .row-form {
            flex-direction: column;
            gap: 10px;
        }
        .desctop {
            display: none;
        }
        .mobile {
            display: table;
            margin-bottom: 20px;
        }
    }