
html,body {
	padding: 0;
	margin: 0;
	background: #14141d;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	color: #fff;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #1f94ff;
	font-weight: 700;
}

a:hover {
	cursor: pointer;
	color: #1fffd2;
}

.root {
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.root .head {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 80px;
	width: 100%;
	max-width: 1280px;
	padding-right: 100px;
	margin-top: 15px;
}

.root .head h1 {
	position: absolute;
	left: 0;
	font-weight: 700;
	font-size: 39px;
	padding-left: 15px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	background-image: linear-gradient(180deg, rgba(84, 255, 227, 1) 0%, rgba(204, 84, 255, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.root .head > div{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

#menu__toggle:checked ~ .social {
  visibility: visible;
}

.menu__btn {
  display: none;
  align-items: center;
  position: relative;
	margin-top: 30px;
	margin-right: 30px;
  width: 26px;
  height: 26px;
	position: absolute;
	    right: 0;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;

  width: 100%;
  height: 2px;

  background-color: #fff;

  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

@media screen and (orientation:portrait), all and (max-width: 1150px) {
	.root{
		padding-top: 70px;
	}
	.root .head {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw !important;
		    max-width: 100%;
		height: 100px;
		z-index: 999999;
		align-items: flex-start;
		background: #14141d;
		margin: 0 !important;
		padding: 10px;
		box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
	}

	.root .head .social {
		flex-direction: column !important;
		visibility: hidden;
		position: absolute;
		top: 100px !important;
		right: 0;
		height: auto !important;
	}

	.root .head h1, .root .head img  {
		z-index: 9999;
	}

	.root .head img{
		height: 60px !important;
    width: 60px !important;
		margin-top: 10px;
	}

	.root .head h1{
		margin: 0;
		margin-top: 20px;
	}

	.menu__btn {
	  display: flex;
		z-index: 9999;
	}
	.root .head > div.menu__box {
		top: 0;
		left: 0;
		width: 100vw;
max-width: 1280px;
		height: 100%;
	  display: block;
	  position: fixed;
	  visibility: hidden;
		flex-direction: column;
		padding: 5vh;
		padding-top: 120px;
		background: #000;
		z-index: 999;
	}

	.root .head > div.menu__box a{
		font-size: 2.2vh;
	}
	.footer{
		flex-direction: column !important;
	}
}

.root .head a {
	display: block;
	padding: 10px 20px;
	border-radius: 5vh;
	margin-left: 0.25vh;
	margin-right: 0.25vh;
	font-size: 18px;
	font-weight: 500;
	color: #d4fdff;
	transition: opacity 0.1s linear;
}

.root .head a:hover {
	opacity: 0.75;
}

.root .head .social {
	position: absolute;
	right: 0;
	top: 0;
	height: 80px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 25%;
	z-index: 9999;
}

.root .head .social>a {
	padding: 5px 5px;
}

.root .head a svg {
	width: 32px;
	height: 32px;
	fill: #d4fdff;
	transition: opacity 0.1s linear;
}

.root .head a:hover svg {
	opacity: 0.75;
}

.root .head img {
	position: absolute;
	left: 0;
	height: 70px;
	width: 70px;
}

.root img.intro {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: rgba(89, 249, 255, 0.35) 0px 0px 25px 0px;
	overflow: visible;
	margin-top: 35px;
}

hr {
	width: 100%;
	outline: 0;
	border: none;
	height: 2px;
	border-radius: 20px;
	background: #fff;
	margin-top: 40px;
	opacity: 0.25
}

.root .section {
	margin-top: 45px;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	position: relative;
	border-bottom: 2px solid #ffffff4f;
	padding-bottom: 25px;
}

.root .section.centered {
	text-align: center;
}

.root .section h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 35px;
}

.root .section h1.centered,
.root .section p.centered {
	text-align: center;
	width: 100%;
}

.root .section p.full {
	width: 100%;
}

.root .section p.opac {
	color: #c4c4c4;
}

.root .section p>.headtxt {
	display: block;
	color: #fff;
	margin: 0;
	padding: 0;
	margin-top: 25px;
}

.root .section p.right,
.root .section h1.right {
	text-align: right;
}

.root .section h1 span {
	background-image: linear-gradient(80deg, rgba(84, 255, 227, 1) 0%, rgba(204, 84, 255, 1) 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	position: relative;
	padding-bottom: 30px;
	transform: skewX(5deg);
	padding-left: 5px;
	font-size: 39px;
}

.root .section p {
	font-size: 23px;
	width: 70%;
	max-width: (100% - 330px);
	letter-spacing: 1px;
}

.introButton {
	display: inline-block;
	padding: 20px 60px;
	margin-top: 15px;
	margin-left: 5px;
	border-radius: 15px;
	color: #fff;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 0.15rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}

.introButton:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #2b705f;
	border-radius: 15px;
	z-index: -2;
	box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.introButton:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: #2b4f70;
	transition: all 0.3s;
	border-radius: 15px;
	z-index: -1;
	box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.introButton:hover {
	color: #fff;
	cursor: pointer;
}

.introButton:hover:before {
	width: 100%;
}

.countDownBox {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	margin-bottom: 40px;
}

.countDown {
	width: 200px;
	height: 200px;
	border: 4px solid #82e8ff;
	border-radius: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 28px;
	position: relative;
	z-index: 1;
	box-shadow: rgba(89, 249, 255, 0.35) 0px 0px 25px 0px;
}

.countDownText {
	border: 4px solid #82e8ff;
	padding: 5px 35px;
	display: inline-block;
	border-radius: 200px;
	font-size: 32px;
	background: #14141d;
	z-index: 2;
	position: absolute;
	top: calc(50% - 25px);
	box-shadow: rgba(89, 249, 255, 0.35) 0px 0px 25px 0px;
}

.tableMobile{
  width: 100%;
  overflow-x: auto;
}

.table-fill {
	border-collapse: collapse;
	width: 100%;
}

.soldOut{
	height: 55px;
width: auto;
}

th {
	color: #fff;
	font-size: 18px;
	font-weight: 100;
	padding: 5px;
	padding-left: 20px;
	text-align: left;
	vertical-align: middle;
}

th:last-child {
	border-right: none;
}

tr {
	color: #fff;
	font-size: 16px;
	font-weight: normal;
}

tr:first-child {
	border-top: none;
}

tr:last-child {
	border-bottom: none;
}

tr:nth-child(odd) td {
	background: #21212e;
}

td {
	background: #1b1b26;
	padding: 20px;
	text-align: left;
	vertical-align: middle;
	font-weight: 300;
	font-size: 18px;
}

td:last-child {
	border-right: 0px;
}

td b {
	padding: 5px 20px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	font-weight: 400;
	color: #000;
	display: inline-block;
	opacity: 0.95;
	text-align: left;
}

td b span {
	font-weight: 700;
	letter-spacing: 1px;
}

td > span{
	font-size: 21px;
	color: #4d9dff;
	font-weight: 800;
	margin-top: 15px;
	background-image: linear-gradient(80deg, #57b3ff 0%, #34ebe8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

td > span.live{
	background-image: linear-gradient(80deg, #ff5757 0%, #ff8757 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.timelineContainer {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: 130px;
	padding-top: 25px;
	padding-bottom: 25px;
}

.timelineContainer:before {
	content: '';
	position: absolute;
	top: 25px;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: calc(100% - 50px);
	background: #82e8ff;
	z-index: 1
}

.timelineBlock {
	width: calc(50% + 16px);
	display: flex;
	justify-content: space-between;
}

.timelineBlockRight {
	float: right;
}

.timelineBlockLeft {
	float: left;
	direction: rtl;
}

.marker {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #82e8ff;
	background: #14141d;
	z-index: 9999;
	position: relative;
}

.marker.done{
	background: #82e8ff;
	box-shadow: 0 0 0 rgba(130, 232, 255, 0.4);
  animation: pulse 1s infinite;
}

.marker.filled{
	background: #82e8ff;
}

.marker.further{
	background: #14141d;
}

.marker.continue::after{
	content: "";
	position: absolute;
	width: 6px;
	left: 11px;
	top: 25px;
	height: 80px;
	background: #82e8ff;
	box-shadow: 0 0 0 rgba(130, 232, 255, 0.4);
  animation: pulse 1s infinite;
	border-radius: 50px;
}

.marker.continueFull1::after{
	animation: none;
	height: 165px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(130, 232, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(130, 232, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(130, 232, 255, 0);
  }
}

.timeline-content {
	width: 95%;
	padding: 0 15px;
	color: #fff;
}

.timeline-content h3 {
	margin-top: -5px;
	margin-bottom: 0px;
	font-size: 35px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	word-spacing: 1px;
	letter-spacing: 1px;
	color: #82e8ff;
}

.timeline-content span {
	font-size: 15px;
	color: #a4a4a4;
}

.timeline-content p {
	font-size: 14px;
	line-height: 1.5em;
	word-spacing: 1px;
	color: #fff;
	opacity: 0.85;
}

.timelineBlockRight h3 {
	padding-left: 15px;
}

.root .persons {
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 35px;
}

.root .persons div {
	width: 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.root .persons div img {
	width: 250px;
	height: 250px;
	border-radius: 15px;
	border: 6px solid rgba(255, 255, 255, 0.1);
	box-shadow: rgba(255, 255, 255, 0.1) 0px 5px, rgba(255, 255, 255, 0.05) 0px 10px, rgba(255, 255, 255, 0.025) 0px 15px;
}

.root .persons div b {
	margin-top: 20px;
	text-align: center;
	width: 100%;
	font-size: 26px;
}

.root .persons div b span {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	opacity: 0.75;
	font-weight: 400;
}

.root .persons div .links {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 5px;
}

.root .persons div .links a {
	display: block;
	margin: 10px;
}

.root .persons div .links a svg {
	height: 28px;
	width: 28px;
	fill: #fff;
}

.root .persons.counter label{
	font-size: 45px;
	background-image: linear-gradient(180deg, #14ecff 20%, rgba(204, 84, 255, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Accordion styles */

.tabs {
	border-radius: 8px;
	overflow: hidden;
	margin-top: 35px;
}

.tab {
	width: 100%;
	color: white;
	overflow: hidden;
	border-bottom: 3px solid #313142;
}

.tab:last-of-type {
	border-bottom: none;
}

.tab-label {
	display: flex;
	justify-content: space-between;
	padding: 20px 30px;
	background: #21212e;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	/* Icon */
}

.tab-label:hover {
	background: #1b1b26;
}

.tab-label::after {
	content: "\276F";
	width: 1em;
	height: 1em;
	text-align: center;
	transition: all 0.35s;
}

.tab-content {
	max-height: 0;
	padding: 0 20px;
	font-size: 20px;
	color: #fff;
	background: #1b1b26;
	transition: all 0.35s;
}

.tab-close {
	display: flex;
	justify-content: flex-end;
	padding: 1em;
	font-size: 0.75em;
	background: #2c3e50;
	cursor: pointer;
}

.tab-close:hover {
	background: #1a252f;
}

input {
	display: none;
}

input:checked+.tab-label {
	background: #1b1b26;
}

input:checked+.tab-label::after {
	transform: rotate(90deg);
}

input:checked~.tab-content {
	max-height: 100vh;
	padding: 20px;
	padding-left: 30px;
}

.formyBtn{
	padding: 2;
	border-radius: 120px;
	background: linear-gradient(180deg, rgba(20, 236, 255, 0.75) 20%, rgba(204, 84, 255, 0.75) 80%);
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	margin: 0 auto;
	margin-bottom: -15px;
}

.formyBtn:hover{
	color: #fff;
	background: linear-gradient(180deg, rgba(20, 236, 255, 0.95) 20%, rgba(204, 84, 255, 0.95) 80%);
}

.formyBtn span{
	display: block;
	border-radius: 120px;
	background: #14141d;
	padding: 10px 25px;
}

.formyBtn:hover span{
	background: #1f1f2b;
}

.footer {
	display: flex;
	width: 100%;
	margin-bottom: 35px;
	margin-top: 35px;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

.footer img {
	width: 128px;
	height: 128px;
}

.footer>div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}

.footer>div:first-of-type {
	align-items: flex-start;
}

.footer>div:last-of-type {
	align-items: flex-end;
	flex-direction: row;
}

.footer>div a {
	font-size: 18px;
	color: #fff;
	margin: 10px;
	transition: opacity 0.1s linear;
}

.footer>div a:hover {
	opacity: 0.75;
	cursor: pointer;
}

.footer>div a svg {
	height: 32px;
	width: 32px;
	fill: #fff;
	transition: opacity 0.1s linear;
}

.footer>div a:hover svg {
	opacity: 0.75;
}

.footer>div b {
	margin-top: 15px;
	opacity: 0.75;
	display: block;
	text-align: center;
}

* {box-sizing: border-box;}

.imgCompContainer {
  position: relative;
  height: 200px; /*should be the same height as the images*/
	width: 262px;
	height: 262px;
	border-radius: 15px;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 5px, rgba(255, 255, 255, 0.05) 0px 10px, rgba(255, 255, 255, 0.025) 0px 15px;
	border: 6px solid rgba(255, 255, 255, 0.1);
	position: absolute;
	right: 30px;
	top: 50px;
}


.imgCompImg {
  position: absolute;
  width: auto;
  height: auto;
  overflow:hidden;
}

.imgCompImg img {
  display:block;
  vertical-align:middle;
	width: 250px;
	height: 250px;
	border-radius: 14px;
}

.imgCompSlider {
  position: absolute;
  z-index:9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  background-color: #2c2c34;
  border-radius: 50%;
}

.imgCompSlider::before{
	content:"";
	height: 250px;
	width: 4px;
	background: #2c2c34;
	display: block;
	position: absolute;
	top: -105px;
	left: calc(50% - 2px);
}


.socials{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 35px;
}

.socials a{
  display: flex;
  justify-content:center;
  align-items:center;
  padding: 10px 40px;
  flex-direction: row;
  color: #fff;
  background: red;
  border-radius: 250px;
  margin-top: 15px;
}

.socials a svg{
  height: 35px;
  width: 35px;
  fill: rgba(255,255,255,0.75);
}

.socials a b{
    font-size: 1.15vw;
    margin-left: 10px;
}

.socials a:hover{
  opacity: 0.75;
  cursor: pointer;
}


form, .form{
  width: 100%;
  margin-top: 20px;
}

form label{
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}

form label span, .reqspan{
	color: red;
	opacity: 0.75;
	font-weight: 800;
}

.prev{
  width: 256px;
  height: 256px;
  border-radius: 20px;
  margin-bottom: 15px;
  display: block;
}

form b{
  display: block;
  font-size: 1.15vw;
  font-weight: 400;
  opacity: 0.5;
}



form input, form select, form textarea{
  width: 50%;
  padding: 20px 20px;
  font-size: 18px;
  color: #000;
  border-radius: 15px;
  margin-bottom: 30px;
  outline: none;
  border: none;
	display: block;
}

form input:hover, form input:focus, form select:hover{
  outline: none;
  border: none;
}

form input[type="submit"]{
  background: linear-gradient(60deg, #ef9696 20%, #cd1cff 98%);
  border-radius: 250px;
  font-weight: 800;
  font-size: 22px;
}

form input[type="submit"]:hover{
  cursor: pointer;
  opacity: 0.75;
}


.partner{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.partner img{
	height: 120px;
	width: 180px;
	object-fit: contain;
	margin: 25px;
}

.partner div{
	width: 100%;
	height: 1px;
}

.socialsBox{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

.socialsBox > a{
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  margin: 20px;
  transition: filter 0.06s linear, opacity 0.06s linear, color 0.06s linear;
	filter: grayscale(1) brightness(1.5);
}


.socialsBox > a:hover{
  cursor: pointer;
	filter: grayscale(0);
	opacity: 1;
}

.socialsBox > a > svg{
  height: 88px;
  width: 88px;
}

.socialsBox > a > span{
  margin-top: 6px;
  font-weight: 500;
  font-size: 18px;
  opacity: 0.7;
	color: #909093;
}

.socialsBox > a:hover > span{
	color: #909093;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(204, 84, 255, 0.2);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #14ecff 20%, rgba(204, 84, 255, 1) 80%);
	opacity: 0.65;
	border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #14ecff 20%, rgba(204, 84, 255, 1) 80%);
	opacity: 0.9;
}

@media screen and (orientation:portrait) {

	form input{
    width: 100%;

  }

  form b{
    font-size: 18px;
  }


  .socials a b{
      font-size: 22px;
      margin-left: 10px;
  }

	.root .head {
    padding-right: 0;
    padding-left: 10px;
    padding-right: 10px;
	}

	.imgCompContainer{
		position: relative;
		top: auto;
		right: auto;
	}

	.root .head{
		justify-content: flex-end;
		margin-bottom: 30px;
	}

	.root .head>a {
		display: none;
		padding-right: 0;
	}

	.root .head>a.mobile{
		display: block;
		margin-top: 105px;
		font-size: 21px;
	}
	.root .head img,
	.root .head h1 {
		left: 10px;
	}
	.root .head .social {
		justify-content: flex-end;
		right: 10px;
	}
	.root img.intro {
		border-radius: 0px;
	}
	.root .section{
		padding-left: 15px;
		padding-right: 15px;
	}
	.root .section h1.centered,
	.root .section p.centered {
		text-align: left;
		width: 100%;
	}
	.root .section p.full,
	.root .section p {
		text-align: left;
		width: 100% !important;
	}
	.root .section p.right,
	.root .section h1.right {
		text-align: left;
		width: 100%;
	}
	.timelineContainer:before {
		left: 16px;
		width: 2px;
	}
	.timelineBlock {
		width: 100%;
		margin-bottom: 30px;
	}
	.timelineBlockRight {
		float: none;
	}
	.timelineBlockLeft {
		float: none;
		direction: ltr;
	}

	.partner{
		align-items: flex-start;
		justify-content: flex-start;
	}

	.partner > img{
		height: 120px;
    width: 30%;
	}

	.socialsBox{
		align-items: flex-start;
		justify-content: flex-start;
	}

	.socialsBox > a{
			margin: 10px;
	}

	.socialsBox > a > svg{
	  height: 54px;
	  width: 54px;
	}

	.root .persons {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.root .persons span{
		text-align: left;
	}

	.root .persons div b{
		text-align: left;
	}

	.root .persons div{
		align-items: flex-start;
		justify-content: flex-start;
		text-align: left;
	}

	.root .persons a{
		margin: 0;
	}

}
