
.w3-card {
  border-radius: 15px;
}

.w3-card img {
  border-radius: 15px;
}
body {
  padding: 0px;
  margin: 0px;
  font-family: 'Rubik' !important;
  overflow-x: hidden;
  background: rgb(50, 47, 96);
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  padding: 20px 1vw;
}

.curve {
  position: absolute;
  height: 150px;
  width: 100%;
  bottom: 0;
}

.curve::before {
content: '';
display: block;
position:absolute;
border-radius: 100% 50%;
width: 55%;
height: 100%;
background-color: rgb(50, 47, 96);
transform: translate(85%, 60%);
z-index: 1;
}

.curve::after {
  content: '';
  display: block;
  position:absolute;
  border-radius: 100% 50%;
  width: 55%;
  height: 100%;
  background-color: white;
  transform: translate(-4%, 40%);
  z-index: 1;
}

.curve2 {
  position: absolute;
  height: 130px;
  width: 100%;
  bottom: 0;
}

.curve2::before {
content: '';
display: block;
position:absolute;
border-radius: 100% 50%;
width: 55%;
height: 100%;
background-color: white;
transform: translate(85%, 60%);
}

.curve2::after {
  content: '';
  display: block;
  position:absolute;
  border-radius: 100% 50%;
  width: 55%;
  height: 100%;
  background-color: rgb(238, 238, 238);
  transform: translate(-4%, 40%);
  z-index: -1;
}

.blue {
  background: rgb(50, 47, 96);
}

.red {
  background: rgb(118, 40, 40);
}

.whiteback {
  background-color: white;
}

.greyback {
  background-color: rgb(238, 238, 238);
}

h1 {
  font-size: 36px;
  font-weight: 600;
}

h2 {
  font-size: 28px;
}

h3 {

  font-size: 26px;
}

h5 {
  font-size: 24px;
}

p {
  font-size: 20px;
}

img {
  max-width: 100%;
}

.parlist {
  font-size: 20px;
}


.fillscreen {
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-image:url(../images/frontpage.jpg);
}

.roundimg {
  border-radius: 15px;
}

.right-align {
  text-align: right;
}


.content {
  padding: 25px;
  max-width: 1920px;
  margin:auto;
  z-index: 1;
}

.logo {
  display: flex;
}

.logo img {
  max-height: 100px;
  margin-right: 15px;
}


.card {
  margin: 0.1%;
  padding: 10px 25px;
  float: left;
  width: 49.8%;
  overflow: hidden;
}

.card img {
  max-width: 100%;
}


.footer{
  width: 100%;
  padding: 35px;
  color: white;
}

.footer p {
  font-weight:300px;
  font-size:16px;
}

.footercard {
  margin: 0.1%;
  padding: 10px 25px;
  float: left;
  width: 33.1%;
  z-index: 3;
}




@media only screen and (max-width: 800px) {
  .card {
    width: 49.8%;
    margin: 6px 0;
  }

  .footercard {
    width: 49.8%;
    margin: 6px 0;
  }

}


@media only screen and (max-width: 600px) {
  .card {
    width: 100%;
  }
  .footercard{
    width:100%;
  }
}


.w3-twothird {
  margin: 15px;
}

h3 a {
  text-decoration: none;
}

.w3-card {
  margin-left: 15px;
  margin-right: 15px;

}

.w3-card img {
  max-width: 100%;
}

.imagelink h3 {
  opacity: 0;
  transition: 0.3s;
}

.imagelink:hover {
  transition: 0.3s;
  cursor:pointer;
  
}

.imagelink:hover img {
  opacity: 20%;
  transition: 0.3s;
}

.imagelink:hover h3 {
  opacity: 100;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}