@import url(https://fonts.googleapis.com/css?family=Roboto:300);

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto", Arial, sans-serif;
}

body {
  background-color: #7cdcff;
}

#checkbox,
.btn span {
  /* Hide the checkbox input & word "Menu" in the button */
  display: none;
}

/* Menu button - starts */
.btn {
  display: block;
  background-color: #247d9e;
  color: #fff;
  width: 55px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  cursor: pointer;
  transition: width 0.3s ease-in-out;
}
/* Menu button - ends */

/* Sidebar - starts */
.sidebar {
  background-color: #2b2e33;
  position: fixed;
  width: 250px;
  height: 100%;
  z-index: 1111;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-250px);
}

.sidebar ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar ul a {
  position: relative;
  text-decoration: none;
  display: block;
  background-color: transparent;
  color: #bab5bd;
  padding: 15px 20px;
  font-size: 16px;
}

.sidebar ul a li i {
  margin-right: 15px;
}

/* Add the word "New" to the second item and "2" to the third item */
.sidebar ul a:nth-child(2)::after,
.sidebar ul a:nth-child(3)::after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  color: #fff;
  font-size: 13px;
  padding: 0 7px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.sidebar ul a:nth-child(2)::after {
  content: "New";
  background-color: tomato;
}

.sidebar ul a:nth-child(3)::after {
  content: "2";
  background-color: #247d9e;
}

/* Add margin to the icon in the second item */
.sidebar ul a:nth-child(2) li i {
  margin-left: 4px;
  margin-right: 19px;
}

.sidebar ul a:hover,
.sidebar ul a.active {
  background-color: #161920;
  color: #fff;
}

.sidebar ul a:hover::before,
.sidebar ul a.active::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #247d9e;
  width: 4px;
  height: 100%;
}
/* Sidebar - ends */

/* Effect of showing the sidebar - starts */
#checkbox:checked ~ .sidebar {
  transform: translateX(0);
}

#checkbox:checked + .btn {
  width: 250px;
  padding: 0 20px;
}

#checkbox:checked + .btn span {
  /* Show again the word "Menu" in the button */
  display: inline;
}
/* Effect of showing the sidebar - ends */

.descricao {
  margin-top: 16%;
  text-align: center;
  margin: 3.3em auto;
  width: 250px;
  height: 160px;
  display: block;
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  padding: 3px;
  transition: all 0.5s;
  cursor: pointer;
}

.descricao:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.box-total {
  height: 50px;
  margin-top: 65%;
}

.box-button1 {
  margin-top: -58px;
  margin-left: 12px;
  width: 25%;
  height: 43vh;
}

.bteesquerdo {
  margin-left: -300px;
  height: 30%;
  display: flex;
}

.bte {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
}

.bte:hover {
  color: #fff;
  background-color: #f56653;
}

.box-button2 {
  margin-top: -375px;
  width: 25%;
  height: 43vh;
  margin-left: 70%;
}
.btdireito {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btd {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
}

.btd:hover {
  color: #fff;
  background-color: #d1e706;
}

/********************************************Media Query Tablet**************************************************************/

@media screen and (min-width: 600px) {
  /*caixa dos botões*/
  .box-total {
    height: 50px;
    margin-top: 35%;
  }

  /*caixa botão esquerdo*/
  .box-button1 {
    margin-top: -6%;
    margin-left: 20px;
    width: 15%;
    height: 25%;
  }

  /*caixa botão direito*/
  .box-button2 {
    margin-top: 5px;
    margin-left: 82%;
    width: 15%;
    height: 25%;
  }
}

/******************************************Media Query PC*********************************************************************/

@media screen and (min-width: 998px) {
  .box-total {
    height: 32%;
    margin-top: 25%;
  }

  .box-button1 {
    margin-top: -4%;
    margin-left: 29px;
    width: 15%;
    height: 25%;
  }

  .box-button2 {
    margin-top: -52px;
    margin-left: 84%;
    width: 15%;
    height: 25%;
  }
}
