.section_custombanners{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.custombanner{
    flex: 0 49%;
    position: relative;
    height: fit-content;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}
.custombanner .spot {
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 30px;
    transition: transform .2s;
    animation: beat 0.5s infinite alternate;
	transform-origin: center;
}
.custombanner .spot a {
    width: 60%;
    height: 60%;
    display: block;
    cursor: pointer;
    background: #FFF;
    border-radius: 30px;
    margin: 20%;   
}

@keyframes beat{
	to { transform: scale(1.2); }
}
.opacity_back {
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.15;
}
.custombanner_header {
    position: absolute;
    top: 50px;
    left: 50px;
    color: #FFF;
}
.custombanner_subtitle {
    font-size: 18px;
    line-height: 20px;
}
.custombanner_title {
    font-size: 40px;
    line-height: 50px;
}

.custombanner img{
    width: 100%;
}

.spot-tooltip {
    display: none;
    position: absolute;
    top: 0;
    left: -50px;
    background: #FFF;
    padding: 8px 20px 8px 10px;
    border-radius: 6px;
    color: #909090;
    font-size: 12px;
    width: 130px;
    text-align: left;
    line-height: 15px;
    text-transform: lowercase;
}
.spot-tooltip a:link:not(.nav-link):not(.btn), .spot-tooltip  a:visited:not(.nav-link):not(.btn){
    color: #909090;
}
.spot-tooltip a::first-letter {
    text-transform: uppercase;
}
.spot-tooltip::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 5px;
    top: 35%;
    font-weight: 100;
}
.spot-price{
    color:  #521CDC;
}
.spot-mobile{
    display: none;
}
.custombanner .spot:hover{
    transform: scale(1.1);
}
@media (max-width: 992px){
    .custombanner .spot {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .custombanner_header {
        top: 25px;
        left: 20px;
    }
    .custombanner_subtitle {
        font-size: 16px;
        line-height: 18px;
    }
    .custombanner_title {
        font-size: 18px;
        line-height: 20px;
    }
    .spot-mobile{
        display: block;
    }
    .spot-desktop{
        display: none;
    }
}

@media (max-width: 768px){
    .custombanner{
        flex: 100%;
    }
}
 
@media (max-width: 575px){

}