/** START OF GENERAL SETTINGS **/
:root {
  /* --fontRoboto: "Roboto Slab", serif; */
  --fontRoboto: "Roboto", serif;
  --white: #ffffff;
  --black: #2f2f2f;
  --altColor: #144372;
  --mainColor: #00414f;
  --bgCreamDark: #f5f5f5;
  --transition3s: 0.3s linear;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fontRoboto);
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 1px;
  background: var(--bgCreamDark);
  overflow-x: hidden;
}

h1,
h2,
h3,
.font-h1,
.subTitle {
  display: block;
  text-align: center;
  /* font-family: "Roboto Slab", serif; */
  font-family: "Roboto", serif;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

h1 {
  font-size: 60px;
}

h1,
.font-h1 {
  color: var(--mainColor);
}

.font-h1 {
  font-size: 40px;
  font-weight: 200;
}

h2,
.subTitle {
  color: var(--altColor);
  font-size: 22px;
  margin: 10px 0px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }

  .font-h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 40px;
  }

  .font-h1 {
    font-size: 30px;
  }

  h2,
  .subTitle {
    font-size: 20px;
  }
}

/** START OF MARGIN  **/
.marginTop {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 60px;
  }
}

/* START OF SITE LOGO  */
.site-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -40%);
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 991px) {
  .site-logo {
    top: 15%;
    transform: translate(-50%, -15%);
  }
}
/* END OF SITE LOGO  */

/* START OF CARROUSEL  */
#bigCarousel,
#bigCarousel .carousel-item {
  position: relative;
  height: 100vh;
}

#bigCarousel .carousel-item:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.4) 100%
    );
}

#bigCarousel .carousel-control-next,
#bigCarousel .carousel-control-prev {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
}

#bigCarousel .carousel-control-next {
  right: 40px;
}

#bigCarousel .carousel-control-prev {
  left: 40px;
}

#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
  transition: var(--transition3s);
}

#bigCarousel .carousel-control-next:hover,
#bigCarousel .carousel-control-prev:hover {
  -webkit-filter: brightness(1.5);
  filter: brightness(1.5);
}

@media screen and (max-width: 991px) {
  #bigCarousel,
  #bigCarousel .carousel-item {
    height: 600px;
  }
  #bigCarousel .carousel-control-next {
    right: 0px;
  }

  #bigCarousel .carousel-control-prev {
    left: 0px;
  }
}

@media screen and (max-width: 575px) {
  #bigCarousel,
  #bigCarousel .carousel-item {
    height: 500px;
  }
}

/* END OF CARROUSEL  */

/* START OF SCROLL DOWN BUTTON  */
.scrollbutton {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0%);
}

.scroll-down {
  opacity: 1;
  -webkit-transition: all 0.5s ease-in 3s;
  transition: all 0.5s ease-in 3s;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  transform: scale(1);
}

.scroll-down:before {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 6px);
  transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid white;
  border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
/* START OF SCROLL DOWN BUTTON  */

/* END OF LOGOS AND FOOTER  */
.logos img,
.footer-logo img {
  max-height: 150px;
}

.logos img {
  width: 250px;
}

footer {
  background-color: var(--black);
  color: var(--white);
}

footer li {
  margin-bottom: 10px;
}

footer li:last-child {
  margin-bottom: 0px;
}

footer li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition3s);
}

footer li a:hover {
  text-decoration: underline;
  color: var(--mainColor);
}

/* END OF LOGOS AND FOOTER  */

.visually-hidden {
	background: rgba(0,0,0,0.005);
}