

body {

 
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;


}
.logo {    
margin-top:-200px;		
	display: block; 
 	margin: auto; 
	border: solid 2px #689384;
	border-radius: 100%;
	background-image: url("bg.png");
	height: 200px;width: 200px;}

hr{
float: left;
margin-top:-100px;
border: 0;
width: 100%;
height: 1px;
background-color: #689384;

}


a {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
}
/**
 * Material Modal CSS
 */
.modal {
  will-change: visibility, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: $modal-delay;
}
.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
  min-width: 80%;
  padding: 1.2rem;
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
  
  background: #333333;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__content--active {
  opacity: 1;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  position: relative;
  width:150px;

  margin: 10px;
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-weight: bold;
  font-size:20px;
  color: #fff;
  border-radius: 50px 0;
  line-height: 1;

  background: #7d7e7d;
  background: -moz-linear-gradient(top,  #7d7e7d 0%, #0e0e0e 100%);
  background: -webkit-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 100%);
  background: linear-gradient(to bottom,  #7d7e7d 0%,#0e0e0e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 );


  box-shadow: 0px 0px 15px rgb(0 0 0 / 100%);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {

  background: #689384;
background: -moz-linear-gradient(top,  #689384 0%, #0e0e0e 100%);
background: -webkit-linear-gradient(top,  #689384 0%,#0e0e0e 100%);
background: linear-gradient(to bottom,  #689384 0%,#0e0e0e 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#689384', endColorstr='#0e0e0e',GradientType=0 );

}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffebee;
  transform: none;
  opacity: 1;
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/**
 * Demo specific CSS
 */
body {
  height: 100vh;
  background: #333333;
    font-size: 1vw;
    text-align:center;
    color: #222;
    text-shadow: 0 -1px 1px #000, 0 1px 1px #aaa;
}




img {
  max-width: 100%;
}
.demo-btns header {

  background: #333333;
  align-items: center;
}


.demo-btns header h1 {
margin-top: 1vw;
    font-size: 10vw;
text-align:center;
    color: #222;
    text-shadow: 0 -1px 1px #000, 0 1px 1px #aaa;
}

.demo-btns header h2 {
margin-top: -7vw;
    font-size: 5vw;
text-align:center;
    color: #222;
    text-shadow: 0 -1px 1px #000, 0 1px 1px #aaa;
}

.body .h3 {

    font-size: 5vw;
    text-align:center;
    color: #222;
    text-shadow: 0 -1px 1px #000, 0 1px 1px #aaa;
}

.demo-btns .info {
  	background: #222222;
	background: -moz-linear-gradient(top,  #222222 0%, #689384 50%, #222222 100%);
	background: -webkit-linear-gradient(top,  #222222 0%,#689384 50%,#222222 100%);
	background: linear-gradient(to bottom,  #222222 0%,#689384 50%,#222222 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#222222',GradientType=0 );
width:100%;
  padding: 3vh 1vw;
  min-height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
}
.demo-btns p {
  text-align: center;
  color: #fff;
}
.demo-btns .link {
  font-size: 20px;
}
.demo-btns .modal__trigger {
  margin-right: 3px;
}
@media (max-width: 640px) {
  .demo-btns .modal__trigger {
    margin-bottom: 0.8rem;
  }
}
.demo-close {
  position: absolute;
 
  right: 0;
  margin-top: 0px;
  padding: 0.6rem;
  background: rgba(255,0,0,0.6);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover {
  background: #689384 ;
}







.wrapper{
  position: fixed;
  top: 80;
  left: 50%;
  transform: translate(-50%, -50%);
}

.link_wrapper{
  position: relative;
}
a{
  display: block;
  width: 350px;
  height: 1Z0px;
  line-height: 50px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  background: none;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #689384;
  transition: all .35s;
}

.icon{
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all .35s;
}

.icon svg{
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  transform: rotate(-45deg);
  fill: #689384;
  transition: all .35s;
}

a:hover{
  width: 280px;
  border: 3px solid #689384;
  background: transparent;
  color: #689384;
}

a:hover + .icon{
  border: 3px solid #689384;
  right: -25%;
}
