

/* SERIF - ETHOS */

@font-face {
      font-family: 'Serif Bold';
      src: url('../fonts/Ethos-Bold.woff') format('woff');
  }
  
@font-face {
      font-family: 'Serif Bold Italic';
      src: url('../fonts/Ethos-BoldItalic.woff') format('woff');
  }
  
@font-face {
      font-family: 'Serif Medium';
      src: url('../fonts/Ethos-Medium.woff') format('woff');
  }
  
@font-face {
      font-family: 'Serif Medium Italic';
      src: url('../fonts/Ethos-MediumItalic.woff') format('woff');
  }
  
@font-face {
      font-family: 'Serif Regular';
      src: url('../fonts/Ethos-Regular.woff') format('woff');
  }
  
@font-face {
      font-family: 'Serif Regular Italic';
      src: url('../fonts/Ethos-RegularItalic.woff') format('woff');
  }

@font-face {
      font-family: 'Serif Light';
      src: url('../fonts/Ethos-Light.woff') format('woff');
  }
  
@font-face {
      font-family: 'Serif Light Italic';
      src: url('../fonts/Ethos-LightItalic.woff') format('woff');
}


/* SANS - BRANDON GROTESQUE */

@font-face {
      font-family: 'Sans Black';
      src: url('../fonts/brandon-grotesque-black.woff') format('woff');   
  }
  
@font-face {
      font-family: 'Sans Bold';
      src: url('../fonts/brandon-grotesque-bold.woff') format('woff');   
  }

@font-face {
      font-family: 'Sans Medium';
      src: url('../fonts/brandon-grotesque-medium.woff') format('woff');   
  }
  
@font-face {
      font-family: 'Sans Regular';
      src: url('../fonts/brandon-grotesque-regular.woff') format('woff');   
  }
  
  
@font-face {
      font-family: 'Sans Light';
      src: url('../fonts/brandon-grotesque-light.woff') format('woff');
  }

@font-face {
      font-family: 'Sans Thin';
      src: url('../fonts/brandon-grotesque-thin.woff') format('woff');
  }


@font-face {
      font-family: 'Sans Captions Titolino';
      src: url('../fonts/Rubik-Medium.woff') format('woff');
  }
  
@font-face {
      font-family: 'Sans Captions';
      src: url('../fonts/Rubik-Light.woff') format('woff');
  }

@font-face {
      font-family: 'Sans Captions Italic';
      src: url('../fonts/Rubik-LightItalic.woff') format('woff');
  }


  :root {
  
--space: 2rem;
--space-xs: calc(var(--space) / 3);
--space-sm: calc(var(--space) / 2);
--space-md: calc(var(--space) * 2);
  
  
    --primary-color:        #6699cc; /*f13a11;*/
    --bar-color:        	rgba(98,136,218,0.85);
    --white-color:          #ffffff;
    --dark-color:           rgba(61,70,76,1);  /*3D464C;*/
    --about-bg-color:       #f9f9f9;
    --vivace-color:       	#5c88da;

    --gray-color:           #909090;
    --pale-gray-color:      #F7F5F0; /*F5F1E6*/
    --link-color:           #404040;
    --p-color:              #22253F;
    --p-intro-color:        #ebe7dd;
    
    

    --base-font-family:     'Sans', sans-serif;
    --bodycopy-font-family: 'Serif', serif;
    
    --font-weight-black:    700;
    --font-weight-bold:     bold;
    
    --font-weight-regular:  400;
    --font-weight-light:    300;
    
    --font-weight-thin:     thin;
    
    
/* Keyword values */
font-weight: normal;
font-weight: bold;

/* Numerical values */
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400; /* normal */
font-weight: 500;
font-weight: 600;
font-weight: 700; /* bold */
font-weight: 800;

/* Global values */
font-style: normal;
font-style: italic;
font-style: oblique;
font-style: oblique 10deg;

/* Global values */
font-style: inherit;
font-style: initial;
font-style: revert;
font-style: revert-layer;
font-style: unset;
font-weight: 900;
    

    --h1-font-size:         72px;
    --h2-font-size:         48px;
    --h3-font-size:         24px;
    --h4-font-size:         28px;
    --h5-font-size:         22px;
    --h6-font-size:         18px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --infoline-font-size:   13px;
    --caption-font-size:   	12px;
    --menu-font-size:       13px;
    --btn-font-size:       	14px;

    --border-radius-large:  100%;
    --border-radius-small:  2px;
  }


  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }




.sidebar {
  --offset: 8rem;
  flex-grow: 1;
  flex-basis: 300px;
  align-self: start;
  position: sticky;
  top: var(--offset);
}


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
  }

  h1 {
  
  	font-size: var(--h1-font-size);
  	
    font-family: 'Sans Black';

    text-transform: uppercase;
    margin: 15px 0;
    
      font-weight: 700;
      font-style: normal;  
    
    line-height: 1em;
    letter-spacing: 0rem;
  }


  h2 {
    font-size: var(--h2-font-size);
     font-family: 'Sans Black';

    text-transform: uppercase;
    margin: 15px 0;
    
      font-weight: 700;
      font-style: normal;  
    
    line-height: 1em;
    letter-spacing: 0rem;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
  }

  h4 {
    font-size: var(--h4-font-size);
    font-style: italic;
    font-family: 'Serif Light Italic';
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
  	font-size: var(--h6-font-size);
  	
    font-family: 'Sans Light';

    text-transform: uppercase;
    margin: 15px 0;
    
      font-weight: 700;
      font-style: normal;  
    
    line-height: 1em;
    letter-spacing: 0.1rem;
    
    font-size: var(--h6-font-size);
    
    margin: 0;
  }
  
  
  h6 .text-white {color:#ebe7dd;}
  
.sidBar {
	position: sticky;
	}  

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-family: 'Serif Light';
    line-height: 1.2em;
    letter-spacing: 0rem;
  }
  
p i {
    font-family: 'Serif Captions Italic';
  }
 
.opener {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-family: 'Serif Light Italic';
    line-height: 1.2em;
    letter-spacing: 0rem;
  } 
  
  
.small-text  {
    font-size:13px;
  }  
  
.info-data {
    color: var(--primary-color);
    line-height: 2.5em;
    border-top: 1px solid;
    margin-bottom: 2.5rem;
    
   	font-size: var(--infoline-font-size);
    font-family: 'Sans Regular';
    font-weight: var(--font-weight-thin);
    text-transform: uppercase;
      font-weight: 300;
      font-style: normal;  
  }

.info-data-up {
   color: var(--primary-color);
    font-family: 'Sans Regular';
    font-size: var(--infoline-font-size);
    font-weight: var(--font-weight-thin);
    line-height: 2.5em;
    border-bottom: 1px solid;
    text-transform: uppercase;
    margin-top: 0rem;
  }
  
span.caption {
   
   display:block;
   color: #909090;
   margin: 0 1rem;
    line-height: 2.5em;
    border-bottom: 1px solid;
    margin-bottom: 2.5rem;
   	font-size: var(--caption-font-size);
    font-family: 'Sans Captions';
  }
  
p.caption {
    font-family: 'Sans Captions';  
  }
  
  
  b, 
  strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
  }

  .section {
    padding: 0 0 7rem 0;
  }


#bottom {
        position: absolute;
        bottom: 0;
        text-align:center;
        width:100%;
      }

#bottom a, a[href^="tel:"] {
        text-decoration:none;
        color: var(--primary-color);
      }
      
#bottom a:hover, a[href^="tel:"]:hover {
        color:white;
      }

#bottom a:active, a[href^="tel:"]:active {
        color:YELLOW;
      } 
      
#bottom a:visited, a[href^="tel:"]:visited {
        color: var(--primary-color);
      }
 
 
/* COLLAPSIBLE LISTING  */



span.listing-copy-head {
	font-family: 'Sans Bold';display:block;margin-bottom:1rem;padding-bottom:0.5rem;border-bottom:1px solid #ddd;
	}
.listing-copy {
	font-family: 'Serif Regular';display:block;padding:0.5rem;border-bottom:1px solid #ddd;
	}


.collapsible {
 	display:block;
  	cursor: pointer;
  	width: 100%;
  	border: none;
  	text-align: left;
  	outline: none;
	}

.collapsible .active, .collapsible:hover {
  	outline: none;
	text-decoration: underline 1px #000;
	text-underline-position: under;
	text-underline-offset: 4px;
}

.collapsible .active, .collapsible {
  outline: none;
  border-bottom:1px solid #ddd;
}

.collapsible:after {
  content: '\002B';
  float: right;
  margin-left: 5px;
}

.collapsible .active:after {
  content: "\00D7";
}

.content {
  margin:0;
  padding:0;
  font-family: 'Serif Regular';
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}




  /* BUTTON */

  .custom-btn {
    background: transparent;
    border-radius: var(--border-radius-small);
    padding: 14px 24px;
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-normal);
    font-family: 'Sans Bold';
    text-transform: uppercase;
        letter-spacing:0.1em;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .custom-btn:hover {
    color: var(--primary-color);
  }

  .custom-btn:focus {
    box-shadow: none;
  }

  .custom-btn.bordered:hover,
  .custom-btn.bordered:focus,

  .custom-btn.bg-color:hover,
  .custom-btn.bg-color:focus {
    background: var(--white-color);
    border-color: transparent;
    color: var(--primary-color);
  }

  .bordered {
    border: 1px solid var(--vivace-color);
    background: var(--vivace-color);
    color: var(--pale-gray-color);
  }

  .bg-color {
    background: var(--vivace-color);
    color: var(--white-color);
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
  }


  /* BG OVERLAY */

  .bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.20;
  }


  /*---------------------------------------
     MODAL              
  -----------------------------------------*/

  .modal-content {
    padding: 2rem 3rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    border: 0;
    padding: 0;
  }

  .membership-form a {
    color: var(--primary-color);
  }


  /*---------------------------------------
    FEATURE          
  -----------------------------------------*/

  .feature {
    background: var(--vivace-color);
    padding: 5rem 0;
  }


  /*---------------------------------------
    TOUR MAIN PAGE          
  -----------------------------------------*/

  .tour-main {
    background: var(--pale-gray-color);
    padding: 5rem 0 5rem 0;
  }

  
  .TourBanner {
  	display:block;
  	overflow: hidden;
  	height:10rem;
  	background: var(--white-color);
    padding: 0;
    margin-top:0;
    margin-bottom:3rem;
    clear:both;
  }



  /*---------------------------------------
     MENU             
  -----------------------------------------*/

  .navbar {
    background: var(--bar-color);
    padding: 1rem;
    font-family:'Sans Medium';
    letter-spacing:0.1em;
  
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding-top: 0;
  }

  .nav-item .nav-link {
    display: block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 2px 6px;
  }

  .nav-item .nav-link.active,
  .nav-item .nav-link:hover {
    color: var(--dark-color);
  	outline: none;
	text-decoration: none;
}

.nav-item .nav-link.active {
	text-decoration:line-through;
}

.active, .collapsible {
  outline: none;
  border-bottom:none;
  }

  .navbar .social-icon li a {
    color: var(--white-color);
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }

  /*---------------------------------------
     HERO       Syrian_restaurant2.jpg       KidsPlaying.jpg 	16-9BirdView.jpg	IMG_4221.jpeg
  -----------------------------------------*/

  .hero {
    background-image: url('../images/KidsPlaying.jpg');
    background-size: cover;
    	-webkit-background-size: cover;
     	-moz-background-size: cover;
     	-o-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }
  
  .hero-temp {
    background-image: url('../images/CastelloPlan01H8Azur.png');
    background-size: cover;
    	-webkit-background-size: cover;
     	-moz-background-size: cover;
     	-o-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }  
  
  .hero-brand {
     background-color: #5c88da;
     background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }

  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .heroEscape {
    background-image: url('../images/historic_photo.jpg');
    opacity: 0.90;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }

 
  /*---------------------------------------
     CLASS               
  -----------------------------------------*/

  .class-info {
    background: var(--white-color);
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    border-radius: 5px;
    padding: 0rem;
    position: relative;
  }

  .class-info img {
    border-radius: 5px 5px 0px 0px;
  }
  

.class-info p {
    padding:1rem;
  }
  
.class-info .titolino {
    display:block;
    font-family: 'Sans Captions Titolino';
  }

  
  
  .class-info strong {
    color: var(--gray-color);
  }

  .class-price {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
  }


.class-googlemapicon {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    line-height:5rem;
    text-align: center;
  }
  
  

  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
  }

  .schedule-table strong {
    color: var(--white-color);
  }

  .schedule-table span {
    color: var(--gray-color);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
    top: 10px;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

td {
  	vertical-align:top;
  }


  /*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

  .about {
    background: var(--about-bg-color);
  }

  .about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }

  .team-thumb {
    position: relative;
    padding-top: 3.5rem;
  }

  .team-info {
    background: var(--white-color);
    border-radius: 0 0 2px 2px;
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    padding: 20px;
    position: relative;
  }

  .team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
  }

  .team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .team-info .social-icon li {
    display: block;
  }


  /*---------------------------------------
     SHOW HIDE MORE CONTENT              
  -----------------------------------------*/
#show,#content{display:none;}
#show:checked~#content{display:block;}
	
  

  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .webform input,
  button#submit-button {
    height: calc(2.25rem + 20px);
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

  button#submit-button {
    background: var(--dark-color);
    border-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  button#submit-button:hover {
    background: var(--primary-color);
  }

  .contact h2 + p {
    max-width: 90%;
  }

  .google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .google-map iframe {
    width: 100%;
  }


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    border-top: 1px solid #efebeb;
    padding: 3rem 0;
  }

  .site-footer a {
    color: var(--p-color);
    font-weight: var(--font-weight-light);
  }

  .site-footer p {
    font-size: var(--base-font-size);
  }

  .contact .fa,
  .site-footer .fa {
    color: var(--primary-color);
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin: 5px 10px;
    text-align: center;
  }

  .social-icon li a:hover {
    color: var(--primary-color);
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 992px) {

    .section {
      padding: 5rem 0;
    }

    .nav-item .nav-link {
      padding: 6px;
    }

    .navbar .social-icon {
      margin-top: 22px;
    }

    .navbar-collapse,
    .site-footer {
      text-align: center;
    }

    .schedule-table {
      display: block;
    }

    .modal-content {
      padding: 2rem;
    }
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 38px;
    }
    
    .opening {
      display:none;
    }

    .about-working-hours {
      border-left: 0;
      padding: 22px 0 0 0;
    }

    .contact h2 span {
      display: block;
    }
  }
  
  
  /* SLIDE SHOW */
  .slideshow {
  position: relative;
  height: 100%;
  z-index: 1;
}

