:root{
    --main-color:rgb(2, 136, 91);
    --main-light-color:rgb(5, 163, 110);
    --main-dark-color:rgb(1, 97, 65);
    --main-transparent-color:rgba(2, 136, 91, 0.658);
}
*{
    text-decoration: none;
    box-sizing: border-box;
    transition: all .4s;
    font-family: "MarkForMC Nrw";
}

header{
    background-color: var(--main-transparent-color) !important;
    backdrop-filter: blur(.9);
    display: none !important;
}

header .mdl-layout__header-row .mdl-layout-title{
    color:var(--main-transparent-color);
    font-size: 1.4em;
    font-weight: 700;
}

main{
    background-color: whitesmoke;
}

main.center_children{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/**booking form*/
.booking_form{
    background:linear-gradient(0, black, var(--main-color));
    padding: 2em;
    width:40%;
    margin:2em auto;
    color:white;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.booking_form .title h1{
     font-size: 1.5em;
}
.booking_form form{
    display: flex;
    flex-direction: column;
    gap:10px
}
.booking_form form button{
    background-color: var(--main-light-color);
    color: white;
}
.booking_form form p{
    font-size: .9em;
    line-height: 1.5;
    text-align: center;
}
.booking_form form select, .booking_form form input, .booking_form form textarea{
    background-color: var(--main-dark-color);
    border:none;
    padding:1em 1.5em;
    border:1px solid var(--main-light-color);
    outline:none;
    font-size: .9em;
}
.booking_form form input, .booking_form form textarea{
    color:white !important
}
@media(max-width:768px){
    .booking_form{
        width:90%
    }
}
main{

}
main .banner{
    margin-top: 0;
    background: url("https://www.greystonetech.com/wp-content/uploads/2024/06/Tech-Solutions-1024x683.jpg");/*url("../assets/site_images/robots.jpg");*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
main .banner .wrapper{
    color:white;
    padding:8em 2em;
    background:linear-gradient(180deg, rgba(0, 53, 33, 0.774), black);
    height:100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner.sub .wrapper{
    height:20vh;
    position: relative;
}
main .banner .wrapper .main-text{
    font-size: 4em;
    line-height: 1.06;
    font-weight: 700;
}
.mdl-layout__drawer-button i{
    color:white;
    font-size: 1.5em;

}

main .banner .wrapper .sub-text{
       font-size: .9em;
       width: 70%;
}
@media(max-width:768px){
    main .banner .wrapper .sub-text{
        width:100%
    }
}
main .banner .wrapper .banner-button{
    display:flex;
    margin-top:.5em;
    gap:5px;
}
@media(max-width:768px){
    main .banner .wrapper .banner-button{
        flex-direction: column;
        width:100%
    }
}
main .banner .banner-button button{
    background:linear-gradient(0deg, black, var(--main-light-color));
    color:white;
    display: flex;
    align-items: center;
    padding:1.5em 2em;
    gap:5px;
    border-radius:360px;
    width:150px
}
main .banner .banner-button button span{
    color:white
}

main .banner .banner-button button:hover{
     
}
@media(max-width:768px){
    main .banner .wrapper{
        padding:1em;
        height:100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    main .banner .wrapper .main-text{
        font-size: 5em;
    }
    main .banner.sub .wrapper .main-text{
        font-size:2em
    }
    main .banner .wrapper .banner-button button{

    }
}

.modal{
    position: fixed;
    top:0;
    left:0;
    right:0;
    height:100vh;
    background-color: white;
    z-index: 1000
}
::placeholder{
    color:white
}
.modal.preload{
    display: grid;
    place-content: center;
    gap:20px
}
.mdl-button--fab{
    position:fixed;
    bottom:5%;
    right:5%;
    cursor:pointer;
    z-index: 500;
    background-color: var(--main-color);
    color:white
}

.mdl-button--fab:hover{
    background-color: rgb(41, 41, 41);
}

.load{
    height:60px;
    width:60px;
    border:5px solid black;
    border-top:5px solid lightgrey;
    border-radius: 360px;
    animation: spin .5s linear infinite;
    margin: auto;
}
.preload .text{
    font-size: 1.4em;
    text-align: center;
}

@keyframes spin{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
section{
    padding:2em
}
section .section-title{
    font-weight: 700;
    font-size: 2em;
    margin:0 0 1em 0
}

aside{
    background: linear-gradient(0deg, black, var(--main-color)) !important;
}

aside .drawer-image{
    padding:2em;
}
.drawer-image img{
    width:150px;
    height:150px;
    border-radius: 360px;
    object-fit: cover;
}
aside.mdl-layout__drawer{
    background:white;
    border:none;
    height:100vh
}
.sidebar.mdl-navigation .mdl-navigation__link{
    color:white;
    display: flex;
    align-items: center;
    gap:10px
}
.sidebar.mdl-navigation .mdl-navigation__link:hover{
    background-color: var(--main-color);
    color:white;
    font-weight: 700;
}

.buy, .pay_response{
    height:100vh;
    display: grid;
    place-content: center;
    position: relative;
}

.buy form{
    padding:2em;
}
.buy img.image-tag{
    width:120px;
    height:120px;
    border-radius: 360px;
    object-fit: cover;
    position: absolute;
    left:50%;
    top:20%;
    transform: translate(-50%,-35%);
    z-index: 1000;
    border:3px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
}
.pay_response div{
    padding:1em
}

.buy button{
    background-color:var(--main-color);
    color:white
}
.buy form button:hover{
    background-color: rgb(65, 63, 63);
}

.pay_response div .mdl-card__title h4{
    font-weight: 700;
    font-size:1.8em;
}
.mdl-card{
    width:100%
}
@media(max-width:768px){    
    nav.desktop-nav{
        display: none;
    }
    section{
        padding:0
    }

    .buy form, .pay_response div{
        width:100%
    }

    
}


textarea{
    resize:none;
}


.bot-alert{
    background-color: whitesmoke;
    box-shadow: 0 0 10px rgba(0,0,0,.16);
    padding: 2em;
}