@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

html, body {
  height: 100%;
  line-height: 1;
}

body {
  background: url("../images/mainbg-blue-lg.png") fixed repeat;
}

html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul,
li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: monospace, monospace;
  font-size: 1rem;
  vertical-align: baseline;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

h1 {
  font-size: 2rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  vertical-align: baseline;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25rem;
}

sup {
  top: -0.5rem;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

label {
  display: inline-block;
}

img {
  vertical-align: middle;
  border-style: none;
  width: 100%;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

a {
  text-decoration: none;
  background-color: transparent;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

main, footer, header, aside, div, section, nav {
  box-sizing: border-box;
}

summary {
  display: list-item;
}

a {
  text-decoration: none;
  display: inline-block;
}

.links {
  color: #B7471D;
  transition: 0.3s ease-in-out;
}
.links:hover {
  color: #e16c40;
}

p {
  font: 300 1.125rem Roboto, sans-serif;
  line-height: 1.6;
}

h1, h2 {
  font-family: "Roboto Slab", serif;
}

h1 {
  font-size: 2rem;
  color: #CCCCCC;
}

h2 {
  color: #B7471D;
}

.scroll-button {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transition: 0.3s ease-in-out;
}
.scroll-button img {
  height: 20px;
}
.scroll-button:hover {
  transform: scale(1.2);
}

.container {
  width: 100%;
  max-width: 80rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background: radial-gradient(transparent, #000000);
}

.version {
  color: #CCCCCC;
  font-size: 12px;
}
@media only screen and (max-width: 36em) {
  .version {
    font-size: 10px;
  }
}

.error-page {
  height: 100vh;
  background: #000 url("../images/background_dark.png") center/cover fixed no-repeat;
}
.error-page-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-page-text {
  max-width: 400px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.error-page h2 {
  color: #B7471D;
}
.error-page img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.btn {
  color: #CCCCCC;
  padding: 0.5rem 1rem;
  font: 400 1.125rem Roboto, sans-serif;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
}
.btn-outline {
  border: 1px solid #B7471D;
}
.btn-outline:hover {
  background: #752d13;
  color: #c0bab2;
  animation: ripple 0.4s;
}
.btn-full {
  border: 1px solid #B7471D;
  background: #B7471D;
}
.btn-full:hover {
  background: #752d13;
  animation: ripple 0.4s;
}

@keyframes ripple {
  0% {
    outline: 1px solid rgb(183, 71, 29);
    outline-offset: 2px;
  }
  25% {
    outline: 1px solid rgba(183, 71, 29, 0.7);
    outline-offset: 5px;
  }
  50% {
    outline: 1px solid rgba(183, 71, 29, 0.5);
    outline-offset: 8px;
  }
  75% {
    outline: 1px solid rgba(183, 71, 29, 0.3);
    outline-offset: 11px;
  }
  100% {
    outline: 1px solid rgba(183, 71, 29, 0.1);
    outline-offset: 14px;
  }
}
.nav {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  transition: 0.3s ease-in-out;
}
.nav-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 2rem;
}
@media only screen and (max-width: 36em) {
  .nav-container {
    padding: 0 2rem;
  }
}
.nav-logo {
  font-family: Roboto, sans-serif;
  color: #CCCCCC;
  font-size: 1.5rem;
}
.nav-logo i {
  color: #e16c40;
  font-size: 1.75rem;
}
@media only screen and (max-width: 36em) {
  .nav-logo {
    font-size: 1.25rem;
  }
  .nav-logo i {
    font-size: 1.5rem;
  }
}
.nav-menu {
  width: 55px;
  height: 55px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #CCCCCC;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 36em) {
  .nav-menu {
    padding-right: 0;
  }
}
.nav-menu i {
  font-size: 1.5rem;
}
.nav-menu:hover {
  color: white;
}
.nav-list {
  display: none;
  position: absolute;
  padding-top: 5rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.9);
  text-align: center;
  transition: 0.3s ease-in-out;
}
.nav-list li {
  margin: 0 10rem;
}
.nav-list-item {
  font-size: 3rem;
  color: #CCCCCC;
  display: inline-block;
  padding: 2rem 0;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}
.nav-list-item:hover {
  color: white;
  border-bottom: 1px solid #B7471D;
}

@keyframes nav-fade-in {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes nav-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-in {
  background-color: rgba(0, 0, 0, 0.9);
}

.home {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #B7471D;
  padding: 0 4rem;
}
.home-footer {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
}
.home-socials {
  display: flex;
  gap: 2.5rem;
  margin: 0 auto;
}
.home-socials-item {
  color: #9D9488;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1rem;
}
.home-socials-item i {
  font-size: 1.25rem;
}
.home-socials-item span {
  font-size: 0.875rem;
  color: transparent;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 36em) {
  .home-socials-item span {
    display: none;
  }
}
.home-socials-item:hover {
  color: #B7471D;
}
.home-socials-item:hover span {
  color: #CCCCCC;
}
@media only screen and (max-width: 36em) {
  .home-socials-item:hover span {
    display: none;
  }
}

.logo {
  width: 100%;
  height: 100%;
  max-height: 500px;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.thick-outer-c {
  animation: counterRotate 60s linear infinite;
  transform-origin: center;
}

.thin-outer-c {
  animation: rotate 40s linear infinite;
  transform-origin: center;
}

.text-circle {
  animation: counterRotate 20s linear infinite;
  transform-origin: center;
}

.thin-inner-c {
  animation: rotate 5s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes counterRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.about {
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  background: #9D9488;
}
.about h2 {
  text-align: center;
}
@media only screen and (max-width: 36em) {
  .about h2 {
    padding: 0 5rem;
  }
}
.about-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
}
.about-container p {
  color: #18262D;
}

.services {
  padding: 9rem 2rem;
  background: #000 url("../images/background_dark.png") center/cover fixed no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}
.services h2 {
  text-align: center;
}
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.card {
  flex: 1 1 300px;
  width: 100%;
  max-width: 350px;
  padding: 1rem;
  color: #434247;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  border: 1px solid #18262D;
  border-radius: 10px;
  background: linear-gradient(#18262D, transparent);
  transition: 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-20px);
  border: 1px solid #B7471D;
  animation: fade-in 0.3s forwards;
  color: #CCCCCC;
}
.card:hover i {
  color: #B7471D;
}
.card-icon {
  padding: 1rem 0;
}
.card-icon i {
  font-size: 2rem;
}
.card-title {
  font: 700 1.25rem "Roboto Slab", serif;
}
.card-list-item {
  font: 300 1.125rem Roboto, sans-serif;
  margin-bottom: 1rem;
}
.card-subtitle {
  font: 700 1.25rem "Roboto Slab", serif;
}

@keyframes fade-in {
  to {
    background: linear-gradient(#18262D, rgba(183, 71, 29, 0.5));
  }
}
.footer {
  padding: 1rem 2rem;
  position: fixed;
  bottom: 0;
  left: 0;
}

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