.breadcumb-area-banner {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.breadcumb-wrap-banner {
    background-color: rgba(0, 0, 0, 0.5); /* Черный фон с прозрачностью */
    color: #fff; /* Цвет текста */
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.breadcumb-wrap-banner h2 {
    color: #fff;
    position: relative;
    /*text-transform: capitalize;*/
    padding-bottom: 15px;
    margin-bottom: 57px;
    font-size: 40px;
}

.breadcumb-wrap-banner h2::before, .breadcumb-wrap-banner h2::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: #fff;
    content: "";
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.breadcumb-wrap-banner h2::after {
    left: 51%;
    bottom: -2px;
}

.breadcumb-menu-banner {
    background: rgba(0, 0, 0, .8);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0px;
}

.breadcumb-menu-banner ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Выравниваем элементы по центру по горизонтали */
    align-items: center;
    margin: 0px 5px;
    color: #C62828;
    padding: 15px 0px;
}

.breadcumb-menu-banner li {
    margin: 0 10px; /* Добавляем отступы между элементами меню */
}

.breadcumb-menu-banner ul li a {
    color: #fff;
}

.breadcumb-menu-banner ul li a:hover {
    color: #C62828;
}

.sharedWallpaper{
    background-color: #ffffff;
}

.sharedWallpaper {
    background-color: #ffffff;
    min-height: 600px;
    padding: 20px 0px;
}


/*==================================================
                about-us pages start
=====================================================*/

.MoneyTransferText {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: 25px;
}

.Container_block {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: 5px;
    margin-bottom: 20px;
}

.form-check-input {
    transform: scale(1.5); /* Увеличение размера радиокнопок */
}

.form-check-label {
    font-size: 16px;
    margin-left: 10px;
}

.form-group {
    margin-top: 20px;
}

.form-control {
    width: 70%; /* Растянуть текстовые поля на всю ширину родительского блока */
    padding: 25px; /* Поставьте здесь желаемый отступ вокруг текстовых полей */
    font-size: 15px; /* Размер шрифта для текстовых полей */
}

.form-control:focus {
    border-color: #c62828; /* Цвет границы при активации (фокусировке) */
}

.file-input-container {
    display: flex;
    align-items: center;
}

.file-input-label {
    margin-bottom: 5px;
}

.file-input {
    padding: 10px 10px;
    background-color: #c62828;
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    max-width: 100%;
}

.file-input::before {
    content: '\1F4D1'; /* Код символа для иконки файла */
    font-size: 30px;
    margin-left: 3px /* Отступ между иконкой и текстом */
}

/* Скрыть надпись "Выберите файл" */
.file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.prim {
    color: black; /* Черный цвет текста */
    font-style: italic; /* Курсив */
    font-size: 15px;
}

.textarea-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Выравнивание контента слева */
    margin-top: 20px;
}

textarea {
    max-width: 100%; /* Максимальная ширина текстовой области */
    overflow: auto; /* Добавляет прокрутку при необходимости */
}

/* Стили для кнопки */
div.submit-button {
    margin-top: 10px; /* Расстояние между кнопкой и другими элементами */
}

.BtnSend {
    margin-top: 20px;
}

.opiz {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.custom-button {
    background-color: #c62828; /* Красный цвет фона */
    color: white; /* Белый цвет текста */
    border: none; /* Убираем границу */
    padding: 10px 20px; /* Отступы */
    border-radius: 5px; /* Закругленные углы */
}

/* Стиль для иконки */
.icon {
    margin-right: 5px; /* Отступ справа от иконки */
}

.checkbox-container {
    /*display: flex;*/
    align-items: flex-start; /* Выравнивание по верхнему краю */
    margin-top: 20px;
}

.label-checkbox {
    margin-left: 10px;
    font-size: 15px;
}

.checkbox-size {
    transform: scale(1.5);
}

.privery {
    color: #c62828;
    font-size: 15px;
}

/*<--- модальное окно ---> */
/* Стили для заголовка */
.modal-inform-content {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    max-width: 450px; /* Максимальная ширина модального окна */
    text-align: center;
}

.inform-modal-header {
    text-align: center;
    font-size: 1.6rem;
}

/* Стили для содержимого */
.inform-modal-body {
    text-align: center;
}

.inform-text {
    margin-top: 20px;
    font-size: 1.2rem;
}

.imgPhoto1 {
    max-width: 65%; /* Максимальная ширина изображения будет равна ширине родительского контейнера */
    height: auto; /* Автоматическая высота, чтобы сохранить соотношение сторон */
}

.imgPhoto2 {
    max-width: 65%; /* Максимальная ширина изображения будет равна ширине родительского контейнера */
    height: auto; /* Автоматическая высота, чтобы сохранить соотношение сторон */
}

.inform-modal-footer {
    margin-top: 20px;
    text-align: center;
}

/*--------------------------------*/

#loading-circle-modal {
    width: 40px;
    height: 40px;
    border: 10px solid #ccc;
    border-top: 10px solid #e93a3a;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.close-btn {
    padding: 3px 0px;
    font-size: 16px;
    border-radius: 20px;
    color: #fff;
    background-color: #c62828;
    border-color: #000000;
    width: 190px; /* Укажите желаемую ширину кнопки (например, 100px) */
    margin-right: 50px; /* Добавляем небольшой отступ между кнопками */
}

.close-btn:last-child {
    margin-right: 0; /* Убираем отступ у последней кнопки */
}

.close-btn:hover {
    color: #fff;
    background-color: #993c3c;
    border-color: #000000;
}

@media (max-width: 768px) {
    .form-control {
        width: 100%;
    }
}

