@import url(fontawesome.min.css);
@import url(contact.css);
@import url(prestations.css);

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf'); 
}

@font-face {
  font-family: Montserrat-Light;
  src: url('../fonts/montserrat/Montserrat-Light.ttf');
}

@font-face {
  font-family: Corinthia-Regular;
  src: url('../fonts/Corinthia/Corinthia-Regular.ttf'); 
}

@font-face {
  font-family: Corinthia-Bold;
  src: url('../fonts/Corinthia/Corinthia-Bold.ttf'); 
}

:root {
  --underlign-height: 2px;
  --navbar-height : 50px;
  --blue-color: #247bb8;
}

* {
  box-sizing: border-box;
}

html, body, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	padding: 0;
	border: 0;
  margin: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  font-family: Montserrat-Regular, sans-serif;
  scroll-behavior: smooth;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

a {
    -moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    -webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    -ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    color: inherit;
    text-decoration: none;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
}

.top {
  top: 0;
}

.bottom {
  bottom: 0;
}

body.is-preload {
  opacity : 0
}

.icon svg {
  height: 0.9em;
  width: 0.9em;
  fill: rgba(0, 0, 0, 0.7);
}

/* Icon */

	/* .icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
    font-size: 20pt;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.icon > .label {
			display: none;
		}

/* Icons */

	/* ul.icons {
		cursor: default;
		list-style: none;
		padding-left: 0;
    margin: auto;
    align-items: center;
	}

		ul.icons li {
			display: inline-block;
			padding: 0 1em 0 0;
		}

			ul.icons li:last-child {
				padding-right: 0 !important;
			} */

/*
        HEADER
*/

@keyframes slideInFromRight {
  0% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-1000px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(1000px);
  }
  100% {
    transform: translateY(0);
  }
}

#header {
    left: 0;
    line-height: 72px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

    #header nav {
        height: inherit;
        line-height: inherit;
        position: absolute;
        right: 0;
        top: 0;
        animation: 1.5s ease-out 0s 1 slideInFromRight;
        transition: transform 0.5s ease;
    }

    #header nav:hover {
        transform: scale(1.1);
    }
        #header nav > ul {
            list-style: none;
            margin: 0;
            padding: 0;
            white-space: nowrap;
            height: inherit;
        }

            #header nav > ul > li {
                display: inline-block;
                padding: 0;
            }

                #header nav > ul > li > a {
                    border: 0;
                    color: #fff;
                    display: block;
                    font-size: 1em;
                    font-weight: bold;
                    letter-spacing: 0.225em;
                    padding: 0;
                }

                    #header nav > ul > li > a.menuToggle {
                        display: flex;
                        align-items: center;
                        outline: 0;
                        position: relative;
                        padding-right : 1em;
                    }

                        #header nav > ul > li > a.menuToggle > .menu-icon {
                            background-image: url("../images/icon/menu.svg");
                            background-position: right center;
                            background-repeat: no-repeat;
                            transform: scale(1.3);
                            content: '';
                            display: inline-block;
                            height: 75px;
                            vertical-align: top;
                            width: 2em;
                            margin-right: 1.25em;
                        }

                        @media screen and (max-width: 736px) {

                            #header nav > ul > li > a.menuToggle {
                                margin: 1.5 2em;
                            }

                                #header nav > ul > li > a.menuToggle span {
                                    /* font-size: 0.85em;
                                    letter-spacing: 0.175em; */
                                    display: none;
                                }

                                #header nav > ul > li > a.menuToggle:before {
                                    transform: scale(1.5);
                                    margin:1em 2em;
                                }

                        }

                    @media screen and (max-width: 736px) {

                        #header nav > ul > li > a {
                            padding: 0 0.75em 0 0;
                        }

                    }

                #header nav > ul > li:first-child {
                    margin-left: 0;
                }

#header.navbar-wrapper {
    background: transparent;
}

#menu {
		-moz-transform: translateX(30em);
		-webkit-transform: translateX(30em);
		-ms-transform: translateX(30em);
		transform: translateX(30em);
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		-webkit-overflow-scrolling: touch;
		background: #247bb8;
		color: #ffffff;
		height: 100%;
		max-width: 60%;
		overflow-y: auto;
		padding: 3em 2em;
		position: fixed;
		right: 0;
		top: 0;
		width: 10em;
		z-index: 10002;
        text-align: center;
	}

		#menu ul {
			list-style: none;
			padding: 0;
		}

			#menu ul > li {
				border-top: solid 1px rgba(0, 0, 0, 0.125);
				margin: 1em 0 0 0;
				padding: 1em 0 0 0;
			}

				#menu ul > li:first-child {
					border-top: 0 !important;
					margin-top: 0 !important;
					padding-top: 0 !important;
				}

				#menu ul > li > a {
					border: 0;
					color: inherit;
					display: block;
					font-size: 0.8em;
					letter-spacing: 0.225em;
					outline: 0;
					text-decoration: none;
					text-transform: uppercase;
				}

                #menu ul > li > p {
					border: 0;
					color: inherit;
					display: block;
					font-size: 0.8em;
					letter-spacing: 0.225em;
					outline: 0;
					text-decoration: none;
					text-transform: uppercase;
				}

					@media screen and (max-width: 736px) {
                        
                        #menu {
                            width: 6em;
                        }

						#menu ul > li > a {
							line-height: 3em;
						}

                        #menu ul > li > p {
							line-height: 3em;
						}

					}

		#menu .close {
			background-image: url("../images/icon/close.svg");
			background-position: 4.85em 1em;
			background-repeat: no-repeat;
			border: 0;
			cursor: pointer;
			display: block;
			height: 3em;
			position: absolute;
			right: 0;
			top: 0;
			width: 7em;
		}

		@media screen and (max-width: 736px) {

			#menu {
				padding: 3em 1.5em;
			}

		}

body.is-menu-visible #menu {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

/*                  */
/*      NAVBAR      */
/*                  */

#navbar {
  width: 100%;
  line-height: var(--navbar-height);
  z-index: 100;
  background-color: transparent;
  position: fixed;
  top: 0;
  color: white;
  font-size: 13pt;
  /* font-weight: 20; */
}

.navbar-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1em 0 1em;
}

    .navbar-left {
      display: flex;
      flex-direction: row;
      line-height: inherit;
      left: 0;
      padding: 5px 0 5px 0;
      width: auto;
      opacity: 0;
    }

        .navbar-item {
          display: flex;
          flex-direction: row;
          justify-content: center;
        }

            .navbar-container > .navbar-left > .navbar-item > .navbar-logo {
                background-image: url("../images/logo.svg");
                background-repeat: no-repeat;
                background-size: contain;
                width: var(--navbar-height);
                height: var(--navbar-height);
                padding-right: .1em;
            }

            .navbar-container > .navbar-left > .navbar-item > .navbar-text-logo-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                line-height: 40px;
                margin: auto;
            } 

            .navbar-container > .navbar-left > .navbar-item > .navbar-text-logo-container > .navbar-text-logo {
                font-family: Corinthia-Bold;
                font-size: 17pt;
                line-height: 20px;
            }            
            
            .navbar-item > .link {
              display: inline-block;
              font-weight: 500;
            }
            
            .navbar-item > .link:after {
              content: '';
              display: block;
              height: var(--underlign-height);
              transform: translateY(-15px);
              width: 0;
              background: transparent;
              transition: width .3s ease, background-color .3s ease;
              -webkit-transition: width .3s ease, background-color .3s ease;
              -moz-transition: width .3s ease, background-color .3s ease;
              margin:auto;
            }
            
            .navbar-item > .link:hover:after {
              width: 100%;
              background: pink;
            }

            .navbar-item > .active-page {
              display: inline-block;
              font-weight: 500;
            }

            .navbar-item > .active-page:after {
              content: '';
              display: block;
              height: var(--underlign-height);
              transform: translateY(-15px);
              margin: auto;
              width: 100%;
              background: pink;
            }

    .navbar-middle {
      display: flex;
      flex-direction: row;
      line-height: inherit;
      width: auto;
      justify-content: center;
    }

        .navbar-middle > .navbar-item {
          transform: translateY(calc(var(--underlign-height) * 2));
          min-width: auto;
          padding: 0 1em 0 1em;
        }

            .navbar-middle > .navbar-item >  .link > .navbar-down-arrow {
              height: 13px;
              width: auto;
              padding-left: 1px;
              transform: translateY(var(--underlign-height));
              filter: invert(100%);
            }
            
            .navbar-middle > .navbar-item > .dropdown {
              cursor: pointer;
            }
            
                .navbar-middle > .navbar-item > .dropdown > .dropdown-content {
                  display: block;
                  position: absolute;
                  background-color: #f9f9f9;
                  min-width: 160px;
                  width: 85%;
                  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
                  z-index: 1;
                  border-radius: 10px;
                  transform: translateY(-10px);
                  visibility: hidden;
                  opacity: 0;
                  transition: visibility 0.3s, opacity 0.3s ease, transform 0.3s ease;
                }

                    .navbar-middle > .navbar-item > .dropdown > .dropdown-content > a {
                      color: black;
                      padding: 1px 16px;
                      text-decoration: none;
                      display: block;
                      font-size: 10pt;
                    }
                
                    .navbar-middle > .navbar-item > .dropdown > .dropdown-content > a:hover {
                      background-color: pink;
                      font-weight: bold;
                    }

                    .navbar-middle > .navbar-item > .dropdown > .dropdown-content > a.top:hover {
                      background-color: pink;
                      border-radius: 10px 10px 0 0;
                    }

                    .navbar-middle > .navbar-item > .dropdown > .dropdown-content > a.bottom:hover {
                      background-color: pink;
                      border-radius: 0 0 10px 10px;
                    }
    
                .navbar-middle> .navbar-item > .dropdown:hover .dropdown-content {
                  visibility: visible;
                  opacity: 1;
                  transform: translateY(0px);
                  transition: visibility 0s, opacity 0.3s ease, transform 0.3s ease;
                }

    .navbar-right {
      display: flex;
      flex-direction: row;
      justify-content: center;
      width: auto;
      align-items: center;
    }

        .navbar-right > .navbar-item {
          min-width: 100px;
        }
         
          .navbar-right > .navbar-item > .booking-btn {
            background-color: pink;
            line-height: 2em;
            border-radius: 50px;
            padding: 0.1em 1.3em;
            transition: background-color 0.3s ease;
            color: white;
          }

          .navbar-right > .navbar-item > .booking-btn:hover {
            background-color: var(--blue-color);
            transition: background-color 0.3s ease;
          }

.navbar-wrapper > .navbar-menu {
    margin: 2em;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: fixed;
}

.navbar-menu-text {
    /* padding: 0.5em; */
    color: white;
}

.navbar-menu-icon {
    background-image: url("images/icon/menu.png");
    background-size: cover;
    background-repeat: no-repeat;  
    width: 2em;
    height: 2em;
} 

.toggleContact:hover {
  cursor: pointer;
}

.btn-container {
    position: absolute;
    bottom: 20vh;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
    animation: 1.5s ease-out 0s 1 slideInFromBottom;
}

.btn-container > .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.btn-container > .btn::before {
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 13px 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}

.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  transition: border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

/*                  */
/*      SLIDES      */
/*                  */

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.is-active {
  display: block;
}
.slide.is-loaded {
  opacity: 1;
}
.slide > .caption {
  padding: 0 100px;
}
.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}
.image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 3s ease;
}

.slide-content.is-loaded {
  opacity: 1;
}

.logo-container {
  position: relative;
  transform: scale(1.1);
}

/*                 */
/*      TITLE      */
/*                 */

.caption > .title {
  margin: 0 auto 15px;
  max-width: 70vw;
  font-size: 50pt;
  font-family: Corinthia-Regular;
}

    @media screen and (max-width: 736px) {

        .caption > .title  {
            font-size: 40pt;
        }

        .logo-container {
          transform: scale(1);
        }

    }

.caption > .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
    
/*                        */
/*       PAGINATION       */
/*                        */

.pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
  animation: 2s ease-out 0s 1 slideInFromBottom;
}

.pagination > .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.pagination > .item + .page {
  margin-left: -2px;
}
.pagination > .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.pagination > .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.pagination > .item:hover::before, .pagination > .item.is-active::before {
  background-color: #fff;
}
.arrows > .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.arrows > .prev {
  left: 30px;
  animation: 2s ease-out 0s 1 slideInFromLeft;
}
.arrows > .prev:hover > .svg {
  left: -10px;
}
.arrows > .next {
  right: 30px;
  animation: 2s ease-out 0s 1 slideInFromRight;
}
.arrows > .next:hover > .svg {
  left: 10px;
}

.svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: white;
  transition: left 0.2s ease;
} 


/*                        */
/*        CONTENT         */
/*                        */

.content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

    .content-container > section {
      text-align: center;
      width: 100%;
    }
        .content-container > section > img {
          width: 90%;
          object-fit: contain;  
        }

        .content-container > section > h1 {
          font-family: Corinthia-Regular;
          color: black;
          text-align: center;
          font-size: 50pt;
          font-weight: 400;
          padding: 0.5em 0 0.5em 0;
          margin: 40px;
          border-top: solid 1px;
          border-bottom: solid 1px;
        }


.portfolio-items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding:0 1em 0 1em;
}

.portfolio-item-wrapper {
  position: relative;
  padding: 0.1em;
}

.portfolio-img-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
}

.img-text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: inherit;
}

.img-text-wrapper .subtitle {
  transition: 1s;
  color: transparent;
  font-weight: bold;
  max-width: 70%;
}

.image-blur {
  transition: 1s;
  filter: brightness(60%);
}

.img-text-wrapper:hover .subtitle {
  color:white;
  font-weight: bold;
}

.two-column-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}



/*                        */
/*         FOOTER         */
/*                        */

#footer {
  display: grid;
  text-align: center;
  /* flex-direction: row; */
  padding: 1em 0 2em 0;
  text-align: left;
  position: relative;
  height: fit-content;
  width: 100%;
  grid-template-columns: 0.9fr 0.9fr 2.2fr;
  grid-auto-rows: minmax(100px, fit-content);
}

  /* .footer-infos {
    width: 50%;
    padding: 1em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5%;
    grid-auto-rows: minmax(100px, fit-content);
    justify-content: left;
  } */

    .footer-item {
      padding: 1em;
      display: flex;
      flex-direction: column;
      align-items: left;
      width: 100%;
      text-align: center;
    }
    
      .footer-item-title {
        width: inherit;
        font-size: 13pt;
        font-weight: 550;
        color: rgba(0, 0, 0, 0.8);
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        padding-bottom: 0.3em;
        margin-bottom: 1em;
        text-align: center;
      }

      .footer-item-content {
        font-family: Montserrat-Light;
        font-size: 10pt;
        line-height: 1.5em;
        color: rgba(0, 0, 0, 0.7);
      }

        .footer-tel-number {
          font-size: 12pt;
          font-weight: bold;
          line-height: 3em;
          padding: 0.2em 0.5em;
          border: 1px solid black;
          border-radius: 2em;
          transition: all 0.3s ease;
        }

          .footer-tel-number svg {
            transform: translateY(0.08em);
            margin-right: 0.1em;
          }

        .footer-tel-number:hover {
          background-color: var(--blue-color);
          border: none;
          color: white;
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
          border: 1px solid var(--blue-color);
          transition: all 0.2s ease;
        }

          .footer-tel-number:hover svg {
            fill: white;
            transition: all 0.2s ease;
          } 

        .footer-item-content .day {
          line-height: 2.2em;
          padding: 0.2em 0.5em;
          border: 1px solid black;
          border-radius: 2em;
          margin-right: 0.5em;
        }

      .icon-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: auto;
        max-width: 70%;
      }

        .icon-container a {
          margin: 0 0.8em;
        }

        .icon-container svg,
        .icon-container img{
          height: fit-content;
          width: 2.5em;
          transition: all 0.2s ease;
        } 

          .icon-container .facebook > svg{
            fill: #4267B2;
          }

        .icon-container a:hover svg,
        .icon-container a:hover img {
          transform: translateY(-0.5em);
          transition: all 0.2s ease;
        }
  
  .footer-item-content .a-propos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

    .a-propos a {
      transition: all 0.3s ease;
      line-height: 2em;
    }

    .a-propos a:hover {
      color: black;
      transition: all 0.3s ease;
    }

  .footer-map {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
    padding: 0.8em;
  }

    .footer-map .google-map {
      width: 100%;
      height: 100%;
      border: 0;
    }