body{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}
header{
    height: 60px;
}
.logo{
    background: url("../img/logo.svg") center no-repeat;
    width: 89px;
    height: 35px;
}
.login{
    width: 89px;
}
#navbar{
    justify-content: space-between;
}
.nav-link{
    font-weight: 300;
}
.nav-item a{
    position: relative;
}
.nav-item a:before{
    content: '';
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 1, 1) 0s;
    -moz-transition: all 0.2s cubic-bezier(0.4, 0, 1, 1) 0s;
    -o-transition: all 0.2s cubic-bezier(0.4, 0, 1, 1) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0, 1, 1) 0s;
    width: 0px;
    position: absolute;
    bottom: -9px;
    height: 2px;
    border-radius: 10px;
    background: #1E1E20;
    left: 50%;
}

.nav-item a.active:before{
    width: 100%;
    left: 0;
}
.nav-item a:hover:before{
    width: 100%;
    left: 0;
}
.auto .slick-prev,.auto .slick-next{
    display: none!important;
}
.slide_box{
    background: #F5F5F7;
    width: 100%;
    border-radius: 14px;
    min-height: 700px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
}
.slide_content h4{
    font-size: 1.7rem;
    font-weight: 400;
    color: #1E1E20;
    line-height: 1.5;
}
.slick-slide .slide_box img{
    width: 600px;
    margin-top: -150px;
}
.slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.slick-dots li{
    list-style: none;
}

.slick-dots li button{
    border: none;
    background: #F5F5F7;
    width: 60px;
    font-size: 0;
    height: 15px;
}
.slick-dots li.slick-active button{
    background: #C9C9CB;
}
.form-check-input{
    min-width: 1.125rem;
}
.contact_form .form-check-label{
    font-size: 12px;
}
body .btn-dark{
    border-radius: 8px;
    font-weight: 300;
    background: #1E1E20;
}
.btn-group-lg>.btn, .btn-lg{
    font-size: 1rem;
    text-transform: none;
}

.num_left{
    font-size: 20px;
    font-weight: 300;
    padding-right: 20px;
    min-width: 180px;
    text-align: center;
}
.num_num{
    width: 80px;
    min-width: 80px;
    background: #F5F5F7;
    border-radius: 20px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    margin-right: 20px;
}
.num_row{
    display: flex;
    align-items: center;
}

.num_content{
    width: 100%;
    overflow: hidden;
    background: #F5F5F7;
    border-radius: 20px;
}
.num_content > div{
    padding: 70px 100px;
}
h2 {
    font-size: 40px;
    font-weight: 500;
}
.num_box{
    width: 100%;
    overflow: hidden;
    background: #F5F5F7;
    border-radius: 20px;
    text-align: center;
    padding: 60px 30px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.num_ico{
    align-self: flex-end;
}
h5{
    font-weight: 500;
}

.inters .slick-slide {
  margin: 0 20px;
}
.inters .btn{
    color: #fff!important;
}
.inters .slick-prev:before{
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 50px;
}
.inters .slick-next:before{
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 50px;
}
.inters .slick-arrow{
    background: none;
    outline: none;
    border: none;
    font-size: 0px;
    position: absolute;
    left: -40px;
    top: calc(50% - 100px);
}
.inters .slick-next{
    right: -40px;
    left: auto;
}
.inters .card-img-top{
    max-height: 230px;
    object-fit: cover;
}
/*******Footer**********/
footer{
    background: #F5F5F7;
}
footer .row a{
    display: inline-block;
    width: auto;
    font-size: 1rem;
}
.container{
    max-width: 1180px;
}
#interface .slick-track{
    display: flex;
    padding-bottom: 20px;
}
#interface .slick-slide{
    height: auto;
}

@media (max-width: 765px) {

    .num_row {
        flex-flow: column;
    }
    .num_content > div{
        padding: 20px;
    }
    h2 {
        font-size: 30px;
        font-weight: 500;
    }
    .num_num{
        display: none;
    }
    .num_left{
        width: 100%;
        text-align: left;
        font-size: 25px;
        font-weight: 400;
        padding-bottom: 20px;
        padding-left: 20px;
    }
    .num_box{
    }
    .num_content > .row > .col-12{
        margin-bottom: 20px;
    }
    .nav-item a.active:before{
        bottom: 0px;
    }
    .nav-item a:before{
        bottom: 0px;

    }
    .slide_box{
        flex-direction: column-reverse;
        padding: 40px 20px;
        justify-content: center;
        min-height: auto;
    }
    .slick-slide .slide_box img{
        width: 100%;
        margin-top: -50px;
    }
}