@import url(https://fonts.googleapis.com/css?family=Open+Sans);
 
.fa-2x { font-size: 26px;}

body {
    justify-content: center;
	align-items: center;
	background: #424242;
	font-family: 'Open Sans';}

 .menu-container {
	 width: 98%;
	 height: 80px;
	 padding: 4px 0px 0px 20px;
	 background: #fff;
	 border-radius: 90px 0 90px 0;
	 position: relative;
	 z-index: 0;}

 .menu {
	 width: 100%;
	 height: 100%;
	 margin: 0;
	 padding: 0;
	 display: flex;
	 position: relative;}

 input[type="radio"] {
	 display: none;}

 label {
	 color: #8f8f8f;
	 cursor: pointer;
	 z-index: 1;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 width: 25%;
	 transition: 0.25s ease-in;}

 .item {
	 text-align: center;}

 .item-title {
	 margin-top: 14px;
	 margin-bottom: -6px;
	 color: #00006d;
	 font-weight: 600;
	 font-size: 11px;}

 .blob-container {
	 position: absolute;
	 z-index: 0;
	 width: 25%;
	 transition: transform 0.2s ease-out;}

 .blob {
	 background: #000000;
	 width: 50px;
	 height: 50px;
	 border-radius: 25px;
	 margin: 2px auto;}

 input[type="radio"]:checked + label {
	 color: #fff;}

 input[id="radio-0"]:checked ~ .blob-container {
	 transform: translateX(0%);}

 input[id="radio-0"]:checked ~ .blob-container .blob {
	 animation: scaleY-0 0.2s linear;}

 input[id="radio-1"]:checked ~ .blob-container {
	 transform: translateX(100%);}

 input[id="radio-1"]:checked ~ .blob-container .blob {
	 animation: scaleY-1 0.2s linear;}

 input[id="radio-2"]:checked ~ .blob-container {
	 transform: translateX(200%);}

 input[id="radio-2"]:checked ~ .blob-container .blob {
	 animation: scaleY-2 0.2s linear;}

 input[id="radio-3"]:checked ~ .blob-container {
	 transform: translateX(300%);}

 input[id="radio-3"]:checked ~ .blob-container .blob {
	 animation: scaleY-3 0.2s linear;}

 @keyframes scaleY-0 {
	 0% {
		 transform: scale(0);}

	 60% {
		 transform: scaleY(0.5) translateY(30px);}

	 100% {
		 transform: scaleY(1);}
}

 @keyframes scaleY-1 {
	 0% {
		 transform: scale(0);}

	 60% {
		 transform: scaleY(0.5) translateY(-30px);}

	 100% {
		 transform: scaleY(1);}
}

 @keyframes scaleY-2 {
	 0% {
		 transform: scale(0);}

	 60% {
		 transform: scaleY(0.5) translateY(30px);}

	 100% {
		 transform: scaleY(1);}
}

 @keyframes scaleY-3 {
	 0% {
		 transform: scale(0);
	}
	 60% {
		 transform: scaleY(0.5) translateY(-30px);
	}
	 100% {
		 transform: scaleY(1);
	}
}
 
 
.descricao{
	margin-top: 120px;
	text-align: center;
	margin: 5.9em auto;
	width: 320px;
	height: 150px;
	display:block;
	border-radius:.25em;
	box-shadow:0 0 .25em rgba(0,0,0,.25);
	box-sizing:border-box;
	padding: 15px;
	transition: all 0.5s;
	cursor: pointer;}

	h1 {
		font-size: 15px;
		color: #919090;}

.descricao:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);}
	
/*-----------------------------botões-----------------------------------*/
.box-total {

	height: 50px;
	margin-top: 210px;
  }
  
  .box-button1 {
	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: 335px;
  }
  .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: 210px;}

  /*caixa botão esquerdo*/
  .box-button1 {
    margin-top: 4%;
    margin-left: 20px;
    width: 15%;
    height: 25%;}

  /*caixa botão direito*/
  .box-button2 {
    margin-top: 11px;
    margin-left: 82%;
    width: 15%;
    height: 25%;}
	
}


/******************************************Media Query PC*********************************************************************/

@media screen and (min-width: 998px){

	.box-total {
		height: 32%;
		margin-top: 220px;
	  }
	
	  .box-button1 {
		margin-top: 4%;
		margin-left: 20px;
		width: 15%;
		height: 25%;
	  }
	
	  .box-button2 {
		margin-top: -48px;
		margin-left: 84%;
		width: 15%;
		height: 25%;
	  }	

}