@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body{
    scroll-behavior: smooth;
}

/* Nevigation */

.navbar-collapse{
    justify-content: center !important;
    width:90% !important;
}
.navbar-nav{
    justify-content: space-evenly !important;
    width: 100% !important;
     align-items: flex-end !important; 
     padding: 0 2%; 
    
}
#home{
    color: #575757 !important;
}


.nav-link {
    text-decoration: none !important;
    font-size: 20px !important;
    color: #C65F30 !important;
    font-weight: 600 !important;
    gap:20px !important;

}

.dropdown-menu{
    /* color: #575757 !important;
    text-align: center !important;
    width: 250px !important;*/
    border-radius: 0px !important;
    padding:0px !important;
    
}

.dropdown-divider{
    margin:0px !important;
}

.dropdown-item:hover{
    background-color: #aaaaaa !important;
    color: white !important;  
}

.dropdown-item{
    height: 45px !important;
    text-align: center !important;
    padding:0px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}


.dropdown-menu li{
    color: #575757 !important;
    text-align: center !important;
    width: 250px !important;
    border-radius: 0px !important;
    border-bottom: #aaaaaa solid 1px;
    

}

.dropdown-menu li:hover{
    background-color: #aaaaaa !important;
    color: white !important; 
}

.nav-link:hover {
    text-decoration: none !important;
    font-size: 20px !important;
    color: #575757 !important;
    font-weight: 600 !important;
}

.landing-image{
    height: 100vh;
    width: 100%;

}

.back-picture{
    background: linear-gradient(0deg,
    rgba(24, 23, 23, 0.75),
    rgba(26, 27, 27, 0.75)), url('/images/about10.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.dot{
    display: flex;
    gap: 10px;
}
.dots{
    width:5px;
    height: 5px;
    background-color: #000;
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #575757;
    flex-direction: column;
}
.soon{
    color: #575757;
}

.container-{
    
   background-color: #575757;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;

}

.inner-container{
    text-align: center;
}
.loader {
    border: 10px solid #575757;  /* Light grey */
    border-top: 10px solid #C65F30;  /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/*Footer*/

.footer{
    display: flex;
    justify-content: space-between;
    background-color:#E9E9E9;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 80px;
    height: 250px;
    
    
}

.footnotes{
    text-align: center;
    background-color: #808080;
    color: white;
   font-size: smaller;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footnotes-p{
    margin-bottom: 0;
}

.socials{
    
    width:33%;
    margin-left: -45px;
    
   
}

.footer-image{
    height: 80px;
    width: 250px;
    margin-bottom: 20px;
}

.contact-footer{
    width: 33%;
    display: flex;
    flex-direction: column;
    gap:5px;
}
.footer-icons{
    display: flex;
    gap:10px;
    align-items: center;
}
.footer-hours{
    display: flex;
    flex-direction: column;
}

.icons{
    display: flex;
    height: 30px;
    gap: 10px;
}

.icons-img{
    height: 30px !important;
    width: 30px !important;
    
}

.bi{
    margin-bottom: 1em;
}
.footer-p-socials{
    color: #000;
    font-size: 11.8px;
    
    margin-top: -10px;
}
 .contact-big-footer{
    color: #000;
    font-size: x-large;
    margin-top: 8px;
    
 } 

 .big-footer{
    color: #000;
    font-size: x-large;
    margin-top: 8px;
 }
 .footer-p-contact{
    color: #575757;
    font-size: large;
    font-weight: bold;
 }

 .footer-p-hours{
    color: #575757 ;
    font-size: large ;
    font-weight: bold ;
    margin-top: -5px ;
    display: none ;

 }

 .footer-p-hours-time{
    color: #575757 ;
    font-size: large ;
    font-weight: bold ;
 }

 .footer-p-hours-dummy{
    color: #575757 ;
    font-size: large ;
    font-weight: bold;
 }

 .footer-icons-container{
    height: 200px;
    display: flex;
    flex-direction: column;
    
 }

 .closed{
    color: #C65F30;
    font-style: italic;
    
 }
/* Fading animation */
.available{
    font-size: smaller;
    color: #E6AD0D;
    font-weight: bold;
    font-style: italic;
    font-family:Verdana;
    margin-left: 15px;
}
 .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  } 


@media only screen and (max-width: 767px) {


    .back-picture{
        background-repeat: no-repeat;
        background-size: 100% 50vh;
        background-position: center;
        height: 100%;
        width:100%;
        image-rendering: -moz-crisp-edges ;          /* Firefox */
        image-rendering: -o-crisp-edges ;            /*Opera  */
        image-rendering: -webkit-optimize-contrast ; /* Webkit (non-standard naming)*/
        -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
    }

    .landing-image{
        height: 50vh;
    }

     /* footer section */
     .footer{
        padding: 7px;
        flex-wrap: wrap;
        height: fit-content;
    }

    .socials{
        width:100%;
        margin: 0px;
        display: flex;
       flex-direction: column;
       align-items: flex-start;
       padding:10px;
    }

    .footer-p-socials{
        width:263px;
    }

    .contact-footer{
        width:100%;
        padding:10px;
        height: 190px;
    }

    .footer-hours{
        padding:10px;
    }

    .footnotes{
        width: 100%;
        height: 40px;
    }

    .footnotes-p{
        font-size: x-small;
    }

    .footer-icons-container{
        justify-content: unset;
        gap: 10px;
    }

    .footer-p-contact{
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .bi{
        margin-bottom: 0px;
        
    }

    .footer-p-hours{
        display: none !important;
    }
    
}

@media screen and (min-width:768px) and (max-width:1030px) {
    
    .back-picture{
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        height: 100%;
        image-rendering: crisp-edges;
        image-rendering: -moz-crisp-edges;          /* Firefox */
        image-rendering: -o-crisp-edges;            /* Opera */
        image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming)*/
        -ms-interpolation-mode: nearest-neighbor;
    }
    
    /*footer*/
    .footer{
        display: flex;
        justify-content: space-between;
        background-color: #E9E9E9;
        height: 250px;
        width: 100%;
        align-items: center;
        padding: 0px 5px;

    } 


    .footer-p-socials{
        width: 240px;
    }

    .footer-p-contact{
        margin-top: 0px;
    }

    .footer-p-hours{
        
        display: block !important;

    }

    .footer-p-hours-time{
        margin-top: -19px !important;
    }

    .footer-p-hours-dummy{
        display: none !important;
    }

    .footer-p-hours.lower{
        margin-top: 0px !important;
    }

    .available{
        text-align: center;
    }

    .icons-img{
        height: 20px !important;
        width: 20px !important;
    }

    .footer-image{
        height: 74px;
        width: 238px;
        margin-bottom: 15px;
    }
    .socials{
        margin: unset;
        width:34%;
    }


    #touch{
        width:10em;
        height:2em;
    }

    .contact-footer{
        height: 250px;
        padding: 0px 7px;
        width: 37%;
    }

    .time{
        font-size: medium !important;
    }

    .contact-big-footer{
        margin-left: 10px;
    }

    .footer-icons-container{
        height: 150px;
       

    }

    .footer-icons{
        gap: 10px;
        height: 30px;
        align-items: center;
        margin-bottom: 1.3em;
        margin-left: 10px;
        
    }

    .bi{
        margin-bottom: 0.8em;
    }

    .footer-hours{
        height: 250px;
        gap: 7px;
    }
}


#UPmyBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 10px;
    border: none;
    outline: none;
    background-color:#555;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 2px;
  }
  
  #UPmyBtn:hover {
    background-color: #C65F30;
  }
