.container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}

.sectionblocks{
    padding-bottom: 40px;
}

.card {
    background-color: #fff;
    color: #333;
    border-radius: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    padding: 0px;
    margin: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    cursor: pointer;
    background: var(--primary-color);
    color: var(--primary-font-color);
    border: none;
    border-radius: 5px;
}

.btn-outline {
    background-color: transparent;
    border: 1px #fff;
} 

.btn-booking {
    background-color: var(--primary-color);
    border: 1px #fff;
} 

.btn-action {
    background-color: var(--primary-font-color);
    color:white;
    border: 1px #fff;
} 

li#offert {
    color:#540303;
    margin-bottom: 10px;
    font-weight: 800;
}

.btn:hover {
    transform: scale(0.98);
}

.bg-dark,
.btn-dark {
  background-color: var(--dark-color);
  color: #fff;
}


.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.flex-lang {
    display: flex;
    flex-direction: column;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

.bg-primary a,
.btn-primary a,
.bg-secondary a,
.btn-secondary a,
.bg-dark a,
.btn-dark a {
  color: #fff;
}
