@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/rajdhani/v10/LDI2apCSOBg7S-QT7pa8FvOreec.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
  scroll-behavior: smooth;
}

/* SCROLLBAR */
::-webkit-scrollbar {
	width:0.95em;
}

::-webkit-scrollbar-track{
    background:#0a0a0a
}

::-webkit-input-placeholder{
    color:#202020;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(255,255,255,.075);
}


/* NAVBAR */
.navbar {
  padding: 42px 0px 32px 0px;

  background: rgb(31, 30, 30); 
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
/*   
  background: #16181F; 
  box-shadow: #0003 0 4px 6px -1px, #0000001f 0 2px 4px -1px; */
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #b1bad3;
  font-size: 17px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar2 {
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #F0F6FC;
  font-size: 25px;
  /* position: sticky; */
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 83px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0px auto;
  padding: 0 40px;
}

.navbar2__container {
  display: flex;
  justify-content: space-between;
  height: 83px;
  z-index: 1;
  width: 100%;
  max-width: 180px;
  margin: 0px auto;
  padding: 0 40px;
}

#navbar__logo {
  width: 70px;
  height: 70px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
}

#navbar__logo2 {
  width: 70px;
  height: 70px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border: none;
  width: 125px;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease 0s; 
}

.navbar__links:hover {
  color: #cb4d4d;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }
  .navbar2__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 75px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: #101117; 
    -webkit-box-shadow: 0px -3px 5px 0px #0003;
    -moz-box-shadow: 0px -3px 5px 0px #0003;
    box-shadow: 0px -3px 5px 0px #0003;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  #navbar2__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
    /* border-top: 1px solid #161616;  */
    /* border-bottom: 1px solid #161616; */
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Main Section */
.hero {
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  padding: 200px 0;
}

.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 90%;
  text-align: center;
  padding: 30px;
}

.hero__heading {
  font-size: 100px;
  margin-bottom: 24px;
  color: #fff;
}

.hero__heading span {
  background: #c5b912; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d, 
    #ffffff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #cb4d4d, 
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
}

.hero__description {
  font-size: 60px;
  background: #c5b912; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

/* Cands Section */
.cands {
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
}

.cands__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  height: 90%;
  text-align: center;
  padding-bottom: 25px;
}

.cands__heading {
  font-size: 45px;
  margin: 20px 0px 24px 0px;
  color: #fff;
}

.cands iframe{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cands__heading span {
  background: #c5b912; 
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); 
  background: linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); 
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
}

.cands__description {
  font-size: 60px;
  background: #c5b912; 
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); 
  background: linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); 
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .hero__heading {
    font-size: 40px;
  }

  .hero {
    background: rgb(31, 30, 30); 
    -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
    -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
    box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
    padding: 100px 0;
  }

  .hero__description {
    font-size: 40px;
  }

  .cands__heading {
    font-size: 40px;
  }

  .cands__description {
    font-size: 40px;
  }

  .cands iframe{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 370px; 
  }
}

/* About Section */
.main {
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  /* -webkit-box-shadow: 0px -3px 5px 0px #0003;
  -moz-box-shadow: 0px -3px 5px 0px #0003;
  box-shadow: 0px -3px 5px 0px #0003; */
  padding: 10rem 0;
}

.main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main__content {
  color: #fff;
  width: 100%;
}

.main__content h1 {
  font-size: 2rem;
  background: #fff; /* fallback for old browsers */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.main__content h2 {
  color: #f6e8e8ce;
  font-size: 4rem;
  background: #F0AA08; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #cb4d4d,
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.main__btn {
  font-size: 2.2rem;
  color: #fff;
  margin: 4px 0px 4px 14px;
  background: #101117;  
  background: linear-gradient(to right, rgb(31, 30, 30), #cb4d4d); 
  padding: 20px 60px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  border: solid 1px #cb4d4d;
  border-radius: 4px;
  transition-duration: 0.3s;
  outline: none;
}

.main__btn a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.main__btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    to right,
    #cb4d4d,
    #1f1e1e
  ); 
  transition: all 0.35s;
  border-radius: 4px;
  color: #000000;
}

.main__btn:hover:after {
  width: 100%;
}

.main__img--container {
  text-align: center;
}

.main__img--card {
  background-image: url(images/menu.png);
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.fa-layer-group,
.fa-users {
  font-size: 14rem;
}

#card-2 {
  background: #ff512f;
  background: -webkit-linear-gradient(to right, #cb4d4d, #ffffff);
  background: linear-gradient(to right, #cb4d4d, #ffffff);
}

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
  .main__container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 90%;
  }

  .main__img--container {
    display: flex;
    justify-content: center;
  }

  .main__img--card {
    height: 425px;
    width: 425px;
  }

  .main__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .main__content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .main__content h2 {
    font-size: 3rem;
  }

  .main__content p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .main__img--card {
    width: 250px;
    height: 250px;
  }

  .fa-users,
  .fa-layer-group {
    font-size: 4rem;
  }

  .main__content h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .main__content h2 {
    font-size: 2rem;
  }

  .main__content p {
    margin-top: 2rem;
  }

  .main__btn {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}

/* Services Section */
.services {
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 7rem 0;
}

.services h1 {
  background: #c5b912; 
  background: -webkit-linear-gradient(
    to right,
		#cb4d4d, 
		#ffffff
  ); 
  background: linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
  margin-bottom: 5rem;
  font-size: 2.5rem;
}

.services h3 {
  width: 900px;
  height: 220px;
  text-align: center;
  text-overflow: unset;
  background: #c5b912;
  background: -webkit-linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  ); 
  background: linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
  font-size: 1.5rem;
}

.services__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.services__card {
  margin-bottom: 40px;
  width: 300px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease-in;
}

.services__card img {
  height: auto;
  width: auto;
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2em;
}

.services__card h2 {
  text-align: center;
}

.services__card p {
  text-align: center;
  margin-top: 24px;
  font-size: 20px;
}

.services__btn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.services__card button {
  font-size: 1.5rem;
  color: #fff;
  background: #101117;  
  background: linear-gradient(to right, rgb(31, 30, 30), #cb4d4d); 
  padding: 10px 40px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  border: solid 1px #cb4d4d;
  transition-duration: 0.3s;
  outline: none;
}

/* Staff Section */
.staff {
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 4.6rem 0;
}

.staff h1 {
  background: #c5b912; 
  background: -webkit-linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  ); 
  background: linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.staff h3 {
  width: 900px;
  height: 180px;
  text-align: center;
  text-overflow: unset;
  background: #c5b912;
  background: -webkit-linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  ); 
  background: linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.staff__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.staff__card {
  margin-bottom: 34px;
  width: 340px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: 0.3s ease-in;
}

.staff__card:hover { 
  transform: scale(1.075); 
  transition: 0.3s ease-in;
  cursor: pointer; 
}

.staff__card img {
  height: auto;
  width: auto;
  width: 55%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
}

.staff__card h2 {
  text-align: center;
  font-size: 1.2em;
}

.staff__card p {
  text-align: center;
  color: 	#cb4d4d;
  margin-top: 24px;
  font-size: 20px;
}

@media screen and (max-width: 1300px) {
  .services__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .services h3 {
  width: 300px;
  height: 400px;
  text-align: center;
  text-overflow: unset;
  background: #c5b912;
  background: -webkit-linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  ); 
  background: linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
  font-size: 1.5rem;
  }
  .staff__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .staff h3 {
  width: 300px;
  height: 200px;
  text-align: center;
  text-overflow: unset;
  background: #c5b912;
  background: -webkit-linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  ); 
  background: linear-gradient(
    to right,
	#cb4d4d, 
	#ffffff  
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
  .services h3 {
    width: 300px;
    height: 400px;
    text-align: center;
    text-overflow: unset;
    background: #c5b912;
    background: -webkit-linear-gradient(
      to right,
      #e27527,
      #c5b912
    ); 
    background: linear-gradient(
      to right,
      #e27527,
      #c5b912
    );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
    font-size: 1.5rem;
  }

  .staff__wrapper {
    grid-template-columns: 1fr;
  }
  .staff h3 {
    width: 300px;
    height: 220px;
    text-align: center;
    text-overflow: unset;
    background: #c5b912;
    background: -webkit-linear-gradient(
      to right,
      #e27527,
      #c5b912
    ); 
    background: linear-gradient(
      to right,
      #e27527,
      #c5b912
    );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

/* REGRAS GERAIS */
.regras-background{
 background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
}
.regras__heading {
  padding: 20px 10px 5px 10px;
  text-align: center;
  font-size: 50px;
  margin-bottom: 24px;
  color: #fff;
}

.regras__heading span {
  background: #c5b912; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #e27527,
    #c5b912
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #e27527,
    #c5b912
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
}

.regras-2{
  padding: 10px;
  margin: 20px 20px 20px 20px;
  border-top: 1px solid rgba(128, 128, 128, 0.197);
  border-bottom: 1px solid rgba(128, 128, 128, 0.197);
  border-right: 1px solid rgba(128, 128, 128, 0.197);
  border-left: 1px solid rgba(128, 128, 128, 0.197); 
}

.regras-2 h4{
  position: relative;
  opacity: 0.78;
  color: rgb(204, 163, 27);
  font-size: 32px;
}

.regras-2 p{
  font-size: 20px;
  color: #fff;
  padding-top: 1px;
}

.regras-2 b{
  font-size: 25px;
  color: #fff;
  padding-top: 1px;
}

.regrasgerais-2{
  padding: 10px;
  margin: 5px 20px 0px 20px;
  border-top: 1px solid rgba(128, 128, 128, 0.197);
  border-bottom: 1px solid rgba(128, 128, 128, 0.197);
  border-right: 1px solid rgba(128, 128, 128, 0.197);
  border-left: 1px solid rgba(128, 128, 128, 0.197);
}

.regrasgerais-2 h4{
  position: relative;
  opacity: 0.78;
  color: rgb(204, 163, 27);
  font-size: 24px;
	text-align: center;
}
.regrasgerais-2 h3{
  position: relative;
  opacity: 0.78;
  color: rgb(255, 255, 255);
  font-size: 18px;
	text-align: center;
	font-weight: bold;
}
.regrasgerais-2 p{
  font-size: 20px;
  color: #fff;
  padding-top: 1px;
}

.regrasgerais-2 b{
  font-size: 25px;
  color: #fff;
  padding-top: 1px;
}

footer{
  position: relative;
  font-size: 18px;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: rgb(31, 30, 30); 
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-direction: row;
}

footer .container .sec{
  margin-right: 30px;
}

footer .container .sec.aboutus{
  width: 40%;
}

footer .container h2{
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

footer .container h2:before
{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 2px;
  background: #c5b912;
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d, 
    #ffffff
  ); 
  background: linear-gradient(
    to right,
    #cb4d4d, 
    #ffffff
  );
}

footer p{
  color: #f6e8e8ce;
}

.sci{
  margin-top: 20px;
  display: flex;
}

.sci li{
  list-style: none;
}

.sci li a{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
}

.sci li a:hover{
  background: #cb4d4d;
  background: -webkit-linear-gradient(
    to right,
    #cb4d4d, 
    #ffffff
  ); 
  background: linear-gradient(
    to right,
    #cb4d4d, 
    #ffffff
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -mo-text-fill-color: transparent;
}

.sci li a .fab{
  color: #fff;
  font-size: 20px;
}

.quickLinks{
  position: relative;
  width: 25%;
}

.quickLinks ul li {
 list-style: none;
}

.quickLinks ul li a{
  color: #f6e8e8ce;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.quickLinks ul li a:hover{
 color: #fff;
}

.copyrightText{
  font-size: 18px;
  width: 100%;
  background: rgb(31, 30, 30); 
  -webkit-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  -moz-box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  box-shadow: 0px -3px 5px 0px rgb(31, 30, 30);
  padding: 1px 1px;
  text-align: center;
  color: #f6e8e8ce;
}

@media (max-width: 991px) {
  footer{
      padding: 40px;
  }
  footer .container{
      flex-direction: column;
  }
  footer .container .sec{
      margin-right: 0;
      margin-bottom: 40px;
  }
  footer .container .sec.aboutus, .quickLinks, .contact{
     width: 100%;
  }
  .copyrightText{
      padding: 8px 40px;
  }
}

.social__icon--link {
  color: #fff;
  font-size: 24px;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
  border-radius: 50%;
}

.website__rights {
  color: #fff;
}

@media screen and (max-width: 820px) {

  .website__rights {
    margin-bottom: 2rem;
  }

  .social__media--wrap {
    flex-direction: column;
  }
}

.avatar-ctn {
  background-color: #cb4d4d;
  text-align: center;
}

.avatar {
  width: 65%;
  border-bottom: 1px solid rgba(0,0,0,0.125);
}