
:root {
  --color-pink: rgb(237, 43, 115);
  --color-purple: rgb(129, 90, 164);
  --color-purple-nav: rgba(86, 61, 124, 0.7);
  --color-aqua: rgb(92, 164, 122);
  --color-yellow: rgb(255, 204, 41);
  --color-white: rgb(255, 255, 255);
  --color-grey: rgb(87, 87, 87);
}

html {
  height: 100%;
}

body {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: var(--color-grey);
  height: 100%;
  min-height: 100%;
}

h1, h2, h3, h4, h5 {
  color: var(--color-white);
}

a {
  color: var(--color-white);
  text-decoration: none;
}

a:hover {
  color: var(--color-yellow);
  text-decoration: none;
}


.navbar-default {
  background-color: var(--color-purple-nav);
}

.owl-controls {
    position: absolute;
    bottom: 8%;
    left: 0;
    width: 100%;
    height: 0px;
}
.owl-prev {
    margin-right: 10px;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    width: 40px;
    text-align: center;
    height: 40px;
    padding-top: 7px;
    border-radius: 40px;
    background: rgba(156, 104, 202, 0.7);
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}
.owl-next {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    width: 40px;
    text-align: center;
    height: 40px;
    padding-top: 7px;
    border-radius: 40px;
    background: rgba(156, 104, 202, 0.7);
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}


.btn-login {
  width: 120px;
  color: var(--color-white);
  font-weight: 600;
  border-color: var(--color-white);
}

.btn-login:hover {
  background-color: var(--color-purple);
  border-color: var(--color-purple);
}

.btn-cadastrar {
  width: 250px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  border-color: var(--color-purple);
  background-color: var(--color-purple);
  padding: 10px;
}

.btn-cadastrar:hover {
  font-weight: 600;
  color: var(--color-white);
  border-color: var(--color-pink);
  background-color: var(--color-pink);
}

.btn-saiba-mais {
  width: 200px;
  font-weight: 600;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-saiba-mais:hover {
  color: var(--color-white);
  border-color: var(--color-purple);
  background-color: var(--color-purple);
}

.main-container {
  min-height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.page-footer {
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-grey);
}

.fa {
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 5px 3px;
  padding: 20px 18px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
}

.fa-face{
  padding: 20px !important;
}

.fa-yt{
  padding: 20px 17px !important;
}

.fa-x{
  padding: 20px 17px !important;
}


.under-construction-image {
  background-image: url('/assets/images/under_construction.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 
}

@media (max-width: 575.98px) { 

.navbar-brand {
  width: 100%;
  margin: 0;
  text-align: center;
}

.page-footer {
  width: 100%;
  text-align: center;
}

}