.MultiCarousel {
    float: left;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.MultiCarousel .MultiCarousel-inner {
    transition: .5s ease all;
    float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
    float: left;
    cursor: pointer;
    background: transparent;
    padding: 0;
    outline: none;
    border: none;
}
.item:hover .toltip{
    visibility: visible;
    opacity: 1;
}
.toltip{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.pad15 .title_h4{
    font-size: 20px;
    font-weight: 600;
    color: #062350;
    padding-bottom: 10px;
}
.portfolio_img{
    border-radius: 10px 10px 0 0;
}
.toltip span {
    background: white;
    font-size: 18px;
    font-weight: 700;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
}
.MultiCarousel .MultiCarousel-inner .item .pad15 {
    text-align: center;
    margin: 20px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 2px 1px #062350;
    background: #ffffff;
}
.item .pad15 .projrct_image{
    border-radius: 10px 10px 0 0;
}

.MultiCarousel .leftLst, 
.MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 20px);
}

.MultiCarousel .leftLst {
    left: 0;
}

.MultiCarousel .rightLst {
    right: 0;
}

.MultiCarousel .leftLst.over, 
/* .MultiCarousel .rightLst.over {
    pointer-events: none;
    background: #ccc;
} */


/* modal design */
.portfolio_modal_inner{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transform: scale(0);
}
.portfolio_modal_inner .modal_single{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 600px;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.modal_single .modal_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    background: blueviolet;
}
.modal_single .modal_body{
    border-radius: 0 0 10px 10px;
    padding: 0 10px 5px 10px;
    background: blue;
}
.modal_close_btn{
    background: transparent;
    border: none;
    outline: none;
}
.modal_close_btn i{
    font-size: 25px;
    color: #ffffff;
    transition: .4s;
}
.modal_close_btn i:hover{
    color: #062350;
}
.modal_header_title{
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}


/* Modal REsponsive */
@media (max-width: 600px) {
    .modal_body iframe{
        height: 300px;
    }
}

@media (max-width: 520px) {
    .modal_body iframe{
        height: 250px;
    }
}
@media (max-width: 480px) {
    .modal_body iframe{
        height: 220px;
    }
}
@media (max-width: 420px) {
    .modal_body iframe{
        height: 200px;
    }
}

@media (max-width: 369px) {
    .modal_body iframe{
        height: 175px;
    }
}