*,*: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: 16px;
}
body{
    margin:0;
    padding:0;
    background: #ffffff;
    color: #333333;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
img{
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6, label, a, p{
    margin: 0 0 0.7rem;
}
h1{
    font-size: 1.875rem;
    line-height: 2.063rem;
}
h2{
    font-size: 1.625rem;
    line-height: 1.875rem;
}
h3{
    font-size: 1.375rem;
    line-height: 1.625rem;
}
h4{
    font-size: 1.25rem;
    line-height: 1.375rem;
}
h5{
    font-size: 1.125rem;
    line-height: 1.25rem;
}
h6, address{
    font-size: 1rem;
    line-height: 1.325rem;
}
p, input, textarea, li, .piece{
    font-size: 0.875rem;
    line-height: 1.5rem;
}
a{
    font-size: 0.875rem;
    line-height: 1rem;
    text-decoration: none;
    padding: 0 0.625rem 0.125rem;
    color: #333333;
    border-bottom: 2px solid #6C8CD5;
    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, .btn{
    font-size: 0.813rem;
    line-height: 1.25rem;
}
small, small a{
    font-size: 0.75rem;
    line-height: 0.813rem;
    color: #CED4DA;
}
small a{
    text-decoration: underline;
    border: none;
    padding: 0;
    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;
}
.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;
}
/* List */
ul{
    margin: 0 0 2%;
    padding: 0;
    list-style: none;
}
ul li{
    margin-bottom: .5rem;
}
ul li::before {
    content: '';
    width: .4rem;
    height: .4rem;
    vertical-align: middle;
    margin-right: 0.8rem;
    background-color: #6C8CD5;
    display: inline-block;
    margin-left: .5rem;
}
address{
    border-left: 2px solid #6C8CD5;
    padding: .5rem 0 .5rem 1rem;
    margin: 1rem .5rem;
    line-height: 2rem;
}
/* Table */
.table{
    overflow-x:auto;
}
.table::-webkit-scrollbar {
    height: 0;
}
table {
    width: 100%;
    overflow: hidden;
    -webkit-border-top-left-radius: 3.5px;
       -moz-border-radius-topleft: 3.5px;
            border-top-left-radius: 3.5px;
    -webkit-border-top-right-radius: 3.5px;
       -moz-border-radius-topright: 3.5px;
            border-top-right-radius: 3.5px;
}
table, thead, tbody, td, th, tr {
    border-collapse: collapse;
}
thead{
    background-color: #333333;
    color: #FFFFFF;
}
tr:nth-child(even) {
    background-color: #CED4DA;
}
tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
th{
    background: #333333;
    border: 1px solid #333333;
}
th, td{
    padding: 0.5rem;
    display: table-cell;
    text-align: left;
    vertical-align: top;
}
td{
    border: 1px solid #333333;
}
/* Form */
form{
    margin-bottom: 2rem;
}
form small{
    margin: 0 0 0.714rem;
    display: block;
}
label{
    display: none;
}
input, textarea {
    padding: 0.8rem 1rem;
    -webkit-border-radius: 0.219rem;
    -moz-border-radius: 0.219rem;
    border-radius: 0.219rem;
    -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%;
    color: #333333;
    border: 1px solid #CED4DA;
    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;
}
textarea {
    resize: none; 
}
::-webkit-input-placeholder {
    color: #CED4DA;
    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: #CED4DA;
    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: #CED4DA;
    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: #CED4DA;
    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: #CED4DA;
    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: #CED4DA;
    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: #CED4DA;
    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, .btn1, .btn2, .btn3{
    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: #ffffff;
    background: #333333;
    padding: 1rem 1.6rem;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    text-decoration: none;
    border: 1px solid #333333;
    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;
}
button svg, .btn1 svg, .btn2 svg, .btn3 svg{
    width: 1rem;
    vertical-align: middle;
    margin-left: .5rem;
}
button svg path, .btn1 svg path, .btn2 svg path{
    fill: #FFFFFF;
}
.btn3 svg path{
    fill: #333333;
}
.btn2{
    border: 1px solid #ffffff;
    background: transparent;
}
.btn3{
    color: #333333;
    background: transparent;
}
/* Captcha */
.grecaptcha-badge {
    visibility: hidden; 
}
.breadcrumbs{
    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;
    padding: 3rem 2rem 0 2rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.breadcrumbs a{
    margin: 0;
    line-height: 2rem;
}
.breadcrumbs span{
    font-size: 0.875rem;
    line-height: 2rem;
    text-decoration: none;
    padding: 0 0.625rem 0.125rem;
    color: #333333;
    font-family: 'PoppinsSemiBold';
    letter-spacing: -.3px;
}