/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Feb 14, 2023, 10:35:01 AM
    Author     : jcoch
*/

body{
    font-family: 'Open Sans', sans-serif;
}

#topmast{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 25;
    font-family: 'Quicksand', sans-serif;
    border-bottom: 2px solid black;
    background-color: rgba(200,200,200,0.9);
}

#topmast > div{
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 80px;
    align-items: center;
    margin: auto;
}

#mainDiv{
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    bottom: 40px;
    z-index: 24;
    overflow: auto;
}

#mainDiv > div{
    width: 90%;
    margin: auto;
}

#footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    


    z-index: 23;
}

#footer > div{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 40px;
}

#footerLinks a{
    color: black;
    text-decoration: none;
}

#logo{
    background-image: url(ATechLogoSmall.png);
    height: 80px;
    width: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#tagLine{
    text-align: center;
}

#menuLink{
    font-size: 40px;
    width: 120px;
    text-align: center;
    cursor: pointer;
}

#menuDiv{
    position: fixed;
    top: 60px;
    right: 5%;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    font-variant: small-caps;
    font-size: x-large;
}

#menuDiv li{
    cursor: pointer;
}

.sectionHeaderImage{  
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: white;
    width: 100%;
    margin: auto;
    height: 460px;
    
    
}

#websiteBuilderIMG{
    background-image: url(webBuildingMachine.jpg);
  
}

#localListingsIMG{
    background-image: url(getListedDaliStyle.jpg);
}

#customerEngagementIMG{
    background-image: url(customerEngagement2.jpg);
}

#socialMarketingIMG{
    background-image: url(socialMarketing.jpg);
}

#contactFormStatusDiv{
    padding: 5px;
    margin: auto;
    margin-top: 15px;
    text-align: center;
}



#agreeToTerms{
    width: 20px;
    height: 20px;
    
}

.nextItemButton{
    padding: 0px 15px 5px 15px;
    background-color: blueviolet;
    color: white;
    font-weight: 900;
}

.inactiveNext{
    background-color: rgba(200,200,200,0.9);
}

.statusMessage{
    color: blueviolet;
    font-size: large;
}
.serviceDiv{
    margin-top: 50px;
}

.hiddenDiv{
    display: none;
}

.invalidInput{
    border: 2px solid orange;
}

.missingInput{
    border: 2px solid yellow;
}

.editFieldButton{
    padding-top: 5px;
}

.phoneInput{
    width: 100px;
}

.contactMethodDiv > div{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

h3{
    margin-left: 3%;
}

ul{
    margin-left: 3%;
}

p{
    text-align: justify;
}

fieldset{
    max-width: 420px;
    margin: auto;
}

fieldset div{
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

fieldset textarea{
    width: 90%;
    margin: auto;
    height: 80px;
}



.pIndent{
    margin-left: 5%;
}

@media all and (max-width: 700px){
    #topMast > div{
        width: 100%;
    }
    #logo{
        height: 60px;
        width: 90px;
    }
    #menuLink{
        width: 90px;
    }
    #tagLine{
        font-size: medium;
        text-align: right;
    }
}

@media all and (max-width: 500px){
    #mainDiv{
        bottom: 70px;
    }
    
    #footer{
        height: 70px;
    }
    #footer > div{
        height: 70px;
        align-items: center;
        padding-left: 10px;
        
    }
}
