@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin-top: 120px;
}
*{
    font-family: 'poppins',sans-serif;
}
span{
    color: #2788ff;
}
.container .navbar-brand b{
    color: rgb(39, 136, 255);
}

.container .hero-text h2{
    color: #2788ff;
    padding: 0px 0px 20px;
}

.container .contents{
    padding: 0px 30px;
    border-left: 2px solid #666;
}

.container .contents .box{
    position: relative;
    padding: 20px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.4s;
    margin-bottom: 20px;
}

.container .contents .box:hover{
    box-shadow: 0px 3px 12px 0px #ccc;
    border: 1px solid transparent;
}

.container .contents .box::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: calc(100% + 22px);
    top: 0;
    background-color: #2788ff;
    border: 3px solid white;
}

.box h5{
    position: relative;
    color: #2788ff;
}

.box h3{
    font-size: 19px;
    padding: 10px 0px 6px;
    color: #444;
}

.box p{
    line-height: 1.2;
    color: #666;
    font-size: 17px;
}