:root {
    --transform-anim: transform 1s cubic-bezier(0.13, 0.07, 0.26, 0.99);
    --bounce-anim: transform 1s cubic-bezier(0.145, 0.885, 0.32, 1.275);
    --bounce-timing: cubic-bezier(0.145, 0.885, 0.32, 1.275);
}

html * {
   font-family: 'Fjalla One';
}
h1 {
    line-height: 3rem;
    color: #ffffff;
}
hr {
    height: 2px;
    color: #B7A868!important;
}
h2 {
    line-height: 2rem;
    color: #B7A868;
}
h3 {
    line-height: 1rem;
    color: #F0E6AB;
}
p {
    line-height: 2rem;
    color: #F9F7E0;
}
/* hide scrollbar */
.scroll-container::-webkit-scrollbar,
 #scroll_parent::-webkit-scrollbar{
    display: none; /* for Chrome, Safari, and Opera */
}
.scroll-container,
  #scroll_parent {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll;
}

@keyframes appearAnim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;

}
.skew {
    height: 100vh;
    background-color: #23a6d8;
    transform: skew(-25deg) translateX(-38vw);
    transition: var(--transform-anim);
}
.skew:hover{
    transform: skew(-25deg) translateX(-37vw);
}
.skew-anim {
    opacity: 0;
    transform: translate3d(20rem, 0, 0);
    transition: opacity 1s,
        var(--transform-anim);
}
.scroll-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.contact-btn::before {
    background-color: rgba(0, 0, 0, .25);
}

.section_content > * {
  opacity: 0;
  transform: translate3d(0, 4rem, 0);
  transition: opacity 800ms var(--delay),
    var(--transform-anim) var(--delay);
}
.individual-elem {
  opacity: 0;
  transform: translate3d(5rem, 0, 0);
  transition: opacity 1s var(--delay),
    var(--bounce-anim) var(--delay);
}
.is-visible .individual-elem {
  opacity: 1;
  transform: translate3d(0, 0rem, 0);
}
.is-visible .section_content > * {
  opacity: 1;
  transform: translate3d(0, 0rem, 0);
}
section .section-three > * {
    opacity: 1!important;
}
.is-visible .skew-anim {
  opacity: 1;
  transform: translate3d(6rem, 0, 0);
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn:focus {
    box-shadow: none!important;
}
.btn {
    border-radius: var(--main-btn-border-radius)!important;
}
.btn-main {
    padding: 14px 24px !important;
    color: #FFF;
    transition: all 0.5s;
    position: relative;
    border-radius: var(--main-btn-border-radius);
    background-color: #00000077;
}
.individual-elem .btn-main h6 {
    color: rgba(212,212,212);
}
.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s;
    border-radius: var(--main-btn-anim-border-radius);
/*    background-color: rgba(0, 0, 0, .25);*/
}
.btn-main:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
}
.btn-main::after {
    content: '';
    position: absolute;
    border-radius: var(--main-btn-anim-border-radius);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s;
    border: 2px solid rgba(255,255,255,0.5);
    transform: scale(1.1,1.1);
}
.btn-main:hover::after {
    opacity: 1;
    transform: scale(1,1);
}
.btn-main:hover {
    background-color: transparent;
}
@keyframes homeAnim {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.scroll-down {
  position: absolute;
  bottom: 16px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #FFF;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
}

.scroll-right {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #FFF;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce-sideways 2s infinite 2s;
  animation: bounce-sideways 2s infinite 2s;
}

.scroll-right:before {
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 7px);
    transform: rotate(-135deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}

.scroll-down:before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.text-block-container > *,
 .glass-bg > * {
   padding: 4px 12px;
   border-radius: 6px;
   background-color: #00000010;
   color: #00000099;
}
.text-block-container > * {
    display: inline-block;
}

@keyframes bounce-sideways {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  60% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
