/* General */

html {
	scroll-behavior: smooth;
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: normal;
	src: url('./fonts/Poppins-Regular.ttf');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: bold;
	src: url('./fonts/Poppins-Bold.ttf');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: lighter;
	src: url('./fonts/Poppins-Light.ttf');
}

@font-face {
	font-family: 'Poppins';
	font-style: italic;
	font-weight: normal;
	src: url('./fonts/Poppins-Italic.ttf');
}

body {
	background-color: #050c38;
	background: linear-gradient(90deg, rgb(244 245 255) 0%, rgb(233 247 253) 100%);
	margin: 0px;
	font-family: 'Poppins';
	font-weight: normal;
}

h2 {
	font-size: 2.5rem;
	color: #0c2c54;
}

p {
	font-size: 1.15rem;
	line-height: 180%;
	margin-bottom: 2rem;
	color: #0c2c54;
}

a {
	text-decoration: unset;
	color: #1f8db9;
}

.row {
	width: 100%;
	max-width: 1520px;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	margin-top: 5rem;
	box-sizing: border-box;
}

.row.small-row {
	max-width: 1200px;
}

.row.medium-row {
	max-width: 1300px;
}

.first-row {
	margin-top: 4rem;
}

.flex-row {
	display: flex;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.justify-start {
	justify-content: flex-start;
}

.align-center {
	align-items: center;
}

.txt-align-center {
	text-align: center;
}

.flex-reverse {
	flex-direction: row-reverse;
}

.flex-column {
	flex-direction: column;
}

.full {
	width: 100%;
	margin-top: 10rem;
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.full .row {
	margin-top: 0px;
	margin-bottom: 0px;
}

.gray {
	background-color: #f9f9f9;
}

.white {
	background-color: #fff;
}

.blue {
	border: 2px solid #1f8db9;
	background-color: rgba(31, 141, 185, 0.35);
}

.bold {
	font-weight: bold;
}

.margin-bot-five {
	margin-bottom: 5rem;
}

.margin-bot-zero {
	margin: 0;
}

#card-section .blue {
	    padding-bottom: 2rem;
}

.primary-button {
    display: inline-block;
    text-decoration: unset;
    color: #0c2c54;
    padding: 1rem 2rem;
    border-radius: 40px;
    background-color: #1f8db9;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.15s;
}

.primary-button:hover {
	background-color: #095370;
}

.primary-button.small-button {
	padding: 0.5rem 2rem;
	box-sizing: border-box;
}

.secondary-button {
    display: inline-block;
    text-decoration: unset;
    color: #0c2c54;
    padding: 1rem 2rem;
    border-radius: 40px;
    background-color: transparent;
    //border: 3px solid #1f8db9;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.25s;
    box-shadow: 5px 5px 5px #0c2c54a8;
    border: none;
    background-color: white;

}

.secondary-button:hover {
		border-color: #0c2c54;
    color: white;
    background: linear-gradient(90deg, rgb(12 44 84 / 88%) 0%, rgb(24 137 157 / 70%) 100%);
}
.secondary-button:hover > svg{
		fill:#fff;
}

.menu-container .menu-buttons a:hover {
		border-color: #0c2c54;
    color: white;
    background: linear-gradient(90deg, rgb(12 44 84 / 88%) 0%, rgb(24 137 157 / 70%) 100%);
}

.text-center {
	text-align: center;
}

.five-row {
	padding: 5rem 0rem 5rem 0rem;
}

/* width */

::-webkit-scrollbar {
  width: 10px;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Header */

header {
	width: 100%;
	max-width: 1520px;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	margin: auto;
	padding-top: 2rem;
	display: flex;
	align-items: center;
}

.logo-container {
	width: 250px;
	box-sizing: border-box;
	position: relative;
	z-index: 7;
}

.logo-container a {
	display: block;
	width: 100%;
}

.logo-container a img {
	width: 100%;
	height: auto;
}

.menu-container {
	padding-left: 7rem;
	width: calc(100% - 250px);
	box-sizing: border-box;
}

.menu-container > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.menu-container ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
}

.menu-container ul li {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.menu-container ul li:first-child {
	padding-left: 0px;
}

.menu-container ul li:last-child {
	padding-right: 0px;
}

.menu-container ul li a {
	text-decoration: unset;
	color: #0c2c54;
	font-weight: bold;
	font-size: 1.1rem;
}

.menu-container .menu-buttons a {
	position: relative;
	display: block;
	text-decoration: unset;
	color: #0c2c54;
	padding: 0.6rem 3rem 1.2rem 3rem;;
	border-radius: 40px;
	background-color: #1f8db9;
	font-weight: bold;
	font-size: 1.2rem;
	box-shadow: 5px 5px 5px #0c2c54a8;
	background-color: #fff;
	transition: all 0.25s;
}

.menu-container .menu-buttons a span {
	display: block;
	margin-top: -5px;
}

.menu-container .menu-buttons a small {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,50%);
	width: 100%;
	text-align: center;
	font-size: 0.55rem;
}

.icon-menu-mobile {
	display: none;
}

/* Body */

.wrapper {
	margin-top: 0rem;
}

#landing-section {
	padding-top: 0rem;
	padding-bottom: 1rem;
	margin-top: 0rem;
}

#landing-section > div {
	width: 50%;
	box-sizing: border-box;
}

#landing-section > div:first-child {
	width: 60%;
	position: relative;
	z-index: 6;
	padding-right: 6rem;
}

#landing-section > div:last-child {
	width: 40%;
	padding-left: 2rem;
    box-sizing: border-box;
    position: relative;
	z-index: 5;
    overflow: hidden;
}

#landing-section > div:last-child svg {
	transform: unset !important;
}

#landing-section .landing-text h1 {
	color: #0c2c54;
	font-size: 4.5rem;
	margin-top: 0px;
	margin-bottom: 1rem;
}

#landing-section .landing-text .landing-subtext {
	display: flex;
	justify-content: flex-start;
}

#landing-section .landing-text .landing-subtext p {
	font-size: 1.35rem;
}

#landing-section .landing-text .landing-subtext ul {
	list-style-type: none;
	margin-bottom: 2rem;
}

#landing-section .landing-text .landing-subtext ul li {
	margin-bottom: 1rem;
    position: relative;
    color: #0c2c54;
}

#landing-section .landing-text .landing-subtext ul li .action-dot {
	background-color: #1f8db9;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 8px;
    left: -25px;
}

#landing-section .landing-text .landing-subtext div {
	font-size: 1.5rem;
	color: #0c2c54;
	font-weight: bold;
	display: flex;
	align-items: center;
	width: auto;
}

#landing-section .landing-text .landing-subtext div:last-child {
	padding-left: 1rem;
}

#landing-section .landing-text .landing-subtext div span:first-child {
	color: #1f8db9;
	font-size: 4rem;
	margin-right: 1rem;
}

#landing-section .landing-button a:first-child {
	margin-right: 1rem;
}

#landing-section .landing-image {
	position: relative;
}

#landing-section .landing-image > img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}

#landing-section .landing-image .floating-image {
	position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
    height: auto;
    filter: blur(3px);
}

	.schedule {
		display: flex;
	} 

	.schedule svg{
		width: 21px;
    margin-left: 1rem;
    fill: #0c2c54;
    transition: all 0.25s;
  }

  .scheduleFooter {
    background: linear-gradient(90deg, rgb(12 44 84 / 88%) 0%, rgb(24 137 157 / 70%) 100%);
    color: white;
    justify-content: center;
    padding: 0.6rem 2rem;
  }

  .scheduleFooter svg{
    fill:#fff;
  }

#partners-section .flex-row > div {
	width: 20%;
	box-sizing: border-box;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

#partners-section .flex-row > div > a {
	display: block;
	transition: all 0.15s;
}

#partners-section .flex-row > div > a:hover {
	opacity: 0.7;
}

#partners-section .flex-row > div > a img {
	width: 100%;
	height: auto;
}

.tab-white .blue {
	border-radius: 50px;
	padding: 4rem;
	padding-top: 3rem;
	display: flex;
	align-items: center;
	background-color: white;
  border: none;
  box-shadow: 5px 5px 5px #d4d4d4;
}

.tab-white > div > div {
	width: 50%;
}

.tab-white > div > div:last-child {
	padding-right: 2rem;
}

/*.tab-white > div > div:first-child {
	padding-left: 2rem;
	padding-top: 2rem;
	padding-bottom: 1.5rem;
	text-align: center;
	padding-right: 5rem;

}
*/

.tab-white > div > div:first-child img {
	width: 100%;
	max-width: 600px;
	height: auto;
}

.tab-white h2 {
	font-size: 3rem;
	color: #0c2c54;
	margin-top: 0px;
}

.tab-white p {
	color: #0c2c54;
	margin-top: 0px;
}

.tab-white p:last-child {
	margin-bottom: 0px;
}

.tab-white video {
	max-width: 100%;
}

.gPlay > svg {
	margin-left: 1rem;
}

.cardList {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.cardList li {
	display: flex;
   flex-direction: column;
   width: 40%;
   padding: 2rem 3rem 0rem 0rem;
}

.cardList li img{
	max-width:fit-content;
	margin-bottom: 1rem;
	width: 50px;
}

#app-section h2 {
	font-size: 4rem;
    margin-bottom: 0px;
}

#app-section h4 {
	color: #0c2c54;
    font-size: 2.5rem;
    margin-top: 0px;
}

#app-section .app-image {
	border-radius: 25px;
	overflow: hidden;
}

#app-section .app-image img {
	margin-bottom: -7px;
	background-color: rgba(255,255,255,.8);
    box-shadow: 0 10px 2rem 0 rgb(74 64 250 / 4%);
    -webkit-backdrop-filter: brightness(200%) blur(1rem);
    backdrop-filter: brightness(200%) blur(1rem);
}

#features-section .feature-element {
	color: #0c2c54;
	margin-bottom: 8rem;
}

#features-section .feature-element > div:first-child{
	width: 55%;
}

#features-section .feature-element > div:last-child{
	width: 45%;
	text-align: center;
}

/*#features-section .feature-element.feature-left > div:first-child{
	padding-right: 2rem;
	box-sizing: border-box;
}

#features-section .feature-element.feature-right > div:last-child{
	padding-left: 2rem;
	box-sizing: border-box;
}
*/

#features-section .feature-element .feature-text h2 {
	margin-top: 0px;
}

#features-section .feature-element .feature-text p {
	color: #0c2c54;
	font-size: 1.15rem;
	line-height: 180%;
	margin-bottom: 2rem;
}

#features-section .feature-element .feature-text ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#features-section .feature-element .feature-text ul li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

#features-section .feature-element .feature-text ul li:last-child {
	margin-bottom: 0px;
}

#features-section .feature-element .feature-text ul li img {
	width: 32px;
	height: 32px;
}

#features-section .feature-element .feature-text ul li span {
	padding-left: 1rem;
	font-size: 1.15rem;
	font-weight: bold;
}

#features-section .feature-element.feature-left .feature-image {
	padding-left: 5rem;
	box-sizing: border-box;
}

#features-section .feature-element.feature-right .feature-image {
	padding-right: 5rem;
	box-sizing: border-box;
}

#features-section .feature-element .feature-image img {
	width: 100%;
	height: auto;
}

#circles-section > div {
	width: 600px;
}

#circles-section .circles-container {
	position: relative;
	display: flex;
    flex-direction: column;
    align-items: center;
}

#circles-section .circles-container > div {
	margin-bottom: 0px;
}

#circles-section .circles-container > .defi-line {
	height: 150px;
	border: 2px dotted #aaa;
	width: 0px;
	box-sizing: border-box;
}

#circles-section .circles-container > .defi-line:first-child {
	height: 107px;
}

#circles-section .circles-container #svgpath {
	margin-bottom: 150px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

#circles-section .circles-container #svgpath svg {
	width: 100%;
	height: auto;
	overflow: visible;
}

#circles-section .circles-container .circle1 {
	width: 600px;
	height: 600px;
	border-radius: 50%;
	padding: 3px;
	box-sizing: border-box;
}

#circles-section .circles-container .circle2 {
	width: 100%;
	height: 100%;
	background-color: #050c38;
	border-radius: 50%;
	padding: 3rem;
	box-sizing: border-box;
}

#circles-section .circles-container .circle3 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	padding: 2rem;
	box-sizing: border-box;
}

#circles-section .circles-container .circle4 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	padding: 2rem;
	box-sizing: border-box;
}

#circles-section .circles-container .circle5 {
	width: 100%;
	height: 100%;
	background-color: #050c38;
	border-radius: 50%;
	padding: 4rem;
	box-sizing: border-box;
}

#circles-section .circles-container .circle6 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	padding: 2rem;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.75rem;
	font-weight: bold;
	color: #0c2c54;
	position: relative;
}

#circles-section .circles-container .circle6 span {
	position: relative;
	z-index: 2;
}

#circles-section .circles-container .circle7 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	background-color: #050c38;
	border-radius: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	border: 2px solid #0c2c54;
}

#circles-section .circles-container .inactive .circle1,
#circles-section .circles-container .inactive .circle3,
#circles-section .circles-container .inactive .circle4,
#circles-section .circles-container .inactive .circle6 {
	background: radial-gradient(circle, rgb(177 177 177) 0%, rgba(43,248,194,0) 100%) !important;
}

#circles-section .circles-container #defi-circles .circle1,
#circles-section .circles-container #defi-circles .circle3,
#circles-section .circles-container #defi-circles .circle4,
#circles-section .circles-container #defi-circles .circle6 {
	background: radial-gradient(circle, rgba(43,248,194,1) 0%, rgba(43,248,194,0) 100%);
}

#circles-section .circles-container #cefi-circles .circle1,
#circles-section .circles-container #cefi-circles .circle3,
#circles-section .circles-container #cefi-circles .circle4,
#circles-section .circles-container #cefi-circles .circle6 {
	background: radial-gradient(circle, rgba(1,152,182,1) 0%, rgba(1,152,182,0) 100%);
}

#circles-section .circles-container #daisen-circles {
	margin-bottom: 0px;
}

#circles-section .circles-container #daisen-circles .circle1,
#circles-section .circles-container #daisen-circles .circle6 {
	/* background: linear-gradient(45deg, rgba(43,248,194,1) 0%, rgba(29,190,222,1) 100%); */

	background: linear-gradient(45deg, rgb(33 165 130) 0%, rgb(0 163 197) 100%);
}

#circles-section .circles-container #daisen-circles .circle3 {
	background: radial-gradient(circle, rgba(1,152,182,1) 0%, rgba(1,152,182,0) 100%);
}

#circles-section .circles-container #daisen-circles .circle4 {
	background: radial-gradient(circle, rgba(43,248,194,1) 0%, rgba(43,248,194,0) 100%);
}

#circles-section .infos-container {
	padding-top: 107px;
}

#circles-section .infos-container > div {
	width: 600px;
	height: 600px;
	margin-bottom: 150px;
}

#circles-section .infos-container > div:last-child {
	margin-bottom: 0px;
}

#circles-section .infos-container .mobile-circles {
	display: none;
}

#circles-section .infos-container h2 {
	margin-top: 0px;
}

#roadmap-section h2 {
	margin-bottom: 5rem;
	margin-top: 0px;
}

#roadmap-section .roadmap-composition {
	width: calc(100% - 100px);
    margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

#roadmap-section .roadmap-composition .roadmap-separator {
	border-top: 4px solid #1f8db9;
	width: calc(100% - 200px);
	height: 300px;
	position: relative;
}

#roadmap-section .roadmap-composition .roadmap-separator .roadmap-circle {
	width: 308px;
    height: 300px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border: 4px dotted #1f8db9;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: -1;
}

#roadmap-section .roadmap-composition .roadmap-separator:first-child .roadmap-circle {
	top: 0px;
	right: 0px;
	transform: rotate(90deg) translateY(-50%);
}

#roadmap-section .roadmap-composition .roadmap-separator:nth-child(2) .roadmap-circle {
	top: 0px;
	left: 0px;
	transform: rotate(-90deg) translateY(-50%);
}

#roadmap-section .roadmap-composition .roadmap-separator:nth-child(3) .roadmap-circle {
	top: 0px;
	right: 0px;
	transform: rotate(90deg) translateY(-50%);
	display: none;
}

#roadmap-section .roadmap-composition .roadmap-info {
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: calc(100% - 200px);
	height: 100%;
	box-sizing: border-box;
	transform: translateX(-50%);
}

#roadmap-section .roadmap-composition .roadmap-info .roadmap-row {
	display: flex;
	color: #0c2c54;
	width: 100%;
	height: 304px;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	box-sizing: border-box;
	transform: translateY(-2.5rem);
}

#roadmap-section .roadmap-composition .roadmap-row .roadmap-element {
	width: 33.33%;
	position: relative;
	padding-left: 1.5rem;
}

#roadmap-section .roadmap-composition .roadmap-row .roadmap-element .title-element {
	font-weight: bold;
	font-size: 1.15rem;
	padding-bottom: 1.5rem;
}

#roadmap-section .roadmap-composition .roadmap-row .roadmap-element .text-element span {
	display: block;
	margin-bottom: 0.5rem;
}

#roadmap-section .roadmap-composition .roadmap-row .roadmap-element .point-element {
	position: absolute;
    left: -2px;
    top: 24px;
    width: 20px;
    height: 20px;
    background-color: #0c2c54;
    border-radius: 50%;
}

#roadmap-section .roadmap-composition .roadmap-row .roadmap-element.actual-roadmap .title-element {
	color: #0c2c54;
	text-shadow: 0px 0px 4px #00e7ff;
}
/*
#roadmap-section .roadmap-composition .roadmap-row .roadmap-element.actual-roadmap .point-element {
	background-color: #1f8db9;
	width: 35px;
	height: 35px;
	left: -15px;
    top: 16px;
	border: 3px solid #0c2c54;
	box-sizing: border-box;
}
*/
#roadmap-section .roadmap-composition .roadmap-row .roadmap-element.future-roadmap .title-element {
	color: #0c2c54;
}

#roadmap-section .roadmap-composition .roadmap-row .roadmap-element.future-roadmap .point-element {
	background-color: #0c2c54;
}

#roadmap-section .roadmap-mobile {
	display: none;
}

.product-section {
	position: relative;
	margin-top: 15rem;
}

.product-section > .flex-row {
	padding: 5rem 1rem 7rem 1rem;
	position: relative;
	z-index: 2;
}

.product-section .product-header {
	width: 35%;
    padding-right: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.product-section h2 {
	font-size: 3rem;
  color: #0c2c54;
  margin-top: 5px;
  text-align: center;
}

.phone-section {
	background-color: white;
  padding: 1rem;
  border-radius: 0;
  max-width: 100%;
  padding-top: 5rem;
}

.product-section .product-header .product-image {
	width: 100%;
	text-align: center;
}




.product-section .product-header .product-image img {
	width: 280px;
    height: auto;
}

.product-section .product-info {
	width: 65%;
    padding-left: 2rem;
    box-sizing: border-box;
}

.product-section .product-info > div {
	width: 50%;
	box-sizing: border-box;
}

.product-section .product-info > div:first-child {
	padding-right: 1.5rem;
}

.product-section .product-info > div:last-child {
	padding-left: 1.5rem;
}

.product-section .product-info h3 {
    margin-top: 0px;
    font-size: 1.75rem;
    color: #0c2c54;
}

.product-section .product-info ul {
	margin: 0px;
    padding: 0px;
    list-style-type: none;
    color: #04031f;
    font-size: 1.1rem;
}

.product-section .product-info ul li {
	margin-bottom: 1.5rem;
	position: relative;
}

.product-section .product-info ul li:last-child {
	margin-bottom: 0px;
}

.product-section .product-info ul li .product-dot {
	background-color: #1f8db9;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 8px;
    left: -25px;
}

.product-section .product-info ul li .product-name {
	display: block;
	font-weight: bold;
	color: #0c2c54;
	font-size: 1.3rem;
}

.product-section .product-mask {
	width: 85%;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	border-radius: 25px;
	background-color: rgba(255, 255, 255, 0.25);
	z-index: 1;
}

#compare-section {
	margin-top: 5rem;
	margin-bottom: 5rem;
    border-radius: 50px;
    width: 100%;
    
    /* border: 2px solid #1f8db9; */
    /*background-color: rgb(255 255 255 / 90%); */
    color: #0c2c54;
    /*box-shadow: 5px 5px 5px #d4d4d4;*/
}

#compare-section  table {
	    width: 100%;
}

.compare-section table {
	padding-left: 5rem;
}

.text-left {
	text-align: left;
}

.compare-section .tab-white {
	border-radius: 50px;
    padding: 4rem;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    background-color: white;
    border: none;
    box-shadow: 5px 5px 5px #d4d4d4;
}

#compare-section tr:not(:last-child) td,
#compare-section tr:not(:last-child) th {
	border-bottom: 1px solid #1f8db9;
}

#compare-section td,
#compare-section th {
	padding: 0.75rem 0.5rem;
	box-sizing: border-box;
	font-size: 1.1rem;
}

#compare-section th {
	font-size: 1.2rem;
}

#compare-section tr th:not(:first-child) {
	width: 100px;
}

#compare-section .compare-big-title {
	text-align: left;
}

#compare-section .compare-check,
#compare-section .compare-full-check {
	text-align: center;
}

#compare-section .compare-full-check svg {
	border-radius: 50%;
	background-color: #1f8db95e;
}

#compare-section .compare-check svg,
#compare-section .compare-full-check svg {
	width: 30px;
	height: 30px;
	padding: 0.25rem;
}

#service-section {
	display: flex;
   justify-content: space-between;
}

.tripleTab {
	width: 32%;
  background-color: white;
  border-radius: 50px;
  padding: 4rem 2rem 4rem 2rem;
  box-sizing: border-box;
  box-shadow: 5px 5px 5px #d4d4d4;
 }

 .tripleTab img{
 	max-width: 250px;
 	max-height: 200px;
 }

.tripleTab ul{
 	list-style: none;
 }

.tripleTab ul li{
   padding-bottom: 1rem;
   display: flex;
   align-items: center;
}

 .listaImagenes img{
 	max-width: 35px;
 	padding-right: 1rem;
 }

.columnImages {
	width: 100%;
  display: flex;
  flex-direction: column;
}

.phoneImg {
	text-align: center;
	margin-bottom: 3rem;
	margin-top: 3rem;
}



.top-call-action {
	position: relative;
	overflow: hidden;
}

.top-call-action .row {
	position: relative;
	z-index: 3;
}

.top-call-action .call-action-content {
	width: 50%;
	padding-right: 2rem;
	box-sizing: border-box;
}

.top-call-action .call-action-media {
	width: 50%;
	padding-left: 2rem;
	box-sizing: border-box;
	text-align: center;
}

.top-call-action .call-action-media video {
	width: 100%;
	height: auto;
}

.top-call-action .call-action-media img {
	width: 80%;
	height: auto;
}

.top-call-action h2 {
	color: #050c38;
	margin-top: 0px;
}

.top-call-action p {
	color: #050c38;
}

.top-call-action ul {
	margin-bottom: 2rem;
	list-style-type: none;
}

.top-call-action ul li {
	margin-bottom: 1rem;
	position: relative;
}

.top-call-action ul li .action-dot {
	background-color: #1f8db9;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 8px;
    left: -25px;
}

.top-call-action .call-action-image1 {
	position: absolute;
	width: 900px;
    bottom: -7px;
    right: -45px;
	z-index: 2;
	opacity: 0.8;
}

.top-call-action .call-action-image1 img {
	width: 100%;
	height: auto;
}

.top-call-action .call-action-image2 {
	position: absolute;
    top: -58%;
    left: -12%;
    z-index: 2;
    opacity: 0.2;
}

.top-call-action .call-action-image2 img {
	width: 100%;
	height: auto;
}

.top-call-action .call-action-image3 {
	position: absolute;
    top: -35%;
    right: -25%;
    z-index: 2;
    opacity: 0.2;
}

.top-call-action .call-action-image3 img {
	width: 60%;
	height: auto;
}

#operation-section #operation-animation {
	position: relative;
	margin-top: 7rem;
}

#operation-section #operation-animation .operation-element {
	position: absolute;
	width: 100%;
	max-width: 350px;
	min-height: 350px;
	border: 2px solid #1f8db9;
	padding: 1.5rem;
	box-sizing: border-box;
	display: none;
	color: #0c2c54;
	background-color: rgba(31, 141, 185, 0.35);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 25px;
}

#operation-section #operation-animation .operation-element:nth-child(2) {
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}

#operation-section #operation-animation .operation-element:nth-child(3) {
	top: 0%;
	left: 50%;
	transform: translateX(-50%);
}

#operation-section #operation-animation .operation-element:nth-child(4) {
	top: 50%;
	right: 0%;
	transform: translate(0%,-50%);
}

#operation-section #operation-animation .operation-element:last-child {
	bottom: 0%;
	left: 50%;
	transform: translate(-50%,0%);
}

#operation-section #operation-animation .operation-element h3 {
	margin-top: 0px;
	font-size: 1.5rem;
}

#operation-section #operation-animation .operation-element h4 {
	margin-top: 0px;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

#operation-section #operation-animation .operation-element p {
	margin-bottom: 0px;
	margin-top: 0px;
	font-size: 1rem;
	line-height: 150%;
}

#fees-section > div {
	width: 50%;
	box-sizing: border-box;
}

#fees-section > div:first-child {
	padding-right: 3rem;
}

#fees-section > div:last-child {
	padding-left: 3rem;
}

#fees-section .fees-boxes {
	transform-origin: 50% 50%;
	transform: perspective(1000px) rotateY(-5deg);
    -webkit-transform: perspective(1000px) rotateY(-5deg);
}

#fees-section .fees-boxes .fees-box {
	width: 50%;
}

#fees-section .fees-boxes .fees-box .fees-box-info {
    text-align: center;
    border-radius: 25px 25px 0px 0px;
}

#fees-section .fees-boxes .fees-box:first-child .fees-box-info {
	padding: 7rem 4rem;
	background: linear-gradient(90deg, rgba(9,69,155,1) 0%, rgba(49,188,221,1) 100%);
}

#fees-section .fees-boxes .fees-box:last-child .fees-box-info {
	padding: 3.5rem 4rem;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0px 25px 0px 0px;
}

#fees-section .fees-boxes .fees-box .fees-box-info h2 {
	margin-top: 0px;
	margin-bottom: 0.25rem;
}

#fees-section .fees-boxes .fees-box .fees-box-info h4 {
	margin-top: 0px;
	margin-bottom: 0.25rem;
	font-size: 1.25rem;
	color: #0c2c54;
}

#fees-section .fees-boxes .fees-box:last-child .fees-box-info h4 {
	color: #050c38;
}

#fees-section .fees-boxes .fees-box .fees-box-info p {
	margin-top: 0px;
	margin-bottom: 0px;
	color: #0c2c54;
}

#fees-section .fees-boxes .fees-box:last-child .fees-box-info p {
	color: #222;
}

#fees-section .fees-boxes .fees-box a{
	display: block;
	padding: 2rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #0c2c54;
    text-decoration: unset;
}

#fees-section .fees-boxes .fees-box:first-child a{
	background-color: #0b437c;
	border-radius: 0px 0px 25px 25px;
}

#fees-section .fees-boxes .fees-box:last-child a{
	background-color: #858585;
	border-radius: 0px 0px 25px 0px;
}

#services-section {
	padding-top: 0px;
	padding-bottom: 0px;
}

#services-section > h2 {
	display: none;
}

#services-section .services-element {
	height: 100vh;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	overflow: hidden;
	position: relative;
}

#services-section .services-element > div {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 3;
	overflow: hidden;
	/*transition: all 0.25s;
	transition-timing-function: linear;*/

}

#services-section .services-element:not(:first-child) > div:after {
	content: '';
    position: absolute;
    top: -25px;
    left: 0px;
    width: 100%;
    height: 25px;
    box-shadow: 0px 25px 60px #747474;
    background-color: red;
}

#services-section .services-element > div:first-child {
	z-index: 2;
}

#services-section .services-element > div:last-child {
	z-index: 4;
}

#services-section .services-element > div > .row {
	margin-top: 0px;
	margin-bottom: 0px;
	height: 100%;
}

#services-section .services-element > div > .row > div:first-child {
	padding-right: 3rem;
	width: 60%;
}

#services-section .services-element > div > .row > div:last-child {
	padding-left: 3rem;
	width: 40%;
}

#services-section .services-element .services-image img {
	width: 100%;
	height: auto;
}

#services-section .services-element .services-text h2 {
	color: #050c38;
	margin-top: 0px;
}

#services-section .services-element .services-text h4 {
	color: #1f8db9;
	margin-top: 0px;
}

#services-section .services-element .services-text p {
	color: #050c38;
	margin-bottom: 0px;
}

#payments-section > div {
	width: 50%;
	box-sizing: border-box;
}

#payments-section > div:first-child {
	padding-right: 3rem;
}

#payments-section > div:last-child {
	padding-left: 3rem;
}

#payments-section .payments-image img {
	width: 100%;
	height: auto;
}

.flexMe {
	display: flex;
}

.wrapMe {
	flex-wrap: wrap;
}

.padOneRem {
	padding: 1rem;
}

.justify-evenly {
	justify-content: space-evenly;
}

#partners {
	  background:linear-gradient(90deg, rgb(219 221 249) 0%, rgb(199 235 250) 100%) ;
    padding: 4rem 0rem 4rem 0rem;
    margin-top: 0rem;
}

.triImg  {
	max-width: 150px;
	max-height: 100px;
}

.halfRow {
	max-width: 70%;
	margin:auto;
}

/* Footer */

footer {
	width: 100%;
	background-color: #fff;
	padding-top: 7rem;
	padding-bottom: 7rem;

}

footer .footer-container {
	display: flex;
	justify-content: space-between;
	max-width: 1520px;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
}

footer svg,
footer img {
	width: 100%;
	height: auto;
}

footer ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

footer a {
	color: #0c2c54;
	text-decoration: unset;
}

footer svg {
	fill: #000;
}

footer .footer-half {
	width: 35%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

footer .footer-space {
	height: 100px;
}

.footer-links ul li {
	margin-bottom: 1rem;
	font-size: 1.7rem;
}

.footer-out .footer-apps {
	display: flex;
}

.footer-out .footer-apps a {
	display: flex;
	align-items: center;
	padding: 0.5rem 2rem;
	border: 2px solid #fff;
	border-radius: 25px;
}

.footer-out .footer-apps a:first-child {
	margin-right: 2rem;
}

.footer-out .footer-apps a svg {
	width: 40px;
	height: auto;
	margin-right: 1rem;
}

.footer-out .footer-legal p {
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.footer-out .footer-legal ul {
	display: flex;
}

.footer-out .footer-legal ul li {
	margin-right: 1rem;
}

.footer-info .footer-logo {
	width: 100%;
	max-width: 300px;
}

.footer-social ul {
	display: flex;
	flex-wrap: wrap;
}

.footer-social ul li {
	margin-right: 1rem;
}

.footer-social ul li a svg {
	width: 70px;
	height: auto;
	fill: #0c2c54;
}

.popup-section {
	display: none;
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.popup-section .popup-container {
	position: relative;
    width: calc(100% - 2rem);
    padding: 3rem;
    background-color: #0c2c54;
    max-width: 768px;
    border-radius: 25px;
    box-sizing: border-box;
    z-index: 12;
}

.popup-section .popup-container > h2 {
	color: #050c38;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
}

.popup-section .popup-container > h3 {
	color: #050c38;
	text-align: center;
    margin-top: 0px;
    margin-bottom: 2.5rem;
}

.popup-section .popup-container > p {
	text-align: center;
	color: #444;
}

.popup-section .popup-container .popup-steps {
	position: relative;
}

.popup-section .popup-container .popup-steps .popup-step {
	display: none;
}

.popup-section .popup-container .popup-steps .popup-step.active {
	display: block;
}

.popup-section .popup-container .popup-steps .popup-step input {
	display: block;
	width: 100%;
	max-width: 600px;
	margin: auto;
	border: 2px solid #dfdfdf;
	border-radius: 50px;
	height: 50px;
	font-size: 1.15rem;
	padding-left: 1rem;
	padding-right: 1rem;
	box-sizing: border-box;
	outline: none;
	transition: all 0.15s;
	font-family: 'Poppins';
}

.popup-section .popup-container .popup-steps .popup-step input:focus {
	border-color: #050c38;
}

.popup-section .popup-container .popup-steps .popup-step input.submit-button {
	padding: 0px;
    border: none !important;
    max-width: 150px;
    margin-bottom: 0px;
    height: 61px;
    font-weight: bold;
    cursor: pointer;
}

.popup-section .popup-container .popup-steps .popup-step .hidden-input-container {
	width: 100%;
	max-width: 600px;
	margin: auto;
	position: relative;
}

.popup-section .popup-container .popup-steps .popup-step .hidden-input-container input {
	width: 100%;
	opacity: 0;
}

.popup-section .popup-container .popup-steps .popup-step .hidden-input-container select {
	-webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 99%;
    background-position-y: 6px;
    background-size: 35px;
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    border: 2px solid #dfdfdf;
    outline: none;
    border-radius: 50px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.15rem;
    font-family: 'Poppins';
    cursor: pointer;
}

.popup-section .popup-container .popup-steps .popup-step #preorder-privacy {
	width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
    display: flex;
    margin-top: 0.5rem;
}

.popup-section .popup-container .popup-steps .popup-step #preorder-privacy input {
	width: auto;
    max-width: unset;
    height: auto;
    margin: unset;
    margin-right: 1rem;
    cursor: pointer;
}

.popup-section .popup-container .popup-steps .popup-step .error-message {
	display: none;
	width: 100%;
	max-width: 600px;
	margin: auto;
	color: red;
	font-weight: bold;
}

.popup-section .popup-container .popup-steps .popup-step.invalid .error-message {
	display: block;
}

.popup-section .popup-container .popup-steps .popup-step .primary-button {
	display: block;
	width: 100%;
	max-width: 150px;
	margin: auto;
	text-align: center;
	cursor: pointer;
	margin-top: 2rem;
	box-sizing: border-box;
}

.popup-section .popup-container .popup-steps .popup-step .primary-button.disabled-button {
	background-color: #dfdfdf;
	cursor: not-allowed;
}

.popup-section .popup-container .popup-steps .popup-step .popup-form-link .primary-button {
	max-width: 300px;
}

.popup-section .popup-container .popup-guide {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.popup-section .popup-container .popup-guide span {
	width: 30px;
	height: 5px;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	background-color: #888;
	cursor: pointer;
}

.popup-section .popup-container .popup-guide span:hover {
	background-color: #444;
}

.popup-section .popup-container .popup-guide span.active {
	background-color: #1f8db9;
}

.popup-section .popup-container .popup-success {
	display: none;
}

.popup-section .popup-container .popup-success h2 {
	color: #050c38;
    text-align: center;
    margin-top: 0px;
}

.popup-section .popup-container .popup-success p {
	text-align: center;
    color: #444;
    margin-bottom: 0px;
}

.popup-section .popup-container .popup-close {
	position: absolute;
	top: -5px;
	right: 0px;
	width: 30px;
	height: 30px;
	transform: translateY(-100%);
	cursor: pointer;
}

.popup-section .popup-container .popup-close img {
	width: 100%;
	height: 100%;
}

.popup-section .popup-mask {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 11;
    background-color: rgba(5,12,56,65%);
}

/* Additional Pages */

.wrapper.page #landing-section > div:first-child {
	width: 50%;
	padding-right: 3rem;
	box-sizing: border-box;
}

.wrapper.page #landing-section > div:last-child {
	width: 50%;
	padding-left: 3rem;
}

.wrapper.page #landing-section .landing-text h1 {
	font-size: 3.5rem;
}

.wrapper.page #landing-section .landing-text .landing-subtext{
	display: block;
}

.wrapper.page #landing-section .landing-text .landing-subtext p {
	font-size: 1.15rem;
}

.wrapper.page #landing-section .landing-image {
	text-align: center;
}

.wrapper.page #landing-section .landing-action {
	border: 3px solid #0c2c54;
    border-radius: 25px;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper.page #landing-section .landing-action .landing-action-text {
	font-weight: bold;
    font-size: 1.5rem;
    color: #0c2c54;
    margin-right: 2rem;
}

.wrapper.page #landing-section .landing-action ul {
	margin-bottom: 0px;
    list-style-type: none;
    padding-left: 0px;
    font-weight: bold;
    display: flex;
    margin-top: 0px;
}

.wrapper.page #landing-section .landing-action ul li:last-child {
	margin-left: 1rem;
}

.wrapper.page #landing-section .landing-action ul li a {
	background-color: #1f8db9;
    border-radius: 50px;
    color: #0c2c54;
    padding: 0.5rem 1rem;
    margin-right: 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.wrapper.page #landing-section .landing-action ul li a span {
	margin-right: 0.5rem;
}

.wrapper.page #landing-section .landing-action ul li a svg {
	height: 30px;
	width: auto;
}

#nft-diagram-section .diagram-container {
	width: 100%;
}

#nft-diagram-section ul {
	list-style-type: none;
	margin-bottom: 4rem;
}

#nft-diagram-section ul li {
	margin-bottom: 1rem;
    position: relative;
    color: #0c2c54;
}

#nft-diagram-section ul li .action-dot {
	background-color: #1f8db9;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 8px;
    left: -25px;
}

#nft-diagram-section .diagram-container img {
	width: 100%;
	height: auto;
}

#nft-features-section .nft-features {
	width: 100%;
	color: #fff;
	margin-bottom: 2rem;
}

#nft-features-section .nft-features .nft-image {
	width: calc(50% - 1rem);
	padding: 3rem;
	box-sizing: border-box;
	border-radius: 25px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#nft-features-section .nft-features:first-child .nft-image {
	background: linear-gradient(315deg, rgb(0 0 0) 0%, rgb(9 74 121) 55%, rgb(34 95 171) 100%);
}

#nft-features-section .nft-features:nth-child(2) .nft-image {
	background: linear-gradient(315deg, rgb(0 0 0) 0%, rgb(121 102 9) 55%, rgb(171 160 34) 100%)
}

#nft-features-section .nft-features:last-child .nft-image {
	background: linear-gradient(315deg, rgb(209 209 209) 0%, rgb(124 124 124) 50%, rgb(211 211 211) 100%);
}

#nft-features-section .nft-features .nft-image .nft-subtitle {
	text-align: center;
	display: none;
}

#nft-features-section .nft-features .nft-image h2 {
	margin-top: 0px;
	font-size: 2.5rem;
	text-align: center;
}

#nft-features-section .nft-features .nft-image .nft-card {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 2rem;
}

#nft-features-section .nft-features .nft-image .nft-card img {
	width: 100%;
	height: auto;
}

#nft-features-section .nft-features .nft-image .nft-button a {
	width: 100%;
	box-sizing: border-box;
}

#nft-features-section .nft-features .nft-image .nft-price {
	font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#nft-features-section .nft-features .nft-image .nft-supply {
	margin-bottom: 0px;
}

#nft-features-section .nft-features .nft-info {
	display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
	width: calc(50% - 1rem);
	padding: 3rem 1rem;
	border-radius: 25px;
	box-sizing: border-box;
}

#nft-features-section .nft-features:first-child .nft-info {
	border: 2px solid #0096dd;
    background-color: rgb(0 127 201 / 35%);

    border: 2px solid #1f8db9;
	background-color: rgba(31, 141, 185, 0.35);
}

#nft-features-section .nft-features:nth-child(2) .nft-info {
	border: 2px solid #ddb800;
    background-color: rgb(198 201 0 / 35%);
}

#nft-features-section .nft-features:last-child .nft-info {
	border: 2px solid #dddddd;
    background-color: rgb(255 255 255 / 35%);
}

#nft-features-section .nft-features .nft-info ul {
	display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0px;
    margin-top: 0px;
    margin-bottom: 2rem;
}

#nft-features-section .nft-features .nft-info ul li {
	width: 33.33%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
}

#nft-features-section .nft-features .nft-info ul li .nft-info-icon {
	width: 100%;
	text-align: center;
	margin-bottom: 0.5rem;
}

#nft-features-section .nft-features .nft-info ul li .nft-info-icon img {
	width: 100%;
	height: auto;
	max-width: 75px;
}

#nft-features-section .nft-features .nft-info ul li .nft-info-text {
	font-size: 0.9rem;
	text-align: center;
}

#nft-features-section .nft-features .nft-info .nft-important-info {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
    align-self: flex-start;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    box-sizing: border-box;
}

#nft-features-section .nft-features .nft-info .nft-important-info > div {
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

#nft-features-section .nft-features .nft-info .nft-important-info ul {
	display: block;
	text-align: left;
	padding-left: 0px;
	margin-bottom: 0px;
}

#nft-features-section .nft-features .nft-info .nft-important-info ul li {
	width: 100%;
	padding-left: 0px;
	padding-right: 0px;
	margin-bottom: 0px;
	font-weight: normal;
	display: flex;
}

#nft-features-section .nft-features .nft-info .nft-important-info ul li:last-child {
	margin-bottom: 0px;
}

#nft-features-section .nft-features .nft-info .nft-important-info ul li strong {
	width: 50%;
	border: 2px solid #1f8db9;
	padding: 1rem;
	box-sizing: border-box;
	border-right: none;
	border-bottom: none;
}

#nft-features-section .nft-features .nft-info .nft-important-info ul li span {
	width: 50%;
	padding: 1rem;
	border: 2px solid #1f8db9;
	border-bottom: none;
	box-sizing: border-box;
}

#nft-features-section .nft-features .nft-info .nft-important-info ul li:last-child strong,
#nft-features-section .nft-features .nft-info .nft-important-info ul li:last-child span {
	border-bottom: 2px solid #1f8db9;
}

#nft-features-section .nft-features:nth-child(2) .nft-info .nft-important-info ul li strong,
#nft-features-section .nft-features:nth-child(2) .nft-info .nft-important-info ul li span {
	border-color: #ddb800;
}

#nft-features-section .nft-features:last-child .nft-info .nft-important-info ul li strong,
#nft-features-section .nft-features:last-child .nft-info .nft-important-info ul li span {
	border-color: #dddddd;
}

/* #nft-features-section .nft-features .nft-info .nft-important-info a {
	display: inline-block;
    font-weight: bold;
    color: #0c2c54;
    border-bottom: 1px solid #0c2c54;
} */

/* Sliders */

#nft-how-work #work-info {
	width: 30%;
}

#nft-how-work #work-info .step-slider {
	display: none;
}

#nft-how-work #work-info .step-slider h3 {
	margin-top: 0px;
	line-height: 100%;
	font-size: 2rem;
	font-weight: normal;
	color: #0c2c54;
}

#nft-how-work #work-info .step-slider p {
	margin-top: 0px;
}

#nft-how-work #work-info #step-slider-1 {
	display: block;
}

#nft-how-work #work-info .steps-arrows {
	display: flex;
}

#nft-how-work #work-info .steps-arrows > div {
	width: 50px;
	height: 50px;
	background-color: #1f8db9;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
}

#nft-how-work #work-info .steps-arrows > div:hover {
	background-color: #095370;
}

#nft-how-work #work-info .steps-arrows > div > svg {
	width: 10px;
    height: auto;
    color: #0c2c54;
}

#nft-how-work #work-info .steps-arrows #slick-prev {
	margin-right: 1rem;
}

#nft-how-work #work-info .steps-arrows #slick-next {
	margin-left: 1rem;
}

#nft-how-work #work-slider {
	width: 70%;
}

#nft-how-work #work-slider .slick-track > .slick-slide {
	margin-left: 1rem;
	margin-right: 1rem;
	padding: 16px;
}

#nft-how-work #work-slider .work-feature {
	background-color: #0089ff;
}

#nft-how-work #work-slider .slick-current .work-feature {
	box-shadow: 0px 0px 12px #0c2c54;
}

#nft-how-work #work-slider .work-feature img {
	width: 100%;
	height: auto;
}

#nft-how-work #work-slider .slick-prev,
#nft-how-work #work-slider .slick-next {
	display: none !important;
}

#moralis-link {
	display: block;
    margin-top: 1.5rem;
}

#moralis-link img {
	width: 100%;
	max-width: 215px;
	height: auto;
}

/* .slick-slider .slick-prev {
    left: 0px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1f8db9 !important;
    border: 2px solid #1f8db9 !important;
}

.slick-slider .slick-next {
    left: 50px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1f8db9 !important;
    border: 2px solid #1f8db9 !important;
}

.slick-slider .slick-arrow {
    transition: all 0.1s;
}

.slick-slider .slick-arrow:before {
    display: none !important;
}

.slick-slider .slick-arrow > svg {
    width: 1rem;
    height: 1rem;
    color: #fff;
}

.slick-slider .slick-arrow:hover {
    background-color: transparent !important;
}

.slick-slider .slick-arrow:hover > svg {
    color: #e9e61c;
}

.slick-slide img {
	width: 100%;
}

.work-slider {
    grid-column: 2/4;
    padding-right: 0;
    margin-bottom: 3rem;
}

#work-slider {
    padding-left: 10rem;
    padding-right: 50px;
    margin-right: -130px;
}

#work-slider .paging-info {
    position: absolute;
    top: -42px;
    left: -8px;
    transform: rotate(-90deg);
    letter-spacing: 5px;
    font-size: 0.85rem;
    font-family: 'Poppins';
    font-weight: bold;
    color: #fff;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
} */

/* Legal Text */

#legal-section ul,
#legal-section h3 {
	color: #0c2c54;
}

#legal-section ul {
	margin-bottom: 2rem;
}

#legal-section h3 {
	margin-top: 4rem;
}

#legal-section p {
	margin-top: 0px;
}

#legal-section table p {
	margin-bottom: 0px;
	font-size: 0.7rem;
}

#legal-section table {
	margin-bottom: 4rem;
	border: 1px solid #dfdfdf;
	box-sizing: border-box;
}

#legal-section table td {
	border: 1px solid #dfdfdf;
	box-sizing: border-box;
}

/* Responsive */

@media screen and (max-width: 1551px) {
	.row {
		max-width: 1375px;
	}

	footer .footer-container {
		max-width: 1375px;

	}

		header {
		max-width: 1375px;
	}

	#partners img {
		max-width: 17%;
	}

	.tripleTab img {
    max-width: 200px;
	}

	.product-section {
    position: relative;
    margin-top: 7rem;
}
}

@media screen and (max-width: 1280px) {
	.logo-container {
		width: 180px;
	}

	.menu-container {
		width: calc(100% - 180px);
		padding-left: 3rem;
		justify-content: flex-end;
	}

	.menu-container ul {
		margin-right: 1.5rem;
	}

	.menu-container ul li {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}

	.menu-container ul li a {
		font-size: 1rem;
	}

	.menu-container .menu-buttons a {
		font-size: 1rem;
	}

	#circles-section .circles-container {
		transform: scale(0.7);
	    transform-origin: top center;
	}

	#circles-section .infos-container {
		padding-top: 75px;
	}

	#circles-section .infos-container > div {
		width: 375px;
	    height: 420px;
	    margin-bottom: 105px;
	}

	#circles-section + div {
		margin-top: -30rem;
	}

	#landing-section {
		margin-top:2rem;
		margin-bottom: 2rem;
	}

	.imgHexa {
		text-align: center;
	}

	.landingBtnBox {
    justify-content: center;
	}

	.landing-image {
		margin-top: 0rem;
	}

	#partners {
    margin-top: 3rem;
	}

	#partners img {
    max-width: 30%;
	}

	.first-row {
    margin-top: 2rem;
	}

	.halfRow {
    max-width: 90%;
    margin: auto;
	}

	#service-section {
		display: flex;
		flex-wrap: wrap;
	}

	.tripleTab{
		width: 100%;
  	margin-bottom: 2rem;
	}






}

@media screen and (max-width: 1170px) {
	#nft-features-section {
		width: 100%;
		max-width: 800px;
	}

	#nft-features-section .nft-features {
		flex-direction: column;
	    border-radius: 25px;
	}

	#nft-features-section .nft-features:first-child {
		background: linear-gradient(315deg, rgb(0 0 0) 0%, rgb(9 74 121) 55%, rgb(34 95 171) 100%);
	}

	#nft-features-section .nft-features:nth-child(2) {
		background: linear-gradient(315deg, rgb(0 0 0) 0%, rgb(121 102 9) 55%, rgb(171 160 34) 100%);
	}

	#nft-features-section .nft-features:last-child {
		background: linear-gradient(315deg, rgb(209 209 209) 0%, rgb(124 124 124) 50%, rgb(211 211 211) 100%);
	}

	#nft-features-section .nft-features .nft-image {
		width: 100%;
    	border-radius: 25px 25px 0px 0px;
    	background: none !important;
	}

	#nft-features-section .nft-features .nft-info {
		width: 100%;
	    border: none !important;
	    border-radius: 0px 0px 25px 25px !important;
	    background-color: transparent !important;
	}
}

@media screen and (max-width: 1115px) {
	body.menu-mobile-active {
		overflow: hidden;
	}

	header {
		justify-content: space-between;
	}

	body.menu-mobile-active header {
		position: relative;
		z-index: 9;
	}

	.logo-container a {
		display: flex;
	}

	.menu-container {
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		padding-left: 0px;
		top: 0px;
		left: 0px;
		background-color: #fbfdff;;
		padding: 2rem;
		box-sizing: border-box;
	}

	.menu-container > div {
		width: 100%;
		height: 100%;
		display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: flex-start;
	}

	.menu-container ul {
		margin-right: 0px;
    	flex-direction: column;
	}

	.menu-container ul li {
		padding-left: 0px;
		padding-right: 0px;
		margin-bottom: 2rem;
	}

	.menu-container ul li a {
		font-size: 2.5rem;
	}

	.menu-container .menu-buttons a {
		font-size: 2rem;
	}

	.menu-container .menu-buttons a small {
		transform: translate(-50%,75%);
    	font-size: 0.8rem;
	}

	.icon-menu-mobile {
		display: flex;
	    width: 45px;
	    height: unset;
	    min-height: 16px;
	    flex-direction: column;
	    justify-content: center;
	}

	.icon-menu-mobile span {
		display: block;
		width: 45px;
		height: 2px;
		background-color: #0c2c54;
	}

	.icon-menu-mobile.active span {
		margin-top: 0px;
		margin-bottom: 0px;
		transition-property: margin, transform;
		transition-duration: 0.15s, 0.15s;
		transition-delay: 0s, 0.15s;
		transition-timing-function: linear;
	}

	.icon-menu-mobile.active span:first-child {
		transform: rotate(45deg) translate(1.5px, 0px);
	}

	.icon-menu-mobile.active span:last-child {
		transform: rotate(-45deg) translate(1.5px, 0px);
	}

	.icon-menu-mobile.disabled span {
		transform: rotate(0deg) translate(0px, 0px);
		transition-property: transform, margin;
		transition-duration: 0.15s, 0.15s;
		transition-delay: 0s, 0.15s;
		transition-timing-function: linear;
	}

	.icon-menu-mobile.disabled span:first-child {
		margin-bottom: 0.35rem;
	}

	.icon-menu-mobile.disabled span:last-child {
		margin-top: 0.35rem;
	}

	.landingBtnBox {
		display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	}
	.landingBtnBox .landing-button{
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 1070px) {
	#landing-section .landing-text h1 {
		font-size: 3rem;
	}

	.wrapper.page #landing-section .landing-text h1 {
		font-size: 3rem;
	}

	.tab-white > div {
		flex-direction: column;
	}

	.tab-white > div > div {
		padding-left: 0px !important;
		padding-right: 0px !important;
		width: 100%;
	}


	.landingBtnBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	}

	#circles-section .circles-container {
		transform: scale(0.6);
	    transform-origin: top center;
	}

	#circles-section .infos-container {
		padding-top: 64px;
	}

	#circles-section .infos-container > div {
		width: 360px;
	    height: 360px;
	    margin-bottom: 90px;
	}

	#circles-section .infos-container h2 {
		font-size: 2rem;
	}

	#circles-section .infos-container p {
		font-size: 1rem;
	}
}

@media screen and (max-width: 991px) {
	#landing-section {
		flex-direction: column;
	}

	#landing-section > div {
		width: 100% !important;
	    text-align: center;
	    margin-bottom: 4rem;
	    padding-left: 0px !important;
	    padding-right: 0px !important;
	}

	#landing-section .landing-text h1 {
		font-size: 3rem;
	}

	.wrapper.page #landing-section .landing-text h1 {
		font-size: 3rem;
	}

	#landing-section .landing-text .landing-subtext p {
		font-size: 1.15rem;
	}

	#landing-section > .landing-image {
		width: 80%;
	}

	.landing-image {
		margin-top: -7rem;
	}

	#partners {
    margin-top: -10rem;
	}

	#partners-section .flex-row {
		flex-wrap: wrap;
		justify-content: center;
	}

	#partners-section .flex-row > div {
		width: 33.33%;
		margin-bottom: 4rem;
	}

	#app-section h2 {
		font-size: 2.5rem;
	}

	#app-section h4 {
		font-size: 1.5rem;
	}

	/*.top-call-action .call-action-image1,
	.top-call-action .call-action-image3 {
		display: none;
	}
	*/

	.top-call-action .flex-row {
		flex-direction: column-reverse;
	}

	.top-call-action .call-action-content {
		width: 100%;
	    padding-right: 0px;
	    text-align: center;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	}

	.top-call-action ul {
		text-align: left;
	}

	.top-call-action .call-action-media {
		width: 70%;
	    padding-left: 0px;
	    margin-bottom: 2rem;
	}

	#circles-section .circles-container {
		display: none;
	}

	#circles-section .infos-container {
		width: 100%;
	}

	#circles-section .infos-container .info-circles {
		width: 100%;
	    height: auto;
	    flex-direction: row;
	    align-items: center;
	}

	#circles-section .infos-container .info-circles > div:last-child {
		width: calc(100% - 300px);
	    padding-left: 2rem;
	    box-sizing: border-box;
	}

	#circles-section .infos-container .mobile-circles {
		display: block;
	}

	#circles-section .infos-container .mobile-circles .circle1 {
		width: 300px;
		height: 300px;
		border-radius: 50%;
		padding: 3px;
		box-sizing: border-box;
	}

	#circles-section .infos-container .mobile-circles .circle2 {
		width: 100%;
		height: 100%;
		background-color: #050c38;
		border-radius: 50%;
		padding: 1.5rem;
		box-sizing: border-box;
	}

	#circles-section .infos-container .mobile-circles .circle3 {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		padding: 1rem;
		box-sizing: border-box;
	}

	#circles-section .infos-container .mobile-circles .circle4 {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		padding: 1rem;
		box-sizing: border-box;
	}

	#circles-section .infos-container .mobile-circles .circle5 {
		width: 100%;
		height: 100%;
		background-color: #050c38;
		border-radius: 50%;
		padding: 2rem;
		box-sizing: border-box;
	}

	#circles-section .infos-container .mobile-circles .circle6 {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		padding: 2rem;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 2.75rem;
		font-weight: bold;
		color: #0c2c54;
		position: relative;
	}

	#circles-section .infos-container #defi-circles .circle1,
	#circles-section .infos-container #defi-circles .circle3,
	#circles-section .infos-container #defi-circles .circle4,
	#circles-section .infos-container #defi-circles .circle6 {
		background: radial-gradient(circle, rgba(43,248,194,1) 0%, rgba(43,248,194,0) 100%);
	}

	#circles-section .infos-container #cefi-circles .circle1,
	#circles-section .infos-container #cefi-circles .circle3,
	#circles-section .infos-container #cefi-circles .circle4,
	#circles-section .infos-container #cefi-circles .circle6 {
		background: radial-gradient(circle, rgba(1,152,182,1) 0%, rgba(1,152,182,0) 100%);
	}

	#circles-section .infos-container #daisen-circles .circle1,
	#circles-section .infos-container #daisen-circles .circle6 {
		/* background: linear-gradient(45deg, rgba(43,248,194,1) 0%, rgba(29,190,222,1) 100%); */

		background: linear-gradient(45deg, rgb(33 165 130) 0%, rgb(0 163 197) 100%);
	}

	#circles-section .infos-container #daisen-circles .circle3 {
		background: radial-gradient(circle, rgba(1,152,182,1) 0%, rgba(1,152,182,0) 100%);
	}

	#circles-section .infos-container #daisen-circles .circle4 {
		background: radial-gradient(circle, rgba(43,248,194,1) 0%, rgba(43,248,194,0) 100%);
	}

	#circles-section + div {
		margin-top: 10rem;
	}

	.product-section > .flex-row {
		flex-direction: column;
	}

	.product-section .product-header {
		width: 100%;
	    padding-right: 0px;
	    text-align: center;
	}

	.product-section .product-header h2 {
		margin-bottom: 4rem;
	}

	.product-section .product-header .product-image {
		padding-bottom: 3rem;

	}

	.product-section .product-info {
		width: 100%;
		padding-left: 1rem;
	}

	.product-section .product-info h3 {
		color: #1f8db9;
	}

	.product-section .product-mask {
		display: none;
	}

	#fees-section {
		flex-direction: column;
	}

	#fees-section > div:first-child {
		width: 100%;
	    padding-right: 0px;
	    text-align: center;
	    margin-bottom: 4rem;
	}

	#fees-section > div:last-child {
		padding-left: 0px;
    	width: 90%;
	}

	#services-section .services-element > div > .row {
		justify-content: center;
    	flex-direction: column-reverse;
	}

	#services-section .services-element > div > .row > div:first-child {
		width: auto;
		height: 45%;
		padding-right: 0px;
	}

	#services-section .services-element .services-image img {
		width: auto;
		height: 100%;
	}

	#services-section .services-element > div > .row > div:last-child {
		width: 100%;
		padding-left: 0px;
		text-align: center;
		margin-bottom: 3rem;
	}

	#payments-section {
		flex-direction: column;
	}

	#payments-section > div {
		width: 100%;
		padding-right: 0px;
		padding-left: 0px;
		text-align: center;
	}

	#payments-section > div:first-child {
		padding-right: 0px;
	}

	#payments-section > div:last-child {
		width: 80%;
		padding-left: 0px;
	}

	footer .footer-half {
		width: 45%;
	}

	.footer-links ul li {
		font-size: 1.4rem;
	}

	.footer-out .footer-apps a {
		padding: 0.5rem 1rem;
	}

	.footer-out .footer-apps a svg {
		width: 25px;
	}

	.footer-out .footer-legal ul {
		flex-direction: column;
	}

	.footer-out .footer-legal ul li {
		margin-right: 0px;
		margin-top: 1rem;
	}

	.footer-info .footer-logo {
		max-width: 200px;
	}

	.footer-social ul li a svg {
		width: 45px;
	}

	.wrapper.page #landing-section .landing-button a:first-child {
		margin-right: 0px;
	}

	#landing-section .landing-text .landing-subtext ul {
		padding-left: 0px;
	}

	#landing-section .landing-text .landing-subtext ul li .action-dot {
		display: none;
	}

	#landing-section .landing-image > img {
		max-width: 500px;
	}
}

@media screen and (max-width: 768px) {

	footer .landing-button {
		margin-bottom: 3rem;
	}

	#partners-section .flex-row > div {
		width: 51%;
	}

	#features-section .feature-element {
		flex-direction: column;
		text-align: center;
	}

	#features-section .feature-element > div:first-child{
		width: 100%;
	}

	#features-section .feature-element > div:last-child{
		width: 80%;
	}

	#features-section .feature-element.feature-left > div:first-child{
		padding-right: 0px;
		width: 100%;
		box-sizing: border-box;
	}

	#features-section .feature-element.feature-right > div:last-child{
		padding-left: 0px;
		width: 100%;
	}

	#features-section .feature-element.feature-left .feature-image {
		padding-left: 0px;
		width: 70% !important;
	}

	#features-section .feature-element.feature-right .feature-image {
		padding-right: 0px;
		width: 70% !important;
	}

	#features-section .feature-element .feature-text {
		width: 100%;
		display: flex;
	    flex-direction: column;
	    align-items: center;
	    margin-bottom: 4rem;
	}

	#circles-section .infos-container .mobile-circles .circle1 {
		width: 200px;
		height: 200px;
	}

	#circles-section .infos-container .mobile-circles .circle5 {
		padding: 0.5rem;
	}

	#circles-section .infos-container .info-circles > div:last-child {
		width: calc(100% - 200px);
	}

	#compare-section {
		margin-top: 10rem;
	}

	#compare-section table {
		padding: 0.5rem;
	}

	#compare-section .compare-check svg,
	#compare-section .compare-full-check svg {
		width: 20px;
		height: 20px;
		padding: 0.15rem;
	}

	#compare-section td,
	#compare-section th {
		font-size: 1rem;
		padding: 0.75rem 0.25rem;
	}

	#roadmap-section .roadmap-composition {
		display: none;
	}

	#roadmap-section .roadmap-mobile {
		display: flex;
		justify-content: center;
	}

	#roadmap-section .roadmap-mobile ul {
		list-style-type: none;
		margin: 0px;
		padding: 0px;
		border-left: 4px solid #1f8db9;
		padding-top: 2rem;
		padding-bottom: 2rem;
		box-sizing: border-box;
	}

	#roadmap-section .roadmap-mobile ul li {
		padding: 1rem 1.5rem;
		box-sizing: border-box;
		position: relative;
		margin-bottom: 2rem;
	}

	#roadmap-section .roadmap-mobile ul li div {
		color: #0c2c54;
	}

	#roadmap-section .roadmap-mobile ul li .roadmap-mobile-dot {
		position: absolute;
		top: 0px;
		left: -12px;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background-color: #0c2c54;
	}

	#roadmap-section .roadmap-mobile ul li .roadmap-mobile-title {
		font-weight: bold;
    	font-size: 1.35rem;
	}

	#roadmap-section .roadmap-mobile ul li .roadmap-mobile-element {
		padding-left: 1rem;
		box-sizing: border-box;
	}

	#roadmap-section .roadmap-mobile ul li.actual-roadmap .roadmap-mobile-dot {
		background-color: #1f8db9;
	    width: 35px;
	    height: 35px;
	    border: 3px solid #0c2c54;
	    box-sizing: border-box;
	    left: -19px;
	}

	#roadmap-section .roadmap-mobile ul li.actual-roadmap .roadmap-mobile-title {
		text-shadow: 0px 0px 4px #00e7ff;
	}

	#roadmap-section .roadmap-mobile ul li.future-roadmap .roadmap-mobile-dot {
		background-color: #878787;
	}

	#roadmap-section .roadmap-mobile ul li.future-roadmap .roadmap-mobile-title {
		color: #878787;
	}

	.product-section .product-info {
		flex-direction: column;
	}

	.product-section .product-info > div {
		width: 100%;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.product-section .product-info > div:first-child {
		margin-bottom: 4rem;
	}

	#fees-section > div:last-child {
		transform: unset;
		-webkit-transform: unset;
		transform-origin: unset;
		flex-direction: column;
		width: 100%;
	}

	#fees-section .fees-boxes .fees-box {
		width: 100%;
	}

	#fees-section .fees-boxes .fees-box:first-child {
		margin-bottom: 2rem;
	}

	#fees-section .fees-boxes .fees-box:last-child .fees-box-info {
		border-radius: 25px 25px 0px 0px;
	}

	#fees-section .fees-boxes .fees-box:last-child a {
		border-radius: 0px 0px 25px 25px;
	}

	#services-section {
		background-color: transparent;
		margin-left: 20px;
		margin-right: 20px;
		width: calc(100% - 40px);
	}

	#services-section > h2 {
		display: block;
		text-align: center;
		margin-top: 0px;
	}

	#services-section .services-element {
		height: auto;
		padding: 4rem 2rem;
	    box-sizing: border-box;
	    margin-bottom: 2rem;
	    background-color: #f9f9f9;
	    border-radius: 25px;
	}

	#services-section .services-element > div > .row {
		padding-left: 0px;
		padding-right: 0px;
	}

	#services-section .services-element > div > .row > div:first-child {
		width: 100%;
		height: auto;
	}

	#services-section .services-element .services-image img {
		width: 100%;
		height: auto;
	}

	#services-section .services-element:not(:first-child) > div:after {
		display: none;
	}

	footer {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	footer .footer-container {
		flex-direction: column;
	}

	footer .footer-half {
		width: 100%;
	}

	footer .footer-half:first-child {
		margin-bottom: 5rem;
	}

	footer .footer-links {
		margin-bottom: 4rem;
	}

	footer .footer-space {
		display: none;
	}

	footer .footer-info p {
		font-size: 1rem;
	}

	.wrapper.page #landing-section .landing-action {
		flex-direction: column;
	}

	.wrapper.page #landing-section .landing-action .landing-action-text {
		margin-right: 0px;
		margin-bottom: 1rem;
	}

	.wrapper.page #landing-section .landing-action ul li:first-child {
		margin-right: 0.5rem;
	}

	.wrapper.page #landing-section .landing-action ul li:last-child {
		margin-left: 0.5rem;
	}
}

@media screen and (max-width: 600px) {
	/* #card-call-action .call-action-media,
	#card-call-action .call-action-image2,
	#card-call-action .call-action-image3 {
		display: none;
	}
	 */

	#partners img {
    max-width: 50%;
	}

	.five-row {
    padding: 5rem 0rem 0rem 0rem;
	}

	.five-row .halfRow{
    display: flex;
    flex-wrap: wrap;
	}

	.landing-image {
    margin-top: -5rem;
	}

	.tripleTab .feature-text img {
    max-width: 50px;
    padding-bottom: 1rem;
	}

	.tripleTab {
    padding-bottom: 1rem;
    padding-top: 2rem;
	}

	.cardList li {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 2rem 0rem 0rem 0rem;
	}

	#service-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
	}

	.menu-container ul li a {
		font-size: 1.75rem;
	}

	.menu-container .menu-buttons a {
		font-size: 1.5rem;
    padding: 0;
    box-shadow: none;
	}

	.menu-container .menu-buttons a small {
		transform: translate(-50%,55%);
	}

	#landing-section > .landing-image {
		width: 100%;
	}

	.tab-white {
		margin-top: 5rem;
	}

	.tab-white h2 {
		font-size: 2rem;
	}

	#partners-section .flex-row > div {
		width: 70%;
		padding-left: 0px;
		padding-right: 0px;
	}

	#features-section .feature-element > div:last-child {
		width: 100%;
	}

	#circles-section {
		margin-top: 5rem;
	}

	#circles-section + div {
		margin-top: 5rem;
	}

	.top-call-action {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.top-call-action .call-action-media {
		width: 100%;
	}

	#compare-section table .compare-feature {
		font-size: 0.8rem;
		width: 500px;
	}

	#compare-section th {
		font-size: 0.8rem;
	}

	.product-section > .flex-row {
		padding-left: 0px;
		padding-right: 0px;
	}

	#nft-features-section .nft-features .nft-info ul li {
		width: 50%;
	}

	#nft-features-section .nft-features .nft-info .nft-important-info ul li strong,
	#nft-features-section .nft-features .nft-info .nft-important-info ul li span {
		padding: 0.5rem;
	}

	.wrapper.page #landing-section .landing-action {
		align-items: unset;
	}

	.wrapper.page #landing-section .landing-action ul {
		flex-direction: column;
		text-align: center;
	}

	.wrapper.page #landing-section .landing-action ul li:first-child {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 1rem;
	}

	.wrapper.page #landing-section .landing-action ul li:last-child {
		width: 100%;
		margin-left: 0px;
	}

	.wrapper.page #landing-section .landing-action ul li a {
		justify-content: center;
	}
}

@media screen and (max-width: 520px) {
	#nft-features-section .nft-features .nft-image h2 {
		font-size: 1.75rem;
	}

	#nft-features-section .nft-features .nft-info .nft-important-info {
		padding-left: 0px;
		padding-right: 0px;
	}

	#nft-features-section .nft-features .nft-info .nft-important-info ul li {
		display: block;
		margin-bottom: 1.5rem;
	}

	#nft-features-section .nft-features .nft-info .nft-important-info ul li strong,
	#nft-features-section .nft-features .nft-info .nft-important-info ul li span {
		border: none !important;
		padding: 0px;
		display: block;
		width: 100%;
	}

	#nft-features-section .nft-features .nft-image .nft-price {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 468px) {
	h2 {
		font-size: 1.75rem;
	}

	#landing-section .landing-text h1 {
		font-size: 2.5rem;
	}

	.wrapper.page #landing-section .landing-text h1 {
		font-size: 2.5rem;
	}

	#landing-section .landing-button {
		display: flex;
		flex-direction: column;
	}

	#landing-section .landing-button a:first-child {
		margin-right: 0px;
		margin-bottom: 1rem;
	}

	.tab-white h2 {
		font-size: 2rem;
	}

	.tab-white > div {
		padding: 1rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	#partners-section .flex-row {
		flex-direction: column;
	}

	#partners-section .flex-row > div {
		width: 100%;
		max-width: 200px;
	}

	#app-section h2 {
		font-size: 2rem;
	}

	#app-section h4 {
		font-size: 1.25rem;
	}

	#features-section .feature-element.feature-left .feature-image {
		width: 100% !important;
	}

	#features-section .feature-element.feature-right .feature-image {
		width: 100% !important;
	}

	#features-section .feature-element .feature-image img {
		width: 80%;
	}

	#circles-section .infos-container h2 {
		font-size: 1.75rem;
	}

	#circles-section .infos-container .info-circles {
		flex-direction: column-reverse;
		margin-bottom: 8rem;
	}

	#circles-section .infos-container .info-circles > div:last-child {
		width: 100%;
		padding-left: 0px;
	}

	#circles-section .infos-container .mobile-circles .circle1 {
		width: 300px;
		height: 300px;
	}

	#circles-section .infos-container .mobile-circles .circle5 {
		padding: 2rem;
	}

	#circles-section + div {
		margin-top: 5rem;
	}

	#compare-section td:not(.compare-feature),
	#compare-section th:not(:first-child) {
		width: 30px;
	}

	#roadmap-section .roadmap-mobile {
		padding-left: 20px;
		padding-right: 20px;
	}

	.product-section .product-info h3 {
		font-size: 1.5rem;
	}

	.product-section .product-info ul li .product-name {
		font-size: 1.25rem;
	}

	.popup-section .popup-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.top-call-action .call-action-media {
		text-align: center;
	}

	.top-call-action .call-action-media img {
		width: 80%;
	}

	#nft-features-section .nft-features .nft-info ul li {
		width: 100%;
		margin-bottom: 4rem;
	}
}

@media screen and (max-width: 420px) {
	.footer-out .footer-apps {
		flex-direction: column;
	}

	.footer-out .footer-apps a:first-child {
		margin-right: 0px;
		margin-bottom: 1rem;
	}

	.footer-out .footer-apps a {
		justify-content: center;
	}
}



/* Hiden  */

.landing-button.appBtn {
	display: none !important;
}
