﻿.branch {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

.items {
    border: 1px solid #088BEE;
    margin: 0px;
    padding: 1px;
    color: black;
    font-style: inherit;
}

.spant {
    font-size: 25px;
    margin-top: 5px;
}

.pfont {
    margin-left: 35px;
    font-size: 15px;
}

.obranhc {
    font-size: 35px;
    color: #FF5E14;
}

.ribbon {
    width: 95%;
    margin: 10px auto;
    padding: 0 10px 0;
    position: relative;
    color: #444;
    background: #f3f3f3;
    border: 2px solid #d9d7d7;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .ribbon h3 {
        display: block;
        height: 30px;
        line-height: 1.3;
        width: 100%;
        margin: 0;
        padding: 5px 10px;
        position: relative;
        left: -16px;
        top: 2px;
        color: #444;
        text-shadow: 0 0px 0px #111;
        border-top: 1px solid #f3f3f3;
        border-bottom: 1px solid #f3f3f3;
        background: #EAECEE;
        background: linear-gradient(top, #383838 0%, #262626 100%);
        border-radius: 2px 2px 0 0;
        box-shadow: 0 1px 2px rgba(0,0,0,0.3);
        font-size: 15px;
    }

        .ribbon h3::before,
        .ribbon h3::after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            position: absolute;
            bottom: -11px;
            z-index: -10;
            border: 5px solid;
            border-color: #242424 transparent transparent transparent;
        }

        .ribbon h3::before {
            left: 0;
        }

        .ribbon h3::after {
            right: 0;
        }



/*row column*/

.row:before,
.row:after {
    content: " ";
    display: table;
}

.grid:after,
.row:after {
    clear: both;
}

[class*="col-"] {
    width: 100%;
    float: left;
    min-height: 1px;
}

.col {
    padding: 1em;
    margin: 8px;
    background: #ff3333;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.3);
    color: #fff;
    text-align: center;
}

/* Making it Responsive using CSS Media Rules*/

@media screen and (min-width:320px) {
    .col-wd-1 {
        width: 8.33333%;
    }

    .col-wd-2 {
        width: 16.66667%;
    }

    .col-wd-3 {
        width: 25%;
    }

    .col-wd-4 {
        width: 33.33333%;
    }

    .col-wd-5 {
        width: 41.66667%;
    }

    .col-wd-6 {
        width: 50%;
    }

    .col-wd-7 {
        width: 58.33333%;
    }

    .col-wd-8 {
        width: 66.66667%;
    }

    .col-wd-9 {
        width: 75%;
    }

    .col-wd-10 {
        width: 83.33333%;
    }

    .col-wd-11 {
        width: 91.66667%;
    }

    .col-wd-12 {
        width: 100%;
    }
}

@media screen and (min-width: 640px) {
    .col-md-1 {
        width: 8.33333%;
    }

    .col-md-2 {
        width: 16.66667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.33333%;
    }

    .col-md-5 {
        width: 41.66667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.33333%;
    }

    .col-md-8 {
        width: 66.66667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.33333%;
    }

    .col-md-11 {
        width: 91.66667%;
    }

    .col-md-12 {
        width: 100%;
    }
}

@media screen and (min-width: 960px) {
    .col-sm-1 {
        width: 7.33333%;
    }

    .col-sm-2 {
        width: 16.66667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333%;
    }

    .col-sm-5 {
        width: 41.66667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333%;
    }

    .col-sm-8 {
        width: 66.66667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33333%;
    }

    .col-sm-11 {
        width: 91.66667%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

input[type=text] {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 4px;
    margin: 8px 0;
    outline: none;
    padding: 4px;
    box-sizing: border-box;
    transition: .3s;
}

    input[type=text]:focus {
        border-color: dodgerBlue;
        box-shadow: 0 0 8px 0 dodgerBlue;
    }

button {
    width: 180px;
    padding: 5px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.four {
    background: #309AD6;
    border-radius: 30px;
    color: white;
}

.button-box-special {
    background: #383b3a;
    
}

button:focus {
    outline: none;
}

.four:hover {
    color: #494949;
    border: 1px solid #494949;
    border-radius: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid;
    border-collapse: collapse;
    margin: 0;
    padding: 5px;
    width: 100%;
    table-layout: fixed;
}


tr:nth-child(even) {
    background-color: #f2f2f2;
}





