body {
  height: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #0b2240;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(bg.jpg);
}
.container {
  padding: 50px;
  border-bottom: 5px solid #0b2240;
  border-left: 5px solid #0b2240;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 0px;
  margin: 100px;
}
.header {
  display: flex;
  flex-direction: row;
  width: 1300px;
  padding: 10px 0;
  justify-content: space-between;
  position: fixed;
  overflow: auto;
  top: 0;
  z-index: 10000000;
  background-color: #fff;
}
.header .logo {
  height: 80px;
  width: 320px;
  background: url('logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.header .menu {
  display: flex;
  flex-direction: row;
}
.header .menu:hover .menu-item::after,
.header .menu:hover .menu-item.active::after {
  opacity: 0;
}
.header .menu:hover .menu-item.active:hover::after {
  opacity: 1;
}
.header .menu .menu-item {
  text-decoration: none;
  color: #0b2240;
  font-weight: bold;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
}
.header .menu .menu-item::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #e2211c;
  opacity: 0;
  margin-top: 5px;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.header .menu .menu-item:hover::after,
.header .menu .menu-item.active::after {
  opacity: 1;
}
.motto {
  width: 1300px;
  padding: 10px;
  height: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.motto .motto-lines .motto-line {
  font-weight: bold;
  font-size: 50px;
}
.motto .motto-lines .motto-line .highlight {
  color: #e2211c;
}
.motto .motto-hero {
  background: url(pc.svg);
  height: 380px;
  width: 380px;
  background-repeat: no-repeat;
  background-size: contain;
}
.motto .button {
  margin-top: 40px;
}
.button {
  padding: 20px 30px;
  background-color: #0b2240;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 10px;
  cursor: pointer;
  display: inline-block;
  transition: border-radius 0.25s ease;
}
.button:hover {
  background-color: #12396c;
  border-radius: 10px;
}
.services {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 470px;
}
.services .service {
  text-align: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  border: 1px solid #E0E0E0;
  margin: 0 20px;
  width: 295px;
}
.services .service:first-of-type {
  margin-left: 0;
}
.services .service:last-of-type {
  margin-right: 0;
}
.services .service:hover {
  transform: translate3d(0, -15px, 0);
  -webkit-transform: translate3d(0, -15px, 0);
  border-color: #FFF;
  border-bottom: 5px solid #0b2240;
  box-shadow: 0px 20px 40px rgba(55, 94, 239, 0.25);
  -moz-box-shadow: 0px 20px 40px rgba(55, 94, 239, 0.25);
  -webkit-box-shadow: 0px 20px 40px rgba(55, 94, 239, 0.25);
  border-radius: 8px;
  background: #F9F9F9;
}
.services .service .service-logo {
  background-repeat: no-repeat;
  height: 80px;
  background-size: contain;
  margin-bottom: 38px;
  margin-top: 38px;
  background-position: center;
  margin: 50px;
  width: auto;
}
.services .service .service-logo.office365 {
  background-image: url('office365.svg');
}
.services .service .service-logo.azure {
  background-image: url('azure.svg');
}
.services .service .service-logo.rpa {
  background-image: url('uipath.svg');
}
.services .service .service-logo.sharepoint {
  background-image: url('sharepoint.svg');
}
.services .service .service-title {
  font-weight: bold;
  color: #0b2240;
}
.services .service .service-description {
  padding: 15px;
  line-height: 24px;
}
.section {
  width: 1250px;
  margin-bottom: 50px;
  padding: 10px 0;
}
.section-label {
  font-size: 20px;
  width: 1100px;
  padding: 10px 0;
  text-align: left;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
}
.section-label::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #e2211c;
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 3px;
}
.section-description {
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}
.item-list {
  width: 50%;
}
.item-list .item {
  padding: 24px 16px;
  width: calc(100% - 32px);
}
.item-list .item strong {
  font-weight: bold;
}
.item-list.odd .item:nth-of-type(2n+1) {
  background-color: rgba(55, 94, 239, 0.1);
}
.item-list.even .item:nth-of-type(2n) {
  background-color: rgba(55, 94, 239, 0.1);
}
.certifications {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.certifications .certifications-hero {
  background: url(certificate.svg);
  height: 240px;
  width: 240px;
  background-repeat: no-repeat;
  background-size: contain;
}
.certifications .certification {
  width: 200px;
  height: 200px;
  background-size: 180px 180px;
  background-position: center center;
  background-repeat: no-repeat;
}
.certifications .certification.certification-azure {
  background-image: url('certificates/Azure\ Administrator\ 2.png');
}
.certifications .certification.certification-azure-security {
  background-image: url('certificates/Azure\ Security\ Engineer\ 2.png');
}
.certifications .certification.certification-pl400 {
  background-image: url('certificates/Power\ Platform\ Developer\ 2.png');
}
.certifications .certification.certification-aws {
  background-image: url('certificates/AWS-SolArchitect-Associate-2020.png');
}
.certifications .certification.certification-teams {
  background-image: url('certificates/Teams\ Administrator\ 2.png');
}
.certifications .certification.certification-teamwork {
  background-image: url('certificates/Teamwork\ Administrator\ 2.png');
}
.certifications .certification.certification-office {
  background-image: url('certificates/MCSA_Office_365-01.png');
}
.certifications .certification.certification-productivity {
  background-image: url('certificates/MCSE_Productivity-01.png');
}
.certifications .certification.certification-rpa {
  background-image: url('certificates/AssociateRPADeveloper.png');
}
.certifications .certification.certification-rpa-developer {
  background-image: url('certificates/AdvancedRPADeveloper.png');
}
.certifications .certification.certification-information-protection {
  background-image: url('certificates/Information\ Protection\ Administrator\ 2.png');
}
.certifications .certification.certification-appmaker {
  background-image: url('certificates/Power\ Platform\ App\ Maker\ 2.png');
}
.certifications .certification.certification-general {
  background-image: url('certificates/Azure\ Solutions\ Architect\ 2\ 1.png');
}
.certifications .certification.certification-solutions-arhitect {
  background-image: url('certificates/Power\ Platform\ Solutions\ Architect\ 2\ 2.png');
}
.certifications .certification.certification-rpa-analyst {
  background-image: url('certificates/AutomationBusinessAnalyst.png');
}
.certifications .certification.certification-functional-consultant {
  background-image: url('certificates/Power\ Platform\ Functional\ Consultant\ 5.png');
}
.certifications .certification.certification-M365Admin {
  background-image: url('certificates/microsoft\ 365\ administrator\ 1.png');
}
.certifications .certification.certification-AzureData {
  background-image: url('certificates/Azure\ Data\ Scientist\ 3.png');
}
.certifications .certification.certification-AzureAIEngineer {
  background-image: url('certificates/Azure\ AI\ Engineer\ 2.png');
}
.clients {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clients .client {
  border: 1px solid #CFCFCF;
  width: 300px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.clients .client .client-logo {
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.45s -webkit-filter linear;
  -moz-transition: 0.45s -moz-filter linear;
  -moz-transition: 0.45s filter linear;
  -ms-transition: 0.45s -ms-filter linear;
  -o-transition: 0.45s -o-filter linear;
  transition: 0.45s filter linear, 0.45s -webkit-filter linear;
}
.clients .client .button{
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.clients .client .client-logo:hover {
  filter: none;
}
.clients .client .client-logo.ecdc {
  background-image: url(ecdc.svg);
}
.clients .client .client-logo.bob {
  background-image: url(bob.jpg);
}
.clients .client .client-logo.maxcode {
  background-image: url(maxcode.png);
}
.clients .client .client-logo.enjoying {
  background-image: url(Createq\ logo.png);
}
.clients .client .client-logo.brevco {
  background-image: url(Brevco\ logo.png);
}
.clients .client .client-logo.relians {
  background-image: url(relians.jpg);
}
.clients .client .client-logo.perimetros {
  background-image: url(perimetrosLogo.png);
}
.clients .client .client-logo.leaseplan {
  background-image: url(leaseplan-logo-full.png);
}
.clients .client .client-logo.weizmann {
  background-image: url(weizmann.jpg);
}
.clients .client .client-logo.hsr {
  background-image: url(hsrlogo.jpg);
  align-self: center;
}
.clients .client .client-logo.she {
  background-image: url(SHE.png);
  align-self: center;
}
.clients .client .client-logo.easo{
  background-image: url(easo.png);
}
.clients .client .client-logo.un{
  background-image: url(un.svg);
}
.clients .client .client-logo.becketal{
  background-image: url(becketal.svg);
}
.clients .client .client-logo.unisystems{
  background-image: url(unisystems.png);
}
.clients .client .client-logo.flip{
  background-image: url(flip.svg);
}
.clients .client .client-logo.codecamp{
  background-image: url(VelocityCheck.png);
}
.clients .client .client-logo.velocity{
  background-image: url(Logo-Codecamp.jpg);
}
.clients .client .client-logo.zgtimber{
  background-image: url(Logo_ZG_Timber_Sebes.png);
}

.clients .client-stub {
  width: 250px;
  height: 200px;
  display: none;
}
.clients2{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.clients2 .client2 {
  border: 1px solid white;
  width: 80px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.clients2 .client2 .column {
  margin-top:200px;
  margin-bottom: 16px;
  padding: 0 8px;
  width: 200px;
  height: 300px;
}

/* Display the columns below each other instead of side by side on small screens */


/* Add some shadows to create a card effect */
.card {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container2 {
  width: 200px;
  float:right;
  margin-right: -4px;
  margin-top: 20px;
  margin-bottom:50px;
  margin-left:200px;
  padding: 0 10px;
}

/* Clear floats */
.container2::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button-contact {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  margin-right: 10px;
}

.button:hover {
  background-color: #555;
}
.footer {
  margin-top: 300px;
  background-color: #0b2240;
  color: #FFF;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer .footer-content {
  width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-logo {
  background-image: url(logo-white.svg);
  height: 80px;
  width: 190px;
  background-repeat: no-repeat;
  background-position: center;
}
.footer .facebook,
.footer .linkedin {
  height: 30px;
  width: 30px;
  background-size: 30px 30px;
  display: block;
}
.footer .facebook {
  background-image: url(facebook.svg);
  margin-right: 20px;
}
.footer .linkedin {
  background-image: url(linkedin.svg);
}
.footer .footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .footer-contact div {
  margin-right: 20px;
}
.footer .footer-social-list {
  display: none;
}
.title {
  color: grey;
}

.button-contact {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

@import url("oldclients.html");
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}


button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color:#282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}

@media only screen and (max-width: 1366px) {
  .header,
  .motto,
  .section,
  .section-label,
  .footer .footer-content {
    width: 1024px;
  }
  .section {
    margin-bottom: 30px;
  }
  .services .service .service-description {
    font-size: 14px;
    line-height: 20px;
  }
  .clients .client-stub {
    display: block;
  }
}
@media only screen and (max-width: 1080px) {
  .header,
  .motto,
  .section,
  .section-label,
  .footer .footer-content {
    width: 860px;
  }
  .services {
    flex-direction: column;
    height: auto;
  }
  .services .service {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 20px 0;
  }
  .services .service:hover {
    transform: translate3d(0, -10px, 0);
    -webkit-transform: translate3d(0, -10px, 0);
  }
  .services .service .service-title {
    display: none;
  }
  .services .service .service-logo {
    height: 70px;
    margin: 20px;
    min-width: 170px;
  }
  .services .service .service-description {
    max-width: 480px;
    text-align: justify;
  }
  .certifications .certification {
    width: 125px;
    height: 125px;
    background-size: 110px 110px;
  }
  .clients .client {
    width: 250px;
    height: 200px;
  }
  .clients2 {
    display:block;
}
.clients2 .client2 {
  margin-top:100px;
  margin-left:70px;
}
.clients2 .client2 .column {
  width: 800px;
}
.container2 { 
  margin-top:60px;
  margin-right:-310px;
  margin-left:0px;
}
  .clients .client-stub {
    width: 200px;
    height: 150px;
  }
}
@media only screen and (max-width: 900px) {
  .header,
  .motto,
  .section,
  .section-label,
  .footer .footer-content {
    width: 95%;
  }
  .header .menu {
    display: none;
  }
  .motto {
    margin-top:100px;
    height: 320px;
    margin-bottom: 30px;
  }
  .motto .motto-hero {
    margin-top:100px;
    height: 300px;
    width: 300px;
  }
  .motto .motto-lines .motto-line {
    margin-top:50px;
    font-size: 35px;
  }
  .button {
    padding: 15px 25px;
  }
  .certifications {
    margin-top:50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .clients {
    justify-content: space-evenly;
  }
  .clients .client {
    margin: 10px;
    height: 160px;
  }
  .clients .client .client-logo {
    width: 150px;
    height: 150px;
  }
  .clients2 {
      display:block;
  }
  .clients2 .client2 {
    margin-top:100px;
    margin-left:70px;
  }
  .clients2 .client2 .column {
    width: 800px;
  }
  .container2 { 
    margin-top:10px;
    margin-right:-310px;
    margin-left:0px;
  }
  .button-contact{
    margin-left:-10px;
  }
  .clients .client-stub {
    display: none;
  }
  .services .service:hover {
    transform: none;
    -webkit-transform: none;
    border-bottom: inherit;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
  }

  .footer {
    height: 160px;
    padding: 20px 0;
  }
  .footer .footer-content {
    flex-direction: column;
  }
  .footer .footer-content .footer-contact {
    flex-direction: column;
    height: 80px;
    justify-content: center;
  }
  .footer .footer-content .footer-contact .facebook,
  .footer .footer-content .footer-contact .linkedin {
    display: none;
  }
  .footer .footer-content .footer-contact div {
    margin: 0;
  }
  .footer .footer-social-list {
    display: flex;
  }
}
@media only screen and (max-width: 650px) {
  .services .service {
    flex-direction: column;
  }
  .services .service .service-description {
    max-width: 100%;
  }
  .header .logo {
    margin-left: 30px;
  }
  .clients2 {
    display:block;
  }
  .clients2 .client2 {
    margin-left:-90px;
  }
  .clients2 .client2 .column {
    width:150px
  }
  .container2 {
    height:200px;
    width:200px;
    margin-top:6px;
    margin-right:-200px;
    margin-left:0px;
  }
}




