@charset "utf-8";
/* CSS Document */

:root {
  --white:#ffffff;
  --black:#000000;
  --lightBlue:#75aee0;
  --red:#ff0000;
}

*, html {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Manrope", serif;
  color: var(--white);
  background: var(--black);
}
#wrapper {
  position:relative;
  /*overflow-x: hidden;*/
}
#content {
  min-height: calc(100vh - 30px);
}
@media (max-width:768px) {
  #content {
    min-height:70vh;
  }
}
.row {
  padding:65px 20px 20px 20px;
}
h1,
h2,
h3 {
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1em;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size:2.5rem;
}
.row h2 {
  margin-bottom:10px;
}
.row p {
  margin-bottom:10px;
}
.row ul {
  margin-bottom:10px;
  padding-left: 20px;
}
.row ul li {
  line-height: 1.3em;
}
.row a,
.row a:visited {
  color: var(--white);
  text-decoration: underline;
}
.row a:hover,
.row a:active {
  color: var(--lightBlue);
  text-decoration: underline;
}
.blue {
  color: var(--lightBlue);
  padding: 0 !important;
}
.line-blue {
  position: relative;
  padding: 0 !important;
}
.line-blue:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(img/line-blue.png);
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  width: 100%;
  height: 25px;
  z-index: 999;
}
@media (max-width:768px) {
  .line-blue:after {
    height: 9px;
  }
}
header {
  position:fixed;
  width:calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px;
  height: 45px;
  background: transparent;
  z-index:99;
  transition:all 0.2s linear;
}
@media (max-width:768px) {
  header {
    height: 30px;
  }
}
header.scrolled {
  background: var(--black);
  transition:all 0.2s linear;
}
footer {
  height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.8em;
  padding: 0 10px;
}
@media (max-width:768px) {
  footer {
    height: auto;
  }
}
footer a,
footer a:visited {
  color: var(--white);
  text-decoration: underline;
}
footer a:hover,
footer a:active {
  color: var(--lightBlue);
  text-decoration: underline;
}
footer span:after {
  content: ' | ';
}
footer span:last-of-type:after {
  content: '';
}
@media (max-width:768px) {
  footer span {
    display:block;
  }
  footer span:after {
    content: '';
  }
}
#logo {
  width: 300px;
  height: auto;
}
@media (max-width:768px) {
  #logo {
    height: 30px;
    width: auto;
  }
}
#logo img {
  width: 100%;
}
@media (max-width:768px) {
  #logo img {
    height: 100%;
  }
}
#hero {
  position: relative;
}
#hero,
#carousel,
.slide {
  width:100%;
  height: calc(100vh - 30px);
}
@media (max-width:768px) {
  #hero,
  #carousel,
  .slide {
    width:100%;
    height: 80vh;
  }
}
.slide {
  background-size: cover;
  background-position: center center;
}
.slide1 {
  background-image: url(/uploads/assets/bgs/bg1.jpg);
}
.slide2 {
  background-image: url(/uploads/assets/bgs/bg2.jpg);
}
.slide3 {
  background-image: url(/uploads/assets/bgs/bg3.jpg);
}
#overlay {
  position: absolute;
  top:0;
  width: 100%;
  height: 60%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  z-index: 9;
}
#hero-title {
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 9;
}
#hero-title h1 {
  font-size: 4.5rem;
  text-transform: uppercase;
  line-height: 1.1em;
}
@media (max-width:768px) {
  #hero-title h1 {
    font-size: 1.8rem;
  }
}
#hero-title h2 {
  font-size: 2rem;
  margin-top: 30px;
  line-height: 1.1em;
}
@media (max-width:768px) {
  #hero-title h2 {
    font-size: 1.3rem;
  }
}
#hero-title h1 span,
#hero-title h2 span {
  background: var(--black);
  padding: 0 30px;
}
@media (max-width:768px) {
  #hero-title h1 span,
  #hero-title h2 span {
    padding: 0 10px;
  }
}
.hamb {
  display: inline-block;
  position: relative;
  cursor:pointer;
  width:35px;
  height:25px;
  margin-left: 20px;
  z-index: 99;
}
.hamb span {
  display: block;
  background: var(--white);
  width:100%;
  height:3px;
  margin-bottom:7px;
  opacity:1;
  transition:all 0.2s linear;
}
.hamb span:last-of-type {
  margin-bottom:0;
}
.hamb.open span {
  opacity:0;
  transition:all 0.2s linear;
}
.hamb.open span:first-of-type {
  opacity:1;
  rotate: 45deg;
  translate: 0 10px;
}
.hamb.open span:last-of-type {
  opacity:1;
  rotate: -45deg;
  translate: 0 -10px;
}
.main-menu {
  position: absolute;
  top:0;
  bottom:auto;
  right:-200px;
  left: auto;
  opacity: 0;
  width:200px;
  height: 100vh;
  background: var(--black);
  z-index: 99;
  transition:all 0.2s linear;
}
@media (max-width:768px) {
  .main-menu {
    right:-100%;
    width:100%;
  }
}
.main-menu.open {
  opacity: 1;
  right:0;
  transition:all 0.2s linear;
}
.main-menu ul {
  list-style-type: none;
  padding:70px 0 0 0;
}
.main-menu ul li {
  padding:10px;
  font-size: 1.5em;
}
.main-menu ul li a,
.main-menu ul li a:visited {
  color: var(--white);
  text-decoration: none;
  transition:all 0.2s linear;
}
.main-menu ul li a:hover,
.main-menu ul li a:active {
  color: var(--lightBlue);
  transition:all 0.2s linear;
}
#but_cart,
#but_instagram {
  position:relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
#but_cart:before,
#but_instagram:before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: bold;
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.6em;
}
#but_cart:before {
  content: "\f07a";
}
#but_instagram:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: normal;
  top:0;
  font-size:2em;
  content: "\f16d";
}
#cart-box {
  visibility: hidden;
  position: absolute;
  top:0;
  right:-200px;
  width:200px;
  height: 100vh;
  background: var(--black);
  z-index: 99;
  transition:all 0.2s linear;
}
#cart-box.open {
  visibility: visible;
  right:0;
  transition:all 0.2s linear;
}
#visit-box {
  position: fixed;
  bottom: -235px;
  right: 20px;
  width: 300px;
  height: 250px;
  background: var(--black);
  border-radius: 20px;
  padding: 20px 120px 20px 20px;
  z-index:9;
  transition:all 0.2s linear;
}
#visit-box.open {
  bottom: 0;
  transition:all 0.2s linear;
}
@media (max-width:768px) {
  #visit-box,
  #visit-box.open  {
    position: relative;
    bottom: 0;
    width: calc(100% - 20px);
    padding: 10px;
    height: auto;
    border-radius: unset;
    right: 0;
    left: 0;
    top: 0;
  }
}
#visit-box:before {
  content: '';
  background-image: url("img/sg-girl.png");
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 200px;
  height: 320px;
}
@media (max-width:768px) {
  #visit-box:before {
    display:none;
  }
}
#form_visit input {
  padding: 6px;
  width: calc(100% - 14px);
  background: transparent;
  border: 1px solid var(--white);
  font-family: "Manrope", serif;
  color: var(--white);
  border-radius: 5px;
}
#contact_send {
  cursor: pointer;
  font-family: "Fugaz One", serif;
  padding: 6px;
  width: 100%;
  background: var(--lightBlue);
  border: 1px solid var(--lightBlue);
  color: var(--black);
  border-radius: 5px;
  margin-top:10px;
  text-transform: uppercase;
  transition:all 0.2s linear;
}
#contact_send:hover {
  background: transparent;
  color: var(--lightBlue);
  transition:all 0.2s linear;
}
#visit-box h3 {
  margin-bottom: 20px;
  font-size: 1.42rem;
}
#form_visit span.details {
  font-size:0.8em;
  font-style:italic;
  display:block;
  width:100%;
  text-align:right;
}
#form_visit span.default {
  display:none;
}
label[for=contact_privacy] {
  font-size: 0.8em;
}
label[for=contact_privacy] a,
label[for=contact_privacy] a:visited {
  color: var(--white);
  text-decoration: none;
}
label[for=contact_privacy] a:hover,
label[for=contact_privacy] a:active {
  color: var(--white);
  text-decoration: underline;
}
#contact_privacy {
  width:auto !important;
  vertical-align:middle;
}
.grecaptcha-badge { 
  visibility: hidden !important;
}