@charset "UTF-8";

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 200;
    src: local('Comfortaa'), url('fonts/Comfortaa-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 400;
    src: local('Comfortaa'), url('fonts/Comfortaa-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    src: local('Comfortaa'), url('fonts/Comfortaa-Bold.ttf') format('truetype');
}

html {
    font-size: 1.2rem;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

input[type=text],[type=email],[type=password],[type=number],[type=email] {
    padding: 8px 10px;
    border-radius: 3px;
    border: 1px solid lightgray;
    outline: none;
    font-family: 'Comfortaa', sans-serif;
}

header {
    position: relative;
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 340px;
    padding: 30px;
}

footer {
    position: relative;
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    min-height: 150px;
    padding: 30px;
    margin-top: 30px;
}

.headerTop {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
    padding-bottom: 50px;
}

.headerLogo {
    color: white;
    font-weight: 700;
}
.headerLogo:hover {
    color: #6495ED;
}

nav a {
    color: white;
    font-weight: 200;
    font-size: 0.9rem;
}

nav a:nth-last-child(n+2) {
    margin-right: 20px;
}

nav a:hover {
    color: #6495ED;
}

.headerBottom {
    display: flex;
    height: 300px;
    justify-content: space-between;
    align-items: center;
}

h1 {
    color: white;
}

h1 span {
    color: #6495ED;
}

.headerIcon {
    width: 100px;
    height: 100px;
    background-image: url('icon/sync.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.headerForm {
    position: relative;
}

.headerForm input[type=text] {
    width: 400px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #474a51;
    letter-spacing: 0.1rem;
    margin: 2px;
}

.headerForm input[type=number] {
    width: 300px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #474a51;
    letter-spacing: 0.1rem;
    margin: 2px;
}

.headerForm input[type=email] {
    width: 300px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #474a51;
    letter-spacing: 0.1rem;
    margin: 2px;
}

.headerFormSearch {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-image: url('icon/search.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.8;
}

.headerFormSubmit {
    background-color: #2edf2e;
    padding: 15px 30px;
    border-radius: 3px;
    font-size: 1.2rem;
    text-align: center;
    margin: 2px;
    cursor: pointer;
    transition: 0.2s;
}

.headerFormSubmit:hover {
    background-color: #1ebd1e;
}

.mainTitle {
    color: #333;
    padding-left: 30px;
    margin-top: 30px;
}

.mainPrivilege {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.mainPrivilege div {
    position: relative;
    display: flex;
    align-items: center;
    width: 250px;
    height: 150px;
    margin: 15px;
    padding-left: 10px;
    border-bottom: 1px solid white;
    border-left: 1px solid #6495ED;
    cursor: pointer;
    font-weight: 200;
    transition: 0.2s;
}
.mainPrivilege div:hover {
    border-bottom: 1px solid #6495ED;
}

.mainPrivilege div span {
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    padding: 5px;
    background-color: #6495ED;
}

.mainTableCompanies {
    margin: 30px 15px 15px 50px;
}

.mainTableCompaniesTitles {
    display: flex;
    font-size: 0.8rem;
    color: white;
}
.mainTableCompaniesTitle1 {
    width: 15%;
    background-color: #6495ED;
    border-right: 1px solid white;
    padding: 10px 20px;
}
.mainTableCompaniesTitle2 {
    width: 10%;
    background-color: #6495ED;
    border-right: 1px solid white;
    padding: 10px 20px;
}
.mainTableCompaniesTitle3 {
    width: 50%;
    background-color: #6495ED;
    border-right: 1px solid white;
    padding: 10px 20px;
}
.mainTableCompaniesTitle4 {
    width: 25%;
    background-color: #6495ED;
    border-right: 1px solid white;
    padding: 10px 20px;
}

.mainTableCompaniesLines {
    display: flex;
    font-size: 0.7rem;
    color: #333;
    background-color: #edf3fc;
    margin-top: 2px;
    cursor: pointer;
}
.mainTableCompaniesLines:hover {
    background-color: #e3f3ff;
}
.mainTableCompaniesLine1 {
    display: flex;
    align-items: center;
    width: 15%;
    padding: 10px 20px;
}
.mainTableCompaniesLine2 {
    display: flex;
    align-items: center;
    width: 10%;
    padding: 10px 20px;
}
.mainTableCompaniesLine3 {
    width: 50%;
    padding: 10px 20px;
}
.mainTableCompaniesLine3 span {
    display: block;
    color: gray;
}
.mainTableCompaniesLine4 {
    display: flex;
    align-items: center;
    width: 25%;
    padding: 10px 20px;
}

.mainInfo {
    margin: 30px 15px 15px 50px;
}

.companyTitle {
    color: #333;
    padding-left: 30px;
    margin-top: 30px;
}

.companyFullName {
    padding-left: 30px;
    font-size: 0.8rem;
    margin-top: -15px;
}

.companyWrapperMenu {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
}

.companyWrapperMenu a {
    display: inline-block;
    background-color: #6495ED;
    padding: 7px 14px;
    margin: 3px;
    color: white;
    font-size: 0.7rem;
    font-weight: 200;
    border-radius: 3px;
}

.companyWrapperMenu a:hover {
    background-color: #3574e8;
}

.companyWrapperSection {
    background-color: #edf3fc;
    margin: 20px 30px 0px 30px;
    border-radius: 3px;
}

.companyTitleSection {
    display: block;
    color: #333;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 1rem;
    font-weight: 200;
}
.companyTitleSection sup {
    color: #3574e8;
}
.companyTitleSection a {
    color: #6495ED;
    font-size: 0.8rem;
    border-bottom: 1px dotted #6495ED;
}
.companyTitleSection a:hover {
    color: #3574e8;
    border-bottom: 1px solid #3574e8;
}

.companyWrapperBoxs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.companyWrapperBox {
    margin: 0px 20px 10px 20px;
}

.companyWrapperBoxTitle {
    font-weight: 700;
    font-size: 0.8rem;
}

.companyWrapperBoxDesc {
    font-weight: 200;
    font-size: 0.8rem;
    margin-top: 5px;
}
.companyWrapperBoxDesc span {
    color: gray;
}

.boxText {
    background-color: #edf3fc;
    margin: 20px 30px 0px 30px;
    border-radius: 3px;
    font-size: 1rem;
}

.boxTextTitle {
    color: #333;
    padding: 10px 20px 20px 20px;
}

.boxTextDesc {
    padding: 0px 20px 20px 20px;
    font-weight: 200;
}

.footerBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    font-size: 0.8rem;
}

.footerBoxLeft {
    color: white;
}

.footerBoxLeft a {
    color: white;
    border-bottom: 1px dashed white;
}

.footerBoxLeft a:hover {
    color: #6495ED;
    border-bottom: 1px solid #6495ED;
}

.footerBoxLeft span {
    display: block;
}

.footerBoxCenter {

}

.footerBoxCenter a {
    display: block;
    color: white;
    background-color: #1246a6;
    padding: 10px 15px;
    border-radius: 3px;
    margin: 5px;
}

.footerBoxCenter a:hover {
    background-color: #1759d4;
}