@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

/* ------------- Main setup ----------- */
html{
    font-size: 10px;
}
html, body{
    font-family: 'Montserrat', sans-serif;
    color:#2C3489;
    background-color: #fff;
}
body{
    font-size: 1.4rem;
    line-height: 1.55;
    position: relative;
}
p{
    line-height: 1.3;
}
.navbar{
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    position: fixed;
    border-bottom: 2px solid #D9D9D9;
    z-index: 99;
}
.navbar-brand{
    padding-top: 5px;
    padding-bottom: 4px;
}
#main{
    margin-top: 70px;
}
#kerdoivek{
    margin-bottom: 34px;
}
.carousel-item{
    padding-left: 17vw;
    padding-right: 17vw;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
    background-image:url('/img/nav_icon_n.svg');
    width: 4rem;
    height: 4rem;
}
.carousel-control-prev-icon{
    transform: rotate(180deg);
}
.box-blue{
    margin-right: 12.5px;
    margin-left: -7.5px;
    margin-bottom: 17px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    padding-left: 44px;
    padding-right: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #5985C4;
    color: #fff;
}
.box-red{
    margin-left: 12.5px;
    margin-right: -7.5px;
    margin-bottom: 0px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    padding-right: 50px;
    padding-left: 35px;
    padding-top: 5px;
    padding-bottom: 6px;
    background-color: #C24197;
    color: #fff;
}
.footer{
    color: #000;
    width: calc(100% + 15px);
    margin-left: -7.5px;
    border-top: 2px solid #D9D9D9;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
}
ol {
    counter-reset: listNumbering;
    padding-left: 30px;
}

li {
    padding-top: 10px;
    padding-bottom:10px ;
    position: relative;
    padding-left: 30px;
    list-style: none;
    font-size: 1em;
    counter-increment: listNumbering;
}

li::marker {
    display: none;
}

li:before {
    position: absolute;
    left: -40px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 4px;
    border: 2px solid #fff;
    content: counter(listNumbering);
    font-size: calc(1.375rem + 1.5vw);
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 992px) {
    .navbar-brand {
        padding-top: 10px;
        padding-bottom: 5px;
    }
    #main {
        margin-top: 80px;
    }
    .box-blue{
        margin-bottom: 15px;
    }
    .box-blue, .box-red{
        height: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    li:before{
        font-size: 25px;
    }
 }