@charset "utf-8";

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------Fonts Seção Início-------*/
/*---- ------------- */

@font-face {
  font-family: "Poppins";
  src: url(../font/Poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: "Poppins Medium";
  src: url(../font/Poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: "Righteous";
  src: url(../font/Righteous/Righteous-Regular.ttf);
}

@font-face {
  font-family: "CaviarDreams";
  src: url(../font/caviar_dreams/CaviarDreams.ttf);
}

@font-face {
  font-family: "Amithen";
  src: url(../font/Amithen/Amithen.ttf);
}

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100&display=swap");

/*------ Fonts Seção fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------Pre Loader Seção Início-------*/
/*---- ------------- */

#preloader body {
  overflow: hidden !important;
}

/* ini: Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5ba4b; /* cor do background que vai ocupar o body */
  z-index: 1000; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
  position: absolute;
  top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
  left: 50%;
  transform: translate(-50%, -50%);
}

/* end: Preloader */
.navbar {
  z-index: 1; /* z-index para jogar para frente e sobrepor tudo */
}

#loader {
  /* Uncomment this to make it run! */
  /*
     animation: loader 5s linear infinite; 

  */

  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}
@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}
#box {
  width: 50px;
  height: 50px;
  background: #fff;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
#shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}
@keyframes shadow {
  50% {
    transform: scale(1.2, 1);
  }
}

/*------ Pre Loader Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------Header Seção Início-------*/
/*---- ------------- */

.navbar-brand {
  color: inherit !important;
  width: auto;
  fill: currentColor;
  font-family: "Jost", sans-serif;
  font-weight: 100 !important;
  font-size: 18px;
  text-transform: none;
  margin: 0;
  padding: 0;
  padding-bottom: 2.5px;
}
.h5 {
  font-weight: 100 !important;
}
.navbar:before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  transition: opacity 0.15s linear;
  opacity: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /* background-color:#fff; */
  background-color: #1f2032;
}

.navbar-dark > .container:after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  content: "";
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.navbar .nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
  padding-top: 0.875rem;
  padding-bottom: 1rem;
  transition: all 0.2s ease-in-out;
  transition-property: color;
  text-transform: uppercase;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #f5ba4b !important;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #f5ba4b !important;
}

.navbar .nav-item-divider .nav-link {
  opacity: 0.25;
}

.navbar .nav-item-divider .nav-link > span {
  border-left: 1px solid;
  padding-top: 0.5px;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}

.navbar-dark {
  color: #fff;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

.navbar-light {
  color: #fff;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

.navbar-light:before {
  opacity: 1;
}

.navbar-dark > .container {
  position: relative;
}

.navbar-expand-xl .navbar-nav .rede {
  padding-left: 0rem;
  padding-right: 0rem;
  margin-left: 0rem;
  font-size: 1.125rem !important;
}

.right-left {
  margin-right: 1.0625rem;
  margin-left: 1.0625rem;
}

.rede .fa-1x {
  font-size: 1.125rem !important;
  color: inherit !important;
}

/*-----------------------------------------*/
@media (max-width: 1200px) {
  .none-display {
    display: none;
  }
}

/*------ Header  Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Hero Seção Início-------*/
/*---- ------------- */

.hero {
 background: linear-gradient(
      rgba(66, 35, 241, 0.15),
      rgba(158, 239, 225, 0.15)
    ),
    /* inset your image below */
      url("../image/RIO-4000-2000-100-PX-MOD-26-11-2018-AUTOR-FELIPE-VILLAS-01.jpg");
  background-color :#171825!important;   
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: 50% 100%;
}

.ml13 {
  font-size: 7em;
  text-transform: none;
  letter-spacing: normal;
  font-family: "Amithen";
  color: white;
}

.ml13 .letter {
  display: inline-block;
  line-height: 1em;
}

@media (max-width: 575.98px) {
  .ml13 {
    font-size: 5em;
  }
}

/*---- ------------- */
/*------ Hero Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Sobre Seção Início-------*/
/*---- ------------- */
.sobre {
  background-color: #f5f5f5 !important;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  min-height: 100vh;
  flex-wrap: wrap;
}

.sobre h1 {
  font-size: 1.3125rem;
  color: #747474;
  max-width: 800px;
  font-family: "Poppins Medium";
  text-align: center;
}

.sobre p {
  font-size: 1.25rem;
  color: #747474;
  max-width: 500px;
  margin: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
  font-family: "Poppins";
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.sobre a {
  font-family: "Poppins";
  color: #747474 !important;
  text-decoration: none;
}

/*---- ------------- */
/*------ Sobre Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Serviços Seção Início-------*/
/*---- ------------- */

.servicos .card-group {
  margin-top: 50px;
  margin-bottom: 50px;
}

.servicos .col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding: 10px;
}

.servicos {
  /* background-color: #171825; */
  background-color: #171825;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.servicos .card {
  border: 1px solid !important;
  border-color: #f5ba4b !important;
  background-color: transparent;
}

.servicos .card-body {
  background-color: transparent;
  box-shadow: none;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.servicos h5 {
  font-size: 14px;
  text-transform: uppercase;
  color: #dfdfdf;
}

.servicos p {
  font-size: 16px;
  color: #dfdfdf;
  font-family: "Poppins";
  line-height: 24px;
}

.servicos .fa-crosshairs,
.fa-compass,
.fa-map,
.fa-magic,
.fa-film,
.fa-project-diagram,
.fa-drafting-compass {
  color: #f5ba4b !important;
  margin-top: 8.5px;
  font-size: 2.25rem;
  line-height: 35px;
  margin-bottom: 20px;
}

.servicos .card-body hr {
  border-color: #f5ba4b !important;
  border-width: 2px;
  width: 50px;
}

.servicos a {
  list-style: none;
  text-decoration: none;
  color: #979797 !important;
}

/*---- ------------- */
/*------ Hover-------*/
/*---- ------------- */

.servicos .card:hover {
  border-color: white !important;
}

.servicos .card:hover hr {
  background: #393939 none repeat scroll 0 0;
  border-color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(5, 5, 6, 0.3);
}

.card:hover .fa-compass {
  color: white !important;
}

.card:hover .fa-map {
  color: white !important;
}

.card:hover .fa-magic {
  color: white !important;
}

.card:hover .fa-film {
  color: white !important;
}

.card:hover .fa-project-diagram {
  color: white !important;
}

.card:hover .fa-drafting-compass {
  color: white !important;
}

/*---- ------------- */
/*------ Serviços Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Portifólio Seção Início-------*/
/*---- ------------- */
.cover {
  object-fit: cover;
}

.portifolio col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding: 10px;
}

.portifolio .galeria-group {
  margin-top: 50px;
  margin-bottom: 50px;
}

.portifolio {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: space-around;
  min-height: 100vh;
}

/*---------------*/
/*****GRID-GALERIA*****/
/*---------------*/

.galeria img {
  width: 100%;
  min-height: 345px;
  max-height: 345px;
  margin: 0px 0px;
}

.galeria figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 0;
  min-width: 250px;
  min-height: 250px;
  max-height: 565px;
  width: 100%;
  background: #252525;
  text-align: center;
  cursor: pointer;
}

.galeria figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.galeria figure figcaption::before,
.galeria figure figcaption::after {
  pointer-events: none;
}

.galeria figure figcaption,
.galeria figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.galeria figure figcaption > a {
  z-index: 100%;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.galeria figure h2 {
  word-spacing: 0.3em;

  font-size: 20px;
  color: dimgray;
  font-family: "Poppins Black";
}

.galeria figure h2 span {
  font-weight: 800;
  color: #f5f5f5 !important;
}

.galeria figure h2,
.galeria figure p {
  margin: 0;
  color: #f5f5f5 !important;
  text-shadow: 1px 1px 1px black;
}

.galeria figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
  color: ghostwhite;
}

figure {
  min-height: 200px;
  max-height: 200px;
  margin: 0 !important;
  padding: 0 !important;
}

figure.effect-vlls {
  background: black;
}

figure.effect-vlls img {
  opacity: 0.95;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

figure.effect-vlls figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -100%, 0);
}

figure.effect-vlls figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.6, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.6, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -100%, 0);
}

figure.effect-vlls:hover figcaption::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, 150%, 0);
  transform: scale3d(1.9, 1.6, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, 100%, 0);
}

figure.effect-vlls:hover img {
  opacity: 0.95;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure.effect-vlls img {
  opacity: 0.65;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

figure.effect-vlls h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.5em 1.5em;
}

figure.effect-vlls p {
  padding: 0 10px 0 0;
  margin-left: -2.2em;
  width: 30%;
  border-right: 1px solid #fff;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}

figure.effect-vlls:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*---- ------------- */
/*------ Portifólio Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Contato Seção Início-------*/
/*---- ------------- */

.section-contato {
  background-color: #171825;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.section-contato .card-body {
  box-shadow: none !important;
}
.section-contato .card .card-body {
  background-color: #2b2b2b !important;
  border: none !important;
}

.section-contato .card {
  border: none !important;
}

.card-contato {
  margin-top: 2rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-contato {
  align-content: center;
  justify-content: center;
}

.form-group {
  background-color: #171825 !important;
}

.section-contato .btn-primary {
  background-color: #393939;
  border-color: #393939;
}

.falecomigo {
  font-size: 30px;
  border: 1px solid;
  border-color: #dbdbdb;
  padding: 1rem 0 1rem 1rem;
  margin: 0 0 0 1rem;
  text-align: left;
  line-height: 2.2rem;
  text-transform: uppercase;
}

.borders {
  border: 1px solid;
  border-color: #f5ba4b;
  height: 479px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0f0f0;
  flex-direction: row;
  margin-top: 10px !important;
}

.borders:hover {
  border-color: white !important;
}

.borders:hover hr {
  background: #393939 none repeat scroll 0 0;
  border-color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(5, 5, 6, 0.3);
}

.section-contato img {
  width: 20% !important;
}

.section-contato hr {
  border-color: #f5ba4b;
  border-width: 2px;
  width: 100px;
}

/****FORMULARIO GRANDE******/
input {
  background-color: transparent !important;
}

textarea {
  height: 15rem !important;
  overflow: auto;
  resize: none;
  background-color: transparent !important;
}

.table-danger:hover > th {
  background-color: none;
}

.form-control {
  font-size: 0.9375rem;
  line-height: 1.20313rem;
  display: block;
  width: 100%;
  height: calc(3.64063rem + 2px);
  padding: 1rem 0.75rem;
  transition: border-color.15s ease-in-out, box-shadow.15s ease-in-out;
  color: #979797;
  border: 1px solid #dee2e6;
  border-radius: 0;
  border-color: #f5ba4b;
  background-clip: padding-box;
}

.form-control:focus {
  color: #fff;
  border-color: whitesmoke;
  outline: 0;
  background-color: #f8f9fa;
  box-shadow: none;
}

/*BOTÃO FORMULARIO*/
.btn {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  display: inline-block;
  padding: 1rem 1.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 0;
}

.btn {
  transition: none;
}

.btn:focus,
.btn:hover {
  text-decoration: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  color: #212529;
  border-color: #f5ba4b !important;
  background-color: #f5ba4b !important;
}

.btn-primary:hover {
  color: white;
  border-color: #f2a71b;
  background-color: #f3ac27;
}
/*BOTÃO Fim*/

/*---- ------------- */
/*------ Contato  Seção Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Botão Topo Início-------*/
/*---- ------------- */

.btn-top {
  position: fixed;
  right: 0.5%;
  bottom: 6%;
}

.icon-top {
  height: 40%;
  right: auto;
  margin: 0px 0px 3px 0px;
  padding: 0px 0px 0px 0px;
}

.btn-circle {
  width: 50px;
  height: 50px;
  padding: 6px 0px;
  border-radius: 50px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
  background: #f5ba4b !important;
}

.btn-circle:hover {
  background-color: #f5ba4b !important;
  color: white;
}

.btn-circle:active {
  background-color: #f5ba4b !important;
  color: white;
}

.btn-circle:focus {
  background-color: #f5ba4b !important;
  color: white;
}

.btn-circle:focus {
  background-color: #f5ba4b !important;
  color: white;
}

/*---- ------------- */
/*------ Botão Topo Fim-------*/
/*---- ------------- */

/*-------------------DIVISOR---------------------*/

/*---- ------------- */
/*------ Foooter Seção Início-------*/
/*---- ------------- */

.rodape {
  background-color: transparent;

  background-repeat: no-repeat;
  min-height: 62vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.rodape .card {
  border: none !important;
  border-color: none !important;
  height: 400px;
  width: 450px;
  color: black;

  background-color: transparent !important;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.rodape .card-body {
  box-shadow: none !important;
  background-color: transparent;
  border: none !important;
}

.rodape .card-contato {
  margin-top: 2rem;
}

.rodape .fa-copyright {
  font-size: 3.125rem;
  border: 1px solid #f5ba4b;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  line-height: 85px;
  background-color: #f5ba4b;
  border-radius: 50%; /* the magic */
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  color: #2b2b2b;
}

.rodape .fa-dollar-sign {
  font-size: 3.125rem;
  border: 1px solid #f5ba4b;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  line-height: 85px;
  background-color: #f5ba4b;
  border-radius: 50%; /* the magic */
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  color: #2b2b2b;
}
.rodape hr {
  border-color: #2b2b2b;
  border-width: 2px;
  width: 100px;
}

.footer-footer ul li {
  list-style: none !important;
  text-decoration: none !important;
}

.footer-footer ul a {
  list-style: none !important;
  text-decoration: none !important;
  color: #747474 !important;
}

.footer-footer a {
  list-style: none !important;
  text-decoration: none !important;
  height: 500px;
  color: #747474 !important;
}

.ajuste {
  margin-right: 2rem;
}

@media (max-width: 575.98px) {
  .rodape .card {
    height: 500px;
    width: 350px;
  }
}
