*{
    text-decoration: none;
    box-sizing: border-box;
}


.scaffold{
    background:black
}


header .mdl-layout__header-row .mdl-layout-title{
    color:white;
    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-color: white;
    padding: 2em;
    width: 40%;
}
.booking_form .title h1{
     line-height: 1;
}
.booking_form .title p{
    margin-bottom: 2em;
}
.booking_form form{
    display: flex;
    flex-direction: column;
    gap:10px
}
.booking_form form button{
    background-color: red;
    color: white;
}
.booking_form form p{
    font-size: .9em;
    line-height: 1.5;
    text-align: center;
}
@media(max-width:768px){
    .booking_form{
        width:90%
    }
}
main .banner{
    background: url("https://mma.prnewswire.com/media/2287432/FortressPayBcgrnd.jpg?p=facebook");/*url("../assets/site_images/robots.jpg");*/
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-position-x: left;
}
main .banner .wrapper{
    color:white;
    padding:8em 2em;
    background: rgba(0, 0, 0, 0.541)
  
}
main .banner .wrapper .main-text{
    font-size: 6em;
    line-height: 1.06;
}
main .banner .wrapper .tagline{
    display: none;
}
main .banner .wrapper .sub-text{
    margin-top: 2em;
    width:50%;
    font-size: .9em;
}
main .banner .wrapper .banner-button{
    display:flex;
    align-items: center;
    gap:5px
}
main .banner .banner-button button{
    border:1px solid lightgrey;
    margin-top:3.5em;
    color:white;
    display: flex;
    align-items: center;
    gap:5px
}
main .banner .banner-button button span{
    color:white
}

.modal{
    position: fixed;
    top:0;
    left:0;
    right:0;
    height:100vh;
    background-color: white;
    z-index: 1000
}

.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: black;
    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 .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:black;
    display: flex;
    align-items: center;
    gap:10px
}
.sidebar.mdl-navigation .mdl-navigation__link:hover{
    background-color: black;
    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: black;
    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){

    main .banner .wrapper{
        background: rgba(255, 255, 255, 0.801);
        padding:7em 1.3em
    }
    main .banner .wrapper .tagline{
        display: block;
        color:black;
        font-size: 5em;
        line-height: 1.01
    }
    main .banner .wrapper .main-text{
        line-height: 1.01;
        margin-top: .8em;
        color:black;
        font-size: 2em;
    }
    main .banner .wrapper .sub-text{
        width:100%;
        margin-top:2em;
        color:black;
        font-size: 1.2em;
        line-height: 1.6;
    }

    main .banner .banner-button button{
        border:1px solid black;
        margin-top:3.5em;
        color:black;
        justify-content: center;
    }
    main .banner .banner-button button span{
        color:black
    }
    
    nav.desktop-nav{
        display: none;
    }
    section{
        padding:0
    }

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

    
}
.booking_form form input,textarea, select{
    border:1px solid black;
    outline: none;
    padding:.5em 1em
}

textarea{
    resize:none;
}


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