html {
    background-image: linear-gradient(#128bb8, #2ab0c5);
}

.mob-wrapper {
    display: none;
}

body {
    background-position:top center;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 1.125rem;
}

h1 {
    font-size: 3.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.171);
}


h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
}

h3 {
    line-height: 1.75rem;
    
}


p {
    line-height: 1.35rem;
}

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

.tick i {
    margin-top:  30px;

    font-size: 100px;
    color: rgb(110, 245, 20);
}

.thankyou {
    margin-right: 50px;
    margin-left: 20px;
    text-align: center;
}

.form {
    margin-right: 80px;
}

.form-control {
    border-color: black;
}

.form-control:invalid:focus {
    border-color:red;
}

.form-control:valid:focus{
    border-color: green;
}

.container {
    width: 1024px;
    /* min-height: 300px; */
    margin-left: auto;
    margin-right: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid lightgrey;
}


main {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page_name {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid lightgrey;
    margin-bottom: 20px;
}



.mybutton {
    background-color: white;
    color:#128bb8;
    font-family: "playfair display";
    padding: 11px 25px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 22px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.171);
}

.mybutton a{
    color:#128bb8;
}

.mybutton:hover {
    background-color:#00fff2;
}



/* Contact Us Page ------------------ */
.form-label {
    display: block;
    margin-bottom: 10px;
}

input[type=radio] {
    margin-right: 10px;
}

form {
    margin: 40px 0px;
}

.inputwrapper {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    
}


input[type=text], input[type=email] , textarea
{
    padding: 12px 20px;
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
}

.contact_us_text{
 padding-right: 60px;
}

/* ------------------------------------------------------------------ */
/* Tablet View protrait*/
@media (max-width: 768px){
    .container{
        max-width: 750px;
    }
    .col {
        width: 45%;
    }
    
    .hide-desktop-only {
        display: block;
    }
    
    
    nav {
        display: none;
    }
    
    nav a {
        display: block;
    }
    
    .logo {
        padding: 40px 0;
    }
    
    .mybutton {
        margin-left: 0px;
    }
    
    .header-container {
        position: relative;
    }
    .container {
        padding-top: 10px;
    }
    .mob-wrapper {
        display: block;
        padding-right: 30px;
    }
    
    .mob-nav {
        display: none;
        position: absolute;
        padding-top: 10px;
    }
    
    .navbutton {
        display: block;
        background-color: white;
        padding: 15px 30px;
        margin-left: -70px;
        text-align: center;
    }
}

    /* --------------------------------------------------------------- */
    /* Mobile View landscape*/
    @media (max-width: 700px){
        .container{
            max-width: 650px;
        }

        .col {
            width: 100%;
        }
    
        .hide-mobile {
            display: none;
        }
    }   
        
    
    
    
    /* Mobile View portrait*/
    @media (max-width: 400px){
        .container{
            max-width: 376px;
            margin-left: 10px;

        }

        main{
            display: block;
        }
        .cards{
            display: block;
        }

        .card1, .card2, .card3 {
            width: 90%;
        }
     
        .hide-mobile {
            display: none;
        }
    }