/* CSS Document */
/* Google font (You can also link this in the HTML instead) */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
:root {
  --primary: #fff;
  --secondary: #DD7870;
  --accent: #B1FEFE;
  --offset-value: 30;
  --btn-size: 75;
  --green: #4ECA78;
}

* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(90deg, #2c2c2e, #151517);
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo {
  display: inline-block;
  max-height: 3em;
  margin: 0.35em;
}

.brand {
  display: inline-block;
  font-size: 2em;
  font-weight: 600;
  padding-left: 0.5em;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

p {
  max-width: 50em;
  font-size: 1em;
  letter-spacing: 2px;
  line-height: 26px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary);
}

h1, h2, h3, h4, a {
  color: var(--primary);
}

/*===== Carousel =====*/
.carousel {
  display: flex;
  overflow: hidden;
  position: relative;
}

.container-c {
  width: fit-content;
  max-height: 90vh;
  margin: auto;
  justify-content: start;
  align-items: center;
  border-radius: 50px;
}

.slide-c {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 85vh;
  position: relative;
}

.slide-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.text-c {
  position: absolute;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: rgba(0, 0, 0, 0.3);
  color: var(--primary);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prev-c,
.next-c {
  cursor: pointer;
  width: 100%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  margin: 10px 0;
  text-align: center;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*=====================================*/
/*=====================================*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2c2c2c;
  color: #f6f6f6;
  z-index: 99;
}

nav a {
  text-decoration: none;
  color: #d3d3d3;
  transition: 0.3s;
  cursor: pointer;
}

nav a:hover {
  color: #fff;
}

nav .link:hover {
  color: var(--secondary);
}

nav .container {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 1.5em;
}

nav .menu {
  padding: 0;
  margin: 0;
  border-radius: 1em;
  opacity: 90%;
}

nav .menu li {
  display: inline-block;
  margin: 0 0.7em;
}

nav .nav-btn {
  width: 2.5em;
  height: 2.5em;
  display: none;
  position: relative;
  cursor: pointer;
}

nav .nav-btn::before {
  font-family: "FontAwesome";
  content: "\f0c9  ";
  position: absolute;
  top: 0;
  left: 0;
  background: #2c2c2c;
  color: #666666;
  width: 100%;
  height: 100%;
  font-size: 2.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

nav .nav-btn:hover:before {
  color: #fff;
}

@media screen and (max-width: 900px) {
  nav .nav-btn:checked + .menu {
    right: 0;
    overflow-y: scroll;
  }
  nav .nav-btn:checked:before {
    content: "\f00d  ";
  }
  nav .menu {
    position: absolute;
    top: 4.7em;
    right: -12em;
    width: 12em;
    height: calc(100vh - 4.7em);
    background: #1f1f1f;
    padding: 0 1.5em;
    overflow-x: hidden;
    transition: 0.7s;
  }
  nav .menu li {
    display: block;
    margin: 1em 0;
  }
  nav .menu li:nth-child(1) {
    margin-top: 1.5em;
  }
  nav .nav-btn {
    display: block;
  }
  .menu::-webkit-scrollbar {
    width: 10px;
    background: #181818;
  }
  .menu::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
  }
}
/*=====================================*/
/*=====================================*/
/* =======
WRAPPER
======= */
.wrapper {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  position: relative;
}

/* =====================
NAVIGATION BACKGROUND
===================== */
#nav-bg {
  transform-origin: center center;
  transition: transform 0.3s;
  transform: translate(var(--translate-x), var(--translate-y)) scale(var(--scale));
  will-change: transform;
  pointer-events: none;
}

/* ==========
NAVIGATION
========== */
.nav-fl {
  width: 100%;
  height: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  z-index: 200;
  pointer-events: none;
}

.nav-fl .ul-fl {
  margin: auto;
  pointer-events: auto;
  text-align: center;
}

.nav-fl .li-fl {
  font-size: 30px;
  color: #212121;
  user-select: none;
  transform: translate(-20px, 20px) scale(0.9);
  transition: 0s;
  opacity: 0.0001;
  visibility: hidden;
  will-change: transform;
}

nav .li-fl + .li-fl {
  margin-top: 30px;
}

#toggle-btn.shown ~ .wrapper .nav-fl .li-fl {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition: 0.35s cubic-bezier(0.4, 2.08, 0.55, 1);
}

#toggle-btn.shown ~ .wrapper .nav-fl .li-fl:nth-child(1) {
  transition-delay: 0.15s;
}

#toggle-btn.shown ~ .wrapper .nav-fl .li-fl:nth-child(2) {
  transition-delay: 0.125s;
}

#toggle-btn.shown ~ .wrapper .nav-fl .li-fl:nth-child(3) {
  transition-delay: 0.1s;
}

/* ============
LINK EFFECT
============ */
.link {
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.link:before,
.link:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 50%;
  background: var(--secondary);
  top: calc(50% + 2px);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0, 1);
}

.link:before {
  left: 0;
  transform: translateX(calc(-100% - 10px)) scaleX(0);
  transform-origin: left;
}

.link:after {
  right: 0;
  transform: translateX(calc(100% + 10px)) scaleX(0);
  transform-origin: right;
}

.link:hover:before {
  transform: translateX(calc(-100% - 10px)) scaleX(1);
  transform-origin: right;
}

.link:hover:after {
  transform: translateX(calc(100% + 10px)) scaleX(1);
  transform-origin: left;
}

/* =======
CONTENT
======= */
#content {
  display: flex;
  height: 100%;
}

#content h1 {
  font-size: calc(4vmin + 1em);
  text-align: center;
  margin: auto;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Usual suspects */
html, body {
  height: 100%;
}

.link {
  color: var(--secondary);
  transition: 0.2s ease-in-out;
}

.ul-fl .li-fl {
  padding: 0;
  list-style: none;
}

/*=====================================*/
/*=====================================*/
header {
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10vh;
}

header > div {
  background: rgba(0, 0, 0, 0.7);
  max-width: 90vw;
  padding: 1em 1em;
  box-sizing: content-box;
  border: 1px solid #2b2b2b;
}

header h1 {
  letter-spacing: 2px;
  font-size: 3.5em;
  margin: 0;
}

header h3 {
  letter-spacing: 2px;
  font-size: 1em;
  margin: 0;
}

header h4 {
  letter-spacing: 2px;
  font-size: 0.8em;
  margin: 5px;
}

header p {
  line-height: 28px;
  margin-bottom: 2em;
}

.btn {
  text-decoration: none;
  padding: 0.4em 1.3em;
  background: #fff;
  border: 3px #fff solid;
  border-radius: 8px;
  color: #000;
  letter-spacing: 1px;
  font-size: 1em;
  transition: 0.3s;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  margin-left: 1em;
}

.btn:hover {
  background: rgba(209, 209, 209, 0.5);
}

@media screen and (max-width: 900px), (max-height: 500px) {
  header {
    text-align: center;
  }
  .slide-c {
    height: 75vh;
  }
  header > div {
    width: 100%;
    margin: 0 2em;
  }
}
/*=====================================*/
/*=====================================*/
.heading {
  padding: 2em 2em;
  text-align: center;
}

.heading h1 {
  font-size: 2.4em;
  margin: 0;
  letter-spacing: 1px;
}

.heading .hr {
  margin: 0.4em auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading .hr .hr-line {
  background: #7e7e7e;
  display: inline-block;
}

.heading .hr small {
  color: #dbdbdb;
  margin: 0 4px;
}

.heading .hr .hr-line {
  width: 2em;
  height: 1px;
}

.services {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 1em 2em 1em;
  color: #fff;
}

.item {
  padding: 2em;
  margin: 1em;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
}

.item p {
  max-width: 30em;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2em 3em;
}

.about .text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em;
}

.about img {
  width: 35em;
}

@media screen and (max-width: 980px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about img {
    margin: 0 auto;
    width: 90%;
  }
  .about-second .text {
    order: 1;
  }
  .about-second img {
    order: 2;
  }
}
/*=====================================*/
/*=====================================*/
.blog {
  max-width: 800px;
  padding: 2em;
  margin: auto auto;
}

.blog-post {
  display: flex;
  justify-content: space-between;
  background: #080808;
  margin: 3em auto;
  border-radius: 8px;
  box-shadow: 0px 0px 5px 1px #000;
  overflow: hidden;
  color: #fff;
  border: 1px solid #2b2b2b;
}

.blog-post img {
  width: 33%;
  object-fit: cover;
}

.blog-post .blog-post-content {
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-post .categories a {
  margin: 0 0.2em;
}

.blog-post .categories a:hover {
  text-decoration: underline;
}

.blog-post h2 {
  margin: 0.2em 0 0 0;
  font-size: 2em;
}

.blog-post a {
  text-decoration: none;
  font-size: 1.1em;
  letter-spacing: 1px;
  padding: 0.3em 0;
}

.blog-post .blog-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 576px) {
  .card {
    width: 350px;
    margin: auto 31vh;
  }
}
@media screen and (max-width: 680px) {
  .blog-post {
    flex-direction: column;
    text-align: center;
    align-content: center;
    width: 25em;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-post img {
    width: 100%;
  }
  .blog-post .blog-post-content {
    padding: 1.5em;
  }
  .blog-post .blog-post-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .blog-post .blog-post-footer {
    flex-direction: column;
  }
  .blog-post-content {
    padding: 1em 1em 0 1em;
  }
  .blog-post-content .btn {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 500px) {
  .blog-post {
    width: 100%;
  }
}
/*=====================================*/
/*=====================================*/
.map {
  filter: grayscale(100%) invert(95%);
}

footer .footer-top {
  padding: 3em 2em;
  background: #2c2c2c;
  display: grid;
  justify-items: center;
  grid-gap: 2em;
  align-items: start;
  grid-template-columns: 3fr 2fr 2fr 3fr;
  color: #fff;
  position: relative;
}

footer .f-col-3 .contact-info-item {
  margin-bottom: 1em;
  color: #c4c4c4;
}

footer .f-col-3 .icon {
  font-size: 1.4em;
  display: inline-block;
  align-self: start;
}

footer .f-col-3 span {
  margin-left: 0.6em;
  align-self: center;
}

footer .f-col-1 {
  justify-self: start;
}

footer .f-col-4 {
  justify-self: end;
}

footer .footer-bottom {
  background: #151617;
  padding: 1em 2em;
  text-align: center;
  color: #6b6d74;
  font-size: 0.9em;
  letter-spacing: 1px;
}

@media screen and (max-width: 1050px) {
  footer {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  footer {
    font-size: 16px;
  }
  footer .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer .f-col-1, footer .f-col-4 {
    justify-self: center;
  }
} /*# sourceMappingURL=main.css.map */