/* Link cursive font */
@import url('https://fonts.googleapis.com/css?family=Patrick+Hand&display=swap');

/* Link monospace font */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');

@font-face {
  font-family: 'Arial';
  src: url('path/to/arial.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
  height: 100%;
  font-family:'Roboto', sans-serif;
  background: linear-gradient(to bottom, #313131, rgb(160, 160, 161), #ffffff);
  background-image: url("/images/mountain-view.jpg");  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}


  /* home page*/
.slide-text{
    margin-left: 3vw;
    margin-top: 10vw;
    font-family: cursive;
    font-size: 5vw;
    color: whitesmoke;
    text-shadow: 0vw 1vw 2vw black;
    position: absolute;
}

.slide {
    display: none;
    animation: fade 4s forwards;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contaoner-marketing{
    margin: auto;
    padding-top: 2vw;
    padding-bottom: 5vw;
    position:absolute;
    margin-top: 30vw;
    padding-bottom: 10vw;
}
.marketing-section {
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  
  .column {
    flex-basis: 30%;
    padding: 0 1.0vw;
    margin-left: 5vw;
    margin-right: 5vw;
    background: linear-gradient(to bottom, #1f1e1e91, rgba(26, 48, 20, 0.521),rgba(4, 71, 4, 0.342),#75747400);;
    border-radius: 1vw;
    box-sizing: border-box;
    transition: transform 0.2s ease-in-out;
  }

  .column h2{
    padding-top: 4vw;
    color: white;
    font-size: 3vw;
    font-family:sans-serif;
    text-align: center;
  }
  
  .column:hover {
    transform: scale(1.1);
    cursor: pointer;
  }

  .titel-column{
    text-shadow: 0vw 0.2vw rgba(8, 8, 8, 0.815);
  }

  #typing-text {
    display: inline-block;
    font-size: 2vw;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-family: monospace;
    overflow: hidden;
    white-space: nowrap;
    color: rgb(8, 236, 8);
    animation: typing 5s steps(40) infinite;
  }
  
  @keyframes typing {
    from { width: 0; }
    to { width: 60%; }
  }

  /* services page */

  .features {
    margin-top: 2vw;
  }
  
  .container {
    float: left;
    width: 60%;
    margin: 8vw 0vw 4vw;
    padding: 3vw;
    background-color: rgba(255, 255, 255, 0.938);
    border-radius: 2vw;
    box-shadow: 0 0 10vw rgba(0, 0, 0, 0.1);
  }
  
  .container h2 {
    width: 0%;
    height: 0%;
    margin-bottom: 0vw;
    text-align:center;
    font-size: 6vw;
    color: rgb(4, 106, 153);
    text-shadow: 0vw 0.2vw rgba(102, 101, 101, 0.473);
      }
  
  .container p {
    margin-top: 25vw;
    font-size: 1.8vw;
    font-family:sans-serif;
    line-height: 1.5;
  }

  
  #slideshow {
    margin-top: 5vw;
    float: left;
    width: 70%;
    height: 50%;
    position: relative;
    overflow: hidden;
  }
  
  #slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
  }
  
  #slideshow img.active {
    opacity: 0.8;
  }
  
  /*web-boxes*/
  .web-box {
    display: inline-block;
  }
  
  .web-div-column{
    flex: 1;
    float: left;
    margin: 0 4vw;
    padding: 2vw;
    background-color: #d6d6d6c7;
    border-radius: 1vw;
  }

  .web-div-column h2{
    text-align: center;
    font-family:sans-serif;
    font-size: 3vw;
    text-shadow: 0vw 0.3vw rgba(255, 255, 255, 0.582);

  }
  
  .web-column-1{
    width: 20vw;
  }
  
  .web-column-2{
    width: 20vw;
  }
  
  .web-column-3{
    width: 20vw;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
  }
  
  /* contact page */

  .contact {
    position: relative;
    width: 40vw;
    height: 40vw;
    perspective: 100vw;
    float: left;
    margin-left: 6vw;
  }
  
  .front, .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 2vw;
  }
  
  .front {
    background-color: #eeeeee85;
    background-image: url("/images/afrobear.jpg");
    background-position: center;
    background-size: contain;
  }
  
  .front h2{
    padding: 1vw;
    margin-top: 14vw;
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
  }
  .back {
    background-image: url("/images/OCto.jpg");
    background-position: center;
    background-size: contain;
    transform: rotateY(180deg);
  }

  .back p{
    color: aliceblue;
    text-align: center;
    padding: 1vw;
    margin-top: 14vw;
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 80%;
  }
  
  .contact:hover .front {
    transform: rotateY(-180deg);
  }
  
  .contact:hover .back {
    transform: rotateY(0);
  }
  
  /* Responsive design */

@media only screen and (max-width: 768px) {


  .slide-text{
    font-size: 7vw;
    text-align: center;
  }


  .container {
    width: 100%;
    float: none;
    margin: 50px 0;
  }

  #slideshow {
    width: 100%;
    height: 300px;
  }

  #slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .web-div-column {
    margin: 20px 0;
    padding: 20px;
    width: 100%;
  }

  .contact {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

}


 
  
  
  


  


