
@font-face {
    font-family: "Alice";
    src: url('../fonts/alice/Alice-Regular.ttf') format('truetype');
}

@font-face {
    font-family: "London";
    src: url('../fonts/london/london-Regular.ttf') format('truetype');
}

@font-face {
    font-family: "Playfair";
    src: url('../fonts/playfair/PlayfairDisplaySC-Regular.ttf') format('truetype');
}

*::selection {
    background-color: #6625306e;
    opacity: 0.7;
}
*,
body,
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
    font-family: "Alice", sans-serif;
}

input::placeholder,
textarea::placeholder {
    color: #000;
    opacity: 0.3;
    font-size: 1rem;
}

body {
    margin: 0;
    font-family: "Alice", sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.section-bg {
    background: url('../img/bg.png') no-repeat top left;
    background-size: cover;
}

.sections-hr {
    width: 100%;
    background-color: #097785;
    padding: 1px;
}

.page-title {
    font-size: 2rem;
    text-align: center;
    text-transform: lowercase;
    position: relative;
    margin-bottom: 20px;
    font-family: "Playfair", sans-serif;
}

.page-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 10px auto 0 auto;
}

.mainColor {
    color: #097785;
}

.mainColor::after {
    background-color: #097785;
}

.whiteColor {
    color: #ffffff;
}

.whiteColor::after {
    background-color: #ffffff;
}

.topBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #097785;
    color: #ffffff;
    box-shadow: inset 0px -5px 10px rgba(0, 0, 0, 0.3);
}

.col1, .col2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-align: center;
}

.col1 {
    justify-content: center;
    gap: 40px;
}

.col2 {
    justify-content: center;
    gap: 40px;
}

.col1 i {
    color: #662530;
    margin-right: 5px;
    font-size: 1.25rem;
}

.col1 span {
    display: flex;
    gap: 5px;
}

.col2 a {
    text-decoration: none;
}

.col2 i {
    color: #ffffff;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.col2 i:hover {
    transform: scale(1.2);
    color: #662530;
}

.headMenu {
    display: flex;
    align-items: center;
    background-color: #097785;
    color: #ffffff;
    padding: 10px 20px;
}

.icon {
    width: 15%;
    justify-content: center;
    display: flex;
}

.icon img {
    max-height: 60px;
}

.menuButtons {
    width: 60%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.menuButtons a {
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
    position: relative;
}

.menuButtons a:hover,
.menuButtons a.active {
    transform: scale(1.2);
    color: #662530;
    font-weight: bold;
}

.menuButtons a:hover::after,
.menuButtons a.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #662530;
}

.menuBookink {
    width: 10%;
    display: flex;
    justify-content: center;
}

.btn-secondary {
    padding: 8px 12px;
    background-color: #662530;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.6s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: scale(1.1);
    background-color: #662530;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}

.languageFlag {
    width: 15%;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.languageFlag i {
    margin-right: 10px;
    font-size: 20px;
}

.languageDropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    width: 70%;
}

.languageDropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.languageDropdown a:hover {
    background-color: #f1f1f1;
}

.languageFlag.active::after {
    display: block;
}

.icon-media {
    display: none;
    width: 0;
}

.sideBar-toggle {
    display: none;
    width: 0;
}

.sideBar {
    display: none;
}

.barsContainer {
    position: relative;
    width: 100%;
}

.page_container {
    position: relative;
    overflow-y: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.page_container {
    scrollbar-width: thin;
    scrollbar-color: #662530 #097785;
}

.page_container::-webkit-scrollbar {
    width: 8px;
}

.page_container::-webkit-scrollbar-thumb {
    background-color: #662530;
    border-radius: 10px;
}

.page_container::-webkit-scrollbar-track {
    background-color: #097785;
}

.owl-carousel .item {
    position: relative;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    text-align: center;
    z-index: 10;
    width: 80%;
    opacity: 0;
}

.slider-text.animate {
    animation: fadeIn 1s ease-in-out forwards;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    color: white;
    z-index: 20;
}

.owl-nav .owl-prev {
    left: 20px;
}

.owl-nav .owl-next {
    right: 20px;
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.owl-dot {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    margin: 5px;
    opacity: 0.7;
}

.owl-dot.active {
    background-color: #662530;
    opacity: 1;
}

.owl-theme .owl-dots .owl-dot span {
    background: #fff;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #097785;
}

.owl-prev i, .owl-next i {
    color: #ffffff;
    font-size: 3rem;
}

.home-sections {
    width: 100%;
}

.home-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 700px;
}

.home-item.text-left {
    flex-direction: row;
}

.home-item.text-right {
    flex-direction: row-reverse;
}

.image-container {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container img,
.image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    width: 50%;
}

.text-col {
    padding: 20px;
}

.contact-columns {
    display: flex;
    gap: 50px;
}

.centered {
    text-align: center;
}

.centered-flex {
    display: flex;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.width5 {
    width: 5%;
}

.width10 {
    width: 10%;
}

.width15 {
    width: 15%;
}

.width20 {
    width: 20%;
}

.width25 {
    width: 25%;
}

.width30 {
    width: 30%;
}

.width35 {
    width: 35%;
}

.width40 {
    width: 40%;
}

.width45 {
    width: 45%;
}

.width50 {
    width: 50%;
}

.width55 {
    width: 55%;
}

.width60 {
    width: 60%;
}

.width65 {
    width: 65%;
}

.width70 {
    width: 70%;
}

.width75 {
    width: 75%;
}

.width80 {
    width: 80%;
}

.width85 {
    width: 85%;
}

.width90 {
    width: 90%;
}

.width95 {
    width: 95%;
}

.text-col h2 {
    margin: 0;
    font-size: 1.8rem;
}

.text-col p {
    margin: 10px 0;
    font-size: 1.5rem;
}

#contacts_hours {
    width: 100%;
    padding: 0 20px;
}

#contacts_hours div.day-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

#contacts_hours div.day-group div:first-child {
    width: 100px;
    font-weight: bold;
    text-align: left;
    color: #097785;
}

#contacts_hours div.day-group div:last-child {
    width: 50%;
    text-align: left;
    margin-left: 0;
    font-weight: bold;
}

.bordered-group {
    border-left: 5px solid #662530;
    justify-content: start;
    display: flex;
    flex-direction: column;
}

.bordered-group h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    background-color: #097785;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #662530;
}

.input-block.btnCont {
    text-align: right;
}

.input-block .btn {
    font-size: 1.1rem;
    font-family: "Alice", sans-serif;
}

.contact-list {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*margin: 5rem 0 0 5rem;*/
}

.contact-list div {
    display: flex;
}

.contact-list div i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #097785;
}

.contact-list div span {
    color: #000;
    font-size: 1rem;
    font-weight: bold;
}

.min-height {
    min-height: 50.72346vh;
}

footer {
    position: relative;
    padding: 20px;
    background-image: url('../img/footer-bg.png');
    color: white;
    z-index: 1;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #097785;
    opacity: 0.8;
    z-index: -1;
}

.golden-line {
    padding: 10px;
    background-color: #662530;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    width: 30%;
    padding: 0 20px;
}

.footer-column .day-group {
    display: flex;
    align-items: center;
    padding: 5px 0;
    justify-content: flex-start;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #662530;
}

.footer-socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-socials a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.6s ease;
}

.footer-socials a:hover {
    color: #662530;
    transform: scale(1.3);
}

.reviews-section {
    background-color: #097785;
    padding: 20px;
    position: relative;
}

.reviews-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.review-item {
    position: absolute;
    top: 0;
    transition: all 0.5s ease;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.review-item.active {
    left: 0;
}

.review-item.next, .review-item.prev {
    width: 50%;
}

.review-item.next {
    left: 100%;
}

.review-item.prev {
    right: 100%;
}


.reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.reviewer-info {
    margin-right: 50px;
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.reviewer-name {
    color: white;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.review-stars {
    display: flex;
    gap: 5px;
}

.review-text {
    position: relative;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    max-width: 600px;
}

.thought-bubble {
    position: relative;
}

.thought-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: white;
}

.promo-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.promo-card {
    display: flex;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 10px;
    width: 300px;
}

.promo-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.promo-content {
    padding: 10px;
    flex-grow: 1;
}

.btn-prenota {
    background-color: #097785;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

.btn-prenota:hover {
    background-color: #662530;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}

.container-1280 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.container-100per {
    width: 100%;
    margin: 0 auto;
}

.service-section {
    margin-bottom: 60px;
}

.service-category {
    font-size: 1.75rem;
    color: #097785;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.service-name {
    flex-basis: 70%;
    text-transform: capitalize;
}

.service-price {
    flex-basis: 30%;
    text-align: right;
    color: #662530;
    font-weight: bold;
}

.team-card {
  display: flex;
  justify-content: center;
}

.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
  position: relative;
  /*width: 350px;*/
  width: 80%;
  border-radius: 20px;
  box-shadow: 13px 13px 10px rgba(0, 0, 0, 0.7);
}

.our-team .pictureCont {
  display: inline-block;
  height: 110px;
  width: 36%;
  z-index: 1;
  position: relative;
}

.our-team .pictureCont::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #662530;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .pictureCont::before {
  height: 100%;
}

.our-team .pictureCont .picture {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
}

.our-team .pictureCont .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #662530;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1);
}

.our-team .pictureCont .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.9s ease 0s;
}

.our-team:hover .pictureCont .picture img {
  box-shadow: 0 0 0 14px #ffffff;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 1.2rem;
  color: #097785;
  text-transform: capitalize;
  margin-top: 10px;
}

.our-team .social {
  width: 100%;
  padding: 5px 0;
  margin: 0;
  background-color: #097785;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: white;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: #662530;
  background-color: #ffffff;
}

h3.name {
  color: #000000;
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 1.32rem;
}

a.btn-team {
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s linear 0s;
  font-family: "Playfair", sans-serif;
  text-decoration: none;
}

a.btn-team:hover {
  transform: scale(1.1);
}

.description-team {
    padding: 15px;
}

.price-txt {
    color: #000;
    font-size: 1rem;
}

blog {
  scroll-behavior: smooth;
}

.btnCon {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.btnCon p {
  color: #097785;
  border-radius: .25rem;
  text-align: left;
}

.btnCon a {
  background-color: #662530;
  text-decoration: none;
  color: #097785;
  border-radius: .25rem;
  text-align: center;
  padding: .5rem 1rem;
  margin: .5rem;
  display: inline-block;
  transition: all .3s;
}

.btnCon a:hover {
  opacity: .6;
}

.breweries {
  padding: 2rem;
}

.breweries > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
}

.breweries > ul > li {
  background-color: #ffffff;
  border: 1px solid #E2E2E2;
  border-radius: .5rem;
  list-style-type: none;
}

.breweries > ul > li > figure {
  max-height: 220px;
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  position: relative;
  margin: 0;
}

.breweries > ul > li > figure > img {
  width: 100%;
}

.breweries > ul > li > figure > figcaption {
  position: absolute;
  bottom: 0;
  background-color: rgba(9, 119, 133, .7);
  width: 100%;
}

.breweries > ul > li > figure > figcaption > h3 {
  color: #662530;
  padding: .75rem;
  font-size: 1.25rem;
}

.breweries > ul > li > p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 1rem .75rem;
}

article .image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: start;
    border: 5px solid #662530;
    border-radius: 30px;
}

article .image-container img {
    width: 100%;
    height: auto;
}

.subtitle {
    padding: 0 0 20px 0;
    display: flex;
    justify-items: right;
    justify-content: space-evenly;
    font-size: 1.4rem;
}

.readMoreHr {
    margin-top: 3rem;
}

.readMore {
    font-size: 1.5rem;
    font-weight: bold;
    color: #097785;
}

.articl-bod {
    margin-top: 2rem;
    padding: 10px;
}

.articl-bod p {
    font-size: 1.4rem;
    margin: 0;
}

.close-card {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.gallery-grid div {
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 200px;
}

.icon-top-gallery {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #fff;
    font-size: 1.4rem;
    z-index: 10;
}

.gallery-grid img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid div:hover img {
    transform: scale(1.05);
}

.gallery-grid div::before {
    content: '\f06e';
    font-family: 'fontAwesome';
    font-weight: 900;
    font-size: 30px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-grid div:hover::before {
    opacity: 1;
}

.gallery-grid div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-grid div:hover::after {
    opacity: 1;
}

.card {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.card-content {
    display: flex;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.media-column {
    flex: 1;
    max-width: 50%;
}

.media-column img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-column {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
    padding-left: 20px;
}

#card-text {
    overflow-y: auto;
    flex-grow: 1;
}

#iconsCount {
    flex-shrink: 0;
}

.prev-arrow, .next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.play-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
}

.media-column {
    flex: 1;
    max-width: 50%;
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.media-column img, .media-column video {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-column .slider-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    justify-content: space-evenly;
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.prev-slide {
    left: 10px;
    color: #662530;
}

.next-slide {
    right: 10px;
    color: #662530;
}

.counts_icon {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
    word-wrap: break-word;
}

.counts_icon span {
    width: 25%;
    font-size: 1.25rem;
}

.counts_icon span i {
    margin-right: .7rem;
}


.love {
    color: red;
}

.comment {
    color: #097785;
}

.hashtag {
    color: #097785;
}

.containerColumn {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.input-group {
    /*margin-top: 1rem;*/
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0.9rem;
}

.input-block {
    text-align: left;
    width: 100%;
    padding: 0 20px;
    font-size: 1.3rem;
}

.input-block textarea,
.input-block input {
    width: 100%;
    font-size: 1.3rem;
    color: #097785;
    font-family: "Alice", sans-serif;
    font-weight: bold;
}

.input-block textarea {
    min-height: 5rem;
    resize: vertical;
}

.input-block input {
    height: 1.5rem;
}

.input-block label {
    line-height: 40px;
}

.credit {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

.credit a {
    color: #097785;
}

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100%;
    background-color: #343a40e6;
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: none;
    flex-direction: column;
    box-sizing: border-box;
}

.btn-gap {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-gap a,
.btn-gap button {
    font-size: .8rem;
}

.rem-1 {
    font-size: 1rem;
}

.link {
    color: #097785;
}

.cookie-head {
    text-align: center;
}

.cookie-head h1 {
    font-family: "Playfair", sans-serif;
}

h2.title {
    color: #097785;
}

.cookie-page {
    padding: 30px;
}

.cookie-page p {
    font-size: 1.2rem;
}

.cookie-page ul li {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.span-second {
    color: #662530;
    font-weight: bold;
}


@media (max-width: 1275px) {
    .prev-arrow, .next-arrow {
        top: 95%;
    }
    .next-arrow {
        right: 10%;
    }

    .prev-arrow {
        left: 10%;
    }
}

@media (max-width: 900px) {
    .icon {
        display: none;
    }

    .menuButtons {
        display: none;
    }

    .menuBookink {
        display: none;
    }

    .languageFlag {
        display: none;
    }

    .btn-secondary {
        background-color: #662530!important;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-secondary:hover {
        transform: scale(1.0);
        background-color: #662530;
        box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    }

    .icon-media {
        justify-content: flex-start;
        display: flex;
        width: 50%;
    }

    .icon-media img {
        max-height: 50px;
        max-width: 100%;
    }

    .sideBar-toggle {
        justify-content: flex-end;
        display: flex;
        width: 50%;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
        align-items: center;
    }

    .sideBar-toggle i {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .sideBar {
        position: fixed;
        right: -100%;
        top: calc(var(--headMenu-height, 113px));
        height: calc(100% - var(--headMenu-height, 113px));
        width: 300px;
        background-color: #333;
        color: #fff;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 20px;
        overflow-y: auto;
        display: block;
    }

    .sideBar.open {
        right: 0;
    }

    .sideBar .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .sideBar .logo img {
        width: 75%;
    }

    .sideBar hr {
        border: 1px solid #555;
        margin: 10px 0;
    }

    .sideBar .menuButtons a {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 15px 0;
        font-size: 18px;
        transition: background-color 0.3s ease;
    }

    .sideBar .menuButtons a:hover,
    .sideBar .menuButtons a.active {
        background-color: #555;
        font-weight: bold;
    }

    .menuButtonsMedia {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .menuButtonsMedia a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        background-color: #444;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .menuButtonsMedia a:hover,
    .menuButtonsMedia a.active {
        background-color: #555;
        font-weight: bold;
    }

    .languageIcons {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        justify-content: center;
    }

    .languageIcons a {
        text-decoration: none;
        color: #fff;
        display: flex;
        align-items: center;
    }

    .languageIcons i {
        font-size: 1.5rem;
        margin-right: 5px;
    }

    .languageIcons span {
        font-size: 1rem;
        color: #fff;
    }
    .page {
        margin-top: 113px;
    }

    .slider-text {
        font-size: 1.5rem;
    }

    .owl-nav .owl-prev, .owl-nav .owl-next {
        font-size: 1.5rem;
    }

    .owl-prev i, .owl-next i {
        color: #ffffff;
        font-size: 1.5rem;
    }

    .home-sections {
        width: 100%;
    }

    .home-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: auto;
    }

    .home-item.text-left, .home-item.text-right {
        flex-direction: column;
    }

    .image-container {
        width: 100%;
        height: 300px;
        order: 2;
    }

    .image-container img,
    .image-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text-container {
        width: 100%;
        order: 1;
    }

    .text-container .text-col {
        padding: 20px;
    }

    .text-container .text-col h2 {
        font-size: 1.8rem;
    }

    .text-container .text-col p {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: 65%;
    }

    .footer-column .day-group {
        display: flex;
        align-items: center;
        padding: 5px 20px;
        justify-content: space-between;
    }

    .reviews-container {
        height: 450px;
    }

    .reviewer-info {
        margin-right: 15px;
    }

    .review-item.next {
        left: 1000%;
    }
    .review-item.next, .review-item.prev {
        width: 1000%;
    }

    .card-content {
        flex-direction: column;
    }

    .media-column, .text-column {
        max-width: 100%;
    }

    .text-column {
        padding-left: 0;
        margin-top: 20px;
    }

    .media-column img {
        width: 100%;
        max-height: 385px;
        object-fit: contain;
    }

    .video-container video {
        width: 100%;
        max-height: 385px;
        object-fit: contain;
    }

    .width5 {
        width: 100%;
    }

    .width10 {
        width: 100%;
    }

    .width15 {
        width: 100%;
    }

    .width20 {
        width: 100%;
    }

    .width25 {
        width: 100%;
    }

    .width30 {
        width: 100%;
    }

    .width35 {
        width: 100%;
    }

    .width40 {
        width: 100%;
    }

    .width45 {
        width: 100%;
    }

    .width50 {
        width: 100%;
    }

    .width55 {
        width: 100%;
    }

    .width60 {
        width: 100%;
    }

    .width65 {
        width: 100%;
    }

    .width70 {
        width: 100%;
    }

    .width75 {
        width: 100%;
    }

    .width80 {
        width: 100%;
    }

    .width85 {
        width: 100%;
    }

    .width90 {
        width: 100%;
    }

    .width95 {
        width: 100%;
    }

    .contact-list {
        margin: 0;
        margin-top: 15px;
    }

    .contact-columns {
        display: flex;
        flex-direction: column;
    }

    .min-height {
        min-height: inherit;
    }

    .padding30 {
        padding: 30px;
    }

    #card-text {
        max-height: 280px!important;
    }

    .bordered-group {
        border-left: none;
        border-top: 5px solid #662530;
    }

    .bordered-group h2 {
        margin-top: 1rem;
    }

    #cookieConsent {
        width: auto;
    }
}

@media (max-width: 705px) {
    .col1 {
        display: none;
    }

    .col2 {
        width: 100%;
    }
}