* {
  box-sizing: border-box !important;
}

html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  overflow-y: scroll;
}

html:focus-within {
  scroll-behavior: smooth;
}

body,
html,
p {
  margin: 0;
  padding: 0;
}

body,
html {
  overflow-x: hidden;
}

html {
  min-height: 100%;
  font-size: 62.5%;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.eot");
  src: url("../fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Light.woff2") format("woff2"),
    url("../fonts/Montserrat-Light.woff") format("woff"),
    url("../fonts/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff"),
    url("../fonts/Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff"),
    url("../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --cream: #e0dab6;
  --yellow: #c2a95d;
  --blue: #00497b;
  --blue2: #003a62;
  --beige: #f6f6f5;
  --gold: #6b8eb6;
  --fb: #fcfbfa;
  --f9: #f9f9f9;
}

.white {
  color: var(--white) !important;
}

.cream {
  color: var(--cream) !important;
}

.beige {
  color: var(--beige) !important;
}

.yellow {
  color: var(--yellow) !important;
}

.blue {
  color: var(--blue) !important;
}

.bkg-white {
  background: var(--white) !important;
}

.bkg-blue {
  background: var(--blue) !important;
}

.bkg-dark-blue {
  background: var(--blue2);
}

.bkg-fb {
  background: var(--fb) !important;
}

.bkg-f9 {
  background: var(--f9) !important;
}

.bkg-beige {
  background: var(--beige) !important;
}

.bkg-gold {
  background: var(--gold) !important;
}

.polar {
  background: rgba(0, 0, 0, 0.5);
}

body {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.7rem;
  line-height: 1.75;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: var(--blue);
}

img {
  height: auto;
  vertical-align: middle;
  border: none;
}

a {
  text-decoration: none !important;
  color: var(--blue);
}

a:hover {
  text-decoration: none !important;
}

a:link,
a:visited,
a:hover,
a:active {
  outline: none;
}

a img {
  border: none;
}

ul {
  padding-left: 10px;
}

li {
  list-style: none;
}

ul.disc li {
  list-style-type: disc;
  margin-bottom: 6px;
}

.block {
  display: block;
}

.inbl {
  display: inline-block;
  vertical-align: top;
}

.inline {
  display: inline;
}

.none {
  display: none !important;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

strong {
  font-weight: 500;
}

.center {
  margin: auto;
}

.mLa {
  margin-left: auto;
}

.mRa {
  margin-right: auto;
}

.pointer:hover {
  cursor: pointer;
}

.link:hover {
  cursor: pointer;
  text-decoration: underline !important;
}

.flex {
  display: flex;
}

.flexI {
  display: inline-flex;
}

.flexV {
  flex-direction: column;
}

.flexA {
  justify-content: space-around;
}

.flexB {
  justify-content: space-between;
}

.flexC {
  justify-content: center;
}

.flexLeft {
  justify-content: flex-start;
}

.flexRight {
  justify-content: flex-end;
}

.flexAfter {
  align-items: baseline;
}

.flexM {
  align-items: center;
}

.flexTop {
  align-items: flex-start;
}

.flexBottom {
  align-items: flex-end;
}

.flexS {
  align-items: stretch;
}

.flexRow {
  flex-direction: row;
}

.flexRowR {
  flex-direction: row-reverse;
}

.flexCol {
  flex-direction: column;
}

.flexColR {
  flex-direction: column-reverse;
}

.flexW {
  flex-wrap: wrap;
}

.flex1 {
  flex: 1;
}

.flex2>div:first-child {
  width: 50%;
  padding-right: 20px;
}

.flex2>div:last-child {
  margin-left: 0;
  padding-left: 20px;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.narrow {
  position: relative;
  z-index: 100;
}

.ma0 {
  margin: 0;
}

.pa0 {
  padding: 0;
}

.ma1 {
  margin: 10px;
}

.ma2 {
  margin: 20px;
}

.pa1 {
  padding: 10px;
}

.pa2 {
  padding: 20px;
}

.pa3 {
  padding: 30px;
}

.mt0 {
  margin-top: 0;
}

.mt1 {
  margin-top: 10px;
}

.mt2 {
  margin-top: 20px;
}

.mt3 {
  margin-top: 30px;
}

.mr1 {
  margin-right: 10px;
}

.mr2 {
  margin-right: 20px;
}

.mr3 {
  margin-right: 30px;
}

.mb0 {
  margin-bottom: 0;
}

.mb1 {
  margin-bottom: 10px;
}

.mb2 {
  margin-bottom: 20px;
}

.mb3 {
  margin-bottom: 30px;
}

.ml1 {
  margin-left: 10px;
}

.ml2 {
  margin-left: 20px;
}

.ml3 {
  margin-left: 30px;
}

.pt0 {
  padding-top: 0;
}

.pt1 {
  padding-top: 10px;
}

.pt2 {
  padding-top: 20px;
}

.pt3 {
  padding-top: 30px;
}

.pr1 {
  padding-right: 10px;
}

.pr2 {
  padding-right: 20px;
}

.pr3 {
  padding-right: 30px;
}

.pb0 {
  padding-bottom: 0;
}

.pb1 {
  padding-bottom: 10px;
}

.pb2 {
  padding-bottom: 20px;
}

.pb3 {
  padding-bottom: 30px;
}

.pl1 {
  padding-left: 10px;
}

.pl2 {
  padding-left: 20px;
}

.pl3 {
  padding-left: 30px;
}

.tC {
  text-align: center;
}

.txtleft {
  text-align: left;
}

.just {
  text-align: justify;
}

.under {
  text-decoration: underline !important;
}

.fw3 {
  font-weight: 300;
}

.fw4 {
  font-weight: 400;
}

.fw5 {
  font-weight: 500;
}

.fw6 {
  font-weight: 600;
}

.fw7 {
  font-weight: 700;
}

.ital {
  font-style: italic;
}

.fs12 {
  font-size: 1.2rem;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs14,
sup {
  font-size: 1.4rem !important;
}

.fs16 {
  font-size: 1.6rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs2 {
  font-size: 2rem;
}

.fs25 {
  font-size: 2.5rem;
}

.fs3 {
  font-size: 3rem;
}

.fs4 {
  font-size: 4rem;
}

.arial {
  font-family: Arial, sans-serif;
}

.ico18 {
  width: 18px;
  height: 18px;
}

.ico24 {
  width: 24px;
  height: 24px;
}

.ico48 {
  width: 48px;
  height: 48px;
}

.shadow1 {
  box-shadow: 0 5px 5px 0 #d3e1e9;
}

.shadow2 {
  box-shadow: 0 4px 6px 0 rgba(0, 20, 20, 0.1);
}

/*--------------- forms ----------------------------- */

form,
fieldset,
button {
  border: none;
}

input,
select,
label,
textarea {
  vertical-align: middle;
  font-family: inherit;
}

input,
select {
  font-size: 100%;
  margin: 0;
}

input,
input:active,
input:focus {
  outline: 0;
  outline-style: none;
  outline-width: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"] {
  width: 100%;
  height: 35px;
  padding: 0 8px;
  border: none;
}

input[type="submit"] {
  border: none;
}

input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

div.failed,
input.failed,
textarea.failed {
  border: 2px solid rgb(152, 38, 84) !important;
}

.input.failed {
  color: rgb(152, 38, 84) !important;
}

input.failed:after {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: rgb(152, 38, 84);
  font-size: 1.4rem;
}

.inputField {
  display: none;
  position: absolute;
  left: -10000px;
}

.formAddr {
  border: none !important;
}

.log:before,
.pwd:before {
  position: absolute;
  width: 24px;
  height: 32px;
  left: -40px;
}

.log:before {
  content: url("../images/icons/login.svg");
  top: 8px;
}

.pwd:before {
  content: url("../images/icons/padlock.svg");
  top: 4px;
}

textarea {
  width: 100%;
  min-height: 250px;
  padding: 10px;
  overflow: auto;
  vertical-align: top;
  resize: vertical;
  border: 1px dotted #e5e5e5 !important;
}

input:focus::placeholder {
  color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input:focus::-ms-input-placeholder {
  color: transparent !important;
}

textarea:focus::placeholder {
  color: transparent !important;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}

textarea:focus:-ms-input-placeholder {
  color: transparent !important;
}

.submit {
  height: 35px;
  line-height: 35px;
  width: 150px;
}

.close {
  width: 48px !important;
  height: 48px;
  top: 22px;
  right: 22px;
  background: url("../images/icons/cross.svg") no-repeat center center;
  background-size: 22px auto;
  transition: transform 0.3s ease-in-out;
}

.close.light {
  background: url("../images/icons/cross-w.svg") no-repeat center center;
  background-size: 22px auto;
}

.close:hover {
  transform: rotate(90deg);
  cursor: pointer;
}

/*------------ Modal  -----------*/

.modal {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  transition: right 0.5s ease;
  overflow-y: scroll;
  background: #003a62;
}

.modal.active {
  right: 0;
}

.overlay,
.spinner {
  position: fixed;
  bottom: 0;
  z-index: 10001;
}

.overlay {
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  -moz-transition: opacity 1s ease-in;
  -ms-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  background: rgba(60, 60, 70, 0.7);
  overflow: visible;
}

.overlay.load {
  opacity: 1;
}

.modalCard {
  max-width: 500px;
  height: 360px;
  padding: 50px 60px;
  background: #fff;
  border-radius: 6px;
}

.fancy-spinner,
.spinner {
  background: rgba(60, 60, 70, 0.7);
}

#closeButton {
  width: 160px;
  height: 38px;
  line-height: 38px;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}

.spinner {
  display: none;
  align-items: center;
  justify-content: center;
  right: 0;
  left: 0;
  top: 0;
}

.spinner.run {
  display: flex;
}

.fancy-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 15rem;
  border-radius: 100%;
}

.fancy-spinner>div {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}

.fancy-spinner>div.ring {
  border: 0.5rem solid transparent;
  animation: 2s infinite alternate fancy;
}

.fancy-spinner>div.ring:first-child {
  border-left-color: #ffb443;
  border-right-color: #154773;
}

.fancy-spinner>div.ring:nth-child(2) {
  border-top-color: #1070c4;
  border-bottom-color: #f5f4ee;
  animation-delay: 1s;
}

.fancy-spinner>div.dot {
  width: 1rem;
  height: 1rem;
  background: #c8c8c8;
}

@keyframes fancy {
  to {
    transform: rotate(360deg) scale(0.5);
  }
}

/*------------ Main  -------------*/

section {
  width: 90vw;
  margin: auto;
}

section.fullSection {
  width: 100vw;
}

section.lastSection {
  padding-bottom: 8vh;
}

.fullH {
  height: calc(100vh - 150px);
  overflow: hidden;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  font-weight: 500;
  font-size: 2.5rem;
}

h3 {
  font-size: 2.2rem;
}

/*---------- Header  -----------*/

header {
  height: 160px;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header,
header a {
  color: #00497b;
}

#headerRight {
  height: 150px;
  padding: 26px 0 16px 0;
}

#cli,
#reso {
  height: 32px;
}

#reso {
  flex-direction: row;
}

#cli {
  font-weight: 500;
  line-height: 30px;
  background: url("../images/icons/user.svg") no-repeat right center;
  background-size: 26px auto;
}

#nav *:hover {
  cursor: pointer;
}

.pano {
  background-size: cover !important;
}

/*-------------  Menu  ----------------------*/

nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  transform: translate(100vw, 0);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
  padding-top: 30px;
  transition: width 475ms ease-out, transform 450ms ease,
    border-radius 0.8s 0.1s ease;
  border-bottom-left-radius: 100vw;
  z-index: 500;
  background: rgba(56, 56, 76, 0.2);
}

nav ul {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  background: #00497b;
}

nav li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 56px;
  background-size: 36px auto !important;
  border-bottom: 1px dotted rgb(70, 118, 173);
  transform: translatex(100vw);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
}

nav li:hover {
  cursor: pointer;
  background-color: rgba(17, 132, 240, 0.5);
}

nav li a,
nav li p {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 400;
}

nav li a,
#navExtra p,
#navEstim p {
  font-size: 2rem;
}

nav li p {
  font-size: 1.6rem;
}

#navVente,
#navEstim {
  background: url("../images/icons/vente-w.svg") no-repeat left center;
}

#navLoc {
  background: url("../images/icons/location-w.svg") no-repeat left center;
}

#navSynd {
  background: url("../images/icons/syndic-w.svg") no-repeat left center;
}

#navGest {
  background: url("../images/icons/gestion-w.svg") no-repeat left center;
}

#navSada {
  background: url("../images/icons/meeting.svg") no-repeat left center;
}

#navContact {
  background: url("../images/icons/mail-w.svg") no-repeat left center;
}

#navExtra {
  background: url("../images/icons/client-w.svg") no-repeat left center;
  background-size: 26px auto !important;
}

.extraSynd {
  background: url("../images/icons/syndic.svg") no-repeat left center;
}

.extraGest {
  background: url("../images/icons/gestion.svg") no-repeat left center;
}

input.hamburger {
  display: none;
}

input.hamburger:checked~nav {
  transform: translatex(0);
  border-bottom-left-radius: 0;
}

input.hamburger:checked~nav li {
  transform: translatex(0);
}

input.hamburger:checked~nav li:nth-child(1) {
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(2) {
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(3) {
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(4) {
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(5) {
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(6) {
  transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(7) {
  transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(8) {
  transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(9) {
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(10) {
  transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(11) {
  transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(12) {
  transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(13) {
  transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(14) {
  transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(15) {
  transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(16) {
  transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(17) {
  transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(18) {
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(19) {
  transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(20) {
  transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(21) {
  transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(22) {
  transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(23) {
  transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(24) {
  transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(25) {
  transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(26) {
  transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(27) {
  transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(28) {
  transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(29) {
  transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(30) {
  transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(31) {
  transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(32) {
  transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(33) {
  transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(34) {
  transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(35) {
  transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(36) {
  transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(37) {
  transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(38) {
  transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(39) {
  transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(40) {
  transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(41) {
  transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(42) {
  transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(43) {
  transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(44) {
  transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(45) {
  transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(46) {
  transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(47) {
  transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(48) {
  transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(49) {
  transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li:nth-child(50) {
  transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~nav li a {
  padding-right: 15px;
}

input.hamburger:checked~label>i {
  background-color: transparent;
  transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked~label>i:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

label.hamburger {
  position: relative;
  display: block;
  height: 32px;
  width: 100px;
  text-align: left;
  background: none !important;
  box-shadow: none !important;
}

label.hamburger:hover {
  cursor: pointer;
}

label.hamburger:before {
  position: absolute;
}

label.hamburger>i {
  position: absolute;
  width: 32px;
  height: 2px;
  top: 50%;
  right: 0;
  background-color: #00497b;
  pointer-events: auto;
  transition-duration: 0.35s;
  transition-delay: 0.35s;
}

label.hamburger>i:before,
label.hamburger>i:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 50%;
  background-color: #00497b;
  content: "";
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}

label.hamburger>i:before {
  transform: translate(-50%, -8px);
}

label.hamburger>i:after {
  transform: translate(-50%, 8px);
}

input.hamburger:checked~label {
  width: 120px;
}

input.hamburger:checked~label:before {
  content: "FERMER";
  left: -18px;
}

input.hamburger:checked~label>i:before,
input.hamburger:checked~label>i:after {
  background-color: #fff;
}

/*------------  Footer  ----------------------*/

#foot {
  padding: 3vh 0;
  background: #00497c;
  overflow: hidden;
}

#foot,
#foot a {
  color: #fff;
}

#footLegal {
  margin: 20px auto 0 auto;
}

#page {
  min-height: calc(100vh - 120px);
}

.fullFrame {
  width: 100%;
  display: block;
  margin: 20px auto 120px auto;
}

.line {
  width: 0;
  transition: width 1.5s linear;
  height: 1px;
  background: #6b8eb6;
}

.line.clear {
  background: #e0dab6;
}

.line.inter {
  margin: auto;
}

.line.visible {
  width: 90vw;
}

.fullLine.visible {
  width: 100%;
}

.cube {
  padding-left: 40px;
  position: relative;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(720deg);
  }
}

.cube:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  background: var(--gold);
}

.cube.visible:before {
  animation: rotation 2s linear;
}

.shadow {
  width: 100%;
  height: calc(100% - 20rem);
  top: 16rem;
  right: 0;
  background: linear-gradient(to right, transparent 52%, #fbf6ef 50%);
  z-index: -1;
}

/*------------  Home  ------------------*/

#homeTop {
  background: url("../images/main/pano2256.jpg") no-repeat center top;
}

@keyframes backmove {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 50vw 0, -50vw 0;
  }
}

@keyframes display {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-100%, -100%) scale(0);
  }
}

#divBack {
  position: fixed;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, #00497b 50%, transparent 0),
    linear-gradient(to right, #00497b 50%, transparent 0);
  background-repeat: no-repeat;
  animation: backmove 0.8s 1.5s ease-in-out, display 0.1s 2.5s linear;
  animation-fill-mode: forwards;
}

#startLogo {
  width: 60vw;
  height: auto;
  animation: fade-out 0.5s 1.5s ease forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.tenor-gif-embed {
  border-radius: 100%;
}

#homeSell,
#homeRent {
  margin: 0 auto 12px auto;
  padding-left: 70px;
  background-size: 48px auto !important;
  font-weight: 400 !important;
}

#homeSell {
  width: 306px;
  background: url("../images/icons/vente.svg") no-repeat left center;
}

#homeRent {
  width: 376px;
  margin-top: 20px;
  background: url("../images/icons/location.svg") no-repeat left center;
}

.homeSwiper {
  width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.banner {
  position: absolute;
  width: 100%;
  height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: rgba(20, 20, 20, 0.6);
  left: 0;
  right: 0;
  top: -70px;
  bottom: 0;
  margin: auto;
  font-weight: 400;
  color: #f2f2f2;
  z-index: 10;
}

.banner.sold {
  height: 0;
  font-size: 0;
}


.homeSlide div.banner {
  top: -110px;
}

.gridBanner,
.cardBanner {
  top: 0;
  height: 100%;
}

#sept {
  color: #00497b;
  font-weight: 500;
}

#septC>div:first-child {
  background: url("../images/main/traverse-corniche.jpg") no-repeat left top;
  background-size: cover;
}

/*---------------  Moteur de recherche  --------*/

#engine {
  max-width: 760px;
  min-height: 60px;
  margin: 30px auto 10px auto;
  padding: 20px;
  font-size: 1.6rem;
}

#engine>div:first-child {
  max-width: 520px;
  display: grid;
  align-items: center;
  position: relative;
  margin: auto;
}

#engine>div:last-child {
  max-width: 520px;
  margin: 20px auto 0 auto;
}

#engine input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 5px;
  left: -28px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #9ea4b1;
  border-radius: 4px;
}

.engineBox:hover {
  cursor: pointer;
}

.engineBox:hover input~.checkmark {
  background-color: #ffffff;
}

.engineBox input:checked~.checkmark {
  background-color: #fbfbfb;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.engineBox input:checked~.checkmark:after {
  display: block;
}

.engineBox .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid #214470;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 160px;
  height: 40px;
  margin: 10px;
  background: #fbfbfb;
}

input[type="range"]:focus {
  outline: none;
  background: #fbfbfb;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: #adbbd6;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  border: 4px solid #a5b7d2;
  height: 30px;
  width: 30px;
  border-radius: 26px;
  background: #e3e1de;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14.5px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #97a7c5;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #adbbd6;
  border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
  border: 4px solid #dfdfdf;
  height: 30px;
  width: 30px;
  border-radius: 26px;
  background: #6987b4;
  cursor: pointer;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: #adbbd6;
  border-radius: 10px;
}

input[type="range"]::-ms-fill-upper {
  background: #adbbd6;
  border-radius: 10px;
}

input[type="range"]::-ms-thumb {
  margin-top: 1px;
  border: 4px solid #dfdfdf;
  height: 30px;
  width: 30px;
  border-radius: 26px;
  background: #6987b4;
  cursor: pointer;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #adbbd6;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #adbbd6;
}

#formEstimation>div:first-child {
  max-width: 100%;
  padding: 20px;
}

#formEstimation input[type="radio"] {
  height: 22px;
}

#formEstimation input[type="text"],
#formEstimation input[type="email"],
#formEstimation input[type="phone"] {
  height: 46px;
  background-color: #f9f9f9;
  border-left: 1px solid #e5e5e5;
}

#alert:hover {
  background: url("../images/icons/notification.svg") no-repeat 16px center;
  background-color: #043e68;
  color: #fff;
}

#noAds {
  display: none;
  width: 100%;
  background: url("../images/main/portail11.jpg") no-repeat left 40rem,
    linear-gradient(to bottom, #003a62 0%, #003a62 40rem, #fff 40rem, #fff 100%);
  background-size: cover;
}

#noAds>div {
  margin: auto;
}

#topAlert {
  padding-left: 50px;
  background: url("../images/icons/notification.svg") no-repeat left top;
  background-size: 30px auto;
}

#alertForm {
  width: 100%;
  margin-top: 3rem;
  border-radius: 4px;
  background: #fff;
}

#alertForm textarea {
  min-height: 200px;
}

input[type="radio"] {
  display: none;
}

/* Style pour les labels des boutons radio */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}

.radio-group label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #015892;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Style pour le bouton radio sélectionné */
.radio-group input[type="radio"]:checked+label::before {
  background-image: radial-gradient(transparent 10px, blue, transparent 12px),
    radial-gradient(#003a62 5px, transparent 6px);
}

/*--------------------  Annonces  -------------------*/

#rents,
#sells,
#sold {
  margin: auto;
  position: relative;
}

#rents {
  width: 132px;
}

#sells {
  width: 96px;
}

#rents:before,
#sells:before,
#sold:before {
  position: absolute;
  top: 4px;
  display: block;
}

#rents:before {
  content: url("../images/icons/location.svg");
  width: 28px;
  left: -46px;
}

#sells:before,
#sold:before {
  content: url("../images/icons/vente.svg");
  width: 36px;
  left: -50px;
}

#gridAnnonces {
  display: grid;
  width: 100%;
  margin: auto;
  padding-bottom: 8vh;
}

.annonce,
.annonce img {
  width: 100%;
}

.annonce {
  overflow: hidden;
}

.vignette,
.thumb {
  /* object-fit: cover;*/
  transition: transform 1s ease;
}

.vignette:hover {
  transform: scale(1.1);
}

.annonce a {
  color: var(--blue);
}

.infoAds {
  padding: 12px;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 1.8rem;
}

.thumbAds {
  overflow: hidden;
}

.v3d {
  width: 42px;
  height: 42px;
  background: url("../images/icons/360-view.svg") no-repeat center center;
  background-size: cover;
}

#vendus {
  margin-top: 6rem;
}

.exclu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 26rem;
  height: 4.5rem;
  line-height: 4.5rem;
  margin: auto;
  text-align: center;
  z-index: 100;
}

.watermark {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 1rem;
  width: 100px !important;
  height: auto;
  z-index: 1000;
}

/*---------------------  Fiche  ----------------------*/

#card {
  margin: 2vh auto;
  padding: 0 0 15vh 0;
}

#topCard {
  position: relative;
  background-color: #fafafa;
}

#topCard.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
}

#topCard.fullscreen .swiper {
  touch-action: pinch-zoom;
  /* Autoriser le zoom par pincement uniquement en plein écran */
}

#top.fullscreen .swiper-slide.card {
  display: flex;
  justify-content: center;
  /* Centre horizontalement */
  align-items: center;
  /* Centre verticalement */
}

#top.fullscreen .swiper-slide img {
  max-width: 90% !important;
  /* Limite la largeur maximale de l'image */
  max-height: 90% !important;
  /* Limite la hauteur maximale de l'image */
  width: auto !important;
  /* Préserve les proportions de l'image */
  height: auto !important;
  /* Préserve les proportions de l'image */
  object-fit: contain;
  /* Assure que l'image est entièrement visible */
  transform-origin: center center;
  /* Ajuster l'origine du zoom */
  will-change: transform;
  /* Optimisation pour les animations de zoom */
}

#imgCard.fullscreen {
  width: 85vw;
  height: auto;
  display: flex;
  align-items: center;
}

#imgCard.fullscreen .slider-img {
  width: 100% !important;
  height: auto !important;
  margin: auto;
}

.fullscreen-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: #000 url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M18.3 5.7c.4.4.4 1 0 1.4L13.4 12l4.9 4.9c.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0L12 13.4l-4.9 4.9c-.4.4-1 .4-1.4 0-.4-.4-.4-1 0-1.4l4.9-4.9-4.9-4.9c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l4.9 4.9 4.9-4.9c.4-.4 1-.4 1.4 0z"/%3E%3C/svg%3E') no-repeat center;
  background-size: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: none;
  /* Hidden by default */
}

#topCard.fullscreen .fullscreen-btn {
  display: block;
  /* Affiche le bouton uniquement en plein écran */
}

#back {
  position: fixed;
  width: 50px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 8px 0 30px;
  font-family: Arial, Helvetica, sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: #00497c url("../images/icons/backlist.svg") no-repeat 12px center;
  background-size: 20px auto;
  border: 1px solid #f2f2f2;
  border-radius: 0 16px 16px 0;
}

#imgCard,
#cardTitle {
  margin: 0 auto;
}

.cardThumb {
  width: 60% !important;
  min-width: 260px;
  margin: auto;
}

#cardHead {
  margin-bottom: 4rem;
}

#cardBody,
#cardFooter {
  margin: 0 auto;
}

#imgCard {
  overflow: hidden;
}

#card h1,
#card h2 {
  font-size: 2rem;
  font-weight: 500;
}

#card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

#tools {
  height: 100px;
}

#v3dCard {
  height: 46px;
  line-height: 46px;
  padding: 0 70px 0 20px;
  border: 1px solid #00497b;
  border-radius: 4px;
  font-size: 1.5rem;
}

#v3dCard {
  background: url("../images/icons/360-view.svg") no-repeat 90% 5px;
  background-size: 36px auto;
  transition: background-size 0.5s;
}

#v3dCard:hover {
  background-size: 40px auto;
}

#btn-contact {
  width: 190px;
  padding: 8px 12px 8px 80px;
  font-weight: 500;
  background-image: url("../images/icons/mail.svg"),
    url("../images/icons/phone-blue.svg");
  background-position: 10px center, 52px center;
  background-repeat: no-repeat, no-repeat;
  background-size: 30px auto, 24px auto;
  border: 1px solid #00497b;
  border-radius: 4px;
}

#cardInfos {
  padding-top: 5vh;
}

#cardDesc {
  text-align: justify;
}

.subTitle {
  margin-top: 0px;
  font-weight: 600 !important;
}

#cardPrice,
#cardRef {
  font-weight: 600;
}

#tabs {
  margin-bottom: 26px;
}

#tabs div {
  width: 120px;
  height: 42px;
  line-height: 42px;
  margin-left: 16px;
  position: relative;
  text-align: center;
  border: 1px solid #00497b;
  border-radius: 2px;
}

#tabs div:first-child {
  margin-left: 0;
}

#tabs div:hover {
  cursor: pointer;
  background: #00497b;
  color: #fff;
}

#tabs div.active {
  background: #00497b;
  color: #fff;
}

#tabs div.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 12px;
  height: 12px;
  background: #00497b;
  transform: translateX(-50%) rotate(45deg);
}

.tabContent>div {
  padding: 8px 0;
  font-size: 1.7rem;
  border-top: 1px dotted rgb(187, 185, 185);
}

.tabContent>div:first-child {
  border-top: none;
}

.btn.toBlue {
  border: 1px solid #00497b;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent 50%, #00497b 50%);
  background-size: 100% 200%;
  transition: background-position 0.3s ease;
}

.btn.toBlue:hover {
  background-position: 100% 100%;
  color: #fff;
}

.picto {
  padding-left: 40px !important;
  background-size: 24px 24px !important;
  background-position-x: left !important;
  background-position-y: center !important;
  background-repeat: no-repeat !important;
}

.surf {
  background: url("../images/icons/blueprint.svg");
}

.furniture {
  background: url("../images/icons/commode.svg") no-repeat;
}

.living {
  background: url("../images/icons/living.svg") no-repeat;
}

.door {
  background: url("../images/icons/floor-plan.svg") no-repeat;
}

.bed {
  background: url("../images/icons/bed.svg") no-repeat;
}

.heating {
  background: url("../images/icons/thermo.svg") no-repeat;
}

.kitchen {
  background: url("../images/icons/kitchen.svg") no-repeat;
}

.sdb {
  background: url("../images/icons/bathroom.svg") no-repeat;
}

.sde {
  background: url("../images/icons/shower.svg") no-repeat;
}

.wc {
  background: url("../images/icons/toilet.svg") no-repeat;
}

.stairs {
  background: url("../images/icons/stairs.svg") no-repeat;
}

.elevator {
  background: url("../images/icons/elevator.svg") no-repeat;
}

.parking {
  background: url("../images/icons/parking.svg") no-repeat;
}

.box {
  background: url("../images/icons/garage.svg") no-repeat;
}

.cellar {
  background: url("../images/icons/cellar.svg") no-repeat;
}

.garden {
  background: url("../images/icons/tree.svg") no-repeat;
}

.balcony {
  background: url("../images/icons/balcony.svg") no-repeat;
}

.terrace {
  background: url("../images/icons/terrace.svg") no-repeat;
}

.pool {
  background: url("../images/icons/swimming-pool.svg") no-repeat;
}

/*----------------  DPE  GES  ---------------*/

.rightPanel {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translateX(3000px);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
  overflow: scroll;
  z-index: 10000;
}

.rightPanel.active {
  transform: translateX(0px);
  opacity: 1;
}

#ePanel,
#mPanel,
#xPanel,
#esPanel {
  min-height: 100%;
  margin-left: auto;
  padding: 3vh 2.5vw;
}

#mPanel,
#xPanel {
  width: 500px;
}

#ePanel {
  width: 650px;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: #fff;
}

#xPanel {
  padding: 10rem 2.5vw 2rem 2.5vw;
}

#xPanel li {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 56px;
  background-size: 36px auto !important;
  border-bottom: 1px dotted rgb(70, 118, 173);
}

#xPanel a {
  font-size: 2rem;
}

#xPanel p {
  font-weight: 600;
}

#bilans {
  padding: 2% 5% 5% 0;
}

.diag {
  width: 300px;
  margin-top: 15px;
}

.diag>div>div {
  width: 30px;
  height: 30px;
  color: #333332;
}

.diag>div>div.active {
  transform: scale(1.4);
  line-height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 0.75em;
}

.diag>div>div.white {
  color: #fff;
}

.diag>div>div:first-child {
  font-weight: 600;
}

.diag>div>div:last-child {
  position: relative;
  margin-top: 6px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.more {
  padding-right: 30px;
  text-decoration: underline;
  background: url("../images/icons/chevron.svg") no-repeat 108px center;
  background-size: 18px auto;
  transition: background-position 0.5s;
}

.more:hover {
  background-position: 116px center;
}

.infoDiag {
  font-size: 1.5rem;
  font-weight: 400;
}

#bilanDpe,
#bilanGes {
  width: 520px !important;
  padding: 5%;
}

#bilanDpe,
#bilanGes>div {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
}

#bilanGes>div {
  width: 460px;
  margin: 10px auto;
  padding: 20px;
  border: 2px solid #a3daf7;
  border-radius: 20px;
}

#dpe {
  margin-top: 3px;
}

.bilan {
  flex: 1;
}

.bilan>div {
  position: relative;
  margin-bottom: 3px;
}

.bilan>div>div {
  position: relative;
  height: 30px;
  line-height: 30px;
  color: #000;
}

#titleGes {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.scale {
  font-size: 1.2rem;
}

.def {
  font-size: 1.3rem;
}

.bar {
  font-size: 1.1rem !important;
  font-weight: 500;
}

.bar>div:first-child {
  padding-left: 6px;
  color: #fbfbfb;
  font-size: 1.6rem;
}

div.bA {
  width: 40%;
}

div.bB {
  width: 50%;
}

div.bC {
  width: 60%;
}

div.bD {
  width: 70%;
}

div.bE {
  width: 80%;
}

div.bF {
  width: 90%;
}

div.bG {
  width: 100%;
}

.dpe-A {
  background-color: #128e57;
}

.dpe-A:after {
  border-left: 16px solid #128e57;
}

.greenDpe {
  color: #2ba770;
}

.dpe-B {
  background-color: #2ba770;
}

.dpe-B:after {
  border-left: 16px solid #2ba770;
}

.dpe-C {
  background-color: #5abb77;
}

.dpe-C:after {
  border-left: 16px solid #5abb77;
}

.dpe-D {
  background-color: #f0d20e;
}

.dpe-D:after {
  border-left: 16px solid #f0d20e;
}

.dpe-E {
  background-color: #fdad00;
}

.dpe-E:after {
  border-left: 16px solid #fdad00;
}

.dpe-F {
  background-color: #fc7130;
}

.dpe-F:after {
  border-left: 16px solid #fc7130;
}

.dpe-G {
  background-color: #d94654;
}

.dpe-G:after {
  border-left: 16px solid #d94654;
}

.gesbar {
  border-radius: 0 20px 20px 0;
}

.gesbar.active {
  height: 56px !important;
  border-radius: 0 40px 40px 0;
  border: solid rgb(104, 103, 103);
  border-width: 2px 2px 2px 0;
}

.ges-A {
  background-color: #b2cfed;
}

.ges-B {
  background-color: #98bfe7;
}

.ges-C {
  background-color: #7fb0e2;
}

.ges-D {
  background-color: #658cb4;
}

.blueGes {
  color: #658cb4;
}

.ges-E {
  background-color: #4c6987;
}

.ges-F {
  background-color: #32465a;
}

.ges-G {
  background-color: #19232d;
}

.dpebar:after {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  right: -16px;
  width: 0px;
  height: 0px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.bar.active {
  height: 56px;
  line-height: 56px;
  margin: 1px 0;
}

.bar.active:after {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left-width: 30px;
  right: -29px;
}

.bar.active>div:first-child {
  font-size: 3rem !important;
  text-shadow: 1px 0 #686565, -1px 0 #686565, 0 1px #686565, 0 -1px #686565,
    1px 1px #686565, -1px -1px #686565, 1px -1px #686565, -1px 1px #686565;
}

.cursor {
  width: 180px;
  height: 90px !important;
  position: relative;
  display: flex;
}

#nrjview div.cursor:last-child {
  position: relative;
  top: 2px;
}

.cursor>div {
  width: 50%;
  height: 90px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.cursor>div>div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  line-height: 0.2rem;
}

.cursor>div>div:first-child {
  height: 30px !important;
  min-height: 30px !important;
  line-height: 0rem !important;
}

.cursor>div>div:last-child {
  height: 56px !important;
  min-height: 56px !important;
  background: #fff;
  border: 2px solid rgb(104, 103, 103);
}

#bilanDpe div.cursor>div:last-child>div {
  border-left: 0;
}

.cursor p.fwb {
  font-weight: 600;
  font-size: 1rem;
}

.cursor p.fwb:last-child {
  padding-bottom: 6px;
}

p.quant {
  padding-top: 1.5rem;
  font-weight: 600;
  font-size: 2.5rem;
}

.qges:after {
  content: "*";
  font-size: 2rem;
  position: relative;
  left: -6px;
}

p.unit {
  margin-top: 6px;
  font-size: 1rem;
}

.cA {
  top: 1px;
}

.cB {
  top: 34px;
}

.cC {
  top: 67px;
}

.cD {
  top: 99px;
}

.cE {
  top: 132px;
}

.cF {
  top: 165px;
}

.cG {
  top: 198px;
}

#cardFooter>div:first-child {
  margin-bottom: 5rem;
}

#cardContact>div.formName {
  margin-top: 0 !important;
}

#cardContact input.connect {
  width: 100%;
}

/*-------------  Pages   --------------*/

.slog {
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: 400;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}

.pageSlog h2,
.pageSlog p {
  max-width: 900px;
}

/*-------------  FAQs  ---------------*/

/* ============================================================
   FAQ — styles à ajouter en fin de front.css
   ============================================================ */

.faq-list {
  border-top: 1px solid rgba(0, 73, 123, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 73, 123, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--blue);
  list-style: none;
  gap: 20px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: inherit;
}

/*-------------  Syndic  -------------*/

#panoSyndic {
  background: url("../images/main/pano-syndic-2.jpg") no-repeat left top;
}

#syndic {
  margin: 2rem 0;
}

.devis {
  display: inline-block;
  height: 38px;
  line-height: 36px;
  padding: 0 30px 0 20px;
  border: 1px solid #00497c;
  border-radius: 22px;
  background: url("../images/icons/chevron.svg") no-repeat right 6px center;
  background-size: 20px auto !important;
}

.devis:hover {
  color: #fff;
  background: #00497b url("../images/icons/chevron-w.svg") no-repeat right 6px center;
}

.link {
  padding-right: 26px;
  font-size: 1.8rem;
  font-weight: 600;
  background: url("../images/icons/chevron.svg") no-repeat right 6px center;
  background-size: 20px auto !important;
}

/*------------ Step by Step --------*/

#devisCopro {
  width: 100%;
}

#devisCopro>div {
  padding-top: 30px;
}

#estimez>div {
  margin: auto;
}

#formEstim {
  margin: auto;
}

#circle {
  margin-top: 30px;
  text-align: center;
  line-height: 1;
}

#circle strong {
  position: absolute;
  top: 5.5rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #eeb230;
}

.step {
  width: 100%;
  min-height: 750px;
  display: none;
  position: relative;
  margin: auto;
  padding: 12px;
}

.step:first-child {
  display: block;
}

#formEstim,
#estimez {
  padding: 2% 3% 2% 3%;
}

#formEstim h3 {
  margin-bottom: 30px;
  font-size: 3rem;
  text-align: center;
}

#formEstim ul {
  padding: 0;
}

#formEstim input {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
  color: #4a5279 !important;
  font-size: 1.8rem;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
}

#formEstim input[type="text"] {
  margin-bottom: 12px;
}

#formEstim input:focus,
#formEstim textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673ab7;
  outline-width: 0;
}

#formEstim textarea {
  width: 100%;
  min-height: 120px !important;
  margin-top: 6px;
  padding: 10px;
  font-family: "Work Sans", sans-serif;
  border: 1px solid #d3d3d3;
}

#equip {
  min-height: 300px;
}

#formEstim label {
  font-size: 1.7rem;
  font-weight: 500;
  display: inline-block;
  color: #4a5279;
}

.topLabel {
  padding: 12px 0 6px 0 !important;
}

.shortInput {
  width: 58px !important;
}

.shortInputLabel {
  width: 235px;
  display: inline-block;
}

.dateInput {
  width: 160px !important;
}

.cp {
  width: 72px !important;
}

.radios label {
  margin: 0 32px 12px 0;
  cursor: pointer;
}

.radios.bis label {
  margin: 0 22px 0 0;
}

.radios.bis input.uk-radio {
  margin: -4px 6px 0 0;
}

.formNav {
  bottom: 10px;
  left: 0;
  right: 0;
}

.formNav.bis {
  bottom: auto;
}

.prevNav,
.nextNav,
#lastNav {
  height: 45px;
  line-height: 45px;
  position: relative;
  margin: 20px 30px 0 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
}

.prevNav,
.nextNav {
  width: 140px;
  background: #004f81;
  border-radius: 22px;
}

#lastNav {
  width: 220px;
  background: #004f81 url(../images/icons/send.svg) no-repeat 160px center;
  background-size: 24px 24px;
  font-size: 2rem;
}

.prevNav {
  padding-left: 15px;
}

.nextNav,
#lastNav {
  padding-right: 10px;
}

.prevNav:after,
.nextNav:after {
  font-size: 3.5rem;
  position: absolute;
  top: -3px;
}

.prevNav:after {
  content: "\01F890";
  left: 10px;
}

.nextNav:after {
  content: "\01F892";
  right: 20px;
}

.labelLi {
  width: 200px;
  position: relative;
  top: 5px;
}

.labelLi.small {
  width: 80px;
}

.square input[type="radio"]+label {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}

.medium input[type="radio"]+label,
.medium input[type="checkbox"]+label {
  width: 85px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}

.large input[type="radio"]+label,
.large input[type="checkbox"]+label {
  width: 155px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}

.validation {
  margin-top: 50px;
}

.validation>div:hover {
  background: rgb(134, 162, 62);
  color: #fff;
}

#receive {
  display: block;
}

.rgpd {
  padding: 20px 0 10px 0;
  font-size: 1.7rem;
}

/*-------------  Gestion  -------------*/

#panoGestion {
  background: url("../images/main/pano-gestion.jpg") no-repeat left top;
}

#mandatGest {
  width: 100%;
  margin-top: 8rem;
  display: grid;
}

#mandatGest ul {
  padding-top: 4rem;
}

#mandatTitle {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 260px;
  padding: 10px;
}

/*-------------  Agence   -----------*/

#panoAgence {
  background: url("../images/main/pano-notre-dame-1.jpg") no-repeat center top;
  background-size: 100% auto;
}

/*-------------  Contact  -----------*/

#panoContact {
  width: 100%;
  background: url("../images/main/panoContact.jpg") no-repeat center top;
}

#contact {
  width: 100%;
  display: grid;
}

.gridContact {
  display: grid;
  margin: auto;
}

#agenceContact {
  margin-bottom: 4rem;
}

#h1Contact {
  font-weight: 500;
  line-height: 0.25rem;
}

#h2Contact {
  font-weight: 500;
  font-size: 2rem;
}

#agenceAdr {
  padding-left: 50px;
  background: url("../images/icons/pin-1.svg") no-repeat left center;
  background-size: 22px auto;
}

#bus {
  padding-left: 50px;
  background: url("../images/icons/bus.svg") no-repeat left center;
  background-size: 26px auto;
}

#agencePhone {
  padding-left: 50px;
  background: url("../images/icons/phone-blue.svg") no-repeat left center;
  background-size: 26px auto;
}

#agenceMail {
  padding-left: 50px;
  background: url("../images/icons/mail.svg") no-repeat left center;
  background-size: 28px auto;
}

.horaires {
  padding-left: 50px;
  background: url("../images/icons/clock.svg") no-repeat left top;
  background-size: 28px auto;
}

#open {
  width: 300px;
  margin: auto;
}

#mapagence {
  width: 100%;
}

#mainContact,
#formEstimation {
  margin-right: 3vw;
}

.contactForm {
  font-size: 1.6rem;
}

.formField {
  margin-top: 18px;
  line-height: 1.4;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.contactForm input {
  width: 100%;
  height: 48px;
  padding: 1em;
  background-color: #f9f9f9;
  border-left: 1px solid #e5e5e5;
}

input:focus {
  outline: 0;
  border-color: #bd8200;
  background: #fcfcfc;
}

input:focus+.input-icon i {
  color: #f0a500;
}

.formName {
  padding-left: 60px;
  background: #f9f9f9 url("../images/icons/formName.svg") no-repeat 18px center;
  background-size: 22px auto;
}

.formMail {
  padding-left: 60px;
  background: #f9f9f9 url("../images/icons/formMail.svg") no-repeat 18px center;
  background-size: 26px auto;
}

.formTel {
  padding-left: 60px;
  background: #f9f9f9 url("../images/icons/formTel.svg") no-repeat 18px center;
  background-size: 26px auto;
}

.formCode {
  padding-left: 60px;
  background: #f9f9f9 url("../images/icons/pointer.svg") no-repeat 18px center;
  background-size: 22px auto;
}

.custom-select {
  position: relative;
  font-size: 1.6rem;
  padding-left: 60px;
  background: #f9f9f9 url("../images/icons/service.svg") no-repeat 18px center;
  background-size: 26px auto;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: #fbfbfb;
  color: #234a73;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #234a73 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #234a73 transparent;
  top: 7px;
}

.select-items div,
.select-selected {
  padding: 8px 16px;
  cursor: pointer;
}

.select-items div {
  border: 1px solid transparent;
  border-color: transparent transparent rgba(200, 200, 200, 0.5) transparent;
}

.select-selected {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #234a73;
  color: #fff;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

#estimation textarea {
  min-height: 120px;
}

/*---------------  Extranet  -------------*/

.spaces {
  height: 100vh;
  margin-bottom: 0;
  padding-bottom: 0;
}

#connexCop {
  background: #003a62 url("../images/main/espace-syndic.jpg") no-repeat center 40rem;
  background-size: cover !important;
}

#connexProp {
  background: url("../images/main/connectprop.jpg") no-repeat center 40rem,
    linear-gradient(to bottom, #003a62 0%, #003a62 40rem, #fff 40rem, #fff 100%);
  background-size: cover;
}

.espace-client {
  max-width: 1100px;
  margin: 0 auto;
}

.espaceH1 {
  margin-top: 1rem;
  margin-bottom: 5rem;
  color: #f2f2f2;
}

.espaceH1 span {
  display: block;
}

.espace-client h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
}

#spaceSelect>div {
  margin-bottom: 2rem;
}

.espace-client h3 {
  position: relative;
  font-weight: 400 !important;
}

.espace-client h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 8px;
  top: 18px;
  left: -65px;
  background: #c2a95d;
}

.espace-client a {
  color: #fbfbfb;
}

div.firstCo {
  margin-top: 3rem;
  padding: 1rem 5rem 3rem 5rem;
}

.spaceButton {
  width: 220px;
  height: 40px;
  line-height: 38px;
  padding-left: 16px;
  border-radius: 20px;
  color: #00497c;
  background: #fbfbfb url("../images/icons/right-chevron-blue.svg") no-repeat 96% center;
  background-size: 16px 16px !important;
  transition: width 0.3s linear;
}

.spaceButton:hover {
  width: 220px;
  background: #00497c url("../images/icons/right-chevron-clear.svg") no-repeat 96% center;
  color: #fff;
}

.connexion {
  max-width: 720px;
}

.spaceForm {
  min-width: 280px;
  height: 300px;
}

.spaceForm input {
  background: #00497b;
  color: #fff;
  border-bottom: 1px dotted #fbfbfb;
}

.sub {
  margin: 40px auto 30px auto;
}

.sub input {
  height: 40px;
  line-height: 0;
  background: #003a62;
  color: #fbfbfb;
  border: none;
}

.spaceForm ::placeholder {
  font: 1.7rem sans-serif !important;
  color: #dfe6f1;
  font-style: italic !important;
}

.spaceForm::-webkit-input-placeholder {
  font: 1.7rem sans-serif !important;
  color: #dfe6f1;
  font-style: italic !important;
}

.spaceForm::-ms-input-placeholder {
  font: 1.7rem sans-serif !important;
  color: #dfe6f1;
  font-style: italic !important;
}

/*----------------  Légales  -----------------*/

.mentions {
  max-width: 1200px;
  margin: auto;
  padding: 2% 5% 5% 5%;
}

#socaf {
  width: 120px;
  height: 60px;
  padding: 10px;
  margin-left: 20px;
  background: #695c58 url("../images/logo/socaf.png") no-repeat center center;
  background-size: 86% auto;
}

/*------------------  responsive  --------*/

@media (orientation: portrait) {
  #imgCard {
    width: 85vw;
    height: calc(85vw * (2 / 3));
  }
}

@media (orientation: landscape) {
  #imgCard {
    width: calc((100vh - 300px) * (3 / 2));
    height: calc(100vh - 300px);
  }
}

@media (orientation: landscape) and (max-width: 1041px) {
  #imgCard {
    width: 85vw;
    height: calc(85vw * (2 / 3));
  }
}

@media (min-width: 320px) {
  section.largeSection {
    padding-bottom: 4rem;
  }

  #logo {
    height: 70px;
    margin-top: -50px;
  }

  #logoCard {
    width: 100px;
    height: auto;
  }

  #estim {
    display: none;
  }

  #cli {
    position: absolute;
    bottom: 16px;
    left: 26px;
    padding-right: 36px;
  }

  #headerRight {
    width: 310px;
    flex-grow: unset;
    justify-content: space-between;
  }

  #headerRight>div:first-child {
    display: flex;
    justify-content: flex-end;
  }

  #topMenu {
    display: none;
  }

  nav ul {
    width: 100%;
    padding: 3vh 5vw 2vh 5vw;
  }

  nav li {
    height: 70px;
    margin: 0 0 6px 20px;
  }

  nav li p {
    font-size: 1.2rem;
  }

  #footLegal {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 10px;
  }

  #footLegal div {
    width: 50%;
    font-size: 1rem;
    text-align: left;
    padding-left: 10px;
  }

  #footLegal div:not(:nth-child(2)):not(:last-child) {
    border-right: 1px solid grey;
  }

  #footLegal div:nth-child(-n + 2) {
    padding-bottom: 10px;
  }

  .pano {
    width: 96vw;
    height: 65vw;
    margin-bottom: 2rem;
  }

  img.homeSlider {
    width: 90%;
    height: calc(100vw / 1.6);
    margin: auto;
  }

  #interSwiper {
    margin: 5rem auto;
  }

  .line.visible.adaptive {
    width: calc(90vw - 180px);
  }

  #homeSell,
  #homeRent {
    margin-top: 30px;
    padding-left: 50px;
  }

  #homeSell {
    background-size: 38px auto !important;
  }

  #homeRent {
    background-size: 32px auto !important;
  }

  .adslink {
    width: 266px;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto 20px auto;
    padding-right: 20px;
    font-weight: 600;
    background: url("../images/icons/chevron.svg") no-repeat right center;
    background-size: 20px auto !important;
    transition: background-position 0.3s ease;
  }

  .adslink:hover {
    background-position: calc(100% + 6px) center;
  }

  #linkrent {
    width: 288px;
  }

  #sept {
    font-size: 4rem;
    margin: -2rem 0 1rem 0;
  }

  #septieme {
    padding: 5rem 0 6rem 0;
  }

  #disco h2 {
    font-size: 2.2rem;
  }

  #septA {
    display: flex;
    flex-direction: column-reverse;
  }

  #septA>div:last-child {
    width: 100%;
    height: calc(100vw / 1.5);
    margin-bottom: 3rem;
    background: url("../images/main/malmousque.jpg") no-repeat left top;
    background-size: cover;
  }

  #septB {
    font-size: 2rem;
  }

  #septC {
    flex-direction: column;
    margin-top: 2rem;
  }

  #septC>div {
    width: 100%;
  }

  #septC>div:first-child {
    height: 70vw;
    margin: 3rem auto;
  }

  #gridAnnonces {
    width: 96%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px 0px;
  }

  .vignette,
  .thumb {
    height: calc(100vh / 3);
  }

  #engine {
    padding: 0 20px 20px 20px;
  }

  #engine>div:first-child {
    grid-template-columns: auto auto;
    grid-gap: 10px 26px;
    left: 60px;
  }

  #engine>div:last-child {
    flex-direction: column;
  }

  #sold {
    max-width: 256px;
    margin-top: 20px;
    font-size: 1.9rem;
    font-weight: 600;
  }

  .v3d {
    top: 6px;
    right: 0;
  }

  .alert {
    display: none;
  }

  #noAds {
    padding: 8rem 2rem 4rem 2rem;
  }

  #noAds>div {
    width: 98%;
    margin: auto;
  }

  #alertForm {
    padding: 2rem;
  }

  #cardTitle {
    width: 85vw;
  }

  #cardHead {
    height: 210px;
  }

  #tools {
    top: 150px;
  }

  #btn-contact {
    margin: 20px auto 0 auto;
  }

  #btn-contact.bottom {
    margin: 90px auto 0 auto;
  }

  #btn-contact.bottom.small {
    margin: 70px auto 0 auto;
  }

  .tabContent>div {
    width: 100%;
  }

  #cardPrice,
  #cardRef {
    font-size: 1.8rem;
  }

  #cardBody,
  #cardFooter {
    width: 96%;
    margin: auto;
  }

  #cardInfos {
    display: block;
  }

  #cardInfos>div {
    width: 100%;
  }

  #cardInfos>div:first-child {
    margin-right: 3rem;
    padding-right: 0 !important;
  }

  #cardInfos>div:last-child {
    margin-top: 3rem;
    padding-left: 0;
  }

  #cardDesc {
    width: 100%;
    padding-top: 20px;
  }

  #titleDesc {
    font-size: 2.2rem;
  }

  #tabs,
  #back {
    display: none;
  }

  #titleDesc,
  #titleFi,
  .titleTab {
    padding-left: 2rem;
    background: #00497b;
    color: #fff;
  }

  #cardFooter>div:first-child {
    flex-direction: column;
  }

  #cardFooter>div:first-child>div {
    width: 100%;
  }

  #mandataire {
    padding: 2rem 2rem 4rem 2rem;
    margin-bottom: 4rem;
  }

  #panoContact {
    height: calc(100vw / 1.5);
    background-size: auto 100%;
  }

  #cardFormContact {
    padding-left: 0;
  }

  #contact {
    padding-top: 0;
    margin: 1rem 0 2rem auto;
  }

  #contact>div:first-child {
    padding: 3rem;
  }

  .gridContact {
    width: 300px;
  }

  #agenceContact {
    gap: 4rem 0;
  }

  #horaires {
    gap: 1rem 0;
  }

  #horaires div {
    padding-left: 50px;
  }

  #agencePhone span {
    display: block;
  }

  #mapagence {
    height: 50vh;
    margin-top: 2rem;
  }

  .cd-panel {
    z-index: 100;
  }

  .cd-panel__header {
    height: 90px;
    line-height: 90px;
  }

  .cd-panel__header h1 {
    font-size: 2rem;
    margin: 0;
  }

  .cd-panel__content {
    padding: 32px 5% 70px 5%;
  }

  .custom-select {
    width: 100%;
  }

  .slog {
    display: none;
  }

  .pageSlog {
    padding: 2rem 2rem 4rem 2rem;
  }

  .pageSlog h2,
  .pageSlog p {
    font-size: 2.2rem;
    font-weight: 500;
  }

  .common {
    font-size: 2rem;
    font-weight: 600;
  }

  .firstSection {
    padding-top: 2rem;
  }

  .narrow {
    max-width: 100%;
  }

  #syndic,
  #devis,
  #agence,
  .contact-devis {
    flex-direction: column;
  }

  .contact-devis {
    margin-bottom: 1rem;
    text-align: center;
  }

  #syndic>div,
  #gestion3>div,
  #agence>div {
    width: 96%;
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  #syndic>div:last-child,
  #agence>div:last-child {
    padding-top: 2rem;
  }

  #topGestion,
  #topSyndic {
    max-width: 96%;
    margin: auto;
  }

  #topGestion ul,
  #topSyndic ul {
    max-width: 96%;
    margin: auto;
  }

  h3.extraSynd,
  h3.extraGest {
    padding-left: 48px;
    font-size: 1.9rem;
  }

  h3.extraGest {
    background-size: 34px auto;
  }

  h3.extraSynd {
    background-size: 30px auto;
  }

  #gestion3 {
    flex-direction: column-reverse;
  }

  #gestion3>div:last-child img {
    height: calc(100vw / 1.8);
    margin-bottom: 3rem;
  }

  .devis {
    margin-top: 2rem;
  }

  #formEstim {
    width: 96%;
  }

  #devisCopro h2 {
    padding-top: 60px;
    font-size: 2rem;
  }

  #guideline {
    padding: 2rem;
    font-size: 2rem;
  }

  #gestion1 {
    padding: 40vh 0 0 0;
    background: url("../images/main/gestion-1.jpg") no-repeat top center;
    background-size: 100% 35vh;
  }

  #gestion2 {
    padding: 38vh 0 0 0;
    background: url("../images/main/gestion-2.jpg") no-repeat top center;
    background-size: 100% 35vh;
  }

  #gestion4 {
    padding: 40vh 0 0 0;
    background: url("../images/main/conseiller-gestion.jpg") no-repeat top center;
    background-size: 100% 40vh;
  }

  #gestion4 h3 {
    margin-top: 4rem;
  }

  #gestion4>div>div {
    text-align: center;
  }

  #mandatGest {
    grid-template-columns: repeat(1, 1fr);
  }

  .shadow {
    display: none;
  }

  #panoAgence {
    height: calc(100vw / 1.5);
  }

  #access {
    font-size: 2rem;
    font-weight: 500;
  }

  .espace-client {
    padding: 0 0 5% 0;
  }

  #topEspace {
    padding: 2rem 2rem 0 2rem;
  }

  #spaceSelect>div {
    padding: 1.5rem 3rem 3rem 3rem;
  }

  .spaceButton {
    margin: auto;
  }

  .espaceH1 {
    font-size: 2rem;
  }

  .espaceH1 span {
    font-size: 4rem;
    line-height: 4rem;
  }

  .connexion {
    width: 96%;
    height: 400px;
    margin: 4rem auto 0 auto;
  }

  .log,
  .pwd {
    width: 200px;
    position: relative;
    left: 20px;
    margin: auto;
  }

  .sub input {
    width: 260px;
    margin: auto;
  }

  #esPanel {
    width: 100%;
  }

  #esPanel h2 {
    padding-top: 30px;
    font-size: 1.8rem;
    font-weight: 600;
  }
}

@media (min-width: 360px) {

  #cardPrice,
  #cardRef {
    font-size: 2rem;
  }

  .banner {
    font-size: 2.5rem;
  }
}

@media (min-width: 375px) {
  nav ul {
    padding: 6vh 5vw 2vh 5vw;
  }
}

@media (min-width: 500px) {
  .pano {
    width: 90vw;
    margin-bottom: 4rem;
  }

  #cli {
    width: unset;
    padding: 0 38px 0 0;
    font-size: 1.5rem;
  }

  nav ul {
    width: auto;
    min-width: 560px;
  }

  nav li {
    margin: unset;
  }

  nav li p {
    font-size: 1.8rem;
  }

  #logo {
    height: 80px;
  }

  #footLegal div {
    font-size: 1.2rem;
  }

  .line.visible.adaptive {
    width: calc(90vw - 300px);
  }

  #sept {
    font-size: 6rem;
    margin: 0rem 0 3rem 0;
  }

  #disco h2 {
    font-size: 3rem;
    margin-bottom: 0;
  }

  #adsTitle {
    padding: 2rem 0 1rem 0;
  }

  #engine>div:first-child {
    grid-template-columns: auto auto auto auto;
    grid-gap: 0px 26px;
    left: 30px;
  }

  #engine>div:last-child {
    flex-direction: row;
  }

  #maxPrice {
    margin-left: 6px;
    padding-left: 26px;
  }

  #budget>div:first-child {
    margin-right: 30px;
  }

  .v3d {
    top: 16px;
    right: 10px;
  }

  #cardPrice,
  #cardRef {
    font-size: 2.2rem;
  }

  #sold {
    max-width: 360px;
    font-size: 2.5rem;
    font-weight: 500;
  }

  .log,
  .pwd {
    width: 315px;
    left: 18px;
    margin: auto;
  }

  .sub input {
    width: 360px;
  }

  #topGestion,
  #topSyndic {
    max-width: 96%;
    margin: auto;
  }

  h3.extraSynd,
  h3.extraGest {
    padding-left: 60px;
    font-size: 2.5rem;
    font-weight: 500;
  }

  h3.extraGest {
    background-size: 48px auto;
  }

  h3.extraSynd {
    background-size: 40px auto;
  }

  #topGestion ul,
  #topSyndic ul {
    max-width: 100%;
  }

  #gestion4>div>div {
    text-align: left;
  }
}

@media (min-width: 600px) {
  #logo {
    margin-top: 0;
  }

  #headerRight>div:first-child {
    display: flex;
    justify-content: space-between;
  }

  #cli {
    position: static;
    padding-right: 36px;
  }

  #reso {
    width: 100%;
  }

  #cardTitle {
    width: 56vw;
  }

  .slog {
    display: block;
    top: 4%;
    font-size: 2rem;
    font-weight: 400;
  }

  #slogAgence {
    left: 12%;
  }

  #devisCopro h2 {
    font-size: 2.5rem;
  }

  #guideline {
    width: 80%;
    margin: auto;
    font-size: 2.5rem;
  }

  .common {
    font-size: 2.5rem;
  }

  #topEspace {
    padding: 2rem 4rem 0 4rem;
  }

  #spaceSelect>div {
    padding: 1.5rem 6rem 3rem 6rem;
  }

  .spaceButton {
    margin: 0 0 0 auto;
  }

  #agenceContact {
    min-width: 360px;
  }

  #agencePhone span {
    display: inline;
    padding-right: 26px;
    background: url("../images/icons/chevron.svg") no-repeat right 4px center;
    background-size: 16px auto;
  }

  #horaires div {
    padding-left: 24px;
  }

  #open {
    width: 360px;
  }
}

@media (min-width: 768px) {
  #logo {
    height: 120px;
  }

  section.largeSection {
    padding-bottom: 8rem;
  }

  .headline {
    font-weight: 400;
    font-size: 2.2rem;
  }

  .alert {
    width: 180px;
    height: 38px;
    line-height: 38px;
    position: absolute;
    left: auto;
    right: 0;
    padding: 0 16px 0 60px;
    color: #00497b;
    background: url("../images/icons/notification-blue.svg") no-repeat 16px center;
    background-size: 24px auto !important;
    border-radius: 22px;
    display: block;
  }

  #alert1 {
    top: 30px;
  }

  #alert2 {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  #noAds>div {
    width: 600px;
  }

  #alertForm {
    padding: 4rem;
  }

  #gridAnnonces {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px 40px;
  }

  .vignette,
  .thumb {
    height: calc(100vw / 3.5);
  }

  .v3d {
    top: 6px;
    right: 0;
  }

  #tabs {
    display: flex;
  }

  .tabContent {
    display: none;
  }

  .tabContent>div {
    width: 96%;
  }

  .tabEs {
    display: block;
  }

  .titleTab {
    display: none;
  }

  #titleDesc {
    padding: 0;
    background: none;
    color: inherit;
    font-weight: 600;
  }

  #mapagence {
    height: 36vh;
  }

  .espaceH1 {
    font-size: 4rem;
  }

  .espaceH1 span {
    font-size: 8rem;
    line-height: 8rem;
  }

  #topGestion ul,
  #topSyndic ul {
    font-size: 2rem;
  }

  .contact-devis {
    flex-direction: row;
  }

  .devis {
    margin-top: 0;
  }
}

@media (min-height: 760px) {
  .connexion {
    height: 460px;
  }
}

@media (min-width: 800px) {
  img.homeSlider {
    width: 100%;
    height: calc(100vw / 4);
  }

  .banner {
    font-size: 3.5rem;
  }

  .slog {
    font-size: 2.5rem;
  }

  #footLegal {
    flex-wrap: nowrap;
    padding-right: 0;
  }

  #footLegal div {
    width: auto;
    padding: 0 10px !important;
  }

  #footLegal div:not(:last-child) {
    border-right: 1px solid grey;
  }

  #spaceCli {
    background: url("../images/main/dossier-location-1.jpg") no-repeat center top;
    background-size: cover !important;
  }

  #esPanel {
    width: 800px;
  }
}

@media (min-height: 960px) and (orientation: portrait) {
  nav li {
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .home {
    height: 55vh;
    display: flex;
    flex-direction: column;
  }

  #interSwiper {
    margin: 6rem auto;
  }

  #noAds {
    padding: 4rem 2rem;
  }

  .v3d {
    top: 16px;
    right: 10px;
  }

  #back {
    display: block;
  }

  #contact {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin: 3rem 0 8rem auto;
  }

  #mapagence {
    height: 100%;
    margin-top: 0;
  }

  #devis {
    flex-direction: row;
  }

  #estimez>div {
    width: 300px;
  }

  #guideline {
    width: 92%;
    padding: 0 0 2rem 0;
  }

  #formEstim {
    width: 600px;
    max-width: 600px;
  }

  #cardInfos>div:first-child {
    padding-right: 20px !important;
  }
}

@media (min-width: 1138px) {
  #headerRight {
    flex-grow: 1;
    justify-content: end;
  }

  #headerRight>div:first-child {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  #topMenu {
    display: flex;
    width: 740px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  #topMenu a.active {
    border-bottom: 2px solid#00497b;
  }

  #reso {
    width: 310px;
    position: absolute;
    right: 0;
    top: 0;
  }

  #estim {
    display: block;
    top: -6px;
    left: calc(50% - 250px);
    width: 260px;
    margin: 0 auto;
  }

  #test {
    display: none;
  }

  label.hamburger:before {
    content: "Menu";
  }

  img.homeSlider {
    height: calc(100vw / 5.5);
  }

  h3.extraSynd,
  h3.extraGest {
    font-weight: 600;
  }

  #esPanel h2 {
    padding-top: 20px;
    font-size: 2.2rem;
    font-weight: 400;
  }
}

@media (min-width: 1280px) {
  #topMenu {
    width: 800px;
  }

  .pano {
    width: 90vw;
    height: calc(100vh - (200px + 2vw));
    margin-bottom: 6rem;
  }

  .adslink {
    width: 266px;
    display: block;
    position: absolute;
    top: 10px;
    left: auto;
    right: 0;
    margin: 0 auto;
  }

  .line.visible.adaptive {
    width: calc(90vw - 280px);
  }

  #sept {
    font-size: 10rem;
    line-height: 2rem;
    margin: 5rem 0 8rem 0;
  }

  #septA>div:last-child {
    width: 100%;
    background: url("../images/main/malmousque.jpg") no-repeat left top;
    background-size: auto 100%;
  }

  #disco h2 {
    font-size: 4rem;
    margin-bottom: 30px;
  }

  #gridAnnonces {
    grid-template-columns: repeat(3, 1fr);
  }

  .vignette,
  .thumb {
    height: calc(100vw / 5.4);
  }

  #logoCard {
    width: 160px;
    height: auto;
  }

  #cardFooter>div:first-child {
    flex-direction: row;
  }

  #footLegal div {
    padding: 0 14px;
  }

  #mandataire {
    max-width: 650px;
    padding: 0 2rem;
    margin-bottom: unset;
  }

  #cardFormContact {
    padding-left: 20px;
  }

  #cardFormContact {
    max-width: 650px;
    margin-left: auto;
    scroll-margin-top: 45px;
  }

  #cardEmail {
    width: 360px;
  }

  #panoContact {
    height: calc(100vw / 3.5);
    background-size: 100% auto;
  }

  .gridContact {
    width: 700px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }

  #horaires div {
    padding-left: 50px;
  }

  .slog {
    font-size: 3rem;
  }

  .pageSlog {
    padding: 0 4rem;
  }

  .pageSlog h2,
  .pageSlog p {
    font-size: 2.8rem;
    font-weight: 500;
  }

  .contact-devis {
    margin-top: 2rem;
  }

  .firstSection {
    padding-top: 6rem;
  }

  #agence,
  #syndic {
    flex-direction: row;
  }

  #agence>div,
  #syndic>div {
    width: 45%;
    margin: 0;
  }

  #agence>div:last-child,
  #syndic>div:last-child {
    padding-top: 0;
  }

  #slogAgence {
    left: 25%;
  }

  .narrow {
    max-width: 40%;
  }

  #mandatGest {
    grid-template-columns: repeat(2, 1fr);
  }

  #gestion1 {
    padding: 0 0 3rem 0;
    background: url("../images/main/gestion-1.jpg") no-repeat left 50vw center;
    background-size: auto auto;
  }

  #gestion2 {
    padding: 0 0 3rem 0;
    background: url("../images/main/gestion-2.jpg") no-repeat left center;
    background-size: 50vw auto;
  }

  #gestion4 {
    padding: 0 0 3rem 0;
    background: url("../images/main/conseiller-gestion.jpg") no-repeat left 100% center;
    background-size: 50% auto;
  }

  #gestion4 h3 {
    margin-top: unset;
  }

  #gestion3 {
    flex-direction: row;
  }

  #gestion3>div:last-child img {
    height: auto;
    margin-bottom: 0;
  }

  #panoAgence {
    height: calc(100vw / 2.25);
  }

  .shadow {
    display: block;
  }

  #cardHead {
    height: auto;
  }

  #tools {
    top: 30px;
    right: 0;
  }

  #btn-contact.bottom {
    margin: 20px auto 0 auto;
  }

  #open {
    width: 700px;
  }
}

@media (min-height: 900px) and (min-width: 1366px) {
  #topMenu {
    display: flex;
    width: 900px;
  }

  nav li {
    height: 110px;
  }
}

@media (min-width: 1366px) {

  #homeSell,
  #homeRent {
    padding-left: 70px;
    font-size: 3.5rem;
    font-weight: 600;
  }

  #homeRent {
    margin-top: 50px;
  }

  #homeSell {
    background-size: 48px auto !important;
  }

  #homeRent {
    background-size: 42px auto !important;
  }

  .adslink {
    top: 20px;
  }

  .deco {
    margin: 0 auto 3rem auto;
    padding-left: 28rem;
    position: relative;
  }

  .deco:before {
    top: 1rem;
    left: 0;
    width: 24rem;
    height: 8rem;
  }

  #septieme {
    padding: 5rem 0 8rem 0;
  }

  #sept {
    font-size: 14rem;
    margin: 5rem 0 10rem 0;
  }

  #septA {
    flex-direction: row;
    justify-content: space-between;
  }

  #septA>div:last-child {
    width: calc(100% - 560px);
    height: auto;
    background-size: auto 100%;
  }

  #septB {
    width: 500px;
    font-size: 2.5rem;
  }

  #septC {
    margin-top: 10rem;
    flex-direction: row;
  }

  #septC>div {
    width: 50%;
  }

  #septC>div:first-child {
    height: auto;
    margin: 0;
  }

  #septC>div:last-child {
    padding: 4rem 6rem;
  }

  #cardDesc {
    max-width: 660px;
  }

  #cardInfos {
    display: flex;
  }

  #cardInfos>div:last-child {
    margin-top: 0;
  }

  #imgCard {
    overflow: hidden;
  }

  .espaceH1 span {
    font-size: 12rem;
    line-height: 8rem;
  }

  #topGestion,
  #topSyndic {
    max-width: 1300px;
  }

  #topGestion ul,
  #topSyndic ul {
    font-size: 2.5rem;
    font-weight: 400;
  }
}

@media (min-width: 1536px) {
  #septA>div:last-child {
    background-size: cover;
  }

  #septB {
    width: 500px;
    padding: 0 2.5% 2.5% 0;
  }

  .slog {
    top: 3%;
    font-size: 4rem;
  }

  .headline {
    font-weight: 400;
    font-size: 2.5rem;
  }
}

@media (min-width: 1600px) {
  #septieme {
    padding: 8rem 0 10rem 0;
  }

  #cardBody,
  #cardFooter {
    width: 70vw;
  }

  #cardDesc {
    max-width: 660px;
    padding-top: 20px;
  }
}

@media (min-width: 1920px) {
  section.largeSection {
    padding: 8rem 0;
  }
}

.cd-main-content {
  text-align: center;
}

.cd-main-content h1 {
  font-size: 2rem;
  color: #64788c;
  padding: 4em 0;
}

.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
}

.cd-panel::after {
  /* overlay layer */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}

.cd-panel.cd-panel--is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.cd-panel.cd-panel--is-visible::after {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

.cd-panel__header {
  position: fixed;
  width: 96%;
  background: rgba(255, 255, 255, 0.96);
  z-index: 12;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.cd-panel--from-right .cd-panel__header {
  right: 0;
}

.cd-panel--from-left .cd-panel__header {
  left: 0;
}

.cd-panel--is-visible .cd-panel__header {
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

@media only screen and (min-width: 768px) {
  .cd-panel__header {
    width: 70%;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-panel__header {
    width: 50%;
  }
}

.cd-panel__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-panel__close::before,
.cd-panel__close::after {
  /* close icon created in CSS */
  content: "";
  position: absolute;
  top: 45px;
  left: 20px;
  height: 3px;
  width: 20px;
  background-color: #00497b;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-panel__close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-panel__close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cd-panel__close:hover {
  background-color: #424f5c;
}

.cd-panel__close:hover::before,
.cd-panel__close:hover::after {
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cd-panel__close:hover::before {
  -webkit-transform: rotate(220deg);
  -ms-transform: rotate(220deg);
  transform: rotate(220deg);
}

.cd-panel__close:hover::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.cd-panel--is-visible .cd-panel__close::before {
  -webkit-animation: cd-close-1 0.6s 0.3s;
  animation: cd-close-1 0.6s 0.3s;
}

.cd-panel--is-visible .cd-panel__close::after {
  -webkit-animation: cd-close-2 0.6s 0.3s;
  animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {

  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@keyframes cd-close-1 {

  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@-webkit-keyframes cd-close-2 {

  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@keyframes cd-close-2 {

  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.cd-panel__container {
  position: fixed;
  width: 96%;
  height: 100%;
  margin-top: 90px;
  background: #fff;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.cd-panel--from-right .cd-panel__container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.cd-panel--from-left .cd-panel__container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.cd-panel--is-visible .cd-panel__container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

@media only screen and (min-width: 768px) {
  .cd-panel__container {
    width: 70%;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-panel__container {
    width: 50%;
  }
}

.cd-panel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px 5%;
  overflow: auto;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-height: 600px) and (orientation: landscape) {
  @keyframes slideTop {
    0% {
      margin-top: 0px;
      padding-top: 0px;
    }

    100% {
      margin-top: calc(100vw / 6.5 * -1);
      padding-top: 6rem;
    }
  }

  .slideSection {
    position: relative;
    background: #fff;
    animation: slideTop 0.9s 3s ease-out;
    animation-fill-mode: forwards;
  }
}

@media only screen and (min-height: 960px) and (orientation: portrait) {
  @keyframes slideTop {
    0% {
      margin-top: 0px;
      padding-top: 0px;
    }

    100% {
      margin-top: calc(100vw / 6.5 * -1);
      padding-top: 2rem;
    }
  }

  .slideSection {
    position: relative;
    background: #fff;
    animation: slideTop 0.9s 3s ease-out;
    animation-fill-mode: forwards;
  }
}