/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}
nav{
    align-items:center;
}

.nav > li > a:hover{
    text-decoration:underline;
}
/*Index image*/
.index_img {
    width: 100%;
    height: 400px;
    display: inline-block;
    background-image: url('../images/index_img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.img_layer {
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: rgba(0,0,0,0.2);
    font-family: none;
    padding: 5%;
    color: white;
    text-shadow: 0 2px 2px rgba(0,0,0,.4);
}
/*Price*/
.price {
    width: 100%;
    font-size: 16pt;
}
    .price th {
        color: white;
        background-color: #222222;
    }
    .price td,
    .price th {
        padding: 10px;
        text-align: center;
    }
    .price td:first-of-type{
        text-align:left;
    }
    .price tr:nth-of-type(2n) {
        background-color: rgba(208, 208, 208, 0.35);
    }
/*For about page*/
/*List of concurent*/
.about_list{
    list-style: none;
    font-size:14pt;
}
.about_list > li::before {
   content: '\2714';
   color: #777;
   font-size: 16pt;
   font-weight: bold;
   margin: 10px;
}
.about_list ul{
   list-style:none;
}
.about_list ul > li::before {
   content: "\2666";
   margin:10px;
}
/*Table about*/
.about {
   width: 100%;
   font-size: 16pt;
}

.about td,.about th {
   padding: 10px;
   text-align:justify;
}

 .about td:first-of-type {
   text-align: left;
   font-weight: bold;
 }

.about tr:nth-of-type(2n+1) {
   background-color: rgba(208, 208, 208, 0.35);
}
/*Table contact*/
.tab_cont td {
    text-align:justify;
}
.tab_cont p{
    display:flex;
    width:100%;
    justify-content:center;
}
/*Map*/
.map{
    width:100%;
    height:30vw;
}
/* Carousel */
.carousel-caption p {
   font-size: 20px;
   line-height: 1.4;
}
/*Tel and e-mail*/
.tel::before {
    content: '\260E';
    margin-right:5px;
}
.email::before {
    content: '\2709';
}
.email span{
    margin-left:5px;
}
/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
   width: 100%;
}

.navbar-brand {
   height: 50px;
   padding: 0 15px;
}

.navbar-brand img{
   height: 50px;
}
.partner_logo {
    height: 100px;
    padding: 15px;
    background: rgba(255, 228, 196, 0.35);
}
    /* QR code generator */
    #qrCode {
        margin: 15px;
    }
/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

@media (max-width: 1190px) {
    .index_img {
        height: 600px;
        background-image: url('../images/index_img_min.jpg');
    }
}
@media (max-width: 767px){
    .navbar-brand {
        position:absolute;
        top:0;
    }
    .map {
        height: 50vw;
    }
    .tel::before{
        content:'';
    }
    .email::before {
        font-size: 1.5em;
        line-height: 1;
    }
    .email span{
        display:none;
    }
    address{
        overflow-x:scroll;
    }
    .about td{
        padding:5px;
    }
}
@media (max-width: 400px) {
    .partner_logo {
        height: 60px;
        padding: 0px 10px;
    }
    .img_layer h1{
        margin:0;
    }
}
