/********** CSS RESET by MEYER WEB http://meyerweb.com/eric/tools/css/reset/ ********/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    overflow-x: hidden;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img{
    width:auto;
    max-width:100%;
    height:auto;
    display:block;
    border-radius:8px;
}
select, button, input, textarea{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ie-appearance: none;
}

/**********  FONTS AND COLORS *********/
h1,h2,h3,h4,h5,h6{
    font-family: 'open sans', sans-serif;
}
a,span,p,select,button,input,textarea{
    font-family:'open sans',sans-serif;
}
a,span,p{
    font-size:auto;
    color:inherit;
}
p{
    margin-bottom:15px;
    line-height:20px;
}
p:last-child{
    margin-bottom:0px;
}

/**********  ANOTHER ELEMENTS *********/
a, button{
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
a{
    text-decoration:none;
}
:focus, :visited{
    outline: 0;
}
textarea{
    resize:none;
}
.clear{
    clear:both;
}
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/********** ALIGNS **********/
.tcenter{
    text-align:center;
}
.tright{
    text-align:right;
}

/********** BACKGROUNDS, TEXTURES AND CONTAINERS **********/
html{
    background:#fff;
}
body{
    background:#fff;
}
.container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    padding-left: 20px;
    padding-right: 20px;
}

/* GRIDs SITE */
.grid-two{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: minmax(auto,100%);
    grid-gap:5%;
}
.grid-three{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: minmax(auto,100%);
    grid-gap:4%;
}
.grid-four{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: minmax(auto,100%);
    grid-gap:3%;
}
.grid-five{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-auto-rows: minmax(auto,100%);
    grid-gap:2%;
}

    .col-100{
        width:100%;
    }
    .col-95{
        width:95%;
    }
    .col-90{
        width:90%;
    }
    .col-85{
        width:85%;
    }
    .col-80{
        width:80%;
    }
    .col-75{
        width:75%;
    }
    .col-70{
        width:70%;
    }
    .col-65{
        width:65%;
    }
    .col-60{
        width:60%;
    }
    .col-55{
        width:55%;
    }
    .col-50{
        width:100%;
    }
    .col-45{
        width:45%;
    }
    .col-40{
        width:40%;
    }
    .col-35{
        width:35%;
    }
    .col-33{
        width:33.33%;
    }
    .col-30{
        width:30%;
    }
    .col-25{
        width:25%;
    }
    .col-20{
        width:20%;
    }
    .col-15{
        width:15%;
    }
    .col-10{
        width:10%;
    }
    .col-5{
        width:5%;
    }

/*********** FORMS **********/
form{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
    .input{
        width:100%;
        background:#fff;
        padding:15px 20px;
        display:table;
        margin-bottom:5px;
        border-radius:3px;
        border:1px solid #ddd;
    }
    .e_input{
        width:49.5%;
    }
    .three_input{
        width:33%;
    }
    .b_input{
        width:70%;
    }
    .s_input{
        width:29%;
    }
    .msg{
        min-height:110px;
    }

    .btn{
        padding: 15px 20px;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        border-radius: 2px;
        border: 0px;
        cursor: pointer;
    }
    .btn-right{
        margin-left: 70%;
        width: 30%;
    }

/*********** PAGINATION  ************/
.wrap_page{
    width:100%;
    margin-top:15px;
    display:inline-table;
    height:auto;
}
    .pagination{
        display:table;
        margin:0 auto;
        height:auto;
        width:auto;
        margin-bottom:15px;
    }
        .pagination li{
            float:left;
            font-size:14px;
            display:table;
            margin:0px 2px;
        }
            .pagination li a{
                color:#777;
                float:left;
                height:auto;
                width:auto;
                text-align:center;
                display:block;
                text-decoration: none;
                border-radius:2px;
                font-weight:bold;
                padding:10px 15px;
                background:#fff;
                border:1px solid #e5e5e5;
                
                transition-duration:0.2s;
                -webkit-transition-duration:0.2s;
                -moz-transition-duration:0.2s;
            }
            .pagination li a:hover, .pagination li.current a{
                background:#aaa;
                color:#fff;
            }