/**
* Template Name: MyResume
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-Regular.otf'); /* IE9 Compat Modes */
  src: url('../fonts/Assistant-Regular.otf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/Assistant-Regular.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Assistant-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
}

@font-face {
  font-family: 'Assistant-Bold';
  src: url('../fonts/Assistant-Bold.otf'); /* IE9 Compat Modes */
  src: url('../fonts/Assistant-Bold.otf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/Assistant-Bold.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Assistant-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Assistant-Bold", sans-serif;
  color: #272829;
}

a {
  color: #272829;
  text-decoration: none;
}

a:hover {
  color: #CD1619;
  text-decoration: none;
}

p {
  font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Assistant-Bold", sans-serif;
}

.row > * {
	display: grid;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #CD1619; /*background: #0563bb;*/
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #F76782;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #CD1619; /*#0563bb;*/
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
/*@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
/*aggiunta dc causa video non fa vedere quello su schermi piccoli*/
.mobile-nav-toggle{
  color: #CD1619;
}
/*fine*/
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #CD1619; /*background: #0563bb;*/
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px 0px 5px 5px;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #CD1619; /*color: #0563bb;*/
}

.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-red {
	background-color: #CD1619;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 24px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  /*padding-bottom: 30px;*/
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /*margin-bottom: 20px;
  padding-bottom: 20px;*/
  position: relative;
  color: #ccc;
}

.section-title h2::before {
  	content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #ccc;
    /*bottom: 1px;*/
    /* left: calc(50% - 60px);*/
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: none;
  width: 40px;
  height: 3px;
  background: #CD1619; /*background: #0563bb;*/
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.red {
	color: #CD1619;
	font-weight: 700;
}

.container {
	/*padding-right: 24px;*/
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background-color: #CD1619;
  padding: 12px 0 32px 0;
  text-align: center;
  margin-bottom: 32px;
}

.clients img {
  max-width: 25vw;
  /*transition: all 0.4s ease-in-out;*/
  display: inline-block;
  padding: 15px 0;
  /*filter: grayscale(30);*/
}

/*.clients img:hover {
  filter: none;
  transform: scale(1.1);
}*/

.clients .subtitle {
	font-size: 24px;
	font-weight: 700;
	color: white;
}

.clients #thirdLogo_small {
	display: none !important;
}

@media (max-width: 767px) {
  .clients img {
    max-width: 80%;
  }

  .clients .subtitle {
	font-size: 18px;
	font-weight: 700;
  }
  
  .clients #thirdLogo_big {
	display: none !important;
  }
  .clients #thirdLogo_small {
	display: flex !important;
  }
  .clients #thirdLogo_small img {
	max-width: 37%;
  }
}

.clients2 {
  background-color: #f3f5fa;
  padding: 12px 0;
  text-align: center;
  margin-left: -100px;
  padding-left: 100px;
}

.clients2 img {
  max-width: 40%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  /*filter: grayscale(30);*/
}

.clients2 img:hover {
  filter: none;
  transform: scale(1.1);
}

.clients2 .subtitle {
	font-size: 24px;
	font-weight: 700;
}

@media (max-width: 768px) {
  .clients2 img {
    max-width: 80%;
  }

  .clients2 .subtitle {
	font-size: 18px;
	font-weight: 700;
}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .subtitle {
	font-size: 1.4em;
	line-height: 1.1em;
	text-align: center;
	/*padding-bottom: 0.5rem;*/
}

.about p.subtitle  {
	margin-bottom: 0;
}

.about .content2 {
	display: flex;
    justify-self: center;
    width: 70%;
}

.about .content h3 {
  font-size: 1.1em;
  /*font-weight: bold;*/
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000000;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #CD1619; /*color: #0563bb;*/
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about#info  {
	padding-top: 32px;
}

.about .upper {
	text-transform: uppercase;
}

.about .bigText {
	font-size: 1.8em !important;
	text-align: center;
	line-height: 1.1em;
	/*padding-right: 8px*/
}

.about .normalText {
	font-size: 1.1em;
	text-align: center;
	line-height: 1.3em;
	/*padding-right: 8px*/
}

.about .smallText {
	font-size: 0.9em;
	text-align: center;
	/*line-height: 1em;*/
	/*padding-right: 8px*/
}

@media (max-width: 767px) {
	.about .content h3 {
	  font-size: 1em;
	}
	
	.about .bigText {
		font-size: 4.2vw !important;
	}
	
	.about .normalText {
		font-size: 1em;
	}
	
	.about .smallText {
		font-size: 0.8em;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.about .content h3 {
	  font-size: 1.2em;
	}
	
	.about .bigText {
		font-size: 2.1em !important;
	}
	
	.about .normalText {
		font-size: 1.2em;
	}
	
	.about .smallText {
		font-size: 1em;
	}
}

@media (min-width: 992px) {
	.about .content h3 {
	  font-size: 1.4em;
	}
	
	.about .bigText {
		font-size: 2.8em;
	}
	
	.about .normalText {
		font-size: 1.4em;
	}
	
	.about .smallText {
		font-size: 1.1em;
	}
}

@media (orientation: portrait) {
	.about .content2 {
		width: 90%;
	}
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
  padding: 60px 0 60px 0;
}

.schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
}

@media (max-width: 991px) {
  .schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  .schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  .schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

.schedule .nav-tabs a.active {
  background-color: #CD1619;
  color: #fff;
}

.schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  .schedule .sub-heading {
    width: 75%;
  }
}

.schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

.schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

.schedule .schedule-item:hover {
  background-color: #fff;
}

.schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

.schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

.schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.schedule .schedule-item h4 span {
  font-style: italic;
  /*color: #CD1619;*/
  font-weight: normal;
  font-size: 16px;
}

.schedule .schedule-item p {
  font-style: italic;
  color: #CD1619;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
	padding: 24px 0 0 0;
}

.features .section-title h2 {
	padding: 0px;
	margin: 0px;
}

.features p.subtitle {
    margin-bottom: 0;
}

.features .subtitle {
    font-size: 1.4em;
    line-height: 1.1em;
    /* padding-bottom: 0.5rem; */
}

.features .card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 10px;
  text-transform: uppercase;
}

.features .card {
  margin-bottom: 2rem;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}

.features .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}

.features .card p {
  font-size: 18px;
  /*color: #848484;*/
  margin-left: 10px;
}

.features .card span.subtitle {
	font-weight: 500;
}

.features .card span.barriers {
	font-size: 14px;
	font-style: italic;
	color: #CD1619;
	margin: 1rem 0;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.features .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #CD1619;
  border: 0;
  color: #fff;
}

.features .card .btn:hover {
  background-color: #e0072f;
}

.features #buy-ticket-modal input,
.features #buy-ticket-modal select {
  border-radius: 0;
}

.features #buy-ticket-modal .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #CD1619;
  border: 0;
  color: #fff;
}

.features #buy-ticket-modal .btn:hover {
  background-color: #e0072f;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue {
  padding: 60px 0;
}

.venue .container-fluid {
  margin-bottom: 3px;
}

.venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.venue .venue-info {
  background: url("../img/venue-gallery/villa.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 574px) {
  .venue .venue-info h3 {
    font-size: 24px;
  }
}

.venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

.venue .venue-gallery-container {
  padding-right: 12px;
}

.venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
	max-height: 200px;
	min-height: 200px;
    place-content: center;

}

.venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

.venue .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
#supporters {	
	text-align: center;
	color: #fff;
}

#supporters .logoL {
	text-transform: uppercase;
    font-size: 1.1em;
	border-right: 1px solid white;
	padding: 1em;
	display: flex;
	justify-content: center;
}
#supporters .logoC {
	text-transform: uppercase;
    font-size: 1.1em;
	border-right: 1px solid white;
	border-left: 1px solid white;
	padding: 1em;
	display: flex;
	justify-content: center;
}
#supporters .logoR {
	text-transform: uppercase;
    font-size: 1.1em;
	border-left: 1px solid white;
	padding: 1em;
	display: flex;
	justify-content: center;
}

#supporters .innerLogo {
	max-height: 65px; 
	/*max-height: 100px;*/
	align-self: center;
}

.container-supporters{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #CD1619;
	color: white;
	padding: 24px 0;
}

#supporters .supporters-wrap {
  /*border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;*/
  /*margin-bottom: 30px;*/
  background: #CD1619;
  padding: 30px 0;
}

#supporters .supporter-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 160px;
}

#supporters .supporter-logo:hover img {
  transform: scale(1.2);
}

#supporters img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Event
--------------------------------------------------------------*/
.event .subtitle {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 1rem;
}

.event .content h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #728394;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #CD1619; /*color: #0563bb;*/
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .address {
	display: flex;
	justify-content: center;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #CD1619; /*background: #0563bb;*/
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #CD1619; /*background: #0563bb;*/
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0678e3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
	padding: 0px 8px; 
}

.portfolio .portfolio-item {
  /*margin-bottom: 4px;*/
  padding: 1%;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 5px 5px 0;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fdc134;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 36px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #eeeeee;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 32px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  /*opacity: 0;*/
  opacity: 0.8;
  position: absolute;
  /*bottom: -20px;*/
  bottom: 0px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 18px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #fdc134;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fdc134;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 59, 82, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  text-align: center;
  padding: 8px 0;
}

.footer .footer-col {
  border-right: 1px solid #CD1619;	
  padding-right: 2rem;
}

.footer .footer-row {
  border-bottom: 1px solid #CD1619;	
  margin-left: 7.5%;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  /*font-family: "Poppins", sans-serif;*/
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  padding: 0;
  margin: 0 0 16px 0;
}

.footer .social-links {
  margin: 0 0 40px 0;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #CD1619; /*background: #0563bb;*/
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

.footer .copyright {
  margin: 0 0 5px 0;
}

.footer .credits {
  font-size: 13px;
}

.footer a {
  color: #272829;
}

.footer a:hover {
  color: #CD1619;
}

.footer img {
  /*max-width: 100px;*/
  max-width: 30vw;
  /*transition: all 0.4s ease-in-out;*/
  display: inline-block;
  padding: 15px 0;
  /*filter: grayscale(30);*/
}

.footer img:hover {
  filter: none;
  /*transform: scale(1.1);*/
}

.footer.f-small {
	display: none;
}

@media (max-width: 767px) {
  
  .footer.f-small {
	display: block;
  }
	
  .footer.f-large {
	display: none;
  }

  .footer img {
    max-height: auto;
    max-width: 40vw;
    padding: 8px 0;
  }
	
  .footer .nosponsor {
    max-height: 60px;
  }
	
}

@media (min-width: 991px) {
	.footer {
		margin-left: 100px;
	}
}

/* added */
#submitTour, #submitCandle {
	color: rgb(255, 255, 255);
    background-color: rgb(248, 35, 74);
	margin-top: 2rem;
}

.prenotazione {
	padding: 1rem 0.5rem;
    border: 1px solid;
    border-color: grey;
    border-radius: var(--bs-border-radius);
    background-color: lightgrey;
}

.avviso_posti p {
	padding: 0.2rem 0;
    font-size: 0.8rem;
    text-align: right;
    color: orange;
}

.error_message p {
	padding: 0.4rem 0;
    font-size: 0.9rem;
    text-align: center;
    color: orange;
}

/* ------------------MODAL CSS------------------ */

.custom-modal {
	margin: auto;
    max-width: 100%;
    min-width: 100%;
    max-height: 80%; 
	margin-top: 0px;
}

/* -------------------------------------------- */

/*---------------change lang btn-----------------*/

.flag {
	width: 20px; 
	height: 15px;
	transition: all 0.3s ease;
  	margin-left: auto;
  	margin-right: auto;
  	display: block;
}

.flag-container:hover .flag {
	content: url("../img/ita_eng.png");
}

/*--------------------------------*/


/*---------------freccia-----------------*/
.tubulo-section {
	/*width: calc(100% - 16px);
    height: calc(100vw* 9 / 16);
    background-size: contain;
    background-image: url(../img/tubulo_red.webp);
    background-attachment: fixed;*/
    /*background-position: bottom;
    background-repeat: no-repeat;*/
}

.image-container {
    height: 70vh;
	border-radius: 1000px;
	display: flex;
    justify-self: center;
}

/*--------------------------------*/

/*--------------Pagina avvenuto Pagamento------------------*/

.frecciaPagamento {
	background: url('../img/freccia.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.resocontoData{
	margin-top: 7%;
}

.resocontoData p{
	margin-bottom: 2px; 
	font-size: 25px;
}

.summaryDiv {
    border-left: 2px dashed white; 
    background-color: #CD1619; 
}

.summaryDiv p {
    writing-mode: vertical-rl;
    text-align: justify; 
    text-justify: inter-word;
    letter-spacing: 10px;
    color: white;
    margin: 40% auto;
}
@media only screen and (orientation: landscape) {
	.summaryDiv p {
		margin-top: calc(100vw* 0.05);
		/*margin: calc(100vw * 0.1) calc(100vw * 0.03);*/
	}

}

@media only screen and (orientation: portrait) {
	.summaryDiv p {
		/*margin: calc(100vh * 0.1) calc(100vh * 0.03);*/
		margin-top: calc(100vh* 0.1);
	}
}


/*--------------------------------*/

/*--------------Pagina Pagamento------------------*/
.infoDiv{
	box-shadow: -2px -1px 15px 7px rgba(0, 0, 0, 0.1);
    padding: 2%;
    margin-bottom: 4%;
	text-align: center; 
}
/*--------------------------------*/

/*--------------Bottone Prenotazione------------------*/
/*:root{
	--pos : 20px;
	--neg: ; -20px;
}*/
.container-prenota{
	width: 100%;
	height: calc(100vw / 12);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #CD1619;
	color: white;
	/*border-radius: 100px;*/
}

.prenota-end{
	background: white !important;
	color: #CD1619 !important;
}
.prenota-end span {
    display: block;
    width: 2.5vw;
    height: 2.5vw;
    border-bottom: 0.8vw solid #CD1619 !important;
    border-right: 0.8vw solid #CD1619 !important;
    transform: rotate(45deg);
    /*margin: -10px;*/
}

.arrowPrenota {
    /*position: fixed;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
    cursor: pointer;
	margin-right: calc(100vw* 0.25);
}

.arrowPrenota p{
	font-size: calc(100vw * 0.03);
    transform: rotate(90deg);
	letter-spacing : 0.1em;
	position:absolute;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
	margin-top: calc(100vw* 0.12);
	z-index:1;

}

.arrowPrenota p:hover{
	animation: text-animate 1s forwards;
}

.arrowPrenota span {
    display: block;
    width: 2.5vw;
    height: 2.5vw;
    border-bottom: 0.8vw solid #fff;
    border-right: 0.8vw solid #fff;
    transform: rotate(45deg);
    /*margin: -10px;*/
}

.arrowPrenota:hover span {
    animation: arrow-animate 1.5s infinite;
}

.arrowPrenota:hover span:nth-child(2) {
    animation-delay: -0.1s;
}

.arrowPrenota:hover span:nth-child(3) {
    animation-delay: -0.2s;
}

@keyframes arrow-animate {
    0% {
        /*opacity: 1;*/
        transform: rotate(45deg) translate(-0.8vw, -0.8vw);
    }
    50% {
       /* opacity: 1;*/
		transform: rotate(45deg) translate(0.8vw, 0.8vw);
    }
    100% {
/*        opacity: 1;*/
        transform: rotate(45deg) translate(-0.8vw, -0.8vw);
    }
}

/*@keyframes text-animate {
    0% {
		letter-spacing: 8px;
		font-size : calc(100vw / 100 * 3);
    }
    100% {
		letter-spacing: 9px;
		font-size : calc(100vw / 100 * 3.5);
    }
}*/


/*--------------RESPONSIVE-----------------*/

@media only screen and (orientation: landscape) {
	/*:root {
	--scrool-margin-start: calc(100vh * -0.5);
	--scrool-margin-stop: calc(100vh * -0.35);
	--max-arrow-height: calc(100vh * 0.65);
	--padding:1%;
	}*/
	
	.arrowPrenota p{
		font-size: calc(100vw * 0.027);
	}
	
	.container-prenota{
		height: calc(100vh / 6);
	}
}

@media only screen and (orientation: portrait) {
	/*:root {
	--scrool-margin-start: calc(100vw * -0.5);
	--scrool-margin-stop: calc(100vw * -0.35);
	--max-arrow-height: calc(100vw * 0.65);
	--padding:1%;
	}*/
	
	.image-container {
    	height: 40vh;
		width: auto;
	}
	
	.container-prenota{
		height: calc(100vw / 8);
	}
	
	.arrowPrenota {
		margin-right: calc(100vw* 0.3);
	}
	
	.arrowPrenota p{
		font-size: calc(100vh * 0.025);
	}
}

@-moz-document url-prefix() {
  .arrow {
	animation: shiftDown forwards;
	animation-timeline: view();
	animation-range: entry 10%;
	
	position: absolute;
	margin-top: var(--scrool-margin-stop);
	max-height: var(--max-arrow-height); 
	z-index: 1;	
	/*padding-left: var(--padding);*/
	opacity: 0;
	width: 35%;
	}
}  


.link-row {
	font-family: "Assistant-Bold", sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	color: #ffffff;
	border: 1px solid #CD1619!important;
	/*border-bottom: 1px solid #CD1619!important;
	border-top: 1px solid #CD1619!important;*/
	border-radius: 100px;
	text-align: center;
	background:	#CD1619;
	margin: 1rem 0;
    padding: 4px;
}

.link-row a {
	color: #ffffff;
}


.link-row:hover {
	/*background:	rgba(210,220,230,0.1);*/
	background: #ffffff;
	border: 1px solid #CD1619!important;
	cursor: pointer;
	color: #CD1619;
}

.link-row:hover a{
	color: #CD1619;
}

.link-row.register {
	background:	#CD1619;
	border-bottom: none !important;
	border-top: none !important;
}

.link-row.register .text {
	font-family: "Assistant-Bold", sans-serif;
	font-weight: bold;
    font-size: 14px;	
	color: #fff;
}

.link-row.register .text:hover {	
	color: #212529;
}

.link-row.register a {
	color: #ffffff;
}

.link-row.register a:hover {
	color: #94432C;
}

.link-row.register:hover a:not(:hover) {
	color: #212529;
}

.link-row.register:hover {
	/*background:	rgba(210,220,230,0.1);*/
	background: transparent;
	color: #212529;
}

/*--------------------------------*/