/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #f8f8f8;
  background: url("./assets/images/background.png") top center
    no-repeat;
  background-size: cover;
  position: relative;
  margin: 0;
}

body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(49, 71, 89, 0.6);
}

@media (min-width: 1024px) {
  body {
    background-attachment: fixed;
  }
}

a {
  color: #24b7a4;
  text-decoration: none;
}

a:hover {
  color: #36d8c3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  text-align: center;
}

#main {
  position: relative;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 70px;
  z-index: 996;
  background: #24b7a4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}

.back-to-top i {
  font-size: 28px;
  color: #f8f8f8;
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(to right, #24b7a4, #0d83c7);
  transition: 0.5s;
  color: #f8f8f8;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  position: relative;
  width: 100%;
  padding: 100px 10px;
  box-sizing: border-box;
  }

#header h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #f8f8f8;
}

#header h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 22px;
}

/* countdown */
#header .header-countdown {
  margin-bottom: 40px;
}

#header .header-countdown div {
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin: 10px 10px;
  width: 100px;
  padding: 15px 0;
}

#header .header-countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

#header .header-countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 575px) {
  #header .header-countdown div {
    width: 70px;
    padding: 10px 0;
    margin: 10px 8px;
  }

  #header .header-countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #header .header-countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

#header .subscribe {
  font-size: 15px;
  text-align: center;
}

#header .subscribe h4 {
  font-size: 20px;
  font-weight: 600;
  color: #f8f8f8;
  position: relative;
  padding-bottom: 12px;
}

#header .subscribe .subscribe-form {
  min-width: 300px;
  margin-top: 10px;
  background: #f8f8f8;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
}

#header .subscribe .subscribe-form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  height: 20px;
  width: calc(100% - 100px);
}

#header .subscribe .subscribe-form input[type="submit"] {
  background: linear-gradient(to right, #24b7a4, #0d83c7);
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  color: #f8f8f8;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .subscribe .subscribe-form input[type="submit"]:hover {
  background: #08e193;
  transition: 0.3s;
  cursor: pointer;
}

#header .subscribe .subscribe-form input:focus {
  outline: 2px solid #24b7a4;
  border-radius: 20px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: black;
  -webkit-box-shadow: 0 0 0 1000px white inset;
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(
          rgba(255, 255, 255, 0) 0%,
          rgba(0, 174, 255, 0.04) 50%,
          rgba(255, 255, 255, 0) 51%,
          rgba(0, 174, 255, 0.03) 100%
  );
}

.header-label-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#header .subscribe .error-message {
  display: none;
  color: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#header .subscribe .sent-message {
  display: none;
  color: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#header .subscribe .loading {
  position: absolute;
  top: -20%;
  right: 10px;
  display: none;
  text-align: center;
  padding: 15px;
}

#header .subscribe .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0aa56a;
  border-top-color: #eee;
  animation: animate-loading-notify 1s linear infinite;
}

@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }

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

#header .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

#header .social-links a {
font-size: 16px;
color: #fff;
border-radius: 50%;
width: 48px;
height: 48px;
border: 1px solid rgba(255, 255, 255, 0.5);
display: inline-flex;
align-items: center;
justify-content: center;
}

#header .social-links a i {
line-height: 0;
}

#header .social-links a:hover {
background: linear-gradient(to right, #24b7a4, #0d83c7);
border-color: #24b7a4;
transition: 0.3s;
}

#header .social-links a:focus {
outline: 2px solid #24b7a4;
}

.header-wrapper {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 100%;
padding: 100px 0;
}

.header-container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding-right: calc((1.5rem) * 0.5);
padding-left: calc((1.5rem) * 0.5);
margin-right: auto;
margin-left: auto;
}

.header-countdown {
display: flex;
justify-content: center;
}

a.kickstarter,
a.feedback-banner {
  background: linear-gradient(to right, #24b7a4, #0d83c7);
  border-radius: 25px;
  max-width: 600px;
}

a.kickstarter:hover,
a.feedback-banner:hover {
  transition: 0.3s;
  background: #08e193;
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-banner,
.kickstarter-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  text-align: center;
}

.feedback-title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.feedback-buttons {
  display: flex;
}

.feedback-buttons a {
  margin-right: 20px;
}

.feedback .banner-text {
  margin: 20px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kickstarter-banner img {
  width: 80%;
}

#header .kickstarter-banner h2 {
  margin: 10px 0;
  text-transform: uppercase;
}

#header .feedback h2 {
  margin: 20px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #d8f7f3;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #24b7a4;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.icon-box p.description {
  font-size: 14px;
}

/*--------------------------------------------------------------
  # Contact Us
  --------------------------------------------------------------*/

.about {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;

  @media (max-width: 560px) {
    flex-direction: column;
  }
}

.about-container {
  max-width: 1320px;

  @media (max-width: 1200px) {
    max-width: 1140px;
  }

  @media (max-width: 992px) {
    max-width: 960px;
  }

  @media (max-width: 768px) {
    max-width: 720px;
  }
  @media (max-width: 576px) {
    max-width: 540px;
  }
}

.about-icons {
  margin-top: 0.5rem;
  display: flex;
  width: 100%;
  flex-wrap: wrap;

  @media (max-width: 576px) {
    flex-direction: column;
  }
}

.about .icon-box {
  box-sizing: border-box;
  margin-bottom: 20px;
  text-align: center;
  padding-right: calc(1.5rem * 0.5);
  padding-left: calc(1.5rem * 0.5);
  max-width: 100%;
  flex: 0 0 auto;
  width: 33%;

  @media (max-width: 650px) {
    width: 100%;
  }
}

.about .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.about .icon i {
  color: #fff;
  font-size: 42px;
  line-height: 0;
}

.about .icon img {
  width: 42px;
}

.about .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .title a {
  color: #fff;
  transition: 0.3s;
}

.about .title a:focus {
  outline: 2px solid #24b7a4;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: rgba(38, 55, 69, 0.4);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #36d8c3;
}
#footer .credits a:focus {
  outline: 2px solid #24b7a4;
}

.subscribe-event {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
