.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    padding-left: 50px;
    color: #fff;
}

.content h1{
    font-size: 70px;
    margin-top: 80px;

}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
    font-size: 40px;

}

.wrapper {
    display: flex;
    align-items: center;
}

.wrapper .static-txt {
    font-size: 60px;
    font-weight: 400;
}

.wrapper .dynamic-txts {
    margin-left: 15px;
    height: 90px;
    line-height: 90px;
    overflow: hidden;
    display: inline;
    align-items: center;
}

.dynamic-txts li {
    list-style: none;
    color: white;
    font-size: 60px;
    font-weight: 600;  
    top: 0;
    position: relative;
    animation: slide 12s steps(4) infinite;
}

@keyframes slide{
    100% {
        top: -360px;
    }
}

.dynamic-txts li::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(44,42,40,255);
    border-left: 2px solid black;
    animation: typing 3s steps(11) infinite;
}

@keyframes typing {
    40%, 60% {
        left: calc(100% + 30px);
    }
    100% {
        left: 0;
    }
}

.row {
    padding-top: 0;
    width: 100%;
    margin: auto;
    margin-top: -50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
    padding-bottom: 50px;
}

.box {
    width: 320px;
    height: 450px;
    background: white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.box i {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #3e96f4;
}

.box h3 {
    font-size: 25px;
    padding-top: 20px;
    text-align: center;
}

.box p {
    padding-top: 20px;
    line-height: 25px;
    text-align: center;
}