/*                                      Base
==============================================================================*/

html {

  overflow-x: hidden;

}

body {

  width: 100%;
  background: #efefef;
  color: #060606;
  font-family: Arial,sans-serif;
  overflow-x: hidden;

}

.flex-row {

  display: flex;
  flex-direction: row;

}

.flex-column {

  display: flex;
  flex-direction: column;

}

/*                                      Header
==============================================================================*/

#common-navbar {

  background: #67a6dc;
  width: 100%;
  height: 150px;
  color: #ffffff;

}

#common-navbar-top {

  justify-content: center;
  align-items: center;
  padding-top: 20px;
  width: 100%;
  height: 110px;

}

#common-navbar-bottom {

  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 10px 10px 0;

}

#logout-logo {

  color: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;

}

#logout-logo:hover {

  opacity: 1;

}

@media all and (max-width: 500px) {

  h1 {

    font-size: 2.5rem;

  }

  #logout-logo i{

    font-size: 4rem;

  }

}

/*                                      Body
==============================================================================*/

h2 {

  margin: 50px 0 20px 0;

}

h4.text-center {

  margin: 20px 0;

}

#boxes {

  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;

}

#redirectBoxes {

  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;

}

.box {

  width: 400px;
  height: 300px;
  margin: 0 80px;
  border: 1px solid #060606;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #060606;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  overflow: hidden;

}

.box:hover {

  opacity: 1;

}

#box-demos {

  color: #0068b0;
  background: #ffffff;

}

#box-demos-overlay {

  justify-content: center;
  align-items: flex-start;
  width: 380px;
  height: 280px;
  background: url('/Assets/Images/Demos/logo-demosthene.png') no-repeat;
  background-position: center 80%;

}

#box-demos h3, #box-sl h3 {

  width: 400px;
  font-size: 4rem;

}

#box-sl {

  color: #fac400;
  background: #ffffff;

}

#box-sl-overlay {

  justify-content: center;
  align-items: flex-start;
  width: 380px;
  height: 280px;
  background: url('/Assets/Images/SL/logo-specific.png') no-repeat;
  background-position: center 60%;

}

@media all and (max-width: 500px) {

  #boxes {

    height: 520px;
    margin-top: 100px;

  }

  #redirectBoxes {

    flex-direction: column;
    height: 520px;

  }

  .box {

    margin: 30px 0;

  }

}
