@import url(https://fonts.googleapis.com/css?family=Roboto);

body{
    background: rgb(255, 255, 255);
}

.my-card:hover{
    transform: scale(1.03);
    transition: 0.3s ease-in-out;
}

.btn-gradient-1 {
    border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(to right, darkblue, darkorchid) 1;
}

form{
    display: inline-block;
}
.form-group {
    padding-bottom: 25px;
}

.first {
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.first:hover {
    box-shadow: 0 0 40px 40px, red inset;
}

.wrapper{
    display: flex;
}
.wrapper .static-txt{
    color: rgb(0, 0, 0);
    font-size: 60px;
    font-weight: 400;
}
.wrapper .dynamic-txts{
    background: rgb(255, 255, 255);
    height: 90px;
    line-height: 90px;
    overflow: hidden;
}
.dynamic-txts li{
    list-style: none;
    color: #ff7b00;
    font-size: 40px;
    font-weight: 200;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite;
}
@keyframes slide {
    100%{
      top: -360px;
    }
}
.dynamic-txts li span{
    position: relative;
    margin: 0 auto;
    line-height: 90px;
}
.dynamic-txts li span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 310%;
    width: 100%;
    background: #ffffff;
    border-left: 2px solid #ffffff;
    animation: typing 3s steps(10) infinite;
}
@keyframes typing {
    40%, 60%{
      left: calc(100%);
    }
    100%{
      left: 0;
    }
}

