/* Modal */
.btn-modal {
  padding: 13px 30px;
  background: white;
  color: #0B1847;
  border-radius: 60px;
  border: 2px solid #0B1847;
  cursor: pointer;
  font-size: 0.7em;
  display: block;
  text-transform: uppercase;
  transition: all 0.2s;
  text-align: center;
  width: 200px;
  position: relative;
  top: 150px;
  text-align: center;
  margin: 0 auto;
  text-decoration:none;
}

.content-button-close {
  padding: 13px 30px;
  background: white;
  color: #0B1847;
  border-radius: 60px;
  border: 2px solid #0B1847;
  cursor: pointer;
  font-size: 0.7em;
  display: block;
  text-transform: uppercase;
  transition: all 0.2s;
  text-align: center;
  width: 200px;
  margin: 60px auto 0 auto;
    text-decoration:none;

}

.btn-modal:hover,
.content-button-close:hover {
  background: #0B1847;
  color: white;
}

.close {
  position: absolute;
  top: 110px;
  right: 20px;
  width: 30px;
  height: 30px;
  font-weight: 900;
  color: white;
  cursor: pointer;
  border: 0;
  border-radius: 50px;
  background-color:#009dc1;
  padding-top:4px;
  opacity: .5;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s;
}

.elegant-modal {
  position: fixed;
  top: 40%;
  left: 26%;
 
  margin-top: -240px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-out;
  transform: translateY(45px);
   text-align: center;
   
}

.active {
  visibility: visible;
  opacity: 1;
  transition: all .2s;
}

.active + .elegant-modal {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.elegant-modal h1.title-modal {
  margin: 40px 0 20px 0;
  padding: 0 15px;
}

.elegant-modal hr.line-modal {
  border: 1px solid #F2F2F2;
}

.elegant-modal p.paragraph-modal {
  font-size: 28px;
  margin-top: 33px;
  padding: 0 45px;
  color: #353e47;
 font-family: 'Amatic SC', cursive;

}
.elegant-modal p.paragraph-modal a {
  font-size: 20px;
  margin-top: -5px;
  padding: 0 45px;
  color: #009dc1;
}
.elegant-modal p.paragraph-modal a:hover {
  font-size: 20px;
  margin-top: -5px;
  padding: 0 45px;
  color: #009dc1;
  text-decoration:none;
}




.elegant-modal p.paragraph-modal-sm {
  font-size: 25px;
  margin-top:35px;
  padding: 0 45px;
  color: #353e47;
 font-family: 'Amatic SC', cursive;
}
.elegant-modal p.paragraph-modal-sm a {
  font-size: 20px;
  margin-top: 10px;
  padding: 0 45px;
  color: #009dc1;
}
.elegant-modal p.paragraph-modal-sm a:hover {
  font-size: 20px;
  margin-top: 10px;
  padding: 0 45px;
  color: #009dc1;
  text-decoration:none;
}






.elegant-modal p.paragraph-modal-xs {
  font-size: 25px;
  margin-top: 20px;
  padding: 0 45px;
  color: #353e47;
 font-family: 'Amatic SC', cursive;
}
.elegant-modal p.paragraph-modal-xs a {
  font-size: 16px;
  margin-top: 20px;
  padding: 0 45px;
  color: #009dc1;
}
.elegant-modal p.paragraph-modal-xs a:hover {
  font-size: 16px;
  margin-top: 10px;
  padding: 0 45px;
  color: #009dc1;
  text-decoration:none;
}
