﻿h2 {
    font-family: 'YBakh' ;
    font-weight: 400;
    color: #007470 ;
    font-size: 24px ;
    text-align: center ;
    position: relative ;
}

    h2:before {
        position: absolute;
        content: '';
        width: 100%;
        left: 0;
        top: 14px;
        background: #4caf50;
        height: 1px;
    }

    h2 i {
        font-style: normal;
        background: whitesmoke;
        position: relative;
        padding: 10px;
    }


h5 {
    font-family: 'YBakh';
    font-weight: 200;
    color: #4caf50;
    font-size: 18px;
    text-align: center;
    position: relative;
}

    h5:before {
        position: absolute;
        content: '';
        width: 80%;
        left: 10%;
        top: 20px;
        background: #007470;
        height: 1px;
    }

    h5 i {
        top: 9px;
        font-style: normal;
        background: whitesmoke;
        position: relative;
        padding: 14px;

    }

@media (max-width: 450px) {

    h2 {
        font-family: 'YBakh';
        font-weight: 400;
        color: #007470;
        font-size: 16px;
        text-align: center;
        position: relative;
    }

        h2:before {
            position: absolute;
            content: '';
            width: 0%;
            left: 0;
            top: 14px;
            background: #4caf50;
            height: 0px;
        }

        h2 i {
            font-style: normal;
            background: transparent;
            position: relative;
            padding: 10px;
        }
    h5 {
        font-family: 'YBakh';
        font-weight: 200;
        color: #4caf50;
        font-size: 14px;
        text-align: center;
        position: relative;
    }

        h5:before {
            position: absolute;
            content: '';
            width: 0%;
            left: 10%;
            top: 20px;
            background: #007470;
            height: 0px;
        }

        h5 i {
            top: 9px;
            font-style: normal;
            background: transparent;
            position: relative;
            padding: 14px;
        }

   
}