body {
  font-family: Arial, sans-serif;
  background: -webkit-gradient(linear, left top, right bottom, from(#08af53), to(rgba(8, 175, 83, .3)))fixed;
  height: auto;
  z-index: 1;
  margin: auto;
}

p {
  font-size: 1.2rem;
}

.navbar {
  background-color: white;
  background-image: none;
  background-repeat: no-repeat;
  border-radius: 3px !important;
}

.footer {
  background-color: #f5f5f5;
  border-radius: 3px !important;
 margin-bottom: -30px;
}

.nav-link {
  color: #000000 !important;
  font-size: 1.2em !important;
}

.nav-item {
  padding-right: 10px;
}

.navbar-nav>.active>a {
  color: #08af53 !important;
}

.nav-item>a:hover {
  color: #08af53 !important;
}
.navbar-toggler-icon{
  color: #08af53 !important;
}
.extend{


    min-height: calc(100vh - 40px);
}
@media screen and (max-width:767px){

  .nomobile{
  display:none;
  }
}
  @media screen and (max-width: 800px){
    .nomed{
      display:none;
  }
}


footer { padding: 50px 0 50px 0; }

.empty-row { padding-top: 50px; }

.content-image {
    height:auto;
    width: 550px;
    border-radius: 15px;
}

.content-text {
        font-size: 20px;
        margin-top: 40px;
    }

@media only screen and (max-width: 600px) {
    .content-text  {
        font-size: 15px;
    }
    
    .content-image {
    height:auto;
    width: 350px;
    }
}

@media only screen and (max-width: 1000px){
    .content-image{
        padding-bottom: 15px;
    }
}

.slideanim {
    margin: 0 auto;
    visibility:hidden;
}
.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    } 
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    } 
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}