:root{
    --blue: #002760;
    --green: #4ECD5D;
}

.bg-blue{
    color: white;
    background-color: var(--blue);
}

.bg-green{
    color: white;
    background-color: var(--green);
}

.bg-empty{
    color: var(--blue);
    background-color: white;
    border: 1px solid var(--blue);
}




.img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container-new{
    max-width: 1160px;
    padding: 0 30px;
    margin: 0 auto;
}

.mt-100{
    margin-top: 100px
}
.mt-40{
    margin-top: 40px;
}
.mt-30{
    margin-top: 30px;
}

.mt-10{
    margin-top: 10px;
}


.btn{
    padding: 10px 30px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
}
.btn-slider{
    width: 64px;
    height: 64px;
    background-color: var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.btn-prev.btn-slider{
    left: 0;
}
.btn-next.btn-slider{
    right: 0;
}
.card{
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 0px 20px 3px #43476552;
}

.card h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.card p{
    font-size: 18px;
    line-height: 25px;
    color: #666666;

}

.card .btn{
    font-size: 14px;
    line-height: 16px;
    text-transform: none;
    padding-top: 16px;
    padding-bottom: 16px;
}

.font-24{
    font-size: 24px !important;
    line-height: 28px !important;
}
.font-18{
    font-size: 18px !important;
    line-height: 24px !important;
}

.font-14{
    font-size: 14px !important;
    line-height: 16px !important;
}

.font-w700{
    font-weight: 700;
}
.font-w600{
    font-weight: 600;
}
.font-w500{
    font-weight: 500;
}
.font-w400{
    font-weight: 400;
}

@media (max-width: 600px) {
    .container-new{
        padding: 0 15px;
    }

    .mt-100{
        margin-top: 60px;
    }
}