@import url('countdown.css');

:root {
  --primary-color: #333;
  --secondary-color: #fff;
  --transparent-color: transparent;
  --cursor-color: var(--secondary-color);
  --loader-color: var(--secondary-color);
  --error-color : crimson;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  width: 100vw;
  background-color: var(--primary-color);
}
form .form-label {
  color: transparent;
  height: 0;
  font-size: 0;
}

.overflow-x-hidden{
  overflow-x: hidden;
}

.overflow-y-hidden{
  overflow-y: hidden;
}

.form-control {
  color: var(--primary-color)!important;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 0;
  border: 1px solid var(--primary-color);
}
.form-control:focus, .btn:focus {
  box-shadow: none;
}

.input-group input, .input-group input:focus {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

textarea.form-control {
  min-height: auto;
}

button {
  text-transform: uppercase;
}

.btn-submit{
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color:var(--primary-color);
  border-radius: 0;
}

.btn-submit:hover{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color:var(--secondary-color);
}

.is-bg {
  background-image: url('../images/background.jpg');
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.overlay {
  background-color: var(--primary-color);
  opacity: 0.7;
  z-index: 0;
  position: relative;
}

.loader {
  background-color: var(--primary-color);
  z-index: 1;
}

.container-fluid {
  min-height: 100%;
}

h1 {
  color: var(--secondary-color);
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2rem;
}

h2 {
  color: var(--secondary-color);
  font-weight: 200;
  font-size: 0.9rem;
}

h3 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  margin: 0;
}

h4{
  text-transform: uppercase;
  font-weight: 300;
  font-size: .9rem;
}

header {
  width: 100vw;
  z-index: 0;
}

#logo img {
   filter: invert(100%);
}

p {
  font-weight: 200;
  font-size: 0.8rem;
  text-align: justify;
}

.burger-menu {
  display: inline-block;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 1px;
  margin: 8px 0;
  background-color: var(--secondary-color);
  transition: 0.4s;
}

.burger-menu.open span:nth-child(1){
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3){
  transform: rotate(45deg) translate(-5px, -6px);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

.menu li a{
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}

.menu li a::before{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  top: 1.5rem;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.menu li a.active::before{
  width: 100%;
}

.menu li{
  opacity: 0;
  padding: 0 1rem ;
}

section {
  color: var(--primary-color);
}

.btn-outline {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.social-icons li a i {
  color: var(--secondary-color);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.social-icons li a i:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease;
}

#side-content {
  background-color: var(--secondary-color);
  width: 100vw;
  height: 100%;
  overflow: auto;
  left:0;
}

.image-wrapper {
  position: absolute;
  top: 25%;
  height: 75%;
  white-space: nowrap;
  font-size: 0;
  width: auto;
  left: 3rem;
  right: 0;
}

.image-wrapper span a {
  display: inline-block;
  height: 100%;
  width: 75vw;
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

.image-wrapper span a img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#about {
  padding-top: 3.5rem;
}

.wrap-line {
  margin: 1rem 0 4rem 0;
  width: 10rem;
  height: 1px;
  background-color: var(--primary-color);
}
.informations {
  width: 100%;
}

.informations span{
  font-size: .7rem;
  display: block;
  text-align: center;
}

.informations span a{
  color: var(--primary-color);
}

/* ERROR BORDER */
.error-border{
  color: var(--error-color);
  border-bottom:1px solid var(--error-color)!important;
}
.error-border::placeholder {
  color: var(--error-color)!important;
}

/* ERROR MESSAGE */
#error-message{
  color: var(--error-color);
  font-weight: bold;
}

/* MODAL */
.modal-header {
  border-bottom: none;
}

.modal-header .modal-title{
  color: var(--primary-color);
}

.modal-content {
  border-radius: 0;
  background-color: var(--secondary-color);
}

.blur-effect{
  pointer-events: none;
  filter: blur(10px);
  transition: all 1s ease;
}

/* SUBSCRIPTION MESSAGES */
.response{
  font-weight: normal;
  font-size: .8rem;
  text-align: center;
}
#mc_embed_signup div.mce_inline_error {
  margin: 0!important;
  padding: 0!important;
  background-color: transparent!important;
  font-weight: normal!important;
  color: var(--error-color)!important;
  text-align: center;
  font-size: .8!important;
}

/* CUSTOM CURSOR */
#cursor-inner,
#cursor-outer {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2000;
}

.no-rounded {
  border-radius: 0;
}

.border-none {
  border: none;
}

.border-bottom {
  border-bottom: 1px solid var(--primary-color) !important;
}

/* FOOTER */
.copyright{
  font-size: .8rem;
  width: 100%;
}

.copyright a{
color: var(--primary-color);
}

/*SCROLL MOUSE ANIMATION */
.responsive-scroll {
  position: relative;
  display: flex;
  justify-content: center;
  width: 35px;
  height: 55px;
  border: var(--secondary-color) 2px solid;
  border-radius: 10px;
  transition: all 450ms ease;
}

.responsive-scroll:before {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  height: 3px;
  max-height: 3px;
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
  background-color: var(--secondary-color);
  transition: all 450ms ease;
}

.responsive-scroll:after {
  content: "";
  position: absolute;
  bottom: 5px;
  display: block;
  width: 55%;
  height: 2px;
  max-height: 2px;
  border-radius: 1000px;
  background-color: var(--secondary-color);
  opacity: 0.1;
  transition: all 950ms ease;
}

.responsive-scroll:hover:after {
  opacity: 1;
}

.responsive-scroll .scroll-thisico {
  display: block;
  width: 8px;
  height: 25px;
  margin-top: 65%;
  border-radius: 1000px 1000px 3px 3px;
  background-color: var(--secondary-color);
  transform: translateX(6px)translateY(20px) rotate(-45deg);
  transform-origin: top left;
  animation: responsive-scroll-rwd infinite 2250ms;
  transition: all 450ms ease;
}

/* Media Queries for screens size */
@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 0.8rem;
  }
  .image-wrapper span a {
    width: 50vw;
  }
}

@media (min-width: 992px) {
  html,body{
    overflow: hidden;
}
  #side-content {
    width: 50vw;
    opacity: 0;
    position: absolute;
    left:100%;
    top:0
  }
  .padding-input-form{
    padding: .5rem;
  }
  .image-wrapper span a {
    width: 25vw;
  }
  header {
    width: 50vw;
  }
  .informations {
    width: 75%;
  }
}

@media (min-width: 1200px) {
}

/* KEYFRAMES  ANIMATIONS SCROLL MOBILE */
@keyframes responsive-scroll {
  0% {
    margin-top: 25%;
    opacity: 0;
 }
  33% {
    margin-top: 36.55%;
    opacity: 1;
 }
  100% {
    margin-top: 60%;
    opacity: 0;
 }
}
@keyframes responsive-scroll-rwd {
  0% {
    margin-top: 75%;
    opacity: 0;
 }
  33% {
    margin-top: 58.5%;
    opacity: 1;
 }
  100% {
    margin-top: -70%;
    opacity: 0;
 }
}