/* =========== Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
/* =========== Browser Reset ============ */
:root {
  /* Color Variables */
  --primary: #ffc400;
  --text-1: #0f2341;
  --text-2: #a9a9a9;
  --white: #fff;
  --shadow-300: 0 5px 5px rgba(0, 0, 0, 0.3);
  --shadow-500: 0 5px 5px rgba(0, 0, 0, 0.5);
  --transition-300: all 300ms ease-in-out;
  --transition-500: all 500ms ease-in-out;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgb(31, 30, 30) rgb(56, 56, 56);
}


body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--white);
  color: var(--text-1);
  -webkit-transition: .3s ease all;
	transition: .3s ease all;
}
body.dark{
	background: #111111;
	color: #C8C8C8;
}
body.dark .title h1{
  color: #114d9c;
}
body.dark .service .row .col .contserv img{
  background-color: #bfbfc0;
}
body.dark .section .conteinerinclude .titleinclude p{
  
  color: #114d9c;
  
}
body.dark .about .row .col .contab h3 {
  color: #c708c4;
}
body.dark .about .row .col .contab p {
  color: #9c9c9e;
}
body.dark .section .conteinerinclude .titleinclude .title .contff p{
  color: #9c9c9e;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--text-1);
}

p {
  color: var(--text-2);
  line-height: 1.5;
}

img,
video {
  width: 100%;
  height: 100%;

}


.switch {
	background: #343D5B;
	border-radius: 100px;
	border: none;
	position: relative;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
   
	outline: none;
  }
  
  .switch::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	background: #F1F1F1;
	top: 0;
	left: 0;
	right: unset;
	border-radius: 100px;
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
	-webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
			box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
  }
  
  .switch.active {
	background: orange;
	color: #000;
  }
  
  .switch.active::after {
	right: 0;
	left: unset;
  }
  
	.switch p.active{
	color: #fff;
	
	
	}
  .switch span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: block;
	background: none;
	color: #fff;
  }
  .pip{
    
	display: flex !important;
	flex-direction: row;
	height: 100%;
	width: 100px;
	top: 0px;
	left: 50px;
	
	position: absolute;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #C8C8C8;
  visibility: hidden;
  }
  .pip:hover{
    visibility: hidden;
	color: #ff9900;
  }
/* =========== Custom Classes ============ */
.d-flex {
  display: flex;
  align-items: center;
  user-select: none;
}

.container {
  max-width: 114rem;
  margin: 0 auto;
}

.section {
  margin: 5rem 0;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.title {
  margin-bottom: 2rem;
}

.title h1 {
  font-size: 4rem;
}
.nav-list .indirizzi {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  
  padding: 1rem;
  font-size: 2rem;
  color: rgb(235, 166, 247);
  
  font-weight: 400;
  display: none;
 
}

.nav-list .indirizzi img{
  width: 80px;
  height: 80px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 567px) {
  .title h1 {
    font-size: 3rem;
  }

  .section {
    margin: 5rem 0;
    padding: 5rem 0 0;
  }
}

/* =========== Navigation ============ */

.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 0;
}

.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999;
  padding: 1rem 0;
  position: fixed;
  background-color: rgba(45, 6, 38, 0.789);
  box-shadow: 0 0 20px 0 white;
}


.nav {
  max-width: 996px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
}
.logo{
  display: flex;

  align-items: center;

}
.logo h3{
  font-size: 14px;
  font-weight: 800;
  color: rgb(232, 102, 217);
  text-shadow: 0px 0px 12px #ad0dc9,
                 
                 
                
                
                 
                 0px 0px 20px rgba(145, 11, 130, 0.832);
  letter-spacing: 4px;

}
.logo img {
  width: 7rem;
  height: 7rem;
}

.nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-link {
  display: inline-block;
  padding: 1rem;
  color: var(--white);
}

.btn {
  display: inline-block;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  background-color: var(--primary);
  padding: 1.5rem 2.5rem;
  transition: var(--transition-300);
}

.btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-500);
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
}

.btn.sign-up {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: transparent;
  border: 1px solid #fff;
  transition: var(--transition-300);
}

.btn.sign-up:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.hamburger {
  display: none;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
}



@media (max-width: 768px) {
  .btn.sign-up {
    display: none;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 0;
    height: 100%;
    max-width: 100%;
    padding: 3rem 0;
    background-color: rgb(50, 50, 50);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-300);
    transition: var(--transition-500);
    user-select: none;
    transition: all 1s ease;
    z-index: 9999;
   
  }

  .nav-list.open {
    left: 0;
    width: 100%;
    transition: all 1s ease;
   
  }

  .nav-list .nav-item {
    
    
    border-bottom: 3px rgb(199, 199, 199) solid;
    margin: 5px;
    text-align: center;
    padding-top: 10px;
    width: 90%;
    border-radius: 0px 0px 10px 10px;
  }

  .nav-list .nav-link {
    text-align: center;
    
    font-size: 2rem;
    
    color: white;
    font-weight: 500;
    
  }
  .nav-list .indirizzi {
   
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    width: 5rem;
    height: 5rem;
  }
}

/* =========== Home ============ */

.swiper-container {
  width: 100%;
  height: 100%;
  background-color: black;
}

.header .swiper-slide img,
.header .swiper-slide video {
  height: 100vh;
  object-fit: cover;

  
}
.header .swiper-slide .overlay{
  position: relative;
  height: 100%;
}


.header .swiper-slide .overlay::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #204f9658;
  opacity: 0.9;
  mix-blend-mode: overlay;
  
}
.header .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 70%;
  text-align: center;
  user-select: none;
}
.header .content img {
  left: 0;
  width: 100px;
  height: 100px;
}
.header .content h1 {
  font-size: 7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.header .content p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}
.header .content i {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 110, 255);
  margin-bottom: 2rem;
}
.header .content span {
  font-size: 4rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  border: rgb(255, 255, 255) 1px solid;
  margin-bottom: 2rem;
  padding: 0px 20px 0px 20px;
  border-bottom: 7px white solid;
  background-color: #0ac1f34c;
  box-shadow: 0 0 20px 0 rgb(71, 157, 233);
  border-radius: 10px;
}

.header .arrows {
  position: absolute;
  bottom: 0.5%;
  right: 0;
  z-index: 100;
  background-color: transparent;
  width: 100%;
  padding: 2rem;
  justify-content: center;
}

.header .swiper-icon {
  font-size: 4rem;
}

.header .swiper-next,
.header .swiper-prev {
  justify-content: center;
  background-color: rgb(255, 0, 234);
  color: var(--white);
  opacity: 0.6;
  width: 10rem;
  height: 5rem;
  cursor: pointer;
  border-radius: 20px;
}

.header .swiper-next.swiper-button-disabled,
.header .swiper-next.swiper-button-disabled {
  opacity: 0.7;
  cursor: default;
}

.header .swiper-prev {
  margin-right: 2rem;
}

@media (max-width: 996px) {
  .header .content h1 {
    font-size: 5rem;
  }
  .nav-list .indirizzi {
   
    display: none;
  }
}

@media (max-width: 768px) {
  .header .swiper-next,
  .header .swiper-prev {
    width: 6rem;
    height: 6rem;
  }
  .nav-list .indirizzi {
  
    display: flex;
  }
}

@media (max-width: 567px) {
  .header .content {
    width: 100%;
  }

  .header .content h1 {
    width: 100%;
    font-size: 4rem;
  }

  .header .arrows {
   width: 100%;
   justify-content: space-around;
 
  }
  .nav-list .indirizzi {
    
    display: flex;
  }
}

/* =========== About ============ */
.about .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  
  justify-content: center;
  border-radius: 10px;
}
.about .foot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;

  
}
.about .foot .fot-cont {
  
  
  width: 100%;
  background-color: #393939;
  height: 30px;

  
  
  
}
.about .foot .fot-cont p{
  text-align: center;

  height: 100%;
  
}
.about .row .col .contab {
  
  overflow: hidden;
  
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
  
}
.about .row .col .contab .title h1 {
  
  padding: 10px;
  
  
}
.about .row .col .contab .title h3 {
  
  padding: 10px;
  font-size: 22px;
  text-align: center;
  color: #021434;
}
.about .row .col .contab .title h2 {
  
  padding: 10px;
  font-size: 14px;
  text-align: center;
  color: #858586;
}

.about .swiper-container {
  height: 50rem;
  width: 50rem;
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;

}

.about .swiper-wrapper {
  height: 100% !important;
}

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

.about .row .col .contab p {
  padding: 10px;
  
  color: var(--text-1);
  font-size: 16px;
}
.about .row .col .loghicontainer {
  position: relative;
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 margin-top: 15px;
 margin-left: 0px;
 margin-bottom: 0px;
 width: 100%;
 box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
  padding: 10px;
 
 
}
/*TOL TIP*/
#toltiptext{
  position: absolute;
  margin-left: 0px;
  top: -40px;
  transform: translate(-50%);
  display: block;
  
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-family: sans-serif;
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.7s ease;
}
#toltiptext::before{
  position: absolute;
  content: '';
  left: 50%;
  top: 100%;

  border: 15px solid;
  border-color: #000 #0000 #0000 #0000;
  
}
#loghicontainer:hover #toltiptext{
  color: #0ac1f3;
  visibility: visible;
  opacity: 1;
  
 }
 /*END TOLTIP*/


.about .row .col .loghicontainer i {
  font-size: 28px;
  
  margin-right: 0px;
  
  border-radius: 10px;
  background-color: transparent;
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  object-fit: cover;
  cursor: pointer;
 }

 
 

.about .col img,
.about .col video {
  object-fit: cover;
  height: 100%;
  object-position: left;
}

.about .swiper-button-next::after,
.about .swiper-button-prev::after {
  content: "";
  
}

.about .swiper-button-next,
.about .swiper-button-prev {
  top: auto;
  bottom: 0.1%;
  background-color: rgb(199, 18, 181);
  width: 5rem;
  border-radius: 20px;
  
}

.about .swiper-button-next {
  
  
}

.about .swiper-button-prev {
  
  margin-right: 20px;

}

.about .swiper-icon {
  font-size: 3rem;
  color: white;
}
.galleria{
  max-width: 1150px;
  margin: 0 auto;
  padding: 5px ;

}
.galleria .griglia{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, auto));
align-items: center;
gap: 2rem;
border-radius: 10px 10px 10px 10px;
/*border: 1px rgb(50, 60, 107) solid;*/
overflow: hidden;
padding: 5px;
}
.galleria .griglia .box{
padding: 3px;
margin: 1px;
/*background: #1b1b1b;*/
box-shadow: 0 0 10px 0 rgb(60, 116, 181);
border-radius: 0.5rem;
transition: all .40s ease;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
.galleria .griglia .box img{
height: 250px;
width: 100%;
border-radius: 0.5rem;
}
.galleria .griglia .box .content{
  position: absolute;
  bottom:-100%; 
  left:3px;
  height: 98%;
  width:98%;
  text-align: center;
  background:rgba(61, 98, 171, 0.515);
  padding:5rem;
  padding-top: 5rem;
  transition: all 0.6s;

}
.galleria .griglia .box:hover .content{
  border-radius: 5px;
  bottom:2px  ;
 
}
.galleria .griglia .box .content h2{
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
}

@media (max-width: 996px) {
  .about .swiper-container {
    height: 30rem;
    width: 35rem;
  }
  
}

@media (max-width: 768px) {
  .about .row {
    grid-template-columns: 1fr;
  }

  .about .swiper-container {
    height: 40rem;
    width: 45rem;
  }
}

@media (max-width: 567px) {
  .about .swiper-container {
    height: 25rem;
    width: 30rem;
  }
 
}
/* =========== Service ============ */

.service .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  
}

.service .row img {
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
}
.service .row .col{
  
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
  margin-bottom: 5px;
}
/*
.service .row .col .contserv{
  
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  
}
*/
.service .row .col .contserv{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
 
  justify-content: center;
  align-items: center;
  
}

.service .row .col .title h1{
  padding: 10px;
  color: #740252;
  font-size: 26px;
 
}

.service .row .col .contserv h1{
  color: rgb(31, 89, 134);
  width: 100%;
  display: flex;
  flex-direction: column;
  
  font-size: 14px;
  padding: 10px;
}
/*
.service .row .col .contserv .box img{
 
  
  
}
*/

/*TIP*/
.service .row .col .contserv .box{
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border:2px   solid rgb(22, 90, 153);
  border-radius: 10px;
  margin-left: 5px;
  width:100px  ;
  height: 100px;
  position: relative;
  
}
.service .row .col .contserv .box .contentb{
  position: absolute;
  top:-100%; 
  left:0;
  height: 100%;
  width:100%;
  text-align: center;
  background:rgba(102, 124, 168, 0.703);
  transition: all 0.5s ease;
}
.service .row .col .contserv .box:hover .contentb{
  border-radius: 5px;
  top:0;
  
 
}
/*END TIP*/
.service .row .col .contserv .box .contentb p{
  position: absolute;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 800;
  bottom: 0px;
  left: 0px;

  z-index: 999;
}


.service .col p {
  margin-bottom: 3rem;
}

.service .d-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3rem;
  font-size: 14px;
  
}
.service .d-flex h2{
  color: #114d9c;
  padding: 5px;
}
.service .d-flex h3{
  color: #114d9c;
  padding: 5px;
}
.section .col .rating .vota{
  display: flex;
  flex-direction: column;
  margin-top: 10px;
 
  width: 100%;
  height: 30px;
}

.section .col .rating .vota p{
  width: 100%;
  
}
.section .col .rating span {
  color: var(--primary);
}
.section{
  
  padding: 10px;
}
.section .conteinerinclude{
  
  width: 100%;
  display: flex;
  overflow: hidden;
  
  max-width: 1150px;
  margin: 0px auto;
  margin-top: 25px;
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
  border-radius: 10px 10px 0 0;
}
.section .conteinerinclude .titleinclude{

  color: #740252;
  width: 100%;
  
  
}
.section .conteinerinclude .titleinclude .title .contff{
  display: flex;
  flex-wrap: wrap;
}
.section .conteinerinclude .titleinclude .title h1{
  text-align: center;
  
  margin-bottom: 10px;
  
  
  background-color: #a7a8a8;
}
.section .conteinerinclude .titleinclude .title .contff p{
  padding-left: 20px;
  color: var(--text-1);
  
}
.section .conteinerinclude .titleinclude .title .contff i{
  
  color: #a4037a;
  
}

@media (max-width: 768px) {
  .service .row {
    grid-template-columns: 1fr;
  }
}


/* =========== Discount ============ */
.discount {
  position: relative;
  height: 50rem;
 
  background-position: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.discount .overlay {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount .overlay::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #03a9f4;
  opacity: 0.3;
  mix-blend-mode: overlay;

}

.discount video {

  
  object-fit: cover;
 
}

.discount .content {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  
}

.discount .content .btn {
 background-color: rgb(89, 211, 8);
 border-radius: 100px;
 
}
.discount .content .btn i{
  font-size: 26px;
  
 }

.discount .content h1 {
  font-size: 5rem;
  color: rgb(245, 225, 249);
  margin-bottom: 3rem;
  background-color: #2a51639c;
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgb(123, 206, 255) ;
}

.discount .content .sp2 {
  
  color: var(--white);
  font-size: 9rem;
  
}
.discount .content span {
  
  color: rgb(40, 184, 217);
  font-size: 5rem;
  
}

@media (max-width: 800px) {
  .discount {
    height: 50rem;
  }

  .discount .content {
    top: 60%;
    width: 90%;
  }
  
  
  .discount .content .sp2 {
    
    font-size: 4rem;
    
  }
  
  .discount .content h1 {
    font-size: 1.5rem;
  }

  .discount .content .btn {
    padding: 1rem;
  }

  .discount .content span {
    font-size: 3rem;
    width: 5rem;
    height: 5rem;
  }
}

@media (max-width: 567px) {
  .discount {
    height: 30rem;
  }

  .discount .content {
    top: 50%;
    width: 90%;
  }
  .discount .content h1 {
    font-size: 5rem;
    color: rgb(245, 225, 249);
    margin-bottom: 3rem;
    background-color: #2a51639c;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgb(123, 206, 255) ;
  }
  
  .discount .content .sp2 {
    
    font-size: 4rem;
    
  }
  .discount .content span {
    
    font-size: 2rem;
  
  }

  .discount .content h1 {
    font-size: 1.5rem;
  }

  .discount .content .btn {
    padding: 1rem;
  }

  .discount .content span {
    font-size: 3rem;
    width: 5rem;
    height: 5rem;
  }
}
/* =========== Trip ============ */
.trip {
  overflow: hidden;
}

.trip .title {
  text-align: center;
  margin-bottom: 7rem;
}

.trip .title h1 {
  font-size: 5rem;
  margin: 2rem;
}

.trip .title p {
  width: 50%;

  margin: 0 auto;
}

.trip .row {
  width: 95vw;
  
  position: relative;
}

.trip .swiper-container {
  width: 100%;
  height: 100%;
  margin-bottom: 45px;
}

.trip .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 600px;
  height: 400px;
  
}

.trip .swiper-slide img {
  display: block;
  width: 100%;
}
.cont{
 
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  top: -80px;
  width: 99%;
  height: 50px;
  gap: 50px ;
  margin-top: 20px;
}
.cont .custom-next,
.cont .custom-prev {
  width: 4rem;
  height: 4rem;
  color: #F1F1F1;
  justify-content: center;
  border-radius: 50px;
  background-color: #ad0dc9b2;
  cursor: pointer;
  
}
/*
.custom-next {
  right: -60px;
  
}
.custom-prev {
  left: -60px;
}
*/

.custom-pagination {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  width: 30px;
  height: 7px;
  border-radius: 5px;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

.swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.trip .explore {
  text-align: center;
  margin-top: 8rem;
}

@media (max-width: 1200px) {
  .custom-next,
  .custom-prev {
    top: -15%;
    transform: translateY(0%);
  }
  .galleria .griglia .box img{
    height: 290px;
    width: 100%;
    border-radius: 0.5rem;
    }
  .custom-next {
    right: 10px;
  }
  .custom-prev {
    left: auto;
    right: 70px;
  }
}

@media (max-width: 768px) {
  .trip .title p {
    width: 90%;
  }

  .trip .swiper-slide {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .trip .title h1 {
    font-size: 4rem;
  }
}

/* =========== More ============ */
.more{
  display: flex;
  position: relative;
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  align-items: center;
  justify-items: center;
  left: 50%;
  transform: translate(-50%);
  border-radius: 10px;
  max-width: 1200px;
  margin-right: 25px;
  
  height: 100%;
}
.more .title {
  margin-bottom: 5rem; 
}

.more .title p {
  margin-top: 2rem;
  font-size: 16px;
}
.more .title i {
 
  font-size: 24px;
}

.more .row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  
}

.more .row .tours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  
  width: 100%;
  margin-top: -20px;
  margin-bottom: 10px;
}

.more .col .btn {
  display: block;
  text-align: center;
}

.more .tours h3 {
  margin: 1rem 0;
}

.more img {
 border-radius: 10px;
 box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  object-fit: cover;
}
.more .row .col .tours .box {
  
  padding-top: 5px;
}
.more .col .box img {
 
  height: 93%;
}
.more .col img {
  width: 90%;
  height: 29%;
  
}

@media (max-width: 768px) {
  .more .row {
    grid-template-columns: 1fr;
  }
  
}

/* =========== Contact ============ */
.newsletter {
  background-color: var(--text-1);
  height: 30rem;
}

.newsletter .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  height: 100%;
}

.newsletter .col h2,
.newsletter .col p {
  color: var(--white);
}
.newsletter .col a {
  color: var(--white);
}


.newsletter .col h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
}

.newsletter .form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  
}
.newsletter .form .logcontatti {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
 
}
.newsletter .form .logcontatti p{
  width: 100%;
  
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 15px;
  font-size: 22px;
}
.newsletter .form .logcontatti i{
  
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 1000px;
  color: rgb(83, 255, 3);
  text-align: center;
  padding: 20px;
  font-size: 46px;
}



@media (max-width: 767px) {
  .newsletter {
    height: 45rem;
    padding-bottom: 10rem;
  }
  .newsletter .row {
    grid-template-columns: 1fr;
  }

  .newsletter .form div {
    width: 100%;
  }
}

@media (max-width: 567px) {
  .newsletter {
    height: 50rem;
    padding-bottom: 10rem;
  }
  
}

/* =========== Contact Us ============ */
.contact {
  padding: 25px;
}
.contact .title {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 5rem;
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
}
.contact .loghetti i{
  padding: 25px;
  font-size: 30px;
  color: #264884;
}
.contact .title p {
  width: 60%;
  margin: 2rem auto 0;
  color: #264884;
}

.location {
  height: 500px;
  
  
}
.location iframe {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px 0 rgb(71, 157, 233);
  border-radius: 10px;
  padding: 5px;
}

@media (max-width: 567px) {
  .contact .title p {
    width: 90%;
  }

  .location {
    height: 350px;
  }
}

/* =========== Footer ============ */
.footer {
  background-color: var(--text-1);

}

.footer .row {
  display: flex;
flex-wrap: wrap;
  justify-content: space-between;
  padding: 7rem 3rem;
  
  
}

.footer .row .col:last-child {
  display: grid;
  grid-template-columns: repeat(1, minmax(0rem, 1fr));
  gap: 2rem;
}

.footer .row .col:last-child img {
  
  width: 100px;
  height: 100px;
}
.footer .row .col:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.footer .row .col {
  display: flex;
  flex-direction: column;
}

.footer .row .col h3 {
  color: var(--white);
  margin-bottom: 2rem;
}

.footer .row .col a {
  display: inline-block;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .footer .row {
    row-gap: 7rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 567px) {
  .footer .row {
    gap: 4rem 0;
    grid-template-columns: 1fr;
  }
}

/* =========== Preloader ============ */
/*
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
 
  z-index: 999999;
  background-color: black;
}

.loader img {
  width: 50rem;
  height: 50rem;
}
*/
/*
.loader-container{
  position: fixed;
  top:0; 
  left:0;
  height:100%; 
  width:100%;
  z-index: 10000;
  background:rgb(0, 0, 0);
  
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  overflow: hidden;
}

.loader-container img{
  box-shadow: 0px 0px 10px 0 rgba(255, 0, 247, 0.297);
  border-radius: 35px;
  width: 350px;
  height: 350px;
}

.loader-container.fade-out{
  top:-110%;
  opacity:0;
}
*/
/* =========== Preloader ============ */

