.hamburger-box {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 32px;
}

.hamburger {
  top: 4px;
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner::after {
	top: 10px;
	right: 0;
	transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s;
}
.hamburger-inner::after {
	bottom: -10px;
}
.hamburger-inner::after, .hamburger-inner::before {
	display: block;
	content: "";
}
.hamburger--emphatic .hamburger-inner::before {
	left: 0;
	transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger--emphatic .hamburger-inner {
	/* transition: background-color .125s ease-in .175s; */
}
.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
	position: absolute;
	width: 40px;
	height: 2px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform;
	border-radius: 0px;
	background-color: #fff;
}

.scroll_menu .hamburger-inner, .scroll_menu .hamburger-inner::after, .scroll_menu .hamburger-inner::before {
  background-color: #e50914;
}
.subpage nav .hamburger-inner, .subpage nav .hamburger-inner::after, .subpage nav .hamburger-inner::before {
  background-color: black;
}
.subpage nav .whiteburger .hamburger-inner, .subpage nav .whiteburger .hamburger-inner::after, .subpage nav .whiteburger .hamburger-inner::before {
  background-color: white;
}
.subpage .scroll_menu .hamburger-inner, .subpage .scroll_menu .hamburger-inner::after, .subpage .scroll_menu .hamburger-inner::before {
  background-color: #e50914 !important;
}

.hamburger--emphatic.open .hamburger-inner::before {
	top: -80px;
	left: -80px;
	transition: left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
	transform: translate3d(80px,80px,0) rotate(45deg);
}
.hamburger--emphatic.open .hamburger-inner::after {
	top: -80px;
	right: -80px;
	transition: right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
	transform: translate3d(-80px,80px,0) rotate(-45deg);
}

.hamburger--emphatic.open .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent !important;
}
.hamburger--emphatic {
	overflow: hidden;
}

.hamburger--spin .hamburger-inner {
  transition-timing-function:cubic-bezier(.55,.055,.675,.19);
  transition-duration:.22s
}
.hamburger--spin .hamburger-inner:before {
  transition:top .1s ease-in .25s,opacity .1s ease-in
}
.hamburger--spin .hamburger-inner:after {
  transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin.open .hamburger-inner {
  transition-delay:.12s;
  transition-timing-function:cubic-bezier(.215,.61,.355,1);
  transform:rotate(225deg)
}
.hamburger--spin.open .hamburger-inner:before {
  top:0;
  transition:top .1s ease-out,opacity .1s ease-out .12s;
  opacity:0
}
.hamburger--spin.open .hamburger-inner:after {
  bottom:0;
  transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
  transform:rotate(-90deg)
}
.hamburger--spin-r .hamburger-inner {
  transition-timing-function:cubic-bezier(.55,.055,.675,.19);
  transition-duration:.22s
}
.hamburger--spin-r .hamburger-inner:before {
  transition:top .1s ease-in .25s,opacity .1s ease-in
}
.hamburger--spin-r .hamburger-inner:after {
  transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin-r.open .hamburger-inner {
  transition-delay:.12s;
  transition-timing-function:cubic-bezier(.215,.61,.355,1);
  transform:rotate(-225deg)
}
.hamburger--spin-r.open .hamburger-inner:before {
  top:0;
  transition:top .1s ease-out,opacity .1s ease-out .12s;
  opacity:0
}
.hamburger--spin-r.open .hamburger-inner:after {
  bottom:0;
  transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
  transform:rotate(90deg)
}

  .scroll_menu .ham6 .line {
    stroke:#a21718;
  }


  [type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #7dc051;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.grecaptcha-badge {
  visibility: hidden;
  opacity:0;
  pointer-events: none;
}


[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
   
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    background: #fff;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #e50914;
    position: absolute;
    top: 9px;
    left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.loader.hide {
  transform:translateY(-100%);
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1
 }

.nicescroll-rails-hr {
	display: none !important;
}


.fadeOutUp {
 animation-name:fadeOutUp
}

@keyframes fadeOutUp {
  0% {
   opacity:1
  }
  to {
   opacity:0;
   transform:translate3d(0,-100%,0)
  }
 }


.fadeOutUpSlow {
 animation-name:fadeOutUpSlow
}
@keyframes fadeOutUpSlow {
  0% {
   opacity:1
  }
  to {
   opacity:.2;
   transform:translate3d(0,-20%,0)
  }
 }

.fadeInDown {
 animation-name:fadeInDown
}
@keyframes fadeInDown {
  0% {
   opacity:0;
   transform:translate3d(0,-100%,0)
  }
  to {
   opacity:1;
   transform:translateZ(0)
  }
 }
@keyframes fadeInDownSlow {
 0% {
  opacity:.2;
  transform:translate3d(0,-20%,0)
 }
 to {
  opacity:1;
  transform:translateZ(0)
 }
}
.fadeInDownSlow {
 animation-name:fadeInDownSlow
}

.animated {
  animation-duration:var(--animate-duration);
  animation-fill-mode:both
 }
 .animated.infinite {
  animation-iteration-count:infinite
 }
 .animated.repeat-1 {
  animation-iteration-count:var(--animate-repeat)
 }
 .animated.repeat-2 {
  animation-iteration-count:calc(var(--animate-repeat) * 2)
 }
 .animated.repeat-3 {
  animation-iteration-count:calc(var(--animate-repeat) * 3)
 }
 .animated.delay-1s {
  animation-delay:var(--animate-delay)
 }
 .animated.delay-2s {
  animation-delay:calc(var(--animate-delay) * 2)
 }
 .animated.delay-3s {
  animation-delay:calc(var(--animate-delay) * 3)
 }
 .animated.delay-4s {
  animation-delay:calc(var(--animate-delay) * 4)
 }
 .animated.delay-5s {
  animation-delay:calc(var(--animate-delay) * 5)
 }
 .animated.faster {
  animation-duration:calc(var(--animate-duration) / 2)
 }
 .animated.fast {
  animation-duration:calc(var(--animate-duration) * .8)
 }
 .animated.slow {
  animation-duration:calc(var(--animate-duration) * 2)
 }
 .animated.slower {
  animation-duration:calc(var(--animate-duration) * 3)
 }
 @media print,(prefers-reduced-motion: reduce) {
  .animated {
   animation-duration:1ms!important;
   transition-duration:1ms!important;
   animation-iteration-count:1!important
  }
  .animated[class*=Out] {
   opacity:0
  }
 }


.animhed .line .char {
  transform:translateY(-30px);
  display: inline-block;

}


.bg1home .animhed .line .char {
  animation:none;
}


.animdesc .char {
  display: inline-block;
  opacity:0.1;
  transform:scale(1.1);
}


/* .animhed .line .char.dospace {
margin-right:20px;

}
.animhed.h2 .line .char.dospace {
margin-right:10px;

} */

/* 

.animhed .line div:nth-of-type(2) {
	animation-delay: .05s !important;
}
.animhed .line div:nth-of-type(3) {
	animation-delay: .1s !important;
}
.animhed .line div:nth-of-type(4) {
	animation-delay: .15s !important;
}
.animhed .line div:nth-of-type(5) {
	animation-delay: .2s !important;
}
.animhed .line div:nth-of-type(6) {
	animation-delay: .25s !important;
}
.animhed .line div:nth-of-type(7) {
	animation-delay: .3s !important;
}
.animhed .line div:nth-of-type(8) {
	animation-delay: .35s !important;
}
.animhed .line div:nth-of-type(9) {
	animation-delay: .4s !important;
}
.animhed .line div:nth-of-type(10) {
	animation-delay: .45s !important;
}
.animhed .line div:nth-of-type(11) {
	animation-delay: .5s !important;
}
.animhed .line div:nth-of-type(12) {
	animation-delay: .55s !important;
}
.animhed .line div:nth-of-type(13) {
	animation-delay: .6s !important;
}
.animhed .line div:nth-of-type(14) {
	animation-delay: .65s !important;
}
.animhed .line div:nth-of-type(15) {
	animation-delay: .7s !important;
}
.animhed .line div:nth-of-type(16) {
	animation-delay: .75s !important;
}
.animhed .line div:nth-of-type(17) {
	animation-delay: .8s !important;
}
.animhed .line div:nth-of-type(18) {
	animation-delay: .85s !important;
}
.animhed .line div:nth-of-type(19) {
	animation-delay: .9s !important;
}
.animhed .line div:nth-of-type(20) {
	animation-delay: .95s !important;
}
.animhed .line div:nth-of-type(21) {
	animation-delay: 1s !important;
}
.animhed .line div:nth-of-type(22) {
	animation-delay: 1.05s !important;
}
.animhed .line div:nth-of-type(23) {
	animation-delay: 1.10s !important;
}
.animhed .line div:nth-of-type(24) {
	animation-delay: 1.15s !important;
}
.animhed .line div:nth-of-type(25) {
	animation-delay: 1.20s !important;
}
.animhed .line div:nth-of-type(26) {
	animation-delay: 1.25s !important;
}
.animhed .line div:nth-of-type(27) {
	animation-delay: 1.30s !important;
}
.animhed .line div:nth-of-type(28) {
	animation-delay: 1.35s !important;
}

.animhed .line div:nth-of-type(29) {
	animation-delay: 1.40s !important;
}
.animhed .line div:nth-of-type(30) {
	animation-delay: 1.45s !important;
}
.animhed .line div:nth-of-type(31) {
	animation-delay: 1.50s !important;
}
.animhed .line div:nth-of-type(32) {
	animation-delay: 1.55s !important;
}
.animhed .line div:nth-of-type(33) {
	animation-delay: 1.60s !important;
}
.animhed .line div:nth-of-type(34) {
	animation-delay: 1.65s !important;
}
.animhed .line div:nth-of-type(35) {
	animation-delay: 1.70s !important;
}
.animhed .line div:nth-of-type(36) {
	animation-delay: 1.75s !important;
}
.animhed .line div:nth-of-type(37) {
	animation-delay: 1.80s !important;
}
.animhed .line div:nth-of-type(38) {
	animation-delay: 1.85s !important;
}
.animhed .line div:nth-of-type(39) {
	animation-delay: 1.90s !important;
}
.animhed .line div:nth-of-type(40) {
	animation-delay: 1.95s !important;
}
.animhed .line div:nth-of-type(41) {
	animation-delay: 2.00s !important;
}
.animhed .line div:nth-of-type(42) {
	animation-delay: 2.05s !important;
}
.animhed .line div:nth-of-type(43) {
	animation-delay: 2.10s !important;
}
.animhed .line div:nth-of-type(44) {
	animation-delay: 2.15s !important;
}
.animhed .line div:nth-of-type(45) {
	animation-delay: 2.20s !important;
}
.animhed .line div:nth-of-type(46) {
	animation-delay: 2.25s !important;
}
.animhed .line div:nth-of-type(47) {
	animation-delay: 2.30s !important;
}
.animhed .line div:nth-of-type(48) {
	animation-delay: 2.35s !important;
}
.animhed .line div:nth-of-type(49) {
	animation-delay: 2.40s !important;
}
.animhed .line div:nth-of-type(50) {
	animation-delay: 2.45s !important;
}

.animhed.delay1s .line div:nth-of-type(1) {
  animation-delay: .50s !important;
}
.animhed.delay1s .line div:nth-of-type(2) {
	animation-delay: .55s !important;
}
.animhed.delay1s .line div:nth-of-type(3) {
	animation-delay: .60s !important;
}
.animhed.delay1s .line div:nth-of-type(4) {
	animation-delay: .65s !important;
}
.animhed.delay1s .line div:nth-of-type(5) {
	animation-delay: .70s !important;
}
.animhed.delay1s .line div:nth-of-type(6) {
	animation-delay: .75s !important;
}
.animhed.delay1s .line div:nth-of-type(7) {
	animation-delay: .80s !important;
}
.animhed.delay1s .line div:nth-of-type(8) {
	animation-delay: .85s !important;
}
.animhed.delay1s .line div:nth-of-type(9) {
	animation-delay: .90s !important;
}
.animhed.delay1s .line div:nth-of-type(10) {
	animation-delay: .95s !important;
}
.animhed.delay1s .line div:nth-of-type(11) {
	animation-delay: 1s !important;
}
.animhed.delay1s .line div:nth-of-type(12) {
	animation-delay: 1.05s !important;
}
.animhed.delay1s .line div:nth-of-type(13) {
	animation-delay: 1.10s !important;
}
.animhed.delay1s .line div:nth-of-type(14) {
	animation-delay: 1.15s !important;
}
.animhed.delay1s .line div:nth-of-type(15) {
	animation-delay: 1.20s !important;
}
.animhed.delay1s .line div:nth-of-type(16) {
	animation-delay: 1.25s !important;
}
.animhed.delay1s .line div:nth-of-type(17) {
	animation-delay: 1.30s !important;
}
.animhed.delay1s .line div:nth-of-type(18) {
	animation-delay: 1.35s !important;
}
.animhed.delay1s .line div:nth-of-type(19) {
	animation-delay: 1.40s !important;
}
.animhed.delay1s .line div:nth-of-type(20) {
	animation-delay: 1.45s !important;
}
.animhed.delay1s .line div:nth-of-type(21) {
	animation-delay: 1.50s !important;
}
.animhed.delay1s .line div:nth-of-type(22) {
	animation-delay: 1.55s !important;
}
.animhed.delay1s .line div:nth-of-type(23) {
	animation-delay: 1.60s !important;
}
.animhed.delay1s .line div:nth-of-type(24) {
	animation-delay: 1.65s !important;
}
.animhed.delay1s .line div:nth-of-type(25) {
	animation-delay: 1.70s !important;
}
.animhed.delay1s .line div:nth-of-type(26) {
	animation-delay: 1.75s !important;
}
.animhed.delay1s .line div:nth-of-type(27) {
	animation-delay: 1.80s !important;
}
.animhed.delay1s .line div:nth-of-type(28) {
	animation-delay: 1.85s !important;
} */

.triggerModal {
 
  cursor: pointer;
  display: inline-block;
  position: relative;
  /* transition: all 0.3s ease; */
}

.letter {
  display: inline-block;
  position: relative;
}

.stickycontainer .mainimg {
  clip-path:inset(50% 50% 50% 50%);
}
@media (max-width: 1280px) {
  .stickycontainer .mainimg {
    clip-path:inset(0% 0%);
  }
}

.cursor-outline, .cursor-dot {
  opacity: 0;
}

.cursor-outline {
  border-radius: 50px;
  position: absolute;
  width: 40px;
  height: 40px;
  border: solid 1px #fff;
  mix-blend-mode: difference;
pointer-events: none;
z-index: 9999;
}

/* Visible when running fancy.js */
.cursor-dot {
  mix-blend-mode: difference;
  border-radius: 50px;
  position: absolute;
   width: 40px;
  height: 40px;
	background-color: white;
	border: solid 1px #fff;
  pointer-events: none;
  z-index: 9999;
}


.cursor-outline, 
.cursor-dot {
  /* needed for target (shared) */
  top: 50%;
  left: 10%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.loader .light {
	background-image: radial-gradient(circle at 50% 50%,#272727 0,rgba(26, 26, 26, 0) 38%);
	border-radius: 50%;
	filter: blur(4em);
	height: 136vh;
	width: 136vw;
	will-change: opacity,left,transform;
 
}
.loader.anim .light {
  animation: 1s loaderlogo forwards;
  animation-timing-function: linear;
}

@keyframes loaderlogo {
  0% {
   left:0%;
   transform:translate(-50%,-50%) scale(1);
   opacity:0;
  }
  50% {
left:50%;
transform:translate(-50%,-50%) scale(1.1);
   opacity:1;
  }
  100% {
    left:100%;
    transform:translate(-50%,-50%) scale(1);
   opacity:0;
  }
 }

 #world {
  position: absolute;
  left:0;
  top:24px;
  opacity:0;
  transition:1s all;
}

#world.anim {
  opacity:1;
  top:0;
}

#video-background {
	position: absolute;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
}
.bg1 {
	overflow: hidden;
	width: 100%;
	height: 100vh;
	position: relative;
	top: 0;
	background: #fff;
	opacity: 1;
	z-index: 20;
	left: 0px;
}
.scroll-text {
  white-space: nowrap;
}
.scroll-text span.fl {
  position: relative;
  display: inline-block;
 
}

.console-underscore {
  display:inline-block;
 position:relative;
 top:0px;
 left:10px;
}

@media (min-width: 1024px) {
.newslider_bg {
  clip-path: inset(100vh 0px 0px);
}
}


/* .aos-animate .newslider_bg {
  animation: slider_h_full 1.4s forwards;
}

@keyframes slider_h_full {
  0% {
    height: 0%;
  }
  25% {
    height: 85%;
    animation-timing-function: linear;
  }
  100% {
    height: 100%;
    animation-timing-function: ease-out;
  }
} */
/* .scalebox {
	transition: transform .5s cubic-bezier(.455,.03,.515,.955),-webkit-transform .5s cubic-bezier(.455,.03,.515,.955);
  transform: scale3d(1,1,1);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-user-select: -moz-none;
  display: flex;
  overflow: hidden;
  text-decoration: none;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  cursor: pointer;
}
.scalebox:hover {
  -webkit-transform: scale3d(.95,.95,.95);
    transform: scale3d(.95,.95,.95);
}

.scaleimg {

  width: 100%;
  height: 100%;
  opacity: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: opacity .5s ease .1s,-webkit-transform .5s cubic-bezier(.455,.03,.515,.955);
  transition: opacity .5s ease .1s,transform .5s cubic-bezier(.455,.03,.515,.955);
  transition: opacity .5s ease .1s,transform .5s cubic-bezier(.455,.03,.515,.955),-webkit-transform .5s cubic-bezier(.455,.03,.515,.955);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;

}
.scalebox:hover .scaleimg {
  
    -webkit-transform: scale3d(1.15,1.15,1);
    transform: scale3d(1.15,1.15,1);
  
} */



@media (min-width: 1024px) {
  body {
    overscroll-behavior: none;
    scroll-behavior: auto;
    cursor: none;
  }
}
.baby_dot {
  transform: scale(0);
  animation: dotAnimation 1.5s infinite ease-in-out;
  animation-delay: calc(var(--dot-index) * 0.3s);
}

@keyframes dotAnimation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0);
  }
}

.baby_dot:nth-child(1) {
  --dot-index: 0;
}
.baby_dot:nth-child(2) {
  --dot-index: 1;
}
.baby_dot:nth-child(3) {
  --dot-index: 2;
}

.baby_dot {
  transform: scale(0);
  animation: dotAnimation 1.5s infinite ease-in-out;
  animation-delay: calc(var(--dot-index) * 0.3s);
}
.contact_offsetline_img {
  clip-path:circle(0% at top);
  transition:1s all;
}
.contact_offsetline_img.anim {
  clip-path:circle(150% at top);
}

@keyframes dotAnimation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0);
  }
}

.baby_dot:nth-child(1) {
  --dot-index: 0;
}
.baby_dot:nth-child(2) {
  --dot-index: 1;
}
.baby_dot:nth-child(3) {
  --dot-index: 2;
}

/* Adds animation delay based on order to create sequential effect */

.baby_text {
  transform: translateX(0);
  animation: textBounce 2s infinite ease-in-out;
}

@keyframes textBounce {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(10px);
  }
  40% {
    transform: translateX(-10px);
  }
  60% {
    transform: translateX(5px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}


@media (min-width: 1024px) {
  .aos-animate .topleft {
    width: 100%;
  }

  .aos-animate .topright {
    height: 100%;
  }

  .aos-animate .leftbot {
    height: 100%;
  }

  .aos-animate .botleft {
    width: 100%;
  }
  
  .arrow_foot {
	clip-path: inset(0 100% 0 0);
transition:1s all;
  }
  .aos-animate .arrow_foot {
	clip-path: inset(0 0 0 0);
  }
  .contact_all.aos-animate .contact_all_circle {
    transform:scale(1.0);
  }

}

