/*   
-----
01 GENERAL
02 BACKGROUND
03 SECTIONS
04 BUTTONS
05 LOADER
06 MIDIA QUERIES
-----
*/


/*  ----- 01 GENERAL -----  */
* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
}

p {
    padding: 0;
    margin: 0;
}

.hidden {
    display: none;
}

.lp_loader {
    display: flex;    
    width: 100vw;
    height: 100vh;    
    align-items: center;
    justify-content: center;    
}

/*  ----- 02 BACKGROUND -----  */
.lp_container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: url(/images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    align-items: center;
    justify-content: baseline;    
}


/* ----- 03 SECTIONS ----- */

/*  ----- HEADER -----  */
.lp_logo {
    display: flex;
    padding: 40px 0 10px 0;
}

.lp_logo img {
    width: 200px;
    height: auto;
}

/*  ----- APPOINTMENT -----  */
.lp_box_btn {
    display: flex;
}

/*  ----- ICONS -----  */
.lp_box_icons {
    display: flex;
    flex-direction: row;
    padding-bottom: 30px; 
}

.lp_icons {
    display: flex;
    flex-direction: column;  
}

.lp_whatsapp {
    display: flex;
    width: 60px;
    height: 60px;
    background: url(/images/icons/whatsapp.png);
    background-position: center;
    background-size: cover;
    margin: 0 15px;      
}

.lp_instagram {
    display: flex;
    width: 60px;
    height: 60px;   
    background: url(/images/icons/insta.png);
    background-position: center;
    background-size: cover;
    margin: 0 15px;    
}

.lp_email {
    display: flex;
    width: 60px;
    height: 60px;    
    background: url(/images/icons/email.png);
    background-position: center;
    background-size: cover;
    margin: 0 15px;    
}

.lp_location {
    display: flex;
    width: 60px;
    height: 60px;  
    background: url(/images/icons/location.png);
    background-position: center;
    background-size: cover;
    margin: 0 15px;    
}

.lp_box_about {
    display: flex;
    width: 50%;
    border-style: solid;
    border-width: 2;
    border-color: #0FB9EC;
    border-radius: 15px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5)
}

.lp_box_img_about {
    display: flex;
    flex-grow: 0;
    justify-content: center;
    align-items: center;
}

.lp_img_about {        
    width: 130px;
    height: 130px;   
    background: url(/images/about.jpg);
    background-position: center;
    background-size: cover; 
    border-radius: 50%;    
}

.lp_content_about {
    display: flex;
    flex-grow: 1;    
    flex-direction: column;    
}

.lp_title_about {
    padding-bottom: 5px;
}

.lp_title_about h1 {
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #0FB9EC;
    text-align: center;        
}

.lp_txt_about {
    display: flex;        
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 300;    
    color: #FFFFFF;
    text-align: center;
    padding-left: 20px;         
}

/*  ----- ADDRESS -----  */
.lp_address {
    padding-top: 20px;
}

.lp_address a {
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #9d7744;
}

/*  ----- 04 BUTTONS -----  */
.lp_btn {
    background: linear-gradient(to bottom right, #1A8FDD, #0FB9EC);
    border: 0;
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5;
    outline: transparent;
    padding: 0 2rem;
    margin-bottom: 40px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}
  
.lp_btn:hover {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(15, 185, 236, 0.5), .125rem .125rem 1rem rgba(15, 185, 236, 0.5);
}

/* ----- 05 LOADER ----- */
.loader { 
    border: 16px solid #1a1a1a;
    border-top: 16px solid #1A8FDD;
    border-radius: 50%; 
    width: 150px; 
    height: 150px; 
    animation: spinloader 2s linear infinite; 
} 

.loader img{ 
    height : 100px; 
    width : 100px; 
    animation: spinlogo 2s linear infinite; 
} 

@keyframes spinloader { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
} 

@keyframes spinlogo { 
    0% { transform: rotate(360deg); } 
    100% { transform: rotate(0deg); } 
}

/* ----- 06 MEDIA QUERIES ----- */
@media only screen and (max-width: 580px) {
    
    .lp_box_header {        
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
        background-attachment: fixed;
    }

    .lp_logo {
        padding: 60px 0 30px 0;
    }

    .lp_logo img {
        width: 150px;
        height: auto;
    }

    .lp_whatsapp, .lp_instagram, .lp_email, .lp_location {
        height: 40px;
        width: 40px;
    }

    .lp_btn {
        font-size: 14px;
        padding: 0 1rem;
    }

    .lp_txt_about {       
        font-size: 12px;
    }

    .lp_box_about {
        width: 70%;
    }

    .lp_img_about {        
        width: 110px;
        height: 110px;
    }

    .lp_title_about h1 {      
        font-size: 18px;                
    }
}