.topbarbg {
    background-color: hsl(0, 0%, 95%);
}

.aligncenter {
    text-align: center;
}

.alignright {
    text-align: right;
}

.menulogomargin {
    margin-top: 10px;
}

.menubarbg {
    background-color: #fff;
}

@media only screen and (max-width: 780px) {
    .logo {
        text-align: center !important;
    }

    .menubarbg {
        background-color: #424242;
        padding-bottom: 10px;
    }

    .menulogomargin {
        margin-top: 8px;
        margin-bottom: 8px;
    }
}

.container {
    max-width: 90%;
    display: block;
}

.menubarbg {
    -webkit-box-shadow: 0 0 4px 0 #ccc;
    -moz-box-shadow: 0 0 4px 0 #ccc;
    box-shadow: 0 0 4px 0 #ccc;
}

.teklifalbg {
    padding: 15px 0px;
    background-color: aqua;
}

.teklifaltext {
    color: #016105 !important;
    font-size: 22px;
}

.hbtn {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    background: white;
    font-size: 15px;
    transition: all 0.5s;
    color: #000;

    &:after,
    &:before {
        content: " ";
        width: 10px;
        height: 10px;
        position: absolute;
        border: 0px solid #fff;
        transition: all 0.5s;
    }

    &:after {
        top: -1px;
        left: -1px;
        border-top: 3px solid #008305;
        border-left: 3px solid #008305;
    }

    &:before {
        bottom: -1px;
        right: -1px;
        border-bottom: 3px solid #008305;
        border-right: 3px solid #008305;
    }

    &:hover {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;

        &:before,
        &:after {

            width: 100%;
            height: 100%;
        }
    }
}