* {
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  position:fixed;
  width:101%;
  height: 6vw;
  background-color:rgb(118, 164, 239);
  padding: 0 100px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  top:0;
  z-index: 998;
  padding:1% 0;
  left:-1%;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

header .logo {
  color:#fff;
  text-decoration:none;
  background-image: url(../Images/logo/logo1200px.webp);
  background-size:contain;
  background-repeat:no-repeat;
  width:9.5vw;
  height:5vw;
  margin:0;
  padding:0;
  position:relative;
  left:2%;
  border:none;
  color:transparent;
}
header nav {
  margin-right:2%;
}

header ul {
  position:relative;
}

header ul li {
  position:relative;
  list-style: none;
  float:left;
}
header ul li a {
  color:#fff;
  font-size: 1.5vw;
  padding: 1vw 1.5vw;
  text-decoration: none;
  display:flex;
  justify-content: space-between;
}

header ul li a:hover {
  background-color: rgb(66, 107, 202);
}

header ul li ul {
  position:absolute;
  left:0;
  width: 100%;
  background: rgb(118, 164, 239);
  display:none;
}

header ul li:hover > ul {
  display:block;

}

header ul li ul li {
  position:relative;
  width:100%;
  border: 1px solid rgba(0,0,0,0.2);
}

header ul li ul li ul {
  top:0;
  left: 200px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin:0;
  overflow-x:hidden;
  cursor:default;
  position: relative;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
  overscroll-behavior-y: none;
}

.page-wrapper {
  position:relative;
  overflow-x:hidden;
  min-height: 100vh;
  display:flex;
  flex-direction: column;
  isolation: isolate;
}

main {
  flex:1;
  width:100vw;
  display:flex;
  flex-direction: column;
  align-items:center;
}

.page-title {
  font-size:clamp(35px, 6.5vw, 80px);
  text-align: center;
  font-family: 'Playfair Display',Arial, Helvetica, sans-serif;
  font-style:normal;
  -webkit-text-stroke: 0.03vw rgb(0, 0, 0);
  font-weight:700;
  color:rgb(43, 85, 183);
  padding-top:11vw;
  margin-bottom:15%;
}

footer {
  padding:0 2vw;
  background-color:rgb(66, 107, 202);
  width:105%;
  bottom:0;
  height:7vw;
  position: relative;
  left:-2.5vw;
}
.footer-div {
  display:flex;
  position:relative;
  flex-direction: column;
  align-self: center;
  height:100%;
  z-index: 123;
  vertical-align: middle;
}
.footerPrev,
.footerNext {
  display:none;
  color:white;
  background:none;
  border:none;
  cursor:pointer;
  padding:1vw 1.5vw;
  position:absolute;
  font-size:5vw;
  text-align: center;
  z-index: 999;
  bottom:21vw;
  transition: 0.6s ease;
}

.footerPrev {
  right:90%;
}
.footerNext {
  left:90%;
}

.rail {
  display:flex;
  flex-direction: row;
  justify-content: space-evenly;
  height:0.001vw;
}

.address-p,
.telephone-p,
.facebook-p,
.email {
  display:block;
  color:white;
  font-size:1.05vw;
  text-align: center;
  margin:0;
  margin-top:0.5vw;
  padding:0;
  max-width:100%;
}

.mail-a,
.whatsapp-number {
  color:white;
  cursor:pointer;
  text-decoration-color:white;
  text-decoration-thickness: 0.1vw;
    
}

.address-p {
  margin-top:0.65vw;
}

.location-logo,
.whatsapp-logo,
.facebook-logo,
.email-logo {
  max-width:100%;
  height:auto;
  align-self: center;
  cursor:pointer;
  width:4vw;
  flex:1;
  object-fit:contain;
}

.footer-div {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top:2.9vw;
}

.footer-div a {
  margin-top: 0.5vw;
}

.copyright {
  display:flex;
  background-color: rgb(235, 235, 235);
  height:8vh;
  width:105%;
  justify-content:center;
  justify-self: center;
  align-self:center;
}

.copyright h2 {
  color: rgba(66, 107, 202, 0.85);
  text-align: center;
  font-size:clamp(12px, 2vw, 18px);
  align-self: center;
  justify-self: center;
}


@media only screen and (max-width:1100px) {
  header {
    width:101%;
    justify-content: center;
    left:-1%;
    height:19vw;
      
  }
  header .logo {
    width:32.5vw;
    height:17vw;
    background-image: url(../Images/logo/logo-mobile.webp);
    position:relative;
    display:inline-block;
    left:0;
  }
  header nav {
    position: absolute;
    width:55vw;
    top:19vw;
    right:-4%;
    background: rgb(66, 107, 202);
    display:none;
    margin-right:4%;
  }
  header ul li a {
    padding: 10px 15px;
  }
  nav ul li a.tapped {
    background-color: rgba(0, 0, 0, 0.1);
  }
  nav ul ul {
    display: none;
    position: relative;
    z-index: 999;
  }
  nav ul li a.open + ul {
    display: block;
  }
  header.active nav {
    display:initial;
  }
  header nav ul li {
    width:100%;
  }
  header nav ul li ul {
    position: relative;
    width:100%;
    left:0;
  }
  header ul li ul li ul {
    top:0;
    left:0;
  }
  header nav ul li:hover ul li {
    background: rgb(118, 164, 239);
  }
  .menuToggle {
    position:absolute;
    width:4vw;
    min-width:30px;
    height:5vw;
    min-height:40px;
    cursor:pointer;
    display:flex;
    justify-content: center;
    align-items:center;
    margin-right:2vw;
    right:0;
    z-index: 9999;
    bottom:1vw;
  }
  .menuToggle::before {
    content: '';
    position:absolute;
    width:100%;
    height:0.5vw;
    background:#fff;
    transform: translateY(-12px);
    box-shadow: 0 12px #fff;
  }
  .menuToggle::after {
    content: '';
    position:absolute;
    width:100%;
    height:0.5vw;
    background:#fff;
    transform: translateY(12px);
  }
  header.active .menuToggle::before {
    transform: rotate(45deg);
    box-shadow: 0 0 #fff;
  }
  header.active .menuToggle::after {
    transform: rotate(315deg);
  }
  nav ul li a.open + ul {
    opacity: 1;
  }
  nav ul ul {
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }
  header ul li a {
    font-size:14px;
    padding:7px 10px;
  }
  .mobile {
    width:101%;
    justify-content: center;
    left:-1%;
    height:7vw;
    min-height:60px;
  }
  header.mobile {
    transition: height 1s ease;
  }
  .logo-scrolled {
    display:none !important;
  }
  .menuToggle-scrolled {
    position:relative;
    justify-self:center;
    top:0.1vh;
    margin:0;
  }
  header nav.scrolled {
    right:-4%;
    top:7vw;
    width:53%;
  }
  .mobile-bg,
  .mobile-bgSCH,
  .mobile-bgGSD {
    background-size:cover;
    background-attachment: scroll;
    min-height: 100vh;
    height: 100vh;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  .page-title {
    padding-top:28vw;
  }
  footer {
    height:13vw;
    width:105%;
    left:-2vw;
  }
  .footer-container {
    overflow:hidden;
    width:100%;
    height:100%;
    position:relative;
    align-items: center;
  }
  .rail {
    width:400%;
    position:absolute;
    align-items: center ;
    height:5.5vw;
    top:1vw;
  }
  .email {
    margin:0px;
  }
  .footer-div {
    width:100%;
    float:left;
    align-items: center;
  }
  .whatsapp-number {
    width:min-content;
  }
  .footerPrev,
  .footerNext {
    display: inline-block;
    position: absolute;
    bottom:-4vw;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    z-index: 9999;
    user-select: none;
    text-decoration: none;
    padding: 0;
    height:auto;
    width:auto;
    font-size:clamp(30px, 8vw, 650px);
  }
  .footerPrev {
    left:6vw;
  }
  .footerNext {
    left:87vw;
  }
  .address-p,
  .telephone-p,
  .facebook-p,
  .email {
    font-size:clamp(14px, 2.4vw, 30px);
    max-width:80%;
  }
  .location-logo,
  .whatsapp-logo,
  .facebook-logo,
  .email-logo {
    width:6vw;
    max-width:100%;
    height:auto;
    align-self: center;
    cursor:pointer;
    position:relative;
    padding-top:0.4%;
    margin:0.5vw 0 0 0;
  }
  .mail-a,
  .whatsapp-number {
    text-decoration-thickness: 0.2vw;
  }
  .copyright {
    max-height:40px;
  }
}

@media (min-width:300px) and (max-width: 856px) {
  header nav.scrolled {
    top:60px;
  }
}

@media only screen and (max-width:530px) {
  .mobile-bg,
  .mobile-bgSCH,
  .mobile-bgGSD {
    background-attachment: scroll;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  footer {
    height:100px;
  }
  .rail {
    flex-direction: row;
    overflow-x: auto;
    width: 400%;
    height:85px;
  }
  .footer-div {
    width: 100%;
    height: auto;
    top: 0;
    padding: 1em 0;
  }
  .address-p,
  .telephone-p,
  .facebook-p,
  .email {
    font-size: 14px;
    line-height: 1.2em;
    white-space: normal; /* allow wrapping */
    word-break: break-word;
    text-align: center;
    width: 100%;
    margin: 0.5em auto;
    padding: 0 5vw;
  }
  .footerPrev,
  .footerNext {
    bottom:15%;
  }
}