body,
html {
  height: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  cursor: default;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  text-decoration: none;
  cursor: default;
}
a:active {
  text-decoration: none;
  cursor: default;
}


.btn-type1 {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: rgb(28, 184, 65);
  border: 2px solid rgb(28, 184, 65);
  font-size: 1rem;
  display: inline-block;
  border-radius: 0.3em;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-type1::before {
  content: "";
  background-color: rgba(255,255,255,0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.btn-type1:hover {
  cursor: pointer;
  background-color: rgb(28, 184, 65);
  color: #fff;
  border-bottom: 4px solid darken(rgb(28, 184, 65), 10%);
}
.btn-type1:hover::before {
  transform: skewX(-45deg) translateX(30em);
  transition: all 0.5s ease-in-out;
}

.btn-type2 {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: rgb(60, 60, 255);
  border: 2px solid rgb(60, 60, 255);
  font-size: 1rem;
  display: inline-block;
  border-radius: 0.3em;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn-type2::before {
  content: "";
  background-color: rgba(255,255,255,0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.btn-type2:hover {
  cursor: pointer;
  background-color: rgb(60, 60, 255);
  color: #fff;
  border-bottom: 4px solid darken(rgb(60, 60, 255), 10%);
}
.btn-type2:hover::before {
  transform: skewX(-45deg) translateX(30em);
  transition: all 0.5s ease-in-out;
}

.btn-type3 {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: rgb(28, 184, 165);
  border: 2px solid rgb(28, 184, 165);
  font-size: 1rem;
  display: inline-block;
  border-radius: 0.3em;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn-type3::before {
  content: "";
  background-color: rgba(255,255,255,0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.btn-type3:hover {
  cursor: pointer;
  background-color: rgb(28, 184, 165);
  color: #fff;
  border-bottom: 4px solid darken(rgb(28, 184, 165), 10%);
}
.btn-type3:hover::before {
  transform: skewX(-45deg) translateX(30em);
  transition: all 0.5s ease-in-out;
}



main{
  text-align: center;
  font-size: 1rem;

}

h2.title {
  font-family: 'Vollkorn', serif;
  font-size: 3.6rem;
  font-weight:bold; 
  text-align: center;
  -webkit-text-stroke: 0.4px rgba(255,255,255,0.4);
  text-stroke: 0.4px rgba(255,255,255,0.4);
  color: rgb(204,153,0);
}

h2.right-bottom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color:rgba(200,200,200,06);
}

section.parallax {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
div.parallax-inner {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
div.parallax-image {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
div.parallax-content {
  margin: 0;
  padding: 5%;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.top-bg-1  {
  background-image: url('../img/top-001.jpg');
}

.top-bg-2  {
  background-image: url('../img/top-002.png');
}

.top-bg-3  {
  background-image: url('../img/top-003.png');
}

.top-bg-4  {
  background-image: url('../img/top-004.png');
}
.top-bg-5  {
  background-image: url('../img/top-005.png');
}
.top-bg-6  {
  background-image: url('../img/top-006.png');
}

.footer img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}


@media screen and (max-width:600px) {
  h2.title {
    font-size: 2.4rem;
  }
  h2.right-bottom {
    font-size: 0.8rem;
  }

}
@media screen and (min-width: 600px) and (max-width: 1024px) {
}
@media print , screen and  (min-width:1024px) {
}
