/*================================================
Default CSS
=================================================*/

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}
body {
  padding: 0;
  margin: 0;
  color: #000000;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  background-color: #ffffff;
  height: 100%;
  background-image: url(../img/bg.png);
  background-size: 400px;
}
:root {
  --dorado:#bf9153;
  --gris:#b3b3b3;
  --morado:#3e4095;
}
.navbar{
  background-color: #b3b3b3;
}
.img-5{
  width: 5rem;
}
.img-9{
  width: 9rem;
}
.img-15{
  width: 15rem;
}
.img-20{
  width: 20rem;
}
.img-30{
  width: 30rem;
}
.mt-10{
  margin-top: 10px;
}
.mt-20{
  margin-top: 20px;
}
.mt-40{
  margin-top: 40px;
}
.txt-center{
  text-align: center;
}
.header{
  margin-top: 30px;
}
.menu{
  background-color: var(--gris);
}
.elemento-menu{
  color: var(--morado);
  text-align: center;
  padding: 10px 0 0 0;
}
.elemento-menu p{
  font-size: 1rem;
  font-weight: 700;
}
.line{
  border-top: 10px solid var(--dorado);
}
h1{
  text-align: center;
  color: var(--dorado);
  font-weight: 800;
  font-size: 2rem;
}
.titulo{
  background-color: var(--dorado);
  margin-top: -21px;
  padding: 5px 0px;
}
.titulo p{
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.panel{
  border: 2px solid var(--dorado);
}
.panel-header{
  background-color: var(--dorado);
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 10px;
}
.panel-header p{
  margin-bottom: 0;
  font-weight: 800;
}
.panel-body{
  background-color: #fff;
  padding: 20px;
}
.panel-body img{
  text-align: center;
  width: 200px;
}
h2{
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
}
.input-group input{
  border: 1px solid var(--dorado);
}
.input-group-text{
  border: 1px solid var(--morado);
  color: var(--morado);
}
label{
  font-size: 1.4rem;
  font-weight: 700;
}
.btn-main{
  background-color: var(--dorado);
  color:#fff
}
@media only screen and (max-width: 991px) {
  .img-5, .img-9, .img-10, .img-15, .img-20{
    width: 100%;
  }
  h1{
    margin-top: 30px;
  }
}
/*================================================
Go Top CSS
=================================================*/

.go-top {
  position: fixed;
  cursor: poRaleway;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #000;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}