*,*:before,*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 14px;
}
body {
    margin: auto;
    padding: 0;
    background: #fff;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 14px;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    max-width: 1980px;
}
img{
    max-width: 100%;
}
/* Flex Container */
.container{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.wrap{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.center{
    -webkit-box-align: center;
       -moz-box-align: center;
       -ms-flex-align: center;
    -webkit-align-items: center;
            -ms-grid-row-align: center;
        align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
       -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
/* Grid */
.grid {
    margin: 0 -1%;
    width: 102%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
/* Column */
.column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
}
/* Text */
h1, h2, h3, h4, h5, h6, p, li, a, small, small a{
    margin: 0;
    color: #000000;
}
a{
    display: inline-block;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    text-decoration: none;
}
h1, h2, h3{
    font-size: 1.286rem;
    line-height: 1.429rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
    letter-spacing: .2rem;
}
h4{
    font-size: 1.357rem;
    line-height: 1.643rem;
    margin-bottom: 0.7rem;
}
h5{
    font-size: 1.214rem;
    line-height: 1.5rem;
    margin-bottom: 0.7rem;
}
h6{
    font-size: 1.071rem;
    line-height: 1.357rem;
    margin-bottom: 0.7rem;
}
a, p{
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 0.7rem;
}
small, small a{
    font-size: 0.786rem;
    line-height: 1rem;
    color: #777777;
}
/* List */
ul{
    margin: 0 0 2%;
    padding: 0;
    list-style: none;
}
ul li:before {
    content: url('/static/theme/img/list.svg');
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
    margin-right: 0.5rem;
  }
/* Table */
table {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}
table, thead, tbody, td, th, tr {
    border-collapse: collapse;
}
thead{
    background: #3cabe1;
    color: #FFFFFF;
}
th, td{
    padding: 0.7rem 0.5rem;
    display: table-cell;
    text-align: left;
    vertical-align: top;
}
th{
    background: #3cabe1;
    border: 1px solid #3cabe1;
    color:#ffffff
}
td{
    border:none;
    border-bottom: 1px solid #e7e7e7;
    color: #000000;
}
th:nth-child(2), td:nth-child(even){
    text-align: center;
}
/* Form */
form small{
    margin: 0 0 0.714rem;
    display: block;
}
form small, form small a{
    color: #777777;
}
form small a{
    display: inline;
}
label{
    display: none;
}
input, textarea {
    padding: 0.8rem 1rem 0.8rem 0rem;
    border: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #FFFFFF;
    display: block;
    margin: 0 0 0.714rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1rem;
    color: #000000;
    border-bottom: 1px solid #000000;
    transition: all 0.1s ease-in;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
}
textarea {
    resize: vertical; /* or vertical */
}
::-webkit-input-placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-moz-placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::-moz-placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-ms-input-placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-ms-input-placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::-ms-input-placeholder {
    color: #000000;
    font-size: 0.886rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
button{
    font-size: 1rem;
    line-height: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #000000;
    border: 1px solid #000000;
    background: transparent;
    padding: 1rem 2rem;
            -webkit-border-radius: 0;
               -moz-border-radius: 0;
                    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    cursor: pointer;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.btn{
    font-size: 1rem;
    line-height: 1rem;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #000000;
    border: 1px solid #000000;
    background: transparent;
    padding: 1rem 2rem;
    margin: 2rem 0;
            -webkit-border-radius: 0;
               -moz-border-radius: 0;
                    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    cursor: pointer;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
/* Captcha */
.grecaptcha-badge {
    visibility: hidden; 
}
input[type="file"] {
    font-size: 0.886rem;
    padding-left: 2.5rem;
    position: relative;
    background-image: url('/static/theme/img/button.svg');
    background-repeat: no-repeat;
    background-position: center left;
    -moz-background-size: 2rem;
      -o-background-size: 2rem;
         background-size: 2rem;
    cursor: pointer;
}
::-webkit-file-upload-button, input[type="file"]::file-selector-button {
    visibility: hidden;
    width: 0;
    padding: 0;
    border: 0;
}