/* 1. General */
section{
  margin: 0 auto;
  width: var(--width-section);
}
section + section{
  margin-top: var(--marginHeight-section);
}
hr{
  border: none;
}
div.row{
  flex-direction: row;
}
div.column{
  flex-direction: column;
}
div.row, div.column{
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
div.row + div.row{
  margin-top: var(--marginHeight-rowAndColumn);
}
div.row > div.item, div.column > div.item{
  align-self: auto;
  flex: 0 0 auto;
  order: 0;
}
div[class*="header"] + div.row, div[class*="header"] + div.column{
  margin-top: var(--marginHeight-rowAndColumn);
}
div.column > div.item + div.item{
  margin-top: var(--marginHeight-item);
}
div.header-section, div.headerSection-wallpaperLeftAndRight{
  background-image: linear-gradient(to right, var(--backgroundColor-one) 32%, var(--backgroundColor-two) 68%);
  margin: var(--marginHeight-headerSection) 0;
  width: 100%;
}
div.header-section{
  text-align: left;
}
div.headerSection-wallpaperLeftAndRight{
  text-align: center;
}
div.wallpaperRight-headerSection, div.wallpaperLeft-headerSection{
  box-sizing: border-box;
  height: fit-content;
  padding: var(--paddingHeight-headerSection) var(--paddingWidth-headerSection);
  width: 100%;
}
div.headerSection-wallpaperLeftAndRight > div[class*="wallpaper"]:first-of-type{
  padding: 0;
}
hr.separator-gradientLong, hr.separator-gradientShort, hr.separator-solidLong, hr.separator-solidShort{
  margin: 0 auto;
}
hr.separator-gradientLong, hr.separator-gradientShort{
  background-image: linear-gradient(to right, var(--backgroundColor-one) 32%, var(--backgroundColor-two) 68%);
  height: 5px;
  margin-top: var(--marginHeight-separatorGradientOne);
  margin-bottom: var(--marginHeight-separatorGradientOne);
}
hr.separator-solidLong, hr.separator-solidShort{
  background-color: var(--backgroundColor-default);
  height: 1px;
  margin-top: var(--marginHeight-separatorSolid);
  margin-bottom: var(--marginHeight-separatorSolid);
}
div.header-section + hr.separator-gradientLong, div.headerSection-wallpaperLeftAndRight + hr.separator-gradientLong{
  margin-top: var(--marginHeight-separatorGradientTwo);
}
hr.separator-gradientLong, hr.separator-solidLong{
  width: var(--width-separatorLong);
}
hr.separator-gradientShort, hr.separator-solidShort{
  width: var(--width-separatorShort);
}
div.spaceOne, div.spaceTwo, div.spaceThree, div.spaceFour{
  width: 100%;
}
div.spaceOne{
  height: var(--height-spaceOne);
}
div.spaceTwo{
  height: var(--height-spaceTwo);
}
div.spaceThree{
  height: var(--height-spaceThree);
}
div.spaceFour{
  height: var(--height-spaceFour);
}
div[class*="semiFull-Edges"]{
  border-top: 2px solid var(--backgroundColor-two);
  border-bottom: 2px solid var(--backgroundColor-two);
  height: 100%;
  position: absolute;
  top: 0;
}
div.semiFull-EdgesLeft{
  border-left: 2px solid var(--backgroundColor-two);
  left: 0;
}
div.semiFull-EdgesRight{
  border-right: 2px solid var(--backgroundColor-two);
  right: 0;
}
div.overley{
  height: 100%;
  right: -49px;
  position: absolute;
  top: 0;
  width: 122px;
}
div.bulletPoint{
  background-color: var(--backgroundColor-three);
  height: 10px;
  margin: 0 auto;
  width: 10px;
  border-radius: var(--borderRadius-master);
}
/* 2. Header */
section#header{
  background-color: var(--backgroundColor-default);
  border-bottom: 1px solid var(--backgroundColor-six);
  box-sizing: border-box;
  height: 80px;
  left: 0;
  margin: 0;
  padding: 5.5px calc((100% - var(--width-section) ) / 2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999999;
}
section#header > div.row{
  height: 100%;
  width: 100%;
}
section#header > div.row > div.item{
  height: 100%;
}
section#header > div.row > div.item:nth-child(1){
  cursor: pointer;
  width: 180px;
}
section#header > div.row > div#menuHeader{
  cursor: pointer;
  display: none;
  width: 28.9px;
}
section#header > div.row > div.row{
  align-items: center;
  justify-content: flex-end;
}
section#header > div.row > div.row > div.item{
  cursor: pointer;
}
section#header > div.row > div.row > div.clicked{
  border-bottom: 3px solid var(--backgroundColor-one);
  color: var(--fontColor-blueDark);
}
section#header > div.row > div.row > div.item + div.item{
  margin-left: var(--marginWidth-item);
}
/* 2. load page */
section#loadPage{
  background-color: #FFFFFF;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999999;
}
section#loadPage > div.wallpaperLeft-loadPage, section#loadPage > div.wallpaperLeft-loadPage > div.wallpaperRight-loadPage{
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  font-family: CenturyGothicRegular;
}
section#loadPage > div.wallpaperLeft-loadPage > div.wallpaperRight-loadPage > div.column{
  background-color: rgba(255, 255, 255, 0.7);
  height: 100%;
  justify-content: center;
  width: 100%;
}
section#loadPage > div.wallpaperLeft-loadPage > div.wallpaperRight-loadPage > div.column > div.item{
  align-self: center;
  width: 50%;
}
section#loadPage > div.wallpaperLeft-loadPage > div.wallpaperRight-loadPage > div.column > div.item:nth-child(1){
  height: 50%;
}
section#loadPage > div.wallpaperLeft-loadPage > div.wallpaperRight-loadPage > div.column > div.item:nth-child(2){
  display: none;
  text-align: center;
}
/* 3. Banner */
section#banner{
  height: 100%;
  width: 100%;
  margin-top: 0;
}
section#banner > div.wallpaper-banner{
  align-content: center;
  height: 100%;
  justify-content: center;
  width: 100%;
}
section#banner > div.wallpaper-banner > div.item{
  background-color: rgba(255, 255, 255, 0.7);
  height: 75%;
  width: 100%;
}
section#banner > div.wallpaper-banner > div.item > div.content-banner{
  height: 100%;
  width: 100%;
}
/* 4. About us */
section#aboutUs > div.row > div.item{
  flex: 1 1 auto;
}
section#aboutUs > div.row > div.item:first-child{
  box-sizing: border-box;
  padding-right: var(--paddingWidth-item);
  width: 50%;
}
section#aboutUs > div.row > div.item:last-child{
  width: 30%;
}
section#aboutUs > div.row > div.column{
  justify-content: center;
}
section#aboutUs > div.header-section{
  margin-bottom: 0;
}
/* 5. Our team */
section#ourTeam > div.row{
  justify-content: space-around;
}
section#ourTeam > div.row > div.item{
  background-image: linear-gradient(to top, var(--backgroundColor-three) 32%, var(--backgroundColor-four) 68%);
  border-radius: var(--borderRadius-master);
  max-width: calc(100% / 5);
  min-width: var(--minWidth-item);
}
section#ourTeam > div.row > div.item > div.column{
  box-sizing: border-box;
  height: 100%;
  padding: calc(var(--paddingHeight-master) * 1.5) calc(var(--paddingWidth-master) * 1.5);
  width: 100%;
}
section#ourTeam > div.row > div.item > div.column > img{
  border-top-right-radius: var(--borderRadius-master);
  border-top-left-radius: var(--borderRadius-master);
}
/*section#ourTeam > div.row > div.item > div.column > img:hover::before{
  content: ' ';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  color: #ffffff;
}*/
/* 6. Value promise */
section#valuePromise > div.column{
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  padding: calc(var(--paddingHeight-master) * 8) calc(var(--paddingWidth-master) * 8);
  text-align: center;
}
section#valuePromise > div.column > div.item:nth-child(2){
  border: 2px solid var(--borderColor);
  border-radius: var(--borderRadius-master);
  margin-top: calc(var(--marginHeight-master) * 1);
}
section#valuePromise > div.column > div.item:nth-child(2) > div.container-contentParagraphValuePromise{
  box-sizing: border-box;
  padding: var(--paddingHeight-item) var(--paddingWidth-item);
}
/* 7. Services */
section#services > div.row > div.item{
  text-align: center;
  max-width: calc(100% / 4);
  min-width: var(--minWidth-item);
}
section#services > div.row{
  justify-content: space-around;
}
section#services > div.row > div.column > div.item > img{
  border-radius: var(--borderRadius-master);
  /*height: 255px;*/
}
/* 8. Talent management */
section#talentManagement > div.row:nth-child(2) > div.item{
  flex: 0 1 auto;
  width: 45%;
}
section#talentManagement > div.row:nth-child(2) > div.column > div.item{
  height: fit-content;
  width: 100%;
}
section#talentManagement > div.row:nth-child(2) > div.column > div.row > div.item{
  align-self: center;
}
section#talentManagement > div.row:nth-child(2) > div.column > div.row > div.item:first-child{
  width: 15%;
}
section#talentManagement > div.row:nth-child(2) > div.column > div.row > div.item:last-child{
  box-sizing: border-box;
  padding-left: var(--paddingWidth-item);
  width: 85%;
}
section#talentManagement > div.row:nth-child(2) > div.column > div.row > div.item:last-child > p > strong{
  color: var(--fontColor-blueDark);
}
section#talentManagement > div.row:nth-child(3){
  box-sizing: border-box;
  padding: 0 calc(var(--paddingWidth-master) * 8);
  text-align: center;
}
section#talentManagement > div.row:nth-child(3) > div.column{
  width: 100%;
}
section#talentManagement > div.row:nth-child(3) > div.column > div.item:first-child{
  border: 2px solid var(--backgroundColor-two);
  border-radius: var(--borderRadius-master);
  width: 100%;
}
section#talentManagement > div.row:nth-child(3) > div.column > div.item:first-child > div.container-contentParagraphTalentManagement{
  box-sizing: border-box;
  padding: var(--paddingHeight-item) var(--paddingWidth-item);
}
/* 9. Control boards */
section#controlBoards > div.row{
  box-sizing: border-box;
  padding: 0 calc(var(--paddingWidth-master) * 8);
  text-align: center;
}
section#controlBoards > div.row > div.column{
  width: 100%;
}
section#controlBoards > div.row > div.column > div.item{
  width: 100%;
  position: relative;
}
section#controlBoards > div.row > div.column > div.item > div.container-contentParagraphControlBoards{
  box-sizing: border-box;
  padding: var(--paddingHeight-item) var(--paddingWidth-item);
  width: 100%;
}
section#controlBoards > div.row > div.column > div.item > div[class*="semiFull-"]{
  width: calc(2% * 4);
}
/* 10. Big data */
section#bigData > div.row:nth-child(2){
  background-color: var(--backgroundColor-four);
}
section#bigData > div.row:nth-child(2) > div.item{
  flex: 0 0 auto;
  min-height: 450px;
}
section#bigData > div.row:nth-child(2) > div.item:first-of-type{
  color: var(--fontColor-gradient);
  width: 40%;
  position: relative;
}
section#bigData > div.row:nth-child(2) > div.item:last-of-type{
  width: 60%;
}
section#bigData > div.row:nth-child(2) > div.item > div.column{
  box-sizing: border-box;
  height: 100%;
  padding: calc(var(--paddingHeight-master) * 4) calc(var(--paddingWidth-master) * 4) calc(var(--paddingHeight-master) * 4) var(--paddingWidth-item);
  width: 100%;
}
section#bigData > div.row:nth-child(3) > div.item{
  flex: 0 1 auto;
  width: 45%;
}
section#bigData > div.row:nth-child(3) > div.column > div.item{
  height: fit-content;
  width: 100%;
}
section#bigData > div.row:nth-child(3) > div.column > div.row > div.item{
  align-self: center;
}
section#bigData > div.row:nth-child(3) > div.column > div.row > div.item:first-child{
  width: calc(20px * 2);
}
section#bigData > div.row:nth-child(3) > div.column > div.row > div.item:last-child{
  box-sizing: border-box;
  padding-left: 10px;
  width: calc(100% - (20px * 2));
}
/*section#bigData > div.row:nth-child(3) > div.column > div.row:first-child > div.item{
  color: var(--fontColor-blueDark);
}*/
/* 11. Contact */
section#contact{
  padding-bottom: var(--marginHeight-section);
}
section#contact > div.header-section{
  margin-bottom: 0;
}
section#contact > div.row > div.item:last-child{
  width: 20%;
}
section#contact > div.row > div.item:last-child{
  width: 60%;
}
section#contact > div.row > div.column{
  align-self: flex-start;
}
section#contact > div.row > div.column > div.row > div.item{
  width: 45%;
}
section#contact > div.row > div.column > div.row:nth-child(3) > div.item{
  width: 100%;
}
section#contact > div.row > div.column > div.row:nth-child(4) > div.item:last-child{
  align-self: flex-end;
}
section#contact > div.row > div.column > div.row:nth-child(4) > div.item > div.buttonShort{
  float: right;
  margin: 0;
}
section#contact > div.row > div.column > div.row > div.item > div.item + div.item{
  width: 100%;
}
/* 12. Footer */
section#footer{
  background-color: var(--backgroundColor-one);
  box-sizing: border-box;
  color: var(--fontColor-white);
  height: 80px;
  padding: 5.5px calc((100% - var(--width-section) ) / 2);
  width: 100%;
}
section#footer > div.row{
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
section#footer > div.row > div.row{
  align-items: center;
  height: 100%;
}
section#footer > div.row > div.row > div.item + div.item{
  margin-left: var(--marginWidth-item);
}
section#footer > div.row > div.row > div.item:nth-child(2), section#footer > div.row > div.row > div.item:nth-child(3){
  cursor: pointer;
  height: 20.6px;
  width: 20.6px;
}
/* 13. Pop up */
section#popUp{
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  display: none;
  height: 100%;
  margin: 0;
  padding: 0 25%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999999;
}
section#popUp > div.row{
  align-items: center;
  height: 100%;
}
section#popUp > div.row > div.item{
  width: 100%;
}
section#popUp > div.row > div.column{
  background-color: var(--backgroundColor-default);
  border-radius: var(--borderRadius-master);
  box-sizing: border-box;
  padding: var(--paddingHeight-master) var(--paddingWidth-master);
}
section#popUp > div.row > div.column > div.headerSection-wallpaperLeftAndRight{
  margin: 0;
}
