@import url("https://fonts.googleapis.com/css2?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");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,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");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

::-webkit-scrollbar {
  background-color: inherit;
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: #141414;
  border-radius: 30px;
}

body {
  background-color: #fffffc;
  color: #141414;
  position: relative;
  margin-bottom: 500px;
}
@media only screen and (min-width: 2000px) {
  body {
    margin-bottom: 600px;
  }
}
@media only screen and (min-width: 2500px) {
  body {
    margin-bottom: 650px;
  }
}
@media only screen and (max-width: 820px) {
  body {
    margin-bottom: 600px;
  }
}
body::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: 2;
  background-color: #fffffc;
  background-image: radial-gradient(at 81% 65%, rgb(250, 248, 243) 0px, transparent 50%), radial-gradient(at 95% 99%, rgb(255, 240, 222) 0px, transparent 50%), radial-gradient(at 48% 26%, rgb(255, 255, 246) 0px, transparent 50%), radial-gradient(at 75% 26%, rgb(241, 234, 228) 0px, transparent 50%);
  background-size: 500% 500%;
  animation: gradient 9s ease infinite;
  animation-duration: 9s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: gradient;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
img {
  width: 100%;
}

.page-overlay {
  background-color: #141414;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  transition: all 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1000px) {
  .page-overlay {
    background-size: 10%;
  }
}
@media only screen and (max-width: 600px) {
  .page-overlay {
    background-size: 20%;
  }
}
@media only screen and (max-width: 300px) {
  .page-overlay {
    background-size: 25%;
  }
}
.page-overlay.page-load {
  height: 0;
}

.menu-overlay {
  background-color: #141414;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5%;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 6;
  transition: all 1s ease-in-out;
}
@media only screen and (max-width: 1000px) {
  .menu-overlay {
    background-size: 10%;
  }
}
@media only screen and (max-width: 600px) {
  .menu-overlay {
    background-size: 20%;
  }
}
@media only screen and (max-width: 300px) {
  .menu-overlay {
    background-size: 25%;
  }
}
.menu-overlay.page-load {
  height: 100%;
}

.container {
  width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 1700px) {
  .container {
    width: 1640px;
  }
}
@media only screen and (min-width: 2000px) {
  .container {
    width: 1920px;
  }
}
@media only screen and (min-width: 2500px) {
  .container {
    width: 2400px;
  }
}
@media only screen and (max-width: 1420px) {
  .container {
    width: 95%;
  }
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 30px;
  z-index: 5;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header .blog-link {
  background-color: #fffffc;
  padding: 5px 10px;
  font-size: 20px;
  border-radius: 2px;
  margin-top: 10px;
}
header #hamburger {
  width: 60px;
  padding: 5px;
  cursor: pointer;
  background-color: #fffffc;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1700px) {
  header #hamburger {
    width: 70px;
  }
}
header #hamburger:hover {
  background-color: #fffffc;
}
header #hamburger:hover div:nth-of-type(2) {
  width: 75%;
}
header #hamburger:hover div:nth-of-type(3) {
  width: 50%;
}
header #hamburger div {
  background-color: #141414;
  height: 2px;
  border-radius: 30px;
  transition: all 0.5s ease;
  width: 100%;
}
header #hamburger div:nth-of-type(1) {
  height: 3px;
}
header #hamburger div:nth-of-type(2) {
  height: 2px;
  margin: 5px 0 7px 0;
}
@media only screen and (min-width: 1700px) {
  header #hamburger div:nth-of-type(2) {
    margin: 6px 0 8px 0;
  }
}
header #hamburger div:nth-of-type(3) {
  height: 1px;
  width: 75%;
}

#menu {
  position: fixed;
  background-color: #fffffc;
  height: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: all 1s ease-in-out;
}
#menu.menu-open {
  height: 100%;
}
#menu .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}
@media only screen and (max-width: 900px) {
  #menu .container {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 680px) {
  #menu .container {
    display: grid;
    grid-template-columns: 0.5fr 3fr;
    grid-gap: 10px;
  }
}
#menu .social-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
}
#menu .social-links.menu-open span,
#menu .social-links.menu-open a {
  transform: translateY(0);
}
#menu .social-links div {
  overflow: hidden;
}
#menu .social-links .mobile {
  display: none;
}
@media only screen and (max-width: 680px) {
  #menu .social-links .mobile {
    display: block;
    font-size: 20px;
  }
}
#menu .social-links span,
#menu .social-links a {
  text-transform: uppercase;
  font-size: 20px;
  color: #141414;
  letter-spacing: 4px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 1.5s ease;
  transform: translateY(100%);
}
#menu .social-links span:hover,
#menu .social-links a:hover {
  color: #ffa500;
}
@media only screen and (min-width: 1700px) {
  #menu .social-links span,
  #menu .social-links a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  #menu .social-links span,
  #menu .social-links a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 680px) {
  #menu .social-links span,
  #menu .social-links a {
    display: none;
  }
}
#menu .social-links i {
  transition: all 0.5s ease;
}
#menu nav {
  border-left: 1px solid #e9e9e9;
  padding-left: 100px;
}
@media only screen and (min-width: 2500px) {
  #menu nav {
    padding-left: 150px;
  }
}
@media only screen and (max-width: 1100px) {
  #menu nav {
    padding-left: 60px;
  }
}
@media only screen and (max-width: 900px) {
  #menu nav {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 760px) {
  #menu nav {
    padding-left: 60px;
  }
}
@media only screen and (max-width: 680px) {
  #menu nav {
    padding-left: 120px;
  }
}
@media only screen and (max-width: 600px) {
  #menu nav {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 500px) {
  #menu nav {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 400px) {
  #menu nav {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 300px) {
  #menu nav {
    padding-left: 15px;
  }
}
#menu nav.menu-open .nav-link .line {
  opacity: 1;
}
#menu nav.menu-open .nav-link span {
  transform: translateY(0);
}
#menu nav .nav-link {
  margin-top: 40px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media only screen and (max-width: 400px) {
  #menu nav .nav-link {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 300px) {
  #menu nav .nav-link {
    margin-top: 20px;
  }
}
#menu nav .nav-link:hover {
  color: orange;
}
#menu nav .nav-link:hover .line {
  width: 100%;
  background-color: orange;
}
#menu nav .nav-link .line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #141414;
  width: 25%;
  transition: all 0.5s ease;
  opacity: 0;
}
#menu nav .nav-link span {
  font-size: 40px;
  transition: transform 1.5s ease;
  transform: translateY(100%);
}
@media only screen and (min-width: 1700px) {
  #menu nav .nav-link span {
    font-size: 60px;
  }
}
@media only screen and (min-width: 2500px) {
  #menu nav .nav-link span {
    font-size: 80px;
  }
}
@media only screen and (max-width: 500px) {
  #menu nav .nav-link span {
    font-size: 35px;
  }
}
@media only screen and (max-width: 400px) {
  #menu nav .nav-link span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 300px) {
  #menu nav .nav-link span {
    font-size: 26px;
  }
}

section {
  padding: 100px 0;
  position: relative;
  z-index: 3;
  overflow-x: hidden;
}
@media only screen and (max-width: 1000px) {
  section {
    padding: 40px 0;
  }
}
section h2 {
  width: 70%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1700px) {
  section h2 {
    width: 90%;
  }
}
@media only screen and (min-width: 2500px) {
  section h2 {
    width: 85%;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1420px) {
  section h2 {
    width: 80%;
  }
}
@media only screen and (max-width: 800px) {
  section h2 {
    width: 90%;
  }
}
@media only screen and (max-width: 650px) {
  section h2 {
    width: 100%;
  }
}
section.hero-section {
  padding: 200px 0 100px 0;
}
@media only screen and (max-width: 780px) {
  section.hero-section {
    padding: 100px 0 50px 0;
  }
}
section.hero-section.page-load .frame {
  transform: translateY(0);
  opacity: 1;
}
section.hero-section .title span {
  font-size: inherit;
}
section.hero-section .frame {
  height: 1000px;
  width: 100%;
  transform: translateY(100px);
  margin: 20px auto 0 auto;
  transition: all 1.2s ease;
  opacity: 0.5;
  border-radius: 0;
}
section.hero-section .frame.on-scroll {
  width: 1400px;
  border-radius: 5px;
}
section.hero-section .frame img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1700px) {
  section.hero-section .frame {
    height: 1400px;
  }
  section.hero-section .frame.on-scroll {
    width: 1640px;
  }
}
@media only screen and (min-width: 2000px) {
  section.hero-section .frame {
    height: 1500px;
  }
  section.hero-section .frame.on-scroll {
    width: 1920px;
  }
}
@media only screen and (min-width: 2500px) {
  section.hero-section .frame {
    height: 1800px;
  }
  section.hero-section .frame.on-scroll {
    width: 2400px;
  }
}
@media only screen and (max-width: 1420px) {
  section.hero-section .frame.on-scroll {
    width: 95%;
  }
}
@media only screen and (max-width: 900px) {
  section.hero-section .frame.on-scroll {
    width: 100%;
  }
}
@media only screen and (min-height: 1200px) {
  section.hero-section .frame {
    height: 940px;
  }
}
@media only screen and (max-width: 900px) and (max-height: 950px) {
  section.hero-section .frame {
    height: 680px;
  }
}
@media only screen and (max-width: 500px) and (max-height: 900px) {
  section.hero-section .frame {
    height: 620px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
  font-weight: 400;
}
h1 span,
h2 span,
h3 span,
h4 span {
  font-family: inherit;
  font-size: inherit;
  line-height: 0.9;
}

h1 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 100px;
  word-spacing: 5px;
  line-height: 1;
  margin-top: 30px;
}
h1 .heading-reveal {
  display: inline-block;
  overflow: hidden;
}
h1 .heading-reveal.reveal span {
  transform: translateY(0);
}
h1 .heading-reveal span {
  display: inline-block;
  transform: translateY(100%);
  transition: all 1s ease;
}
@media only screen and (min-width: 1700px) {
  h1 {
    font-size: 130px;
  }
}
@media only screen and (min-width: 2000px) {
  h1 {
    font-size: 140px;
  }
}
@media only screen and (min-width: 2500px) {
  h1 {
    font-size: 160px;
  }
}
@media only screen and (max-width: 1100px) {
  h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 900px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-top: 0;
  }
}
@media only screen and (max-width: 500px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 420px) {
  h1 {
    font-size: 47px;
  }
}
@media only screen and (max-width: 400px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 40px;
}
@media only screen and (min-width: 1700px) {
  h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 2000px) {
  h2 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 2500px) {
  h2 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1100px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 650px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 30px;
}
@media only screen and (min-width: 1700px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 2000px) {
  h3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 2500px) {
  h3 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1100px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 650px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px !important;
  text-transform: uppercase;
  letter-spacing: 4px;
}

p {
  font-size: 18px;
  line-height: 1.35;
}
@media only screen and (min-width: 1700px) {
  p {
    font-size: 26px;
  }
}
@media only screen and (min-width: 2000px) {
  p {
    font-size: 32px;
  }
}
@media only screen and (min-width: 2500px) {
  p {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1100px) {
  p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 650px) {
  p {
    font-size: 16px;
  }
}
p span {
  font-family: inherit;
  font-size: inherit;
  line-height: 0.9;
}

span,
a {
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
}
@media only screen and (min-width: 1700px) {
  span,
  a {
    font-size: 24px;
  }
}
@media only screen and (min-width: 2000px) {
  span,
  a {
    font-size: 32px;
  }
}
@media only screen and (min-width: 2500px) {
  span,
  a {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1100px) {
  span,
  a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 650px) {
  span,
  a {
    font-size: 16px;
  }
}

.cta-link {
  font-size: 24px;
  letter-spacing: 1px;
  color: #141414;
  position: relative;
  padding: 0 5px 5px 5px;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media only screen and (min-width: 1700px) {
  .cta-link {
    font-size: 34px;
  }
}
@media only screen and (min-width: 2000px) {
  .cta-link {
    font-size: 40px;
  }
}
@media only screen and (min-width: 2500px) {
  .cta-link {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1100px) {
  .cta-link {
    font-size: 20px;
  }
}
.cta-link:hover {
  color: orange;
}
.cta-link:hover span {
  background-color: orange;
  width: 100%;
}
.cta-link:hover .lni-arrow-right {
  transition: all 0.3s ease-in-out;
  margin-left: 20px;
  color: orange;
  opacity: 1;
}
.cta-link span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #141414;
  width: 20%;
  height: 1px;
  transition: all 0.5s ease;
}
.cta-link .lni-arrow-right {
  font-size: 75%;
  opacity: 0;
}
@media only screen and (max-width: 700px) {
  .cta-link .lni-arrow-right {
    opacity: 1;
  }
}

span.title {
  display: block;
  overflow: hidden;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 900;
  margin-bottom: 15px;
}
@media only screen and (min-width: 2000px) {
  span.title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  span.title {
    font-size: 12px;
  }
}
span.title span {
  font-size: inherit;
  font-weight: inherit;
}
span.highlight {
  color: orange;
}

.blog-link {
  cursor: pointer;
}

.blog-section ::-webkit-scrollbar {
  height: 1px;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 810px) {
  .blog-section .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.blog-section .blog-grid .article {
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(20, 20, 20, 0.3960784314);
}
.blog-section .blog-grid .article:hover .image img {
  transform: scale(1.1);
}
.blog-section .blog-grid .article .image {
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
}
.blog-section .blog-grid .article .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s ease-in-out;
}
@media only screen and (min-width: 1700px) {
  .blog-section .blog-grid .article .image {
    height: 450px;
  }
}
@media only screen and (min-width: 2000px) {
  .blog-section .blog-grid .article .image {
    height: 500px;
  }
}
@media only screen and (min-width: 2500px) {
  .blog-section .blog-grid .article .image {
    height: 550px;
  }
}
@media only screen and (max-width: 1100px) {
  .blog-section .blog-grid .article .image {
    height: 360px;
  }
}
@media only screen and (max-width: 700px) {
  .blog-section .blog-grid .article .image {
    height: 340px;
  }
}
@media only screen and (max-width: 650px) {
  .blog-section .blog-grid .article .image {
    height: 250px;
  }
}
.blog-section .blog-grid .article .content {
  padding: 20px 10px;
}
@media only screen and (max-width: 500px) {
  .blog-section .blog-grid .article .content {
    padding: 10px;
  }
}
.blog-section .blog-grid .article .content h3 {
  white-space: wrap;
  margin-bottom: 10px;
  font-weight: 600;
  overflow: hidden;
  white-space: wrap;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blog-section .blog-grid .article .content p {
  display: none;
  overflow: hidden;
  white-space: wrap;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog-section .blog-grid .article .content p:first-of-type {
  display: -webkit-box;
}
.blog-section .blog-grid .article .content ul,
.blog-section .blog-grid .article .content ol,
.blog-section .blog-grid .article .content h3 {
  display: none;
}

footer {
  background-color: #141414;
  color: #fffffc;
  padding: 100px 0 50px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
footer .footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media only screen and (max-width: 820px) {
  footer .footer-grid {
    display: block;
  }
}
footer .copy .logo-img {
  width: 60px;
  display: block;
}
@media only screen and (min-width: 2000px) {
  footer .copy .logo-img {
    width: 100px;
  }
}
@media only screen and (max-width: 1100px) {
  footer .copy .logo-img {
    width: 50px;
  }
}
footer .copy a {
  font-size: 40px;
  color: #fffffc;
  margin: 40px 0;
}
@media only screen and (min-width: 2000px) {
  footer .copy a {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1100px) {
  footer .copy a {
    font-size: 30px;
  }
}
@media only screen and (max-width: 820px) {
  footer .copy a {
    margin: 40px 0 20px 0;
  }
}
@media only screen and (max-width: 340px) {
  footer .copy a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 300px) {
  footer .copy a {
    font-size: 20px;
  }
}
footer .copy span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  font-size: 14px;
}
@media only screen and (min-width: 2000px) {
  footer .copy span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  footer .copy span {
    font-size: 10px;
  }
}
footer .social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media only screen and (max-width: 1100px) {
  footer .social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 820px) {
  footer .social-links {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #666;
  }
}
@media only screen and (max-width: 520px) {
  footer .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 300px) {
  footer .social-links {
    display: block;
  }
}
footer .social-links a,
footer .social-links .cta-link {
  text-transform: uppercase;
  color: #fffffc;
  transition: all 0.3s ease;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 16px;
}
@media only screen and (min-width: 2000px) {
  footer .social-links a,
  footer .social-links .cta-link {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1100px) {
  footer .social-links a,
  footer .social-links .cta-link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 300px) {
  footer .social-links a,
  footer .social-links .cta-link {
    display: block;
    margin-bottom: 24px;
  }
  footer .social-links a:last-child,
  footer .social-links .cta-link:last-child {
    margin: 0;
  }
}
footer .social-links a i,
footer .social-links .cta-link i {
  margin-right: 10px;
}
footer .bottom {
  border-top: 1px solid #424242;
  margin-top: 40px;
  padding-top: 20px;
}
footer .bottom .cta-link {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #fffffc;
  letter-spacing: 1px;
  opacity: 0.7;
  transition: all 0.3s ease;
}
footer .bottom .cta-link:first-child {
  margin-right: 50px;
}
footer .bottom .cta-link:hover {
  opacity: 1;
}

.text-reveal {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
}
.text-reveal.reveal {
  line-height: 1.1;
}
.text-reveal.reveal span {
  transform: translateY(0);
}
.text-reveal span {
  transform: translateY(100%);
  transition: all 1.2s ease-in-out;
}

.page-overlay,
.menu-overlay {
  background-image: url("./assets/img/yello-garden-WHITE.png");
}

.work .work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px 20px;
}
@media only screen and (max-width: 900px) {
  .work .work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
}
@media only screen and (max-width: 820px) {
  .work .work-grid {
    display: block;
  }
}
.work .work-grid .inner-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
  grid-column: 1/3;
}
@media only screen and (max-width: 820px) {
  .work .work-grid .inner-grid {
    display: block;
  }
}
.work .work-grid .inner-grid .card {
  padding: 0;
}
@media only screen and (max-width: 820px) {
  .work .work-grid .inner-grid .card {
    margin: 0;
  }
}
.work .work-grid .text-card {
  padding-top: 10px;
}
.work .work-grid .text-card h3 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 820px) {
  .work .work-grid .text-card h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 820px) {
  .work .work-grid .text-card {
    margin-bottom: 40px;
  }
}
.work .work-grid .text-card .cta-link {
  margin-top: 40px;
}
@media only screen and (max-width: 700px) {
  .work .work-grid .text-card .cta-link {
    margin-top: 10px;
  }
}
.work .work-grid .card {
  min-height: 500px;
  border-radius: 5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 820px) {
  .work .work-grid .card:nth-of-type(1)::after {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: transparent;
  }
  .work .work-grid .card:nth-of-type(1) .content {
    opacity: 0;
  }
}
@media only screen and (min-width: 1700px) {
  .work .work-grid .card {
    min-height: 600px;
  }
}
@media only screen and (min-width: 2500px) {
  .work .work-grid .card {
    min-height: 800px;
  }
}
@media only screen and (max-width: 900px) {
  .work .work-grid .card {
    min-height: 400px;
  }
}
@media only screen and (max-width: 820px) {
  .work .work-grid .card {
    min-height: 600px;
    margin-bottom: 40px;
  }
  .work .work-grid .card::after {
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.296);
  }
  .work .work-grid .card:last-child {
    margin: 0;
  }
}
@media only screen and (max-width: 500px) {
  .work .work-grid .card {
    min-height: 300px;
    margin-bottom: 20px;
  }
}
.work .work-grid .card:hover::after {
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.581);
}
.work .work-grid .card:hover .content {
  opacity: 1;
}
.work .work-grid .card .content {
  position: absolute;
  z-index: 2;
  color: #fffffc;
  width: 70%;
  transition: all 1s ease-in-out;
  font-family: "Roboto condensed", sans-serif !important;
  opacity: 0;
}
@media only screen and (max-width: 820px) {
  .work .work-grid .card .content {
    opacity: 1;
    width: 100%;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 500px) {
  .work .work-grid .card .content {
    padding: 0 20px;
  }
}
.work .work-grid .card .content .project-name {
  display: block;
  font-size: 35px;
  font-weight: 500;
  margin: 0;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 0;
}
@media only screen and (max-width: 600px) {
  .work .work-grid .card .content .project-name {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.work .work-grid .card .content .description {
  font-size: 18px;
  display: inline-block;
}
@media only screen and (max-width: 600px) {
  .work .work-grid .card .content .description {
    font-size: 16px;
    font-weight: 400;
  }
}
.work .work-grid .card::after {
  content: "";
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  font-size: 40px;
  font-family: "roboto condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  transition: all 1s ease;
}
.work .work-grid .card#card-a {
  background-image: url("./assets/img/case/digistokvel/digistokvel-02.webp");
  background-position-x: right;
}
.work .work-grid .card#card-b {
  background-image: url("./assets/img/case/yellopay/yellopay-web-2.webp");
}
.work .work-grid .card#card-c {
  background-image: url("./assets/img/case/course-ctrl/course-ctrl-1.webp");
}
.work .work-grid .card#card-d {
  background-image: url("./assets/img/case/photobook/photobook-1.webp");
}
.work .work-grid .card#card-e {
  background-image: url("./assets/img/case/salisa/salisa-01.webp");
}

.services .images,
.about .images {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
  width: 70%;
  margin-left: 30%;
}
@media only screen and (max-width: 800px) {
  .services .images,
  .about .images {
    margin-top: 20px;
    display: block;
    width: 80%;
    margin-left: 20%;
  }
}
.services .images img,
.about .images img {
  width: 100%;
  border-radius: 5px;
}
@media only screen and (max-width: 800px) {
  .services .images img:nth-of-type(1),
  .about .images img:nth-of-type(1) {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */