
h4 {
    font-family: eras;
    line-height: 1.1em;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 55px;
}


.mains {
    width: 100%;
    height:100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 220.52px;
    min-height: 56px;
    font-family: calibri;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.5s linear;
}

span {
    font-size: 30px;
    font-weight: 700;
    padding: 0 10px;
}

ion-icon {
    font-size: 2em;
    transition: all 0.5s linear;
}

.btn:hover ion-icon {
    transform: rotate(-90deg);
}

div {
    position: relative;
}

.yellow {
    /* background: #0ebac5; */
    background: none;
    color: black;
}

    .yellow::before {
        content: "";
        display: block;
        width: 56px;
        height: 100%;
        background-color: #0ebac5;
        position: absolute;
        border-radius: 100px;
        left: 1em;
        z-index: -1;
        transition: all 600ms ease;
    }

    .yellow:hover::before {
        width: 100%;
    }

    .yellow:hover ion-icon {
        transform: translateX(10px);
    }




        .testimonial{
            border-right: 4px solid #2A3D7D;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
            padding: 30px 30px 30px 130px;
            margin: 0 15px 30px 15px;
            overflow: hidden;
            position: relative;
        }
        .testimonial:before{
            content: "";
            position: absolute;
            bottom: -4px;
            left: -17px;
            border-top: 25px solid #063723;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            transform: rotate(45deg);
        }
        .testimonial:after{
            content: "";
            position: absolute;
            top: -4px;
            left: -17px;
            border-top: 25px solid #063723;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            transform: rotate(135deg);
        }
        .testimonial .pic{
            display: inline-block;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            position: absolute;
            top: 60px;
            left: 20px;
        }
        .testimonial .pic img{
            width: 100%;
            height: auto;
        }
            .testimonial .description {
                font-size: 15px;
                letter-spacing: 1px;
                color: rgb(33, 31, 31); 
                line-height: 25px;
                margin-bottom: 15px;
            }
            .testimonial .title {
                display: inline-block;
                font-size: 20px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: #2A3D7D;
                margin: 0;
            }
            .testimonial .post {
                display: inline-block;
                font-size: 17px;
                color: #C70039;
                font-style: italic;
            }
        .owl-theme .owl-controls .owl-page span{
            border: 2px solid #2A3D7D;
            background: #fff !important;
          border-radius:0 !important;
            opacity: 1;
        }
        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls .owl-page:hover span{
            background: #0f402b !important;
          border-color:#0f402b;
        }
        @media only screen and (max-width: 767px){
            .testimonial{
                padding: 20px;
                text-align: center;
            }
            .testimonial .pic{
                display: block;
                position: static;
                margin: 0 auto 15px;
            }
        }