  :root {
  /*========== Colors ==========*/
  --first-color: hsl(180, 17%, 98%);

  /*========== z index ==========*/
  --z-tooltip: 10;
}     
       
       *{
          padding: 0;
          margin: 0;
          box-sizing: border-box;
        }

        body{
          background-color: #52a3b6;
          color: hsl(0, 0%, 100%);
          font-family: "Poppins", sans-serif;
          overflow-x: hidden;
        }

        .section{
          display: grid;
          grid-template-columns: 1fr 1fr;
          align-items: center;
        }

        .image-box{
          height: 800px;
          overflow: hidden;
        }

        .img{
          width: 100%;
          height: 100%;
          object-fit: fill;
        }

        .content-box{
          padding-inline: 5em;
        }

        .title{
          font-size: 4em;
          max-width: max-content;
          margin-block-end: 0.25em;
        }

        .text{
          opacity: 0.6;
          line-height: 2.25;
        }

        [data-reveal="left"]{
          transform: translateX(-100%);
          opacity: 0;
        }

        [data-reveal="left"].revealed{
          animation: reveal-left 1.2s cubic-bezier(0.17, 0.97, 0.38, 1) forwards 300ms;
        }

        @keyframes reveal-left{
          0% {
            transform: translateX(-100%);
            opacity: 0;
          }
          100% {
            transform: translateX(0);
            opacity: 1;
          }
        }

        [data-reveal="right"]{
          transform: translateX(100%);
          opacity: 0;
        }

        [data-reveal="right"].revealed{
          animation: reveal-right 1.2s cubic-bezier(0.17, 0.97, 0.38, 1) forwards 300ms;
        }

        @keyframes reveal-right{
          0% {
            transform: translateX(100%);
            opacity: 0;
          }
          100% {
            transform: translateX(0);
            opacity: 1;
          }
        }

        .image-box .img{
          transform: scale(1.5);
          transition: 1.2s cubic-bezier(0.17, 0.97, 0.38, 1);
        }

        .image-box.revealed .img{
          transform: scale(1);
        }

        @media only screen and (max-width: 768px) {
        .section {
        grid-template-columns: 1fr;
        text-align: center;
        }
        .title {
        font-size: 3em;
        }
        .content-box {
        padding: 2em;
        }
        }

        @media only screen and (max-width: 480px) {
        .title {
        font-size: 2em;
        }
        .text {
        font-size: 0.8em;
        }
        }

/* Floating Menu */

.fab {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  transition: 0.25s;
}
.fab.active .fabTrigger {
  transform: scale(1);
}
.fab.active .fabTrigger .icon {
  background: transparent;
  transition: background 0.3s ease;
}
.fab.active .fabTrigger .icon, .fab.active .fabTrigger .icon:before, .fab.active .fabTrigger .icon:after {
  height: 3px;
}
.fab.active .fabTrigger .icon:before, .fab.active .fabTrigger .icon:after {
  width: 20px;
  transform-origin: 50% 50%;
  transition: all 100ms ease, width 100ms 100ms ease, transform 300ms 200ms cubic-bezier(0.28, 0.55, 0.385, 1.65);
}
.fab.active .fabTrigger .icon:before {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.fab.active .fabTrigger .icon:after {
  right: 50%;
  transform: translateX(50%) rotate(-45deg);
}
.fab.active .fabNav a {
  opacity: 1;
  visibility: visible;
  transition: 0.35s cubic-bezier(0.4, 2.08, 0.55, 1);
}
.fab .fabTrigger {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  color: #FFF;
  cursor: pointer;
  outline: none;
  border: 0;
  border-radius: 100px;
  background: #fff;
  transform: scale(0.675);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 0 rgba(108, 46, 185, 0.2);
  transition: 0.35s cubic-bezier(0.4, 2.08, 0.55, 1);
}
.fab .fabTrigger .icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}
.fab .fabTrigger .icon, .fab .fabTrigger .icon:before, .fab .fabTrigger .icon:after {
  position: absolute;
  display: block;
  background: #000;
  width: 6px;
  height: 6px;
  border-radius: 10px;
}
.fab .fabTrigger .icon:before, .fab .fabTrigger .icon:after {
  content: "";
  transition: all 100ms ease, right 100ms 100ms ease, left 100ms 100ms ease;
}
.fab .fabTrigger .icon:before {
  left: -11px;
  transform: translateX(-50%);
}
.fab .fabTrigger .icon:after {
  right: -11px;
  transform: translateX(50%);
}
.fab .fabNav {
  display: flex;
  align-items: center;
}
.fab .fabNav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  width: 40px;
  height: 40px;
  font-family: "Noto Sans", sans-serif;
  outline: none;
  border: 0;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 0 rgba(108, 46, 185, 0.2);
  opacity: 0.0001;
  visibility: hidden;
  will-change: transform;
  transition: 0.35s cubic-bezier(0.4, 2.08, 0.55, 1);
}
.fab .fabNav a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #fff;
  transition: 0.25s;
}
.fab .fabNav a i {
  color: #000;
  transition: 0.25s;
}
.fab .fabNav a:hover:before {
  background-color: #000;
}
.fab .fabNav a:hover i {
  color: #fff;
}
.fab .fabNav a:hover .fabTooltip {
  opacity: 1;
  visibility: visible;
}
.fab .fabTooltip {
  position: absolute;
  z-index: -2;
  width: 90px;
  padding: 5px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  cursor: default;
  pointer-events: none;
  transition: 0.5s;
}

.fabHorizontal {
  flex-direction: row;
  bottom: 10px;
  left: 65.9%;
  transform: translate(-50%, 0);
}
.fabHorizontal.active .fabNav.fabNav--left a {
  left: -505px;
  transform: scale(1) translateX(0);
}
.fabHorizontal.active .fabNav.fabNav--right a {
  right: -80px;
  transform: scale(1) translateX(0);
}
.fabHorizontal .fabTrigger {
  margin: 0 12px;
}
.fabHorizontal .fabNav {
  flex-direction: row;
}
.fabHorizontal .fabNav a:hover .fabTooltip {
  top: -100%;
  transform: translate(-50%, 50%) scale(1);
}
.fabHorizontal .fabNav.fabNav--left a {
  left: 45px;
  transform: scale(0.8) translateX(10px);
}
.fabHorizontal .fabNav.fabNav--left a:nth-child(1) {
  transition-delay: 0.3s;
}
.fabHorizontal .fabNav.fabNav--left a:nth-child(2) {
  transition-delay: 0.2s;
}
.fabHorizontal .fabNav.fabNav--left a:nth-child(3) {
  transition-delay: 0.1s;
}
.fabHorizontal .fabNav.fabNav--right a {
  right: 45px;
  transform: scale(0.8) translateX(-10px);
}
.fabHorizontal .fabNav.fabNav--right a:nth-child(1) {
  transition-delay: 0.1s;
}
.fabHorizontal .fabNav.fabNav--right a:nth-child(2) {
  transition-delay: 0.2s;
}
.fabHorizontal .fabNav.fabNav--right a:nth-child(3) {
  transition-delay: 0.3s;
}
.fabHorizontal .fabTooltip {
  top: -80%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, 50%) scale(0);
}


/* Vertical */

.fabVertical {
  flex-direction: column;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
.fabVertical.active .fabNav.fabNav--left a {
  left: 0;
  transform: scale(1) translateX(0);
}
.fabVertical.active .fabNav.fabNav--right a {
  right: 0;
  transform: scale(1) translateX(0);
}
.fabVertical .fabTrigger {
  margin: 12px 0;
}
.fabVertical .fabNav {
  flex-direction: column;
}
.fabVertical .fabNav a {
  margin: 12px 0;
}
.fabVertical .fabNav a:hover .fabTooltip {
  right: calc(100% + 10px);
  transform: translate(0, -50%) scale(1);
}
.fabVertical .fabNav.fabNav--left a {
  left: 0;
  transform: scale(0.8) translateY(10px);
}
.fabVertical .fabNav.fabNav--left a:nth-child(1) {
  transition-delay: 0.3s;
}
.fabVertical .fabNav.fabNav--left a:nth-child(2) {
  transition-delay: 0.2s;
}
.fabVertical .fabNav.fabNav--left a:nth-child(3) {
  transition-delay: 0.1s;
}
.fabVertical .fabNav.fabNav--right a {
  left: 0%;
  transform: scale(0.8) translateY(-10px);
}
.fabVertical .fabNav.fabNav--right a:nth-child(1) {
  transition-delay: 0.1s;
}
.fabVertical .fabNav.fabNav--right a:nth-child(2) {
  transition-delay: 0.2s;
}
.fabVertical .fabNav.fabNav--right a:nth-child(3) {
  transition-delay: 0.3s;
}
.fabVertical .fabTooltip {
  top: 50%;
  right: 0;
  transform-origin: center right;
  transform: translate(0, -50%) scale(0);
}


/* Custom Dot Cursor */
  
  .header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 2px;
    background-color: #52a3b6;
    transform: translateX(-50%);
  }
  
  
  @media (min-width: 800px) {
    .col {
      width: 50%;
      float: left;
   }
    .col:nth-of-type(2n+1) {
      clear: left;
   }
  }
  .col.col--full {
    width: 100%;
  }
  html, body, html *, body * {
    cursor: none;
  }
  .cursor-dot, .cursor-dot-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #b65252;
  }
  .cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(200, 125, 129, 0.5);
  }

  /* Mouse Scroll Animation */

  *, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
 }


.mouse_scroll {
  position: absolute;
	display: block;
	margin: 0 auto;
	width: 24px;
}

.mouse {
  display: flex;
  position: fixed;
  height: 42px;
  width: 24px;
  left: 660px;
  top: 60px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  
}

.wheel {
  display: flex;
  height: 5px;
  width: 2px;
  margin: 5px auto;
  background: white;
  position: relative; 
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}


/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 3rem;
  background-color:var(--first-color);
  box-shadow: 0 4px 12px hsla(19, 67%, 24%, 0.1);
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 0.25rem;
  font-size: 1.1rem;
  color:#52a3b6;
  z-index: var(--z-tooltip);
  transition: bottom 0.3s, transform 0.3s, background 0.4s;
}

a {
  text-decoration: none;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
}
/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

.scrollup {
    right: 1.8rem;
  }