@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 20px;
  color: #fff;
  overflow: hidden;
}

.container {
  padding: 30px 20px;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInUp 0.8s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
@media (min-width: 800px) {
  .container {
    padding: 50px;
    justify-content: space-between;
  }
}

.logo {
  height: auto;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.logo svg {
  width: 220px;
  max-width: 100%;
}
@media (min-width: 800px) {
  .logo svg {
    width: 480px;
  }
}
@media (min-width: 800px) {
  .logo {
    height: 70%;
    margin-bottom: 0;
  }
}

h1 {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Cabin", Geneva, Verdana, sans-serif;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}
@media (min-width: 800px) {
  h1 {
    font-size: 1.5em;
  }
}

.tagline {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 300;
}
@media (min-width: 800px) {
  .tagline {
    font-size: 1.3em;
  }
}

.text {
  display: flex;
  height: auto;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .text {
    height: 30%;
  }
}

.holder {
  align-self: flex-end;
  width: 100%;
}

.border {
  width: 400px;
  max-width: 50%;
  min-width: 200px;
}

.message {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.8em;
}
@media (min-width: 800px) {
  .message {
    font-size: 1.1em;
  }
}

.contact ul {
  list-style-type: none;
}
.contact ul li {
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: left 4px;
  padding-left: 20px;
  background-size: 10px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact h2 {
  margin-bottom: 20px;
  font-size: 1.4em;
}

.contact-info {
  font-size: 0.8em;
  line-height: 2;
}
@media (min-width: 800px) {
  .contact-info {
    font-size: 1.1em;
  }
}
.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #fff;
}

.social-links {
  position: fixed;
  justify-content: center;
  top: 20px;
  right: 20px;
}
@media (min-width: 800px) {
  .social-links {
    top: 50px;
    right: 50px;
  }
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 800px) {
  .social-links a {
    width: 35px;
    height: 35px;
  }
}
.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.shape-c-1 {
  fill: #000;
}

.shape-c-2 {
  opacity: 0.75;
}

.shape {
  position: absolute;
  height: 100vh;
  width: 100vw;
}

.shape-circle {
  position: fixed;
  width: 200vw;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
  right: -100%;
  bottom: -50%;
}
@media (min-width: 800px) {
  .shape-circle {
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    right: unset;
    bottom: unset;
  }
}

.riba {
  position: absolute;
  right: 20px;
  height: 100px;
  width: 120px;
  bottom: 0px;
}
@media (min-width: 800px) {
  .riba {
    width: 200px;
    bottom: 30px;
    right: 50px;
  }
}

/*# sourceMappingURL=main.css.map */
