body {
  font-family: 'Livvic', sans-serif;
  margin:2%;
}

h1 {
	font-size: 7vw;
  margin-top: 0%;
  font-family: 'Mochiy Pop One', sans-serif;
	color: #26547C;
  text-align: center;
}

p {
  font-size: 1.5vw;
  text-align: center;
}

h5 {
  font-size: 1vw;
  text-align: center;
}

.image {
  width: 100%;
}

.box{
  width: 35%;
}

/* hamburger nav*/
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #26547C;
  overflow-x: hidden;
  transition: 0.5s;
}
  
.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
  
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 2vw;
  color: white;
  display: block;
  transition: 0.3s;
}
  
.overlay a:hover, .overlay a:focus {
  color: white;
  font-size: 2.5vw;
  text-decoration: underline;
}
  
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}
  
@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.overlay .active2 {
  color: white;
  text-decoration: underline;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

/*curved title*/
.text {
  color: white;
  font-size: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

path {
  fill:transparent;
}
  
text {
  fill: #26547C;
  text-align: center;
  font-size: 280%;
  font-family: 'Mochiy Pop One', sans-serif;
  background-color: white;
}

.wrapper {
  padding: 3%;
  background: #69A2B0;
}

/*image flip on about page*/
.card {
  width: 30%;
  height: 30%;
  display: inline-block;
  position: relative;
}

.card .img-top {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.card:hover .img-top {
  display: inline-block;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

/* This container is needed to position the front and back side */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/*accordion*/
.accordion {
  font-size: 1.5vw;
  font-family: 'Livvic', sans-serif;
  color: white;
  padding: .5em 1em;
  background: #26547C;
  cursor:pointer;
  width:100%;
  border:none;
  border-radius: 10px;
  outline:none;
  margin-bottom:.2em;
}

.accordion:hover {
  background:#69A2B0;
}

.content {
  /* max-height: 0; */
  overflow: hidden;
  transition: .5s;
}

.accordion:after {
  content: "\02795";
  font-size: .8em;
  float:left;
}

.active:after {
  content:"\2796";
}

.active:hover {
  cursor:pointer;
  background: #69A2B0;
}

/*contact form*/
input[type="text"],
input[type="email"],
textarea {
  font-size: 1em;
  font-family: 'Livvic', sans-serif;
  background: linear-gradient(#eeeeee, #ffffff);
  border-top: 2px solid #cccccc;
  border-left: 2px solid #cccccc;
  border-bottom: 2px solid #eeeeee;
  border-right: 2px solid #eeeeee;
  border-radius: 10px;
  padding: .5em;
  margin-top: .5em;
}

input[type="submit"] {
  font-size: 1em;
  background: linear-gradient(#ffffff, #eeeeee);
  outline: 0;
  padding: .5em 1em;
  border-radius: 15px;
  text-shadow: 1px 1px 3px rgba(198, 198, 198, 0.9);
  border: 2px solid #eeeeee;
  margin-top: 1em;
}

input[type="submit"]:hover {
  background: linear-gradient(#eeeeee, #ffffff);
  cursor: pointer;
}