@import url("ttps://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  background-color: #192338ee;
  overflow: hidden;
  height: 100vh;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  perspective: 800px;
}

.cLcbjv{
	display: none !important;
}

.branding.svelte-6myrnq a.svelte-6myrnq {
    display: none !important;
}

canvas {
  height: 100vh;
  z-index: -10;
  position: fixed;
  top: 0px;
}
::-webkit-scrollbar {
  display: none;
}

a {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
::selection {
  color: #c4c3ca;
  background-color: #000;
}
::-moz-selection {
  color: #c4c3ca;
  background-color: #000;
}

/* #Cursor
================================================== */

.cursor,
.cursor2,
.cursor3 {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  mix-blend-mode: difference;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.cursor {
  background-color: #fff;
  height: 0;
  width: 0;
  z-index: 99999;
}
.cursor2,
.cursor3 {
  height: 36px;
  width: 36px;
  z-index: 99998;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.cursor2.hover,
.cursor3.hover {
  -webkit-transform: scale(2) translateX(-25%) translateY(-25%);
  transform: scale(2) translateX(-25%) translateY(-25%);
  border: none;
}
.cursor2 {
  border: 2px solid #fff;
}
.cursor2.hover {
  background: rgba(255, 255, 255, 1);
  border-color: transparent;
}

@media screen and (max-width: 1200px) {
  .cursor,
  .cursor2,
  .cursor3 {
    display: none;
  }
}

/* #Primary style
================================================== */

.hero-section {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  height: 100vh;
  /* background-image: url('http://www.ivang-design.com/svg-load/portfolio/photo.jpg'); */
  background-size: cover;
  background-position: center;
  transform: scale(1) rotateX(0);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
  transform-origin: center top;
}
.hero-section h1 {
  color: #fff;
  font-size: 5vw;
  line-height: 1;
  font-weight: 900;
}
.hero-section .dancing {
  font-family: "Exo", sans-serif;
  letter-spacing: 2px;
  color: #fbbf24;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 580px) {
  .hero-section .dancing {
    font-size: 18px;
  }
}
.hero-section p {
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.hero-section p span {
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 35px;
}
.hero-section p span:before {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 50%;
  height: 30px;
  width: 30px;
  margin-left: -15px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-image: url("http://www.ivang-design.com/svg-load/portfolio/down.svg");
  opacity: 0.2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.hero-section p span:hover:before {
  opacity: 1;
  bottom: 5px;
}

body.about-on .hero-section {
  transform: scale(0.75);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
body.contact-on .hero-section {
  transform: scale(0.75);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
body.travel-on .hero-section {
  transform: rotateX(-10deg);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
body.wildlife-on .hero-section {
  transform: rotateX(-10deg);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
body.nature-on .hero-section {
  transform: rotateX(-10deg);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.about-text {
  position: absolute;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  top: 63.5%;
  left: 40px;
  cursor: pointer;
  z-index: 2;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  transform: translateY(-50%);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.about-text:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-image: url("http://www.ivang-design.com/svg-load/portfolio/left.svg");
  opacity: 0.2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.about-text:hover:before {
  opacity: 1;
  left: -30px;
}
.about-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  height: 100vh;
  background-color: #192338;
  transform: translateX(-100%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 10;
}
body.about-on .about-section {
  transform: translateX(0);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.about-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  display: block;
  overflow: hidden;
  height: 30px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  background-image: url("http://www.ivang-design.com/svg-load/portfolio/close.svg");
  cursor: pointer;
  z-index: 11;
}
.about-close:hover {
  transform: rotate(90deg);
}
.section-center {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.about-section img {
  width: 12em;
  /* height: 100px; */
  border-radius: 47.5%;
  display: block;
  margin: 0 auto;
  /* box-shadow: 0 0 20px rgba(0,0,0,0.15); */
}
/* .about-section p span {
    font-family: 'Dancing Script', cursive;
	letter-spacing: 1px;
	color: #866BAF;
	font-size: 25px;
	font-weight: 400;
} */

.contact-text {
  position: absolute;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  top: 53%;
  right: 40px;
  cursor: pointer;
  z-index: 2;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  transform: translateY(50%) rotate(180deg);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.contact-text:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-image: url("http://www.ivang-design.com/svg-load/portfolio/left.svg");
  opacity: 0.2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.contact-text:hover:before {
  opacity: 1;
  left: -30px;
}
.contact-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  height: 100vh;
  background-color: #192338;
  transform: translateX(-100%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 10;
}
body.contact-on .contact-section {
  transform: translateX(0);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.contact-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  display: block;
  overflow: hidden;
  height: 30px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  background-image: url("http://www.ivang-design.com/svg-load/portfolio/close.svg");
  cursor: pointer;
  z-index: 11;
}
.contact-close:hover {
  transform: rotate(90deg);
}
.about-section a {
  margin: 0 auto;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
}
.about-section .social a {
  margin-left: 8px;
  margin-right: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fbbf24;
}
@media screen and (max-width: 580px) {
  .contact-section a {
    font-size: 17px;
  }
  .contact-section .social a {
    margin-left: 3px;
    margin-right: 3px;
    font-size: 13px;
    letter-spacing: 0;
  }
}

.travel-section,
.wildlife-section,
.nature-section {
  position: fixed;
  top: 100%;
  left: 0;
  padding: 100px 0;
  width: 100%;
  height: 100vh;
  font-weight: 700;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #212e49ff;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 10;
}
.travel-close,
.wildlife-close,
.nature-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  display: block;
  overflow: hidden;
  height: 30px;
  font-weight: 700;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  background-image: url("http://www.ivang-design.com/svg-load/portfolio/close.svg");
  cursor: pointer;
  z-index: 11;
}
.travel-close:hover,
.wildlife-close:hover,
.nature-close:hover {
  transform: rotate(90deg);
}
body.travel-on .travel-section {
  top: 0;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
body.wildlife-on .wildlife-section {
  top: 0;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
body.nature-on .nature-section {
  top: 0;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
/* .travel-section img,
.wildlife-section img,
.nature-section img {
    width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
} */
.travel-section h3,
.wildlife-section h3,
.nature-section h3 {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.travel-section p,
.wildlife-section p,
.nature-section p {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1px;
}
.travel-section p span,
.wildlife-section p span,
.nature-section p span {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #866baf;
}
/* #Link to page
================================================== */

.link-to-portfolio {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  cursor: pointer;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 3px;
  background-position: center center;
  background-size: 65%;
  background-repeat: no-repeat;
  background-image: url("https://assets.codepen.io/1462889/fcy.png");
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: opacity 0.2s, border-radius 0.2s, box-shadow 0.2s;
  transition-timing-function: ease-out;
}
.link-to-portfolio:hover {
  opacity: 0.8;
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
}

.bg-text-container {
  transform: translateX(50%);
  left: 0;
  top: -8%;
  position: absolute;
  z-index: -999;
  transform: skewY(-5deg);
}

@keyframes text-scrolling {
  0% {
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}

.animate-text {
  animation: text-scrolling 40s linear infinite;
  will-change: transform;
  display: block;
  position: relative;
  white-space: nowrap;
}
.animate-text.left {
  animation-direction: reverse;
}

.text-animate-bg {
  font-size: 280px;
  color: transparent;
  -webkit-text-stroke: 2px #c6a20479;
  text-transform: uppercase;
  display: inline-block;
  line-height: 0.9;
  min-width: auto;
  font-weight: 200;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 24));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 24));
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 122px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: .7rem 0;
}
.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgb(33, 47, 74) 0%,
    rgba(220, 38, 21, 0) 100%
  );
  content: "";
  height: 122px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 110s linear infinite;
  animation: scroll 110s linear infinite;
  display: flex;
  width: calc(250px * 48);
}
.slider .slide {
  height: 100px;
  width: 250px;
}

/* Pulse Grow */
/* .button {
  padding: 0.5em;
  cursor: pointer;
  background: #181818FF;
  text-decoration: none;
  color: #e0e0e0;
} */

@keyframes pulse-grow {
  to {
    transform: scale(1.1);
  }
}
.pulse-grow {
  display: inline-block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  border-radius: 1em;
}
.pulse-grow:hover {
  animation-name: pulse-grow;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.card-img-overlay {
  background: linear-gradient(
    0deg,
    rgba(42, 159, 255, 0) 0,
    #212f4a5e 65%,
    #083344f1
  );
}


.form-control:focus {
  background-color: transparent !important;
  outline: 0;
  border-color: #fbbf24;
  color: #fbbf24;
  transition: 0.5s;
}
.form-floating>.form-control-plaintext:focus, .form-floating>.form-control-plaintext:not(:placeholder-shown), .form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 2.625rem !important;
}
/* textarea:focus{
  padding-top: 3.625rem !important;
} */

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent !important;
}

.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    color: #fbbf24 !important;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    transition: 0.5s;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}


.underlined {
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
  background: linear-gradient(#c6a304, #c6a304) no-repeat bottom/0 2px;
  transition: background-size 0.3s ease;
}
.underlined:hover {
  background-size: 100% 2px;
}
.underlined--left {
  background-position: right bottom;
}
.underlined--right {
  background-position: left bottom;
}

.shadow-title {
  position: fixed;
  bottom: -10px;
  left: -25%;
  width: 150%;
  text-align: center;
  font-size: 9vw;
  line-height: 1;
  color: rgba(200, 200, 200, 0.1);
  background: linear-gradient(
    rgba(200, 200, 200, 0),
    rgba(200, 200, 200, 0.07)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  z-index: 1;
}

.animate-ping {
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  /* background-color: #c6a304; */
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
