/* VARIABLES */

:root {
  --prim: #4e8fa6;
  --sec: #fbb13c;
  --bg: #ececec;
  --textOnLight: #292f36;
  --textOnDark: #fafafa;
  --btn: #30337d;
  --bgDark: #6b6b6b;
  --bgForms: #e8e8e8;
}

/* MAIN ELEMENTS */

*,
::after,
::before {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
}

html {
  scroll-behavior: smooth;
  transform: all 0.5s ease-in-out;
}

body {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  background-color: var(--bg);
  color: var(--textOnLight);
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 100%;
  max-width: 1320px;
  padding: 0px 20px;
  margin: 0px auto;
}

.wrapperFull {
  width: 100%;
  max-width: 1320px;
  padding: 0;
  margin: 0px auto;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 4.063rem;
  line-height: 4rem;
  margin-bottom: 24px;
}

h3 {
  font-size: 2.441rem;
  font-weight: 700;
  line-height: 2.4rem;
  margin-bottom: 24px;
}

h4 {
  font-size: 1.953rem;
  line-height: 1.9rem;
  margin-bottom: 8px;
}

h5 {
  font-size: 1.563rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 24px;
}

h6 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2rem;
  margin-bottom: 24px;
}

p {
  font-size: 1rem;
}

.label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

a {
  color: var(--prim);
}

a:hover {
  color: var(--sec);
}

.strong {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

hr {
  display: block;
  margin: 1rem auto;
  border-style: solid;
  border-width: 1px;
  border-color: var(--prim);
  width: 100%;
}

.lineLight {
  display: block;
  background-color: var(--textOnDark);
  height: 2px;
  width: 80px;
  margin: 8px 0;
}

.lineDark {
  display: block;
  background-color: var(--textOnLight);
  height: 2px;
  width: 80px;
  margin: 8px 0;
}

.btnStroke {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 200px;
  padding: 0.6rem;
  color: var(--textOnDark);
  border: solid 2px var(--prim);
  border-radius: 0px;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 32px;
  transition: all 0.1s ease-in-out;
}

.btnStroke:hover {
  border: solid 2px var(--prim);
  background-color: var(--prim);
  color: var(--textOnDark);
  scale: 1.1;
}

.btnStrokeCard {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 200px;
  padding: 0.6rem;
  color: var(--textOnLight);
  border: solid 2px var(--prim);
  border-radius: 0px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 32px;
  transition: all 0.1s ease-in-out;
}

.btnStrokeCard:hover {
  border: solid 2px var(--prim);
  background-color: var(--prim);
  color: var(--textOnDark);
  scale: 1.1;
}

.btnFill {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 200px;
  padding: 0.6rem;
  border: solid 2px var(--prim);
  background-color: var(--prim);
  color: var(--textOnDark);
  border-radius: 0px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.1s ease-in-out;
}

.btnAcc {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 200px;
  padding: 0.6rem;
  border: solid 2px var(--sec);
  background-color: var(--sec);
  color: var(--textOnLight);
  border-radius: 0px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 32px;
  transition: all 0.1s ease-in-out;
}

.btnAcc:hover {
  scale: 1.1;
}

.btnFill:hover {
  border: solid 2px var(--prim);
  background-color: var(--prim);
  color: var(--textOnDark);
  scale: 1.1;
}

.btnCenter {
  display: block !important;
  margin: 24px auto !important;
}

.linePrim {
  background-color: var(--prim);
  display: block;
  width: 80px;
  height: 3px;
}

.btnNav {
  background-color: var(--sec);
  color: var(--textOnLight);
  padding: 0px 12px;
  border-radius: 3px;
}

.btnNav:hover {
  background-color: var(--textOnDark);
  color: var(--textOnLight);
}

.collapsible {
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--sec);
  color: var(--textOnLight);
  padding: 1rem 2rem;
  cursor: pointer;
  margin-bottom: 24px;
}

.collaps {
  display: none;
  overflow: hidden;
}

/***** IFRAME *********/

iframe {
  background-color: var(--bg);
  width: 100%;
  height: 2500px;
  margin: 24px 0;
  position: relative;
  top: -60px;
}

.whatsapp {
  position: fixed;
  bottom: 48px;
  right: 24px;
  transform: scale(1);
  -webkit-transform: scale(1);
  animation: scale 1.2s ease-in-out infinite;
  animation-direction: alternate;
}

@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }

  100% {
    transform: scale(1.35);
    -webkit-transform: scale(1.35);
  }
}

/********** GALLERY GRID *************/

.gallery {
  padding: 58px 0;
  background-color: var(--bg);
}

.imageGrid {
  --gap: 16px;
  --num-cols: 4;
  --row-height: 300px;

  padding: 0;

  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.imageGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imageGridCol2 {
  grid-column: span 2;
}

.imageGridRow2 {
  grid-row: span 2;
}

@media screen and (max-width: 1024px) {
  .imageGrid {
    --num-cols: 1;
    --row-height: 400px;
  }

  .imageGridCol2 {
    grid-column: span 1;
  }

  .imageGridRow2 {
    grid-row: span 1;
  }
}

/********** SLIDER TOURS *************/

.slidePadding {
  padding: 20px;
}

.swiperTours {
  /*background-image: url(/images/tours/zadar.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;*/
  background-color: #ffffff;
  padding: 58px 0;
}

.slide-container {
  z-index: 1 !important;
  padding: 0 !important;
  background-color: var(--bg);
  border-radius: 10px;
  border: solid 4px #ffffff;
  box-shadow: 0px 0px 25px 0 #d8d8d8;
}

.slide-content {
  padding: 0;
}

.swiper-slide,
swiper-slide {
  /*min-height: 440px!important;*/
  height: 460px !important;
}

.card {
  background-color: var(--bg);
  display: flex !important;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
}

.card-content {
  padding: 2rem;
  margin-right: auto;
  height: 100%;
  width: 50%;
}

.image-content {
  width: 50%;
  height: 100%;
}

.card-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tourLabel {
  color: var(--sec);
  font-size: 1rem;
}

.cardLine {
  width: 88px;
  height: 2px;
  background-color: var(--prim);
}

.regularLine,
.heroLine,
.contactLine {
  width: 88px;
  height: 2px;
  margin: 12px 0;
  background-color: var(--prim);
}

.card-text {
  width: 100%;
  margin: 12px 0;
  text-align: justify;
  padding: 0;
}

.btnCard {
  margin-top: 16px;
  font-weight: 700;
  padding: 0.9rem;
}

.btnContainer {
  padding-bottom: 58px;
}

/********** SLIDER REVIEWS *************/

.reviewText {
  font-style: italic;
  font-size: 1.2rem;
}

.reviewName {
  font-weight: 600;
}

#slideReview {
  z-index: 1 !important;
  padding: 0 !important;
  background-color: #fff;
  border-radius: 0px;
  border: none;
  box-shadow: none;
}

#cardReview {
  background-color: #fff;
  display: flex !important;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0px;
  height: auto !important;
  padding: 58px 24px;
}

/***** FORM ******/

.form {
  padding-top: 68px;
  background-color: var(--textOnLight);
  color: var(--textOnDark);
}

input[type="text"] {
  color: var(--textOnDark);
}

input[type="email"] {
  color: var(--textOnDark);
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--bgDark);
  opacity: 1; /* Firefox */
}

.form-content {
  width: 100%;
  height: auto;
  display: flex;
}

form {
  padding: 48px 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
}

form .label {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  max-width: 650px;
  border-bottom: 1px solid var(--textOnDark);
  border-radius: 0;
  margin-bottom: 24px;
  height: 44px;
  padding-left: 10px;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: var(--textOnLight);
}

form textarea {
  background-color: var(--textOnLight);
  border: 1px solid var(--textOnDark);
  padding-top: 10px;
  height: 200px;
  color: var(--textOnDark);
  resize: none;
}

.btn-form {
  font-family: "Poppins", sans-serif;
  background-color: var(--sec);
  color: var(--textOnLight);
  border-radius: 0px;
  text-align: center;
  padding: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 36px 24px 0;
  width: 200px;
  cursor: pointer;
}

.btn-form:hover {
  color: var(--textOnDark);
}

form::after {
  content: "";
  display: block;
  clear: both;
}

/* NAVBAR */

header {
  position: fixed;
  width: 100%;
  background-color: var(--textOnLight);
  height: 56px;
  z-index: 999;
}

header::after {
  content: "";
  display: block;
  clear: both;
}

.logoHeader {
  display: inline-block;
  height: 32px;
  margin-top: 10px;
}

.logoHeader::after {
  content: "";
  display: block;
  clear: both;
}

.logoText {
  color: var(--textOnDark);
  font-weight: 900;
  font-size: 18px;
}

.sidebar {
  display: block;
  float: right;
}

.menuTitle {
  display: none;
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  width: 100%;
}

header nav ul {
  display: flex;
  line-height: 35px;
  text-align: right;
  float: right;
}

header nav ul li {
  display: block;
  height: 100%;
  margin: 0px 0px 0px 30px;
}

header nav ul li a {
  display: block;
  color: var(--textOnDark);
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

header nav ul li a:hover,
a.active {
  color: var(--sec);
}

/* NAVBAR - HAMBURGER MENU */

#btn {
  display: none;
  float: right;
  margin-top: 8px;
  font-size: 40px;
  font-weight: 500;
  color: var(--textOnDark);
  cursor: pointer;
  z-index: 999;
}

#cancel {
  position: fixed;
  top: 12px;
  right: 24px;
  font-size: 40px;
  font-weight: 500;
  color: var(--textOnLight);
  cursor: pointer;
  z-index: 999;
}

#cancel {
  display: none;
}

#check {
  display: none;
}

#check:checked ~ .sidebar {
  top: 0;
  right: 0;
}

#check:checked ~ label #btn {
  display: none;
}

#check:checked ~ label #cancel {
  display: block;
}

/* MAIN CONTENT */

/************** HOME - HERO ***************/

.hero {
  display: inline-block;
  width: 100%;
  height: 1040px;
  color: var(--textOnDark);
}

#heroMainWidget {
  height: 500px;
}

.heroFull {
  width: 100% !important;
}

.hero::after {
  content: "";
  display: block;
  clear: both;
}

.mainHero {
  background-image: url(../images/hero.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.heroText h1 {
  padding-top: 64px;
}

.heroText h5 {
  margin-bottom: 48px;
}

.logo img {
  margin-top: 150px;
  display: block;
  width: 200px;
}

.title {
  margin-top: 58px;
}

.imageWrapper {
  position: relative;
}

.heroText {
  float: left;
  width: 50%;
}

.overlay {
  float: left;
  position: absolute;
  right: 0;
  background-color: var(--prim);
  height: 500px;
  width: 30%;
  z-index: 0;
  opacity: 0.6;
}

.heroImg {
  position: relative;
  top: -50px;
  float: left;
  width: 50%;
  overflow: hidden;
  z-index: 998;
}
.heroImg img {
  width: 820px;
}

/* BOOKING WIDGET - HOME */

.bookingWidgetSmall {
  height: 0;
  display: block;
  height: auto;
}

.bookingContainer {
  display: flex;
  position: relative;
  padding: 0;
  border-radius: 5px;
  border: solid 2px var(--textOnDark);
  top: -60px;
  background-color: var(--bgForms);
  width: 1144px;
  height: 120px;
  margin: 0 auto;
  z-index: 998;
  box-shadow: 0px 0px 6px 1px #b4b4b4;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.bookingWidgetStyle {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.bookingWidgetStyle input {
  width: 200px;
  padding: 0 24px;
  border: none;
  margin: 0;
  background-color: var(--bgForms);
  font-weight: 700;
  font-size: 1rem;
  color: var(--textOnLight);
}

.bookingWidgetStyle select {
  width: 160px;
  padding: 0;
  border: none;
  margin: 0 24px 0 12px;
  background-color: var(--bgForms);
  font-weight: 700;
  font-size: 1rem;
  color: var(--textOnLight);
}

.btn-widget {
  background-color: var(--sec);
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
}

.bookingWidgetStyle input::placeholder {
  color: var(--textOnLight);
}

.widgetLabel {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding-right: -12px;
}

/*************** HOME  ********************/

/* CHECK OUT OUR TOURS */

.Subtitle {
  margin-bottom: 58px;
}

/* HOW IT WORKS SECTION */

.HowItWorks {
  display: block;
  background-image: url(/images/tours/dubrovnikCover.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  padding: 24px 0;
}

.sectionTitle {
  margin-top: 56px;
}

.containerCenter {
  text-align: center;
}

/* how it works - cards */

.smallCard {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.iconContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 56px 0;
}

.iconOutline {
  display: inline-block;
  height: 65px;
  width: 65px;
  margin: 10px;
  border-radius: 10px;
  background-color: #f2f2f2;
  border: solid 4px #ffffff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 6px 1px #b4b4b4;
}

.iconOutline:hover {
  scale: 1.1;
}

.iconInline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.centerIcon {
  background-color: var(--prim);
  border: solid 4px #ffffff;
  height: 75px;
  width: 75px;
  margin: 5px;
}

.iconLabel {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 12px 0;
}

.iconText {
  text-align: center;
  display: inline-block;
  width: 200px;
  padding: 1rem;
  height: 120px;
}

/* WHAT WE DO */

.whatwedo {
  padding: 58px 0;
}

.whatwedo p {
  padding: 8px 0;
}

/* WHY US? */

.whyUs {
  padding: 58px 0;
}

.whyUs:after {
  content: "";
  display: block;
  clear: both;
}

.containerWhy {
  display: block;
  float: left;
  width: 100%;
}

.imgWhy {
  display: block;
  float: left;
  background-image: url(/images/van01.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  height: 700px;
  width: 50%;
  overflow: hidden;
}

.whyContent {
  padding: 36px 0 36px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.whyContent > div {
  padding: 1rem;
  width: 100%;
}
.tripadvisor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.trip-logo {
  width: 200px;
}

.trip-review {
  padding: 1rem 2rem;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
}
.trip-button-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.trip-button-container .trip-btn {
  background-color: var(--prim);
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--textOnDark);
}

.trip-btn:hover {
  background-color: var(--sec);
  color: var(--textOnDark);
}
.whyContent p {
  padding: 0 0 36px 0;
  width: 280px;
  text-align: justify;
}

/*************** CONTACT  ****************/

.contactHero {
  background-image: url(/images/heroContact.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: block;
  padding-bottom: 58px;
}

.contactHero img {
  margin-left: auto;
  margin-right: auto;
}

.contactHero a {
  color: var(--sec);
}

.contactHero a:hover {
  color: var(--textOnDark);
}

.contactInfo {
  margin: 24px 0;
}

/*************** ABOUT  ****************/

.aboutHero {
  background-image: url(/images/heroAbout.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: block;
}

.aboutHero img {
  margin-left: auto;
  margin-right: auto;
}

.aboutText,
.aboutImg {
  width: 100%;
  height: auto;
}

.aboutImg img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  padding-bottom: 58px;
}

.about {
  padding: 58px 0;
}
.about p {
  padding: 0 20px 58px 20px;
}

.about h2 {
  padding: 0 20px 0px 20px;
}

/*************** ABOUT  ****************/
.faqHero {
  color: var(--textOnLight);
  height: auto;
  padding-bottom: 3rem;
}

.accordion {
  color: #47abb2;
  cursor: pointer;
  padding: 1rem 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  text-align: justify;
  border: none;
  outline: none;
  transform: all 0.4s ease-in-out;
}
.panel {
  text-align: justify;
  height: 0;
  display: block;
  overflow: hidden;
}

.active,
.accordion:hover {
  color: var(--sec);
}

/*************** SERVICES  ****************/
.padb1 {
  padding-bottom: 1rem;
}

.padb2 {
  padding-bottom: 2rem;
}
.servicesHero {
  background-color: var(--bg);
  color: var(--textOnLight);
}

.servicesHero h1 {
  margin-top: 128px;
}

.servicesHero h5 {
  margin-bottom: 16px;
}

.servicesHero img {
  margin-left: auto;
  margin-right: auto;
}

.tourBtn {
  margin-top: 24px;
  margin-bottom: 24px;
}

#tourBtn {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* TOUR FORM */

form .tourLabel {
  font-size: 1rem;
  margin-bottom: 8px;
  margin-top: 16px;
  font-weight: 500;
  color: var(--textOnLight);
}

.tourFormStyle {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.tourFormStyle input {
  width: 100%;
  height: 36px;
  padding: 0 24px;
  margin-bottom: 16px;
  border: none;
  margin: 0;
  background-color: var(--textOnDark);
  font-size: 1rem;
  color: var(--textOnLight);
}

.tourFormStyle select {
  height: 36px;
  padding: 0 24px;
  margin-bottom: 16px;
  background-color: var(--textOnDark);
  font-size: 1rem;
  color: var(--textOnLight);
}

.btn-widget {
  background-color: var(--sec);
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
}

.tourFormStyle input::placeholder {
  color: #b4b4b4;
  font-size: 0.8rem;
  font-weight: 400;
}

.tourFormStyle textarea {
  background-color: var(--textOnDark);
  color: var(--textOnLight);
}

.tourFormStyle textarea::placeholder {
  color: #b4b4b4;
}

/* TOUR LIST */

.tourSectionTitle {
  padding: 58px 0;
  background-color: var(--textOnDark);
}

.tourContent {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  padding: 58px 0;
}

.lightBg {
  background-color: var(--textOnDark);
}

.darkBg {
  background-color: var(--bg);
}

.tourText,
.tourImage {
  width: 100%;
  height: auto;
}

.tourImage img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.toursTitle {
  text-align: left;
}

.tourText {
  padding: 0 12px 12px 0;
  text-align: justify;
}

.pricerange {
  padding-bottom: 24px;
}

.cont1 {
  padding-bottom: 24px;
}
.cont2 {
  padding-bottom: 58px;
}

.contSub {
  padding-bottom: 0;
  margin-bottom: 12px;
}

/*************** BOOKING  ****************/

.bookingHero {
  background-image: url(/images/heroBooking.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: block;
}

.bookingHero img {
  margin-left: auto;
  margin-right: auto;
}

/*************** CONFIRMED  ****************/

.confirmedHero {
  background-image: url(/images/heroBooking.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: block;
  height: 100%;
  padding-bottom: 58px;
}

.confirmedHero img {
  margin-left: auto;
  margin-right: auto;
}

.confirmedHero a {
  color: var(--sec);
}

.confirmedHero a:hover {
  color: var(--textOnDark);
}

/* FOOTER */

.footer::after {
  content: "";
  display: block;
  clear: both;
}

.footer {
  margin: 0;
  display: block;
  width: 100%;
  background-color: var(--textOnLight);
  text-align: center;
  padding: 26px 0 0 0;
}

.footermail {
  margin-bottom: 36px;
}

.footer img {
  display: block;
  margin: 3rem auto;
  width: 150px;
}

.footer-social {
  color: var(--sec);
  display: block;
  margin: auto;
  width: 100%;
  text-align: center;
}

.footer-social i {
  font-size: 30px;
  text-align: center;
  cursor: pointer;
  margin: 10px 10px 50px 10px;
}

.footer-social i:hover {
  color: var(--textOnDark);
}

.footerMail {
  font-weight: 600;
  margin-bottom: 2rem;
}

footer a {
  color: var(--sec);
  font-weight: 600;
}

/* INFO */

.info {
  background-color: var(--textOnLight);
  color: var(--textOnDark);
}

.copyright {
  color: var(--textOnDark);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0;
  text-align: center;
  padding: 2rem;
}

/* RESPONSIVE */

@media (max-width: 1366px) {
  .bookingContainer {
    width: 1000px;
    height: 120px;
  }
}

@media (max-width: 1080px) {
  .HowItWorks {
    padding: 0px 0 58px 0;
  }

  .whyContent {
    padding: 36px 0 36px 0px;
    flex-direction: column;
  }

  .tripadvisor {
    flex-direction: column;
  }

  .trip-button-container {
    justify-content: center;
  }

  .bookingContainer {
    top: 0px;
    width: 650px;
    height: 400px;
  }

  iframe {
    top: 0px;
  }

  .bookingWidgetStyle {
    flex-direction: column;
  }

  .pickup,
  .dropoff,
  .date {
    padding: 24px 0;
  }
  .widgetLabel {
    display: block;
    text-align: center;
    margin: auto;
  }

  .swiper-slide,
  swiper-slide {
    height: 100% !important;
  }

  .card {
    flex-direction: column;
  }

  .card-image {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
  }

  .card-content,
  .card-image,
  .image-content {
    width: 100%;
  }

  .card-content,
  .image-content {
    height: 50%;
  }

  .btnContainer {
    padding-bottom: 58px;
    padding-top: 24px;
    text-align: center;
  }

  .btnCard {
    display: block;
    margin: 24px auto;
  }

  .btnStroke,
  .btnAcc {
    margin: 12px 0;
  }

  /* SWIPER */

  .card-content {
    padding: 1rem;
  }
  .image-content {
    height: 40%;
  }
  .tourTitle {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .tourSubtitle {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .swiper-slide,
  swiper-slide {
    /*min-height: 440px!important;*/
    height: 800px !important;
  }

  .btnStroke,
  .btnFill,
  .btnAcc {
    width: 180px;
  }
  .btnStroke,
  .btnAcc {
    margin-right: 24px;
  }
}

@media (max-width: 860px) {
  .heroText {
    width: 100%;
  }

  .overlay {
    display: none;
  }
  .bookingContainer {
    top: 0px;
    width: 400px;
  }

  #btn {
    display: block;
  }

  /* SIDEBAR */

  .sidebar {
    position: fixed;
    top: -640px;
    right: 0;
    width: 100vw;
    height: 640px;
    background-color: var(--bgForms);
    overflow: hidden;
    transition: all 0.2s ease;
    text-align: right;
    display: block;
    float: right;
    align-content: flex-end;
    padding: 30px;
    z-index: 998;
  }

  .menuTitle {
    display: block;
    text-indent: -10000px;
    height: 100%;
    width: 100%;
    padding-top: 50px;
    line-height: 50px;
    font-size: 50px;
    font-weight: 700;
    color: var(--textOnLight);
    margin: auto;
    user-select: none;
  }

  .navbarLinks {
    margin-top: 10px;
    width: 100%;
    height: 100%;
    padding-right: 0px;
  }

  header nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 56px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem 2rem;
    margin: 0;
  }

  header nav ul {
    display: block;
    line-height: 35px;
    text-align: right;
    float: right;
    width: 100%;
  }

  header nav ul li {
    display: block;
    width: 100%;
    height: 100%;
    margin: 30px 0px;
    border-bottom: dashed 1px var(--textOnLight);
  }

  header nav ul li:nth-child(7) {
    border: none;
  }

  header nav ul li a {
    display: block;
    color: var(--textOnLight);
    font-size: 22px;
    font-weight: 700;
    position: relative;
  }

  .btnNav {
    text-align: center;
    padding: 12px 12px;
  }
  .logo img {
    margin-top: 150px;
  }

  h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }

  h5 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  /* WHY US */

  .whyUs {
    padding: 0;
  }

  .containerWhy {
    width: 100%;
  }

  .imgWhy {
    background-position: 50% 50%;
    height: 400px;
    width: 100%;
    margin-bottom: 58px;
  }
  .heroImg img {
    display: none;
  }

  .bookingContainer {
    top: -80px;
    width: 300px;
    height: 380px;
  }
}

@media (max-width: 480px) {
  .heroText h1 {
    padding-top: 64px;
  }

  iframe {
    top: -80px;
  }

  .hero {
    height: auto;
  }

  .logo img {
    margin-top: 150px;
    width: 150px;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2.3rem;
    line-height: 2.3rem;
  }

  h5 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .title {
    margin-top: 58px;
  }

  .heroContent {
    position: relative;
    z-index: 99;
  }

  .heroText {
    width: 100%;
  }

  .heroImg {
    width: 100%;
    top: -300px;
    z-index: 2;
  }
  .heroImg img {
    padding-top: 0;
    width: 600px;
    display: none;
  }

  .btnStroke,
  .btnFill,
  .btnAcc {
    display: block;
    margin: 12px auto;
  }

  .imgWhy {
    height: 200px;
  }

  /* HOW IT WORKS */

  .iconContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .iconText {
    display: none;
  }

  .gallery {
    padding: 0;
  }
}

@media (max-width: 350px) {
  .bookingContainer {
    top: 0px;
    width: 300px;
    height: 400px;
  }

  iframe {
    top: 0px;
  }
}
