body {
    color: #000000;
    background-color: rgb(165, 225, 243);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    align-items: center;
    padding: 16px;
}

a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

header img {
    margin: auto;
    padding: none;
    width: 90%;
    height: none;
    border-radius: 1%;
    border: 5px ridge #14a5b8;
}

.center {
    text-align: center;
}

h1 {
    color: #000000;
}

footer img {
    width: 40px;
    height: 40px;
}

footer {
    display: flex;
    justify-content: center;
}

footer a {
    margin: 60px;
    text-align: center;
}

footer p {
    margin-top: auto;
}

.container {
    padding: 0px 0px;
}

nav a {
    font-size: 20px;
}

nav a:hover {
    color: #fffdfd;
}

.contact-form input{
    width: 98%;
    padding: 10px 0;
    outline: none;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-form input[type=text] {
    padding: 10px 0;
    outline: none;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 16px;
    margin-bottom: 30px
}

button {
    margin: 60px;
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-top: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #bfc8c9;
}
button:hover{
    color: #000000;
    background-color: #504f4f;
}

.relogio{
	justify-content: space-around;
	padding: 2em;
}
.aba-conteudo.ativo{
	display:block;
}
.aba-conteudo{
	display: none;
}
.aba-conteudo-titulo-principal{
	font-size: 28px;
	text-align: center;
}
.aba-conteudo-titulo-secundario{
	text-align: center;
	text-transform: uppercase;
}
.contador{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}
.contador-digito {
	padding: 10  26px;
	text-align: center;
	min-width: 100px;
}
.contador-digito-numero{
	font-size: 50px;
	margin: 0;
}
.contador-digito-texto{
	font-size: 20px;
	margin: 0;
}
.loader-2 {
   width: 48px;
   height: 48px;
   position: relative;
    animation : rotate 4s linear infinite;
  }
.loader-2:before,
.loader-2:after {
   content:"";
   display: block;
   border: 24px solid;
   border-color: transparent transparent #fff  #fff;
   position: absolute;
   left: 0;
   top: 0;
    animation: mvx 1s infinite ease-in;
}
.loader-2:before {
    left: -1px;
    top: 1px;
    border-color:#000405  #000000 transparent transparent;
    animation-name:mvrx;
}

@keyframes rotate {
    100% {transform: rotate(360deg)}
}
@keyframes mvx {
    0% , 15% {transform: translate(0 , 0) rotate(0deg)}
    50% {transform: translate(-50% , 50%) rotate(180deg)}
    100% {transform: translate(0% , 0%) rotate(180deg)}
}
@keyframes mvrx {
    0% , 15%  {transform: translate(0 , 0) rotate(0deg)}
    50% {transform: translate(50% , -50%) rotate(180deg)}
    100% {transform: translate(0% , 0%) rotate(180deg)}
}
.loader-3{
    width: 48px;
    height: 48px;
    border-width: 3px;
    border-style: dashed solid  solid dotted;
    border-color: #000000 #000000 transparent #000000;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 20px;
    top: 31px;
    border: 10px solid transparent;
    border-right-color: #FF3D00;
    transform: rotate(-40deg);
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }  