/* ========================================================================== *\
   TABLE OF CONTENTS
\* ==========================================================================

	1. RESET
	2. GENERAL TAGS
	3. FONTS
	4. STRUCUTRE
		4.1 EXPERIENCE
		4.2 PORTFOLIO
		4.3 KNOWLEDGE SHARE
		4.4 FOOTER
	5. COLUMNS
*/

/* ========================================================================== *\
   1. RESET
\* ========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* Make HTML 5 elements display block-level for consistent styling */
main, article, section, aside, hgroup, nav, header, footer, figure, figcaption {
  display: block;
}

/* ========================================================================== *\
   2. GENERAL TAGS
\* ========================================================================== */

* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%; /* == 10px rem == */
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-size: 160%; /* == 16px em == */
	line-height: 150%;
	color: #171717;
	background: #E5E1D8;
	font-family: 'Open Sans', sans-serif;
}

p {
	padding-bottom: 2.4rem;
}

p.large {
	font-size: 2rem;
	line-height: 150%;
}

h1 {
	display: block;
	font-size: 12rem;
	line-height: 100%;
	padding-bottom: 1.6rem;
	font-weight: bold;	
}

h2.large {
	font-size: 6.4rem;
	line-height: 110%;
	padding-bottom: 1.6rem;
	font-weight: bold;
}

h2.projectTitle {
	font-size: 6.4rem;
	line-height: 115%;
	padding-bottom: 2.4rem;
	font-weight: bold;
	max-width: 500px;
	display: block;
}

h2,
h3.large {
	font-size: 4.8rem;
	line-height: 115%;
	padding-bottom: 2.4rem;
	font-weight: bold;
}

h3,
h2.small {
	font-size: 3.2rem;
	line-height: 115%;
	font-weight: bold;
	padding-bottom: 1.6rem !important;
}

h2.small {
	padding-bottom: 0;
	padding-top: 2.4rem;
}

h4,
h3.small {
	font-family: 'Open Sans', sans-serif;
	font-size: 2.4rem;
	line-height: 150%;
	font-weight: bold;
	padding-bottom: 0.8rem;
}

a {
    transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	color: #006AD3;
}

a:before,
a:after {
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

a:hover, a:focus, a:active {
	color: #006AD3;
	text-decoration: underline;
}

a:hover {
	outline: 0;
}

:focus {
	outline: 3px solid #FF4A43;
}

hr {

}

blockquote {

}

::selection {
	background: #FF4A43;
	color: #ffffff;
}

::-moz-selection {
	background: #FF4A43;
	color: #ffffff;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

figure {
	display: block;
	width: 100%;
	margin: 0 !important;
}

figure img {
	display: block;
	width: 100%;
}

figure figcaption {
	 display: block;
	 font-size: 1.2rem;
	 line-height: 150%;
	 font-style: italic;
	 text-align: center;
	 padding: 1.6rem 0 0 0;
}

figure figcaption p {
	padding-bottom: 0rem;
}


/* ========================================================================== *\
   3. FONTS
\* ========================================================================== */

@font-face {
	font-family: 'Recoleta';
	src: url('fonts/Recoleta-Bold.woff2') format('woff2'),
			url('fonts/Recoleta-Bold.woff') format('woff'),
			url('fonts/Recoleta-Bold.otf') format('otf'),
			url('fonts/Recoleta-Bold.ttf') format('ttf');
	font-display: swap;
}

h1, h2, h3 {
	font-family: 'Recoleta', serif;
	font-weight: 700;
	font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');

/* ========================================================================== *\
   4. STRUCTURE
\* ========================================================================== */

.skip-to-content-link {
	display: block;
	text-align: center;
	font-weight: bold;
	padding: 10px 20px;
	background: #ffffff;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
	left: 10px;
	top: 10px;
	position: absolute;
	z-index: 999999;
	transform: translateY(-200%);
	transition: transform 0.3s;
}

.skip-to-content-link:focus {
	transform: translateY(0%);
}

.header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 9.6rem;
	padding: 2.4rem 9.6rem;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1000;
	transition: all 0.3s ease-in-out;
	background-color: transparent;
}

.header.off-screen {
	transform: translateY(-140%);
}

.header.scrolled {
	transform: translateY(0);
}

.header.solid {
	background-color: #E5E1D8;
}

.logo {
	font-size: 3.2rem;
	text-decoration: none;
	line-height: 100%;
	color: #171717;
	font-family: 'Recoleta', serif;
	font-weight: 700;
	text-align: center;
	display: block;
	transform: rotate(-2deg);
	background: #ffffff;
	margin-top: -3rem;
	margin-left: -2.4rem;
	cursor: pointer;
	padding: 8rem 3.2rem 2.8rem 3.2rem;
	border-right: 2px solid #171717;
	border-left: 2px solid #171717;
	border-bottom: 2px solid #171717;
	box-shadow: 6px 6px 0px #171717;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

.logo:hover {
	color: #171717;
	text-decoration: none;
	transform: rotate(0deg);
}

.logo span {
	display: block;
	font-family: 'Open Sans',sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	font-style: normal;
	margin-top: -0.4rem;
}

.menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 6.4rem;
}

.menu ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4.8rem;
}

.menu ul li {
	display: block;
}

.menu ul li a {
	display: block;
	overflow: hidden;
	text-decoration: none;
	color: #171717;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 100%;
	padding: 0.8rem 0;
	position: relative;
	cursor: pointer;
}

.menu ul li a:hover {
	text-decoration: none;
}

.menu ul li a:after {
	content: "";
	display: block;
	height: 0.2rem;
	width: 100%;
	background: #FF4A43;
	position: absolute;
	bottom: 0px;
	left: 100%;
}

.menu ul li a:hover:after,
.menu ul li a.active:after {
	left: 0px;
}

.menu .btn {
	display: inline-block;
	text-decoration: none;
	margin: 0;
	padding: 1.6rem 3.2rem;
	border: 2px solid #171717;
	color: #171717;
	background: #ffffff;
	box-shadow: 4px 4px 0px #171717;
}

.menu .btn:hover {
	box-shadow: -4px -4px 0px #171717;
	text-decoration: none;
}

.menu .btn:focus {
	box-shadow: 4px 4px 0px #171717;
}

.mobileMenu {
	display: none;
	width: 100%;
	background: #E5E1D8;
	position: fixed;
	bottom: 0px;
	left: 0px;
	z-index: 2000;
	padding: 2.4rem;
}

.mobileMenu ul {
	display: flex;
	flex-direction: row;
	gap: 1.6rem;
	align-items: center;
	justify-content: space-between;
}

.mobileMenu ul li {
	display: block;
}

.mobileMenu ul li a {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	color: #171717;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 100%;
}

.mobileMenu ul li a:hover {
	text-decoration: none;
}

.mobileMenu ul li a:before {
	content: "";
	display: block;
	width: 2rem !important;
	height: 2rem !important;	
	background-size: 4rem 2rem !important;
	background-position: left center !important;
	background-repeat: no-repeat !important;
	transition: none;
	-webkit-transition: none;
	-ms-transition: none;
}

.mobileMenu ul li a:before {
	content: "";
	display: block;
	width: 2rem !important;
	height: 2rem !important;	
	background-size: 4rem 2rem !important;
	background-position: left center !important;
	background-repeat: no-repeat !important;
}

.mobileMenu ul li a.active:before {
	background-position: right center !important;
}

.mobileMenu ul li:first-child a:before {
	background: url('images/ico-star.svg');
}

.mobileMenu ul li:nth-child(2) a:before {
	background: url('images/ico-work.svg');
}

.mobileMenu ul li:nth-child(3) a:before {
	background-image: url('images/ico-knowledge.svg');
}

.mobileMenu ul li:nth-child(4) a:before {
	background: url('images/ico-contact.svg');
}

.hero {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 100vh;
	min-height: 72rem;
	padding: 0rem;
	background: #ECB320;
	color: #171717;
}

.hero .content {
	max-width: 1248px;
	margin: 0 auto;
	padding: 0;
}

.hero .columns {
	gap: 6.4rem;
	align-items: center;
	padding-top: 8rem;
}

.hero .subtitle {
	color: #ffffff;
}

.hero a {
	color: #171717;
	font-weight: bold;
	text-decoration: none;
	font-size: 2rem;
	display: flex;
	flex-direction: row;
	gap: 0.8rem;
	align-items: center;
	cursor: pointer;
}

.hero a:hover {
	text-decoration: none;
}

.hero a:hover:after {
	transform: translateX(0.4rem);
}

.hero a:after {
	display: block;
	content: "";
	width: 2.4rem;
	height: 2.4rem;
	background: url('images/ico-more.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 2.4rem 2.4rem;
}

.hero .image {
	display: block;
	width: 60%;
	width: 400px;
	height: auto;
}

.hero .image.unicorn {
	animation: unicorn .8s steps(2) infinite;
}

@keyframes unicorn {
	100% {
        transform: rotate(-8deg);
	}
}

.hero h1 {
	position: relative;
	z-index: 5;
}

.hero p {
	display: inline-block;
	max-width: 67rem;
	font-size: 2rem;
	line-height: 150%;
	background: #ffffff;
	color: #171717;
	padding: 1.6rem 2.4rem;
	margin: -2.4rem 0 3.2rem 0;
	transform: rotate(-2deg) translateX(-2.4rem);
	z-index: 1;
	position: relative;
}

/* ===================================== *\
   4.1 EXPERIENCE
\* ===================================== */

.innerContainer {
	display: block;
	background: #ffffff;
	padding: 12rem 9.6rem;
}

.innerContainer .intro {
	display: block;
	max-width: 62rem;
	margin-bottom: 4.8rem;
}

.skills {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 3.2rem;
	column-gap: 3.2rem;
	margin: 2.4rem 0 7.2rem 0;
}

.skills li {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 1.6rem;
}

.skills li img {
	display: block;
	width: 2.4rem;
	margin-top: 0.8rem;
}

.skills li p {
	padding-bottom: 0;
}

.experiences {
	margin: 2.4rem 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 2.4rem;
	row-gap: 2.4rem;
}

.experiences li {
	display: block;
	font-size: 1.2rem;
	line-height: 150%;
	border: 1px solid #E5E1D8;
	padding: 2.4rem;
}

.experiences li img {
	display: block;
	max-height: 6rem;
	width: auto;
	margin-bottom: 1.6rem;
}

.experiences li .title {
	font-size: 1.6rem;
	font-weight: bold;
	display: block;
	margin-bottom: 0.8rem;
}

.container .crane {
	position: absolute;
	top: 5.6rem;
	right: 7rem;
	display: block;
	width: 50rem;
	height: 50rem;
	background: url('images/oragami-crane.png');
	background-size: 2500px 500px;
	background-position: left center;
	animation: crane 0.5s steps(5) infinite;
}

@keyframes crane {
    100% {
        background-position: -2500px;
    }
}

/* ===================================== *\
   4.2 PORTFOLIO
\* ===================================== */

.sidebar {
	width: 540px;
	position: sticky;
	top: 13.6rem;
	align-self: flex-start;
	font-size: 1.8rem;
	line-height: 175%;
}

.projects {
	width: 50%;
}

.project {
	display: block;
	position: relative;
	margin-bottom: 4.8rem;
	overflow: hidden;
}

.project .inner {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	text-align: center;
	top: 0px;
	left: 0px;
	z-index: 5;
	width: 100%;
	height: 100%;
	background: #171717;
	color: #ffffff;
	padding: 2.4rem;
	opacity: 0;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	overflow: hidden;
}

.project .inner:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2.4rem;
	right: 2.4rem;
	background: url('images/ico-more-arrow.svg');
	background-position: center center;
	background-repeat: no-repeat;
	width: 2.4rem;
	height: 2.4rem;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

.project .inner h3 {
	padding-bottom: 0.8rem;
	display: block;
	width: 100%;
	text-align: center;
}

.project img {
	display: block;
	width: 100%;
	z-index: 1;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

.project:hover .inner {
	opacity: 1;
	cursor: pointer;
}

.project:hover .inner:after {
	bottom: 2.4rem;
}

.project:hover img {
	transform: scale(1.1,1.1);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	display: flex;
	justify-content: flex-end;
	align-items:flex-start;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.overlay.slideIn {
	opacity: 1;
	visibility: visible;
}

.slideOut {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	width: 70%;
	max-width: 940px;
	height: 100%;
	background-color: #fff;
	padding: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}
  
.overlay.slideIn .slideOut {
	transform: translateX(0%);
}

.overlay .slideOut img {
	display: block;
	width: 100%;
}

.overlay .slideOut .inner {
	display: block;
	width: 100%;
	padding: 2.4rem 4.8rem 9.6rem 4.8rem;
	background: #ffffff;
	color: #171717;
}

.overlay .slideOut .inner h2.large {
	padding-bottom: 7.2rem;
}

.overlay .slideOut .inner a:hover {
	text-decoration: none;
}

.back {
	position: sticky;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.8rem;
	padding: 1.6rem 4.8rem;
	margin-bottom: 2.4rem;
	background: #ffffff;
	color: #171717;
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: bold;
	cursor: pointer;
	border-bottom: 1px solid #E5E1D8;
	border-top: none;
	border-left: none;
	border-right: none;
}

.back:before {
	content: "";
	display: block;
	width: 2.4rem;
	height: 2.4rem;
	background: url('images/ico-back.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 2.4rem 2.4rem;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

.back:hover:before {
	transform: translateX(-4px);
}

/* ===================================== *\
   4.3 KNOWLEDGE SHARE
\* ===================================== */

.container .intro {
	display: block;
	font-size: 1.8rem;
	line-height: 175%;
	max-width: 640px;
	margin-bottom: 7.2rem;
}

.container .oracle {
	position: absolute;
	top: 8rem;
	right: 9.6rem;
	display: block;
	width: 40rem;
	height: 40rem;
	background: url('images/oragami-oracle.png');
	background-size: 1600px 400px;
	background-position: left center;
	animation: oracle 1.5s steps(4) infinite;
}

@keyframes oracle {
	100% {
        background-position: -1600px;
    }
}

.posts {
	display: block;
	margin-bottom: 4.8rem;
}

.posts .post {
	padding: 4.8rem 0;
	border-top: 1px solid #E5E1D8;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 4.8rem;
	align-items: center;
}

.posts .post h3 {
	max-width: 700px;
	display: block;
	padding-bottom: 1.6rem;
}

.posts .post p {
	display: block;
	max-width: 700px;
}

.posts .post:last-child {
	border-bottom: 1px solid #E5E1D8;
}

.container.grey .posts .post .subtitle {
	color: #FF4A43;
}

.posts .post .subtitle em {
	color: #ffffff;
	font-style: normal;
	font-weight: normal;
}

.posts .post img {
	display: block;
	max-height: 180px;
	width: auto;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

.posts .post a img:hover {
	transform: scale(1.1,1.1) rotate(-5deg);
}

.posts .post a {
	color: #ffffff;
	text-decoration: none;
}

.posts .post a:hover {
	color: #ECB320;
}

/* ===================================== *\
   4.4 FOOTER
\* ===================================== */

.footer {
	display: block;
	padding: 12rem 9.6rem 2.4rem 9.6rem;
	font-size: 2.4rem;
	position: relative;
}

.footer p {
	font-size: 1.6rem;
	height: 4.8rem;
	padding-bottom: 0px;
	display: flex;
	align-items: center;
}

.footer a {
	color: #171717;
	text-decoration: none;
}

.footer a:hover {
	color: #FF4A43;
}

.footer h2 {
	display: block;
	max-width: 560px;
}

.footer .plane {
    display: block;
    width: 460px;
    height: 200px;
    background: url('images/plane1.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 460px auto;
    position: absolute;
    right: 200px;
    top: 100px;
    animation: planeAnimation 1s steps(2) infinite;
	transform-origin: center center;
}

@keyframes planeAnimation {
	100% {
		transform: translateY(-40px);
	}
}


ul.social {
	display: flex;
	flex-direction: row;
	gap: 1.6rem;
	align-items: center;
	margin: 9.6rem 0 4.8rem;
}

ul.social li {
	display: block;
}

ul.social li a {
	display: block;
	width: 4.8rem;
}

ul.social li a img {
	width: 4.8rem;
	height: 4.8rem;
}

ul.social li a:hover {
	transform: scale(1.1,1.1) rotate(-10deg);
}

.footer a.glk {
	display: flex;
	align-items: center;
	height: 4.8rem;
	padding: 0 0 0 5.8rem;
	background: url('images/ico-glk.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 43px 48px;
	font-size: 1.6rem;
}

.footer a.glk strong {
	margin-left: 0.4rem;
}



/* ========================================================================== *\
   6. GENERAL CLASSES
\* ========================================================================== */

.content {
	display: block;
	padding: 0 9.6rem;
}

.relative {
	position: relative;
}

.callout {
	display: block;
	padding: 4.8rem;
	border: 1px solid #E5E1D8;
	font-size: 2rem;
	text-align: center;
}

.callout p {
	padding-bottom: 0;
}

.container {
	display: block;
	padding: 9.6rem;
}

.container.flex {
	display: flex;
	justify-content: space-between;
}

.redText {
	color: #FF4A43;
}

.container.red {
	background: #FF4A43;
	color: #ffffff;
	padding: 9.6rem;
}

.container.red .subtitle {
	color: #171717;
}

.container.grey {
	background: #171717;
	padding: 9.6rem;
}

.container.grey .subtitle {
	color: #FF4A43;
}

.white {
	color: #ffffff;
}

.btn {
	display: block;
	margin: 0 auto;
	padding: 1.6rem 3.2rem;
	border: 2px solid #FF4A43;
	color: #ffffff;
	box-shadow: 4px 4px 0px #FF4A43;
	background: transparent;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

.btn:hover {
	box-shadow: -4px -4px 0px #FF4A43;
}

.btn.small {
	display: inline-block;
	border-color: #171717;
	box-shadow: 4px 4px 0px #171717;
	color: #171717;
	text-decoration: none;
	background-color: #ffffff;
	padding: 1.2rem 2.4rem;
}

.btn.small:hover {
	box-shadow: -4px -4px 0px #171717;
}

.btn:focus {
	box-shadow: 4px 4px 0px #FF4A43;
}

.simpleBtn {
	color: #ECB320 !important;
	font-weight: bold;
	text-decoration: none;
	font-size: 1.6rem;
	display: flex;
	flex-direction: row;
	gap: 0.8rem;
	align-items: center;
	cursor: pointer;
	margin-bottom: 1.6rem;
}

.simpleBtn:hover {
	text-decoration: none;
}

.simpleBtn:hover:after {
	transform: translateX(0.4rem);
}

.simpleBtn:after {
	display: block;
	content: "";
	width: 2.4rem;
	height: 2.4rem;
	background: url('images/ico-more-yellow.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 2.4rem 2.4rem;
}

.subtitle {
	display: block;
	font-weight: bold;
	font-size: 2rem;
	line-height: 150%;
	padding-bottom: 1.6rem;
}

.subtitle.red {
	color: #FF4A43;
}

.rule {
	display: block;
	height: 2.4rem;
	margin-bottom: 3.2rem;
	border-bottom: 5px solid #171717;
	width: 100%;
	clear: both;
}

.clear {
    clear:both;
}

.clear.sm {
	height: 2rem !important;
}

.clear.md {
	height: 4rem !important;
}

.clear.lg {
	height: 6rem !important;
}

.clear.xl {
	height: 8rem !important;
}

.border {
    border: 1px solid #cccccc;	
}

/* ========================================================================== *\
   5. COLUMNS
\* ========================================================================== */

.columns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.columns .col {
	display: block;
}

.icon-group {
	display: flex;
	flex-direction: row;
	gap: 0.8rem;
	align-items: center;
	justify-content: center;
}

.icon-group img {
	display: block;
	margin-bottom: 1.6rem;
}

.centerV {
	align-items: center;
}

.col.right {
	text-align: right;
}

.one_half {
	width:48%;
}

.one_third {
	width:30.66%;
}

.two_third {
	width:65.33%;
}

.one_fourth {
	width:22%;
}

.three_fourth{
	width:74%;
}

.one_fifth {
	width:16.8%;
}

.two_fifth{
	width:37.6%;
}

.three_fifth {
	width:58.4%;
}

.four_fifth {
	width:79.2%;
}

.one_sixth {
	width:13.33%;
}

.five_sixth {
	width:82.67%;
}