/*
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 : 3 févr. 2024, 10:34:09
    Author     : user
*/
html {
    height: auto;
    font-size: 16px;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    font-family: "Kammerlander";
    font-size: 1rem;
    line-height: 1.25em;
    color: #000;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    background-image: url("../img/bg/body_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
header{
    background-image: url("../img/bg/header_bg.png");
    background-repeat: no-repeat;
    padding: .5rem;
    background-position:top right;
    background-size: contain;
}
footer{
    background-image: url("../img/bg/footer_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;

}
.logo-container{
    justify-content: center;
}

.content{
    padding: 1rem 0;
}
img{
    max-width: 100%;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.row>*{
    box-sizing: border-box;
}
.align-items-center{
    align-items: center;
}
.text-xs-center{
    text-align: center;
}
.text-xs-right{
    text-align: right;
}
.m-0{
    margin: 0;
}
.w-25{
    width: 25%;
}

.w-100{
    width: 100%;
}
.m-auto{
    margin: auto;
}
.p-05{
    padding: .5rem;
}
.p-1{
    padding: 1rem;
}
.p-3{
    padding: 3rem;
}
.mb-1{
    margin-bottom: 1rem;
}
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 100%;
}
.embed-responsive-item{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.map{
    height: 100%;
    width: 70%;
    margin: auto;
}
iframe{
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border: none;
}
.col-xs-6{
    flex: 0 0 50%;
    max-width: 50%;
}
.col-md-20{
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 990px){
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .lW-70{
        width: 70%;
    }
    .logo{
        width: 40%;
    }
    .embed-responsive {
        padding-bottom: 30%
    }
}
@media (max-width: 690px){
    header{
        background-size: 30%;
    }
    footer{
        background-size: 30%;
    }
    .sw-100{
        width: 100%;
    }
    .logo{
        width: 40%;
    }
}
@media (min-width: 691px) and (orientation: landscape){
    .logo{
        width: 50%;
    }
    header{
        background-size: 25%;
    }
}