html {
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.2;
    scroll-behavior: smooth;
}

.topbg {
    background-image: url('../img/top_bg.jpg');
    background-size: cover;
    background-position: center center;
}

.midbg {
    background-image: url('../img/bg_1.png');
    background-size: cover;
    background-position: center center;
}


.bundbg {
    background-image: url('../img/bg_bund.jpg');
    background-size: cover;
    background-position: center center;
}

input {
    background: transparent;
    border: solid 2px white;
    color: white;
}

.modal_form input {
    background: #3CB1E1;
    padding: 8px;
   
}
 .g-recaptcha {
    border:none;
    background-color: #3CB1E1;
    color: white;
    transform: scale(1);
    display: inline-block;
    transition: 0.4s;
}

.g-recaptcha:hover {
    background-color: #3CB1E1;
    color: white;
    transform: scale(1.1);
    transition: 0.4s;
}

input::placeholder {
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.2;
}
.cloud {
    text-align: center;
}

input::-webkit-input-placeholder {
    color: white;
}

.serverone {
    margin-top: -40px;
    margin-bottom: -100px;
    margin-right: 0px;
}

.servertwo{
    
    margin-bottom: -70px;
}


h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: 45px;
    line-height: 1.1;
}

.lime {
    color: #CEDA3E;
}

.blue {
    color:#3CB1E1
}

.white {
    color: white;
}

.large {
    font-size: 34px;
}

.bold {
    font-weight: bold;
}

.checkmark::before { 
    content: '';
    background-image: url('../img/checkmark.png');
    width: 36px;
    height: 27px;
    display:inline-block;

}

.checkmarks {
    background-image: url('../img/checkmark.png');
    background-repeat: no-repeat;
    background-position: top left;
    padding-left: 48px;

}

.button {
    border:none;
    background-color: #3CB1E1;
    color: white;
    transform: scale(1);
    display: inline-block;
    transition: 0.4s;
}
.button:hover {
    
    color: white;
    transform: scale(1.1);
    transition: 0.4s;
    border:none
}

a {
    text-decoration: none!important;
}


.animated {
    
    
    animation: move 4s infinite ease-in-out;
  }
  
  @keyframes move {
    9% {
     
        transform: scale(1);
    }
    6% {
     
        transform: scale(0.95);
    }
    0% {
        transform: scale(1);
    }
    3% {
        transform: scale(1.05);
    }
  }

  


  @media only screen and (max-width: 1180px) {

    h1 {
        font-size: 50px;
        font-weight: 800;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 40px;
        line-height: 1.1;
    }
    .large {
        font-size: 24px;
        line-height: 1.1;
    }
  }


  @media only screen and (max-width: 800px) {

    h1 {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 25px;
        line-height: 1.1;
    }
    .large {
        font-size: 22px;
        line-height: 1.1;
    }

    p {
        font-size: 20px;
        line-height: 1.2;
    }
  }