@font-face {
    font-family: 'Inter';
    /* font-style: normal;
    font-weight: 300;
    font-display: swap; */
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format('woff2');
    /* unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; */
}
.price-container{
    width: 90%;
    margin: auto;
    font-family: 'Inter';
}
.price-box{
    border-radius: 20px;
    width: 100%;
    padding: 30px 30px 20px;
    transition: .4s ease;
    position: relative;
    background: #F8F8F8;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 560px;
    margin: auto;
    margin-bottom: 3em;
}
.price-box:hover{
    background: linear-gradient(156.56deg, #0249ad 0%, #002e6e 100%);
    
}
.price-box svg{
    position: absolute;
    top: -15px;
    right: -16px;

}
.price-box svg path {
    fill: #B68756;
}
.price-box:hover svg path{
    fill: #FFF;
}
.price-box:hover .box-best-value{
    color: #B68756;
}
.price-box .box-best-value{
    position: absolute;
    top: 21px;
    right: -21px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    transform: rotate(45deg);
    width: 100px;
}
@media (min-width: 480px){
    .price-box{
        padding: 50px 40px 30px;
    }
}
.img-left{
    position: absolute;
    top: 0px;
    left: 0px;
}
.img-right{
    position: absolute;
    top: 100px;
    right: 0px;
}
.box-title{
    font-size: 38px;
    font-family:'Lato-BoldItalic';
    font-weight: 700;
    /* font-size: 24px; */
    line-height: 150%;
    text-align: center;
    color: #002e6e;
    margin-bottom: -10px;
    z-index: 2;
}
.box-sub-title{
    font-family: 'Lato-BoldItalic';
    font-weight: 700;
    font-size: 18px;
    line-height: 23.4px;
    text-align: center;
    color: #002e6e;
    z-index: 2;
}
.box-text{
    font-family: "karlaregular",sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    max-width: 350px;
    margin: 0 auto 20px;
    min-height: 120px;
    z-index: 2;
}
.box-deposit{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    z-index: 2;
    max-width: 240px;
    margin: 0 auto;
}
.btn-group a{
    background: #002e6e;
    border-radius: 9px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #FFFFFF;
    max-height: 60px;
    max-width: 230px;
    margin: 20px auto 10px;
    min-width: 150px;
    padding: 25px 25px;
    border:none;
}
.price-box .btn-group a{
    font-family: 'Lato-BoldItalic' ;
}
.box-learn-more{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #002e6e;
    z-index: 2;
}
.price-box:hover .box-title, .price-box:hover .box-sub-title, .price-box:hover .box-text, .price-box:hover .box-deposit, .price-box:hover .box-learn-more{
    color: #FFFFFF;
}
.price-box:hover .btn-group a{
    background: #FFFFFF !important;
    color: #002e6e;
    transform: translateY(0);
    text-decoration: none;
}
.btn-group a:hover{
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.25);
}
