body {
    margin: 0;
}

h1 {
    font-family: Quicksand, "Segoe UI", sans-serif;
    font-weight: 300;
    font-size: 48px;
}

p {
    font-family: Quicksand, "Segoe UI", sans-serif;
    font-size: 14px;
    color: #333;
}

.header {
    position: relative;
    text-align: center;
    background: -o-linear-gradient(30deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
    background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
    color: #fff;
}

.inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: #fff;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 100px;
}

.parallax > use {
    -webkit-animation: moveForever 25s cubic-bezier(.55, .5, .45, .5) infinite;
            animation: moveForever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
    -webkit-animation-duration: 7s;
            animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    -webkit-animation-delay: -3s;
            animation-delay: -3s;
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    -webkit-animation-delay: -4s;
            animation-delay: -4s;
    -webkit-animation-duration: 13s;
            animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    -webkit-animation-delay: -5s;
            animation-delay: -5s;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
}

@-webkit-keyframes moveForever {
    0% {
        -webkit-transform: translate3d(-90px, 0, 0);
                transform: translate3d(-90px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(85px, 0, 0);
                transform: translate3d(85px, 0, 0);
    }
}

@keyframes moveForever {
    0% {
        -webkit-transform: translate3d(-90px, 0, 0);
                transform: translate3d(-90px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(85px, 0, 0);
                transform: translate3d(85px, 0, 0);
    }
}

@media (max-width : 768px) {
    h1 {
        font-size: 24px;
    }
    .content {
        height: 30vh;
    }
    .waves {
        height: 40px;
        min-height: 40px;
    }
}





/*footer*/
:root {
  --main-radius: 5px;
  --main-padding: 5px;
}
html {
  scroll-behavior: smooth;
}

* {
  font-family: "Inter", sans-serif;
}

footer {
  display: grid;
  height: 50vh;
  grid-template-columns: 1fr 1fr 1fr ;
  grid-template-rows: 0.8fr 0.2fr;
  grid-template-areas:"content1 content2 content3"
  "footer footer footer";                    
  grid-gap: 0rem; 
  color: #e6e6e6;
  text-align: center;
}
.abc,.footertext
{
  margin-top: 3vh;
}
ul
{
  text-align: center; 
  list-style-type:none;
  line-height: 1.8;
  margin-left: 10px;
}
#content13 ul
{
  text-align: center; 
  list-style-type:none;
  line-height: 0.8;
  margin-left: 10px;
}

#content10 {
  background: #363940;
  grid-area: content1;
}

#content12 {
  background: #363940;
  grid-area: content2;


}


#content13 {
  background: #363940;
  grid-area: content3;
}
#content10 p, #content12 p, #content13 p
{
    color: white;
}

.footer {
  background: #2d3035;
  grid-area: footer;
}
@media only screen and (max-width: 600px) {
  footer {

  height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 0.5fr ;
    grid-template-areas:
      "content1"
      "content2"
      "content3"
      "footer";
  }
  ul
  {
    margin-left: 10px;
    text-align: center;

  }
}
#content10 a

{   text-decoration: none;
    color: white;

}

#content10 a:hover

{ color: yellow;}

#content12 a

{text-decoration: none;
 color: white;}

#content12 a:hover

{color: yellow;}

