@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/fontawesome.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/brands.min.css');
* {
	margin:0;padding:0;font-size:15px;-webkit-tap-highlight-color:transparent;
}
body {
    width: 100vw;
    overflow-x: hidden;
}
html:focus-within {
	scroll-behavior:smooth;
}
/*div,li,ul,input,button,textarea,table,form {
	box-sizing:border-box;
}*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
	text-decoration:none;
	outline:none;
	font: inherit;
    color: inherit;
}
p {
	font-family: Inter;
}
.noselect {
	user-select: none;
}
.griddy {
    display: grid;
}
.grid2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
}
.grid3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
}
.grid4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2rem;
}
.flexy {
	display: -webkit-box;
 	display: -ms-flexbox;
  	display: flex;
}

.jc-center {
	justify-content: center;
}
.jc-wide {
	justify-content: space-around;
}
.jc-between {
	justify-content: space-between;
}
.jc-end {
	justify-content: flex-end;
}
.jc-even {
	justify-content: space-evenly;
}
.al-start {
	align-items: flex-start;
}
.al-center {
	align-items: center;
}
.al-bottom {
	align-items: flex-end;
}
.wrap {
	flex-wrap: wrap;
}
.nowrap {
	flex-wrap: nowrap;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.w100 {
	width: 100%;
}
.w90 {
	width: 90%;
}
.w80 {
	width: 80%;
}
.w75 {
	width: 75%;
}
.w70 {
	width: 70%;
}
.w65 {
	width: 65%;
}
.w60 {
	width: 60%;
}
.w50 {
	width: 50%;
}
.w45 {
	width: 45%;
}
.w40 {
	width: 40%;
}
.w35 {
	width: 35%;
}
.w30 {
	width: 30%;
}
.w25 {
	width: 25%;
}
.w20 {
	width: 20%;
}
.p20 {
	padding: 2rem;
}
.pw20 {
	padding: 0 2rem;
}
.pw10 {
	padding: 0 1rem;
}
/*	ANIMATION	*/

.slide-in-blurred-top {
	-webkit-animation: slide-in-blurred-top 0.3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: slide-in-blurred-top 0.3s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}
.slide-out-top {
	-webkit-animation: slide-out-top 0.2s cubic-bezier(0.550, 0.085, 0.680, 0.530) reverse both;
	        animation: slide-out-top 0.2s cubic-bezier(0.550, 0.085, 0.680, 0.530) reverse both;
}


/* ----------------------------------------------
 * Generated by Animista on 2023-10-19 11:20:30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-blurred-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-blurred-top {
  0% {
    -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
            transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
            transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes slide-in-blurred-top {
  0% {
    -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
            transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
            transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-10-23 15:8:44
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}

