:root{
    --color-primary: #ffbf00;
    --color-alert: #ED4F32;
}
*{
    margin: 0;
    
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat', sans-serif;
}
.top_bar{
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: sticky;
    top: 70px;
    z-index: 100;
}
main{
    width: 100%;
    min-height: calc(100vh - 72px);
    background-color: #000;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 50px;
    z-index: 100;
}
header{
    width: 100%;
    height: 70px;
    background-color: #fa26a0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Stylish',sans-serif;
    font-weight: 700;
    font-size: 32px;
    z-index: 10;
    position: sticky;
    top: 0;
}
.box{
    
    /*background-color: #ff000044;*/
    
    
}
.box .heading{
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 40px;    
    font-family: 'Stylish';    
}
.container{
    padding: 20px 0;
}
.container p {
    font-size: 18px;
}
.contact-container{
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    font-weight: bold;
    padding: 20px;
    border-top: 1px solid var(--color-primary);
}
.contact-container h2{
    font-weight: bold;
    font-size: 18px;
    
}
.contact h4{
    font-weight: bold;
    
    font-size: 18px;
    padding: 15px 0 5px;
}
.contact span {
    font-weight: bold;
    
}
.contact-2{
    padding: 5px 0;
}
.contact-2 span {
    font-weight: bold;
}
.btn{
    display: inline-block;
    text-decoration: none;
    color: #000;
    margin-top: 15px;
    border: none;
    outline: none;
    padding: 8px 13px;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    background-color: #bbb;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

.navbar-name {
    font-family: 'Montserrat', sans-serif;
    color: white;
    Montserratfont-weight: 900;
    font-size: 150%;
}

.btn:hover,.btn:focus{
    background-color: #ddd;
}
.contact-2 i {
    
    font-size: 20px;
    margin-right: 15px;
}
footer{
    padding: 13px;
    display: flex;
    align-self: center;
    justify-content: center;
    color: #555;
    user-select: none;
}
footer i {margin: 2px 10px 0 0;}

@media screen and (min-width: 750px){
    main{
        padding-left: 140px;
    }
    .box{
        width: 100%;
        
    }
    .box .heading{
        font-size: 50px;
    }
    .contact-container{
        /*width: 450px;*/
    }
}
@media screen and (max-width: 600px){
    main{
        padding: 15px;
        background-position: right;
    }
    .box{
        width: 100%;
        padding-top: 40px;
        text-align:center;
    }
    .contact-container{
        /*width: 100%;*/
        -ms-text-align-last: auto;
        text-align:left;
    }
}
