@media (min-width: 1024px) {     /* desktop size */

    .restaurants a:link, .restaurants a:visited {
        text-decoration: none;
        color: inherit;
    }
        
    .restaurants a:hover {
        text-decoration: underline;
        color: rgb(255, 195, 0);
    }
      
    .restaurants {
        display: flex;
        flex-direction: column;
    }
        
    .group {
        display: flex;
        flex-direction: row;
        justify-content: center;
        min-height: 1px;   /*IE 11 Bug */
    }
        
    .restaurant_image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        padding-right: 10%;
    }
        
    .restaurant_image img {
        width: 100%;

    }

    .restaurant_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 30%;
    }
        
    .restaurant_address {
        display: flex;
        flex-direction: column;
        font-size: 20px;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

   .restaurant_address p {
        margin: 0px;
    }
       
    .outermap {
        width: 100%;
    }
    
    .innermap {
        width: 100%;
        position: relative;
        padding-top: 75%;   /* .75 ratio for the height */
    }
        
    .innermap iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
        
    .manager_image {
        display: flex;
        flex-direction: column;
        width: 25%;
        justify-content: flex-start;
        align-items: center;
    }
        
    .manager_image img {
        width: 60%;
        min-height: 1px;   /*IE 11 Bug */
    }
        
    .manager_name {
        font-size: 20px;
        margin-top: 20px;
    }
        
    .manager_title {
        font-size: 14px;
    }
        
    .manager_info {
        width: 65%;
        font-size: 18px;
        margin-right: 7.5%;
    }
        
    .manager_info p:first-child {
        margin-top: 0px;
    }
      
    .manager_info p:last-child {
        margin-bottom: 0px;
    }
      
    .success_guide {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
		
    .success_guide img {
        width: 50%;
        flex-shrink: 0;
    }

    .success_guide p {
        margin-top: 20px;
        font-size: 20px;
    }
        
    .slideshow {
        display: flex;
        width:  700px;      
    }
        
    .slideshow .arrows {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
        
    .slideshow .prev, .slideshow .next {
        cursor: pointer;
        padding: 14px;
        color: white;
        font-weight: bold;
        font-size: 24px;
        transition: 0.6s;
        user-select: none;
    }

    .slideshow .prev:hover, .slideshow .next:hover {
        color: rgb(255, 195, 0);
    }
        
    .slideshow .slides .mySlides {
        display: none;
        width: 100%;
        animation-name: fade;
        animation-duration: 1.5s;            
    }

    /* Fading animation */
    @keyframes fade {
        from {opacity: .5} 
        to {opacity: 1}
    }
        
}   /* end desktop size */
    
        
        
@media (max-width:1023px) {       /* mobile size */
        
    .restaurants a:link, .restaurants a:visited {
        text-decoration: none;
        color: inherit;
    }
        
    .restaurants a:hover {
        text-decoration: underline;
        color: rgb(255, 195, 0);
    }
        
    .restaurants {
        display: flex;
        flex-direction: column;
    }
        
    .group {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 1px;   /*IE 11 Bug */

    }
        
    .restaurant_image {
        width: 100%;
        max-width: 600px;
        min-height: 1px;   /*IE 11 Bug */

    }
        
    .restaurant_image img {
        width: 100%;
    }

    .restaurant_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
        
    .restaurant_address {
        display: flex;
        flex-direction: column;
        font-size: 20px;
        width: 100%;
        align-items: center;
        margin: 20px 0px;
    }

   .restaurant_address p {
        margin: 0px;
    }
       
    .outermap {
        width: 90%;
        max-width: 500px;
        display: flex;
        justify-content: center;
    }
    
    .innermap {
        width: 100%;
        position: relative;
        padding-top: 75%;   /* .75 ratio for the height */
    }
        
    .innermap iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
        
    .manager_image {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
        
    .manager_image img {
        width: 50%;
        max-width: 200px;
    }
        
    .manager_name {
        font-size: 20px;
        margin-top: 10px;
    }
        
    .manager_title {
        font-size: 14px;
        margin-bottom: 20px;
    }
        
    .manager_info {
        width: 90%;
        font-size: 18px;
    }
        
    .manager_info p:first-child {
        margin-top: 0px;
    }
      
    .manager_info p:last-child {
        margin-bottom: 0px;
    }
    
    .success_guide {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 1px;   /*IE 11 Bug */
    }
		
    .success_guide img {
        width: 50%;
        min-height: 1px;   /*IE 11 Bug */
    }

    .success_guide p {
        margin-top: 10px;
        font-size: 20px;
    }
        
    .slideshow {
        display: flex;
        width: 100%;
        min-height: 1px;   /*IE 11 Bug */
    }        
        
    .slideshow .arrows {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
        
    .slideshow .prev, .slideshow .next {
        cursor: pointer;
        padding: 14px;
        color: white;
        font-weight: bold;
        font-size: 24px;
        transition: 0.6s;
        user-select: none;
    }

    .slideshow .prev:hover, .slideshow .next:hover {
        color: rgb(255, 195, 0);
    }
        
    .slideshow .slides .mySlides {
        display: none;
        width: 100%;
        animation-name: fade;
        animation-duration: 1.5s;            
    }
        
    /* Fading animation */
    @keyframes fade {
        from {opacity: .5} 
        to {opacity: 1}
    }        
        
}   /* end mobile size */
        