/* HAMBURGER MENU STYLE AT SMALL DEVICES */
/* MENU STYLES */

:root {
  --mainColor: #002B5B;
  --mainAgistriColor: #4C9EFD;
}
* :focus { outline: 0; }

body{
  font-family: 'Manrope', sans-serif;
}

.topIndexNav{
  background-color: var(--mainColor);
}

.menu-wrap {
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.9rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
	padding-top: 0px;
	padding-left: 20px;
}

/* Sticky top */

.sticky-top {
  background-color: white;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #696969;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(0.75s);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: rgba(0, 43, 91 , 0.85);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.sticky-top.scrolled {
  background-color: #fff !important;
  transition: background-color 200ms linear;
}

.bas-sm2.scrolled {
  background-color: #fff !important;
  transition: background-color 200ms linear;
}

.locationIcon{
  position: absolute;
  top: 17px;
  right: 0;  
  width: 60px;
  height: 60px;	
  padding-left: 20px;
  color: black;
  font-size:larger;
}

.btn-outline-info{
  color:#002b5b;
  background-color: white;
  border-color: #002b5b;
}

.btn-outline-info:hover{
  background-color: #0f3e74; 
  color: white;  
  border-color: #0f3e74;

}

/* Footer CSS */

.site-footer
{
background-color: var(--mainColor);
padding:45px 0 20px;
font-size:14px;
line-height:24px;
clip-path: polygon(0% 0%,100% 10%, 100% 100%, 0% 100%);
padding-top: 130px;
}
.site-footer hr
{
border-top-color: white;
color: white;
opacity:0.5
}
.site-footer hr.small
{
margin:20px 0
}
.site-footer h6
{
color:#fff;
font-size:16px;
text-transform:uppercase;
margin-top:5px;
letter-spacing:2px;
font-weight: bold;
padding-bottom: 10px;
}
.site-footer a
{
color:white;
text-decoration:none;

}
.footer-links
{
padding-left:0;
list-style:none
}
.footer-links li
{
display:block;
color: white;

}
.footer-links a
{
color:white
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
color:#3366cc;
text-decoration:none;
}
.footer-links.inline li
{
display:inline-block
}
.site-footer .social-icons
{
text-align:right
}
.site-footer .social-icons a
{
width:40px;
height:40px;
line-height:40px;
margin-left:6px;
margin-right:0;
border-radius:100%;
background-color:var(--mainColor);
}
.site-footer p{
  color: white;
}
.copyright-text
{
margin:0
}
@media (max-width:991px)
{
.site-footer [class^=col-]
{
margin-bottom:30px
}
}
@media (max-width:767px)
{
.site-footer
{
padding-bottom:0
}
.site-footer .copyright-text,.site-footer .social-icons
{
text-align:center
}
}
.social-icons
{
padding-left:0;
margin-bottom:0;
list-style:none
}
.social-icons li
{
display:inline-block;
margin-top:5px;
}
.social-icons li.title
{
margin-right:15px;
text-transform:uppercase;
color:#96a2b2;
font-weight:700;
font-size:13px
}
.social-icons a{
background-color:#eceeef;
color:#818a91;
font-size:16px;
display:inline-block;
line-height:44px;
width:44px;
height:44px;
text-align:center;
margin-right:8px;
border-radius:100%;
-webkit-transition:all .2s linear;
-o-transition:all .2s linear;
transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
color:#fff;
background-color:#29aafe
}
.social-icons.size-sm a
{
line-height:34px;
height:34px;
width:34px;
font-size:14px
}
.social-icons a.facebook:hover
{
background-color:#3b5998
}
.social-icons a.twitter:hover
{
background-color:#00aced
}
.social-icons a.linkedin:hover
{
background-color:#007bb6
}
.social-icons a.dribbble:hover
{
background-color:#ea4c89
}
@media (max-width:767px)
{
.social-icons li.title
{
display:block;
margin-right:0;
font-weight:600
}
}

.social-icons .fa-brands{
  line-height: inherit;
}

.copyright-text a:hover{
  color: inherit;
  text-decoration: underline;
}

.footer-links li a:hover{
  color: white;
  text-decoration: underline;
}

@media (max-width:993px)
{
.site-footer{
  text-align: center;
}
}

/* Hoverable dropdown menu */
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

/* INDEX BANNER */


@media (max-width: 500px){
  .index-banner{
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url("/static/img/LagothetisPhotoshoot/PIC020193-2.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: table;
  }
}

@media (min-width: 501px){
  .index-banner{
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url("/static/img/LagothetisPhotoshoot/happy_customers_riding_scooters.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: table;
  }
}


.card-overlay{
  background: rgba(0, 0, 0, 0.4);

}

.index-banner h1{
	font-size: 60px;
	font-weight:bolder;
	line-height: 90px;
	color:white;
  text-align: center;
}

.index-banner p{
	font-size: 23px;
	font-weight: 100;
	line-height: 40px;
	color: black;
	text-align: center;
	/*text-shadow: 2px 2px 8px #111;*/
}

.vertical-center{
	display: table-cell;
	vertical-align: middle;
}



.btn-success{
  background-color: var(--mainAgistriColor);
  padding: 10px 24px;
  font-size: 16px;
  border-color: var(--mainAgistriColor);
}

.btn-success:hover{
  background-color: var(--mainAgistriColor);
}

.main-btn-div{
  padding-top: 10px;
  font-size: 15px;
}

@media (max-width:915px ){
  .index-banner h1{
    font-size: 45px;
    font-weight:900;
    line-height: 65px;
    color:white;
    text-align: center;
    /*text-shadow: 2px 2px 8px #111;*/
  }

  .btn-success{
    font-size: 14px;
  }
  
}

.secondColor{
  color: var(--mainAgistriColor);
}

.maintextUnderPhoto{
  padding: 130px 12vw;
}
.maintextUnderPhoto h2{
  line-height: inherit;
}

/* Slider CSS */
.title {
  font-size: 2.5rem;
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.3;
  color:var(--mainAgistriColor);
  margin: 0rem auto 1rem;
  max-width: 1280px;
  letter-spacing: 0.3vw;
  font-size: 20px;
}

.slider {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
}

.slider__content {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-color: var(--scrollcolor) var(--scrollbackground);
}

.slider__content::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 1rem;
  background: var(--scrollbackground);
}

.slider__content::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--scrollcolor);
}

.slider__content::-webkit-scrollbar-track {
  border-radius: 1rem;
  background: var(--scrollbackground);
}

.slider__item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 100%;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background-color: white;
}

@media (min-width: 260px) {
  .slider__item{
    aspect-ratio: 3/4;
    min-width: calc((120% / 2) - 0rem);
  }
}

@media (min-width: 715px) {
  .slider__item{
    min-width: calc((100% / 3) - 0rem);
  }
}


.slider__image {
  display: block;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  max-height: 31vw;
  width: auto;
  margin-bottom: 40vw;
  width: auto;  
}

@media (min-width:715px){
  .slider__image {
    max-height: 15vw;
    margin-bottom: 20vw; 
    width: auto;
  }
}

@media (min-width:1200px){
  .slider__image {
    max-height: 11vw;
    margin-bottom: 11vw; 
    width: auto;
  }
}

.slider__info {
  position: relative;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.slider__info h2 {
  color:var(--mainColor);
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;
}


.slider__nav {
  margin: 1rem 0 4rem;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  align-content: center;
  align-items: center;
  pointer-events: none;
}


.slider__nav__button {
  margin: 0;
  appearance: none;
  border: 0;
  border-radius: 2rem;
  background: #fff;
  color: #203239;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
  transition: 0.2s ease-out;
  opacity: 0.25;
}

.slider__nav__button--active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.group-section{
  padding-left: 9vw;
  padding-right: 9vw;
  text-align: left;
}

.noPadding{
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left;
}

.customCont{
  padding-left: 9vw;
  padding-right: 9vw;
}



@media (min-width:1200px){
  .customCont2{
    padding-left: 4vw;
    padding-right: 1vw;
  }
}

.recommendSection{
  text-align: left;
  padding-left: 9vw;
}


@media (min-width: 1200px){
  .slider{
    margin-right: inherit;
  }
}

@media (max-width: 1200px){
  .recommendSection{
    padding-right: 9vw;
  }
  
  .slider {
    width: 100%;
    padding-left: 9vw;
    margin-right: auto;
  }
}

.mainPageIcons{
  padding-bottom: 48.75px;
}

.mainPageIcons p{
  padding-top: 80px;
  font-weight: bolder;
}

.mainPageIcons img{
  height: 80px;
}

@media (max-width:767px) {
  .mainPageIcons p{
    padding-bottom: 80px;
  }
}

.backgroundPhotoForGroups{
  background-image: url('/static/img/motoPhotos/one-day-cruise-athens-to-aegina-8.webp');
  background-repeat: no-repeat;
  background-position: center; 
  opacity:0.8;
  height: 400px;
  background-size: cover;
}

/* diagonal lines in recommended for us */

.hero--diagonal{
  clip-path: polygon(0% 0%,100% 10%, 100% 100%, 0% 90%);
  padding-top: 130px;
  padding-bottom: 130px;
  background: linear-gradient(210deg,var(--mainColor),var(--mainAgistriColor));
}

/* Button in recommended for you section */
.recommendedForYou-btn-div{
  padding-top: 20px;
  font-size: 10px;
}

.btn-info{
  background-color: var(--mainAgistriColor);
  padding: 6px 15px;
  font-size: 13px;
  border-color: var(--mainAgistriColor);
  color: white;
}

.btn-info:hover{
  background-color: var(--mainAgistriColor);
  color: white;
}

/* Testimonials */
@media (max-width:991px)
{
  .recommendedImg{
    padding-top: 40px;
  }
}

/* Blog */

.product-name{
  color: var(--mainColor);
  font-size: 20px;
}

.product-img img{
  max-width: 20vw;
  height: 15vw;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 600px){
  .product-img img{
    max-width: 40vw;
    height: 25vw;
  }
}

@media (min-width: 601px){
  .product-img img{
    max-width: 30vw;
    height: 25vw;
  }
}

@media (min-width: 950px){
  .product-img img{
    max-width: 20vw;
    height: 15vw;
  }
}

.product-rentPrice{
  color: var(--mainAgistriColor);
  font-size: 16px;
}

.breadcrumpForCategories p a{
  text-decoration: none;
  color: black;
}

/* Dropdown menu */
