

.info-section {
    height: 250px;
}

    .info-section h1{
        font-size:28px
    }



.customHover {
    margin: 0 0 10px 0;
    padding: 15px 20px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #3342FF;
    border: 2px solid #3342FF;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

    .customHover:hover {
        color: #fff !important;
        background: #00173c;
        border-color: #00173c;
        transform: translateY(-5px);
    }

.ourContacts {
    list-style: none;
    padding: 0;
}

    .ourContacts li {
        margin-bottom: 15px;
    }

.item {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-wrap {
    white-space: normal;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

.orangeUnderline {
    position: relative;
    padding-bottom: 10px;
}

    .orangeUnderline::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: orange;
        transform: translateX(-50%);
    }

.center {
    text-align: center;
}

.modal-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.modal-body  {
    margin:auto;
    width:500px
}


@media (max-width: 576px) {
    h1 .humanTitle {
        font-size: 20px;
    }
    .subtitle {
        font-size: 18px !important;
        margin-top: -15px !important;
    }
    .btn-left , .btn-R ,.btn{
        font-size:14px !important;
        
    }
        .info-section h1 {
            font-size: 22px;
           
            
        }
    .modal-body {
        margin: auto;
        width: 300px
    }

    .modal-img {
        width: 100%;
        height: auto;
       
    }
    
    
}