﻿@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

html,body {
    min-height: 100%;
	margin:0;
	padding:0;
	background:#ffffff;
}

body,
body * {
	box-sizing:border-box;
    direction: ltr;
    text-align: left;
    font-family: "Saira", Helvetica;
	color:#000000;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
	line-height: 1.35;
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 7px;
  }
    /* Track */
  ::-webkit-scrollbar-track {
    background:var(--grey-default);
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background:var(--grey-mid);
  }
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background:var(--grey-dark);
  }

/* colors */
:root {
    --green-default: #00e8af;
	--start-num: 0;
}


h2 {
	margin:0;
	font-size:50px;
	line-height:1;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.siteW {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
.siteW-narrow {
	width:70%;
	max-width:950px;
	margin:0 auto;
}

.pagewrpr {
	height:100vh;
	overflow-x: hidden;
    scroll-snap-type: y mandatory;
}
.section {
    position: relative;
	padding:20vh 0 12vh 0;
	scroll-snap-align: start;
}

.ttl-underline {
	position:relative;
	padding-bottom:5vh;
	width:fit-content;
}
.ttl-underline.underline-center {
	margin:0 auto;
	text-align:center;
}
.ttl-underline:before {
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	height:2px;
	width:40%;
	background:var(--green-default);
}
.ttl-underline:after {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    aspect-ratio: 1;
    background: var(--green-default);
    border-radius: 100%;
    translate: 0 calc(50% - 1px);
}
.ttl-underline.underline-center:before,
.ttl-underline.underline-center:after {
    left: 50%;
	translate: -50% calc(50% - 1px);
}

.add-border {
	position: absolute;
	top:50%;
	left:50%;
    display: block;
    height: calc(100% + 5vh);
    width: calc(100% + 5vh);
    border-radius: 100%;
    border: 1px solid var(--green-default);
	translate:-50% -50%;
    transform: rotate(calc(var(--target-num)* 3.6deg));
}
.add-border::before {
	content: "";
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -50%;
    display: block;
    width: 8px;
    aspect-ratio: 1;
    background: var(--green-default);
    border-radius: 50%;
}

@media(max-width: 768px) {
	.siteW,
	.siteW-narrow {
		width:85vw;
		max-width:none;
	}
	.pagewrpr {
		width: calc(100% + 10px);
	}
	.section {
		position: relative;
		padding:7vh 0 5vh 0;
	}
	.counters-wrpr {
		width:90vw;
	}
	.counters-container {
		justify-content:space-between;
	}
}

/*==== HEADER ====*/
header.section {
	height:100vh;
	max-height:1080px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	background:url(../assets/images/header-bg.png);
	background-size:cover;
	background-attachment:fixed;
	padding-bottom:0;
	padding-top:7vh;
	border-top:9px solid var(--green-default);
}
.header-cotent {
	position:relative;
	height:85vh;
	display:flex;
	align-items:center;
	color:#ffffff;
}
.header-top {
	padding-top: 7vh;
    margin-bottom: -7vh;
    height: min-content;
}
.header-logo {
	width:250px;
}
.header-cotent h1 {
	margin:0;
	font-size:max(10vmin, 80px);
	color:#ffffff;
	font-weight:100;
	line-height:1;
}

@media(max-width: 768px) {
	header.section {
		height: auto;
        gap: 10vh;
        align-items: center;
        padding-bottom: 20vh;
		background-position:right;
	}
	.header-top {
		padding: 0;
		margin: 0;
		text-align: center;
	}
	.header-cotent {
		height: auto;
        justify-content: center;
	}
	.header-cotent h1 {
		font-size: max(10vmin, 46px);
	}
	.header-cotent h1:before,
	.header-cotent h1:after {
		left: 50%;
		translate: -50% calc(50% - 1px);
	}
}

/*=== COUNTERS ====*/
@property --num {
  syntax: '<integer>';
  inherits: true;
  initial-value: 0;
}
.counter-sec {
	background: #ffffff url(../assets/images/counters-bg.png);
    background-size: cover;
    padding-top: 5vh;
    border-radius: 100% 100% 0 0 / 50%;
    width: 160%;
    overflow: hidden;
    margin-left: -30%;
    margin-top: -7vh;
    z-index: 3;
    position: relative;
}
.counters-wrpr {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	gap:15vh;
}
.counters-container {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
	align-items:flex-start;
	gap:15vh;
}
.counter-item {
	display: flex;
    flex-direction: column;
    align-items: center;
}
.counter-item.w100 {
	width:100%;
	max-width:none;
}
.counter-item span {
	display:block;
	text-align:center;
}
.counter-item span.counter-ttl {
	font-size:120%;
}
.counter-item span.counter-sub {
	font-size:80%;
}

.counter {
	--target-num:0;
	position:relative;
	height:25vh;
	aspect-ratio:1;
	background:#000000;
	margin:2vh auto;
	display:flex;
	justify-content:center;
	align-items:center;
	line-height:1;
	color:#ffffff;
	border:2.5vh solid #ffffff;
	border-radius:50%;
}
.counter::after {
  counter-reset: my-counter var(--num);
  content: counter(my-counter)"%";
  animation: count 2s ease-in-out forwards;
  font-size: clamp(12px, 8vmin, 40px);
}
@keyframes count {
	from { --num: 0; }
  to { --num: var(--target-num); }
} 

@media(max-width: 768px) {
	.counter-sec {
		border-radius: 100% 100% 0 0 / 30%;
	}
	.counters-container {
		gap:5vh;
	}
	.counter-item {
		max-width:40vw;
	}
	.counter {
        height: auto;
        width: 30vw;
		border-width: 2vh;
    }
	.counter-item span {
		font-size:18px;
	}
}


/*==== dentis ====*/
.dentis-sec {
	display:flex;
	align-items:center;
	background-image:url(../assets/images/dentis-bg-doc.png),
					url(../assets/images/dentis-bg.png);
	background-position:right 3vw bottom, center;
	background-size:auto 90%,cover;
	background-repeat:no-repeat;
	background-attachment:fixed;
}
.dentis-sec .p45 {
	width:45%;
}
.dentis-sec .dentis-list {	/*ul*/
	margin: 0;
    padding: 0;
    list-style: none;
}
.dentis-sec .dentis-list li {
	position: relative;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 20px;
}
.dentis-sec .dentis-list li::before {
	content: '';
    position: absolute;
    width: 20px;
    aspect-ratio: 1;
    margin-top: 2px;
    left: 0;
    top: 0;
    display: block;
    background: url(../assets/images/li_arr_b.png) no-repeat;
    background-size: contain;
}
@media(max-width:768px) {
	.dentis-sec {
		background-position: right bottom, center;
        background-size: 40%, cover;
	}
	.dentis-sec .p45 {
		width:100%;
	}
}
/*==== GBG ====*/
.section.gbg {
	height:fit-content;
	min-height:0;
}
.gbg {
	background: var(--green-default) url(../assets/images/gbg.png) center no-repeat;
	background-size: contain;
	background-position: right bottom;
	padding:10vh 0;
}
.gbg p {
	text-align:center;
	color:#ffffff;
	font-size:42px;
	line-height:1.5;
}

@media(max-width:768px) {
	.section.gbg {
		padding: 5vh 0;
		background-size: auto 100%;
		background-position: bottom left;
	}
	.gbg p {
		line-height: 1.25;
		font-size: 8vmin;
	}
}

/*==== SIMPLE ====*/
.simple-wrpr {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:15vh;
}
.simple-items-wrpr {
	width:100%;
	display:flex;
	justify-content:space-around;
	align-items:flex-start;
	gap:5%;
}
.simple-item {
	width:100%;
	text-align:center;
}
.simple-img {
	position:relative;
	margin:0 auto;
	margin-bottom:2vh;
	width:100%;
	aspect-ratio:1;
	border-radius:50%;
	border:2vh solid #ffffff;
}
.simple-item:nth-child(1) .simple-img {
	--target-num:15;
}
.simple-item:nth-child(2) .simple-img {
	--target-num:56;
}
.simple-item:nth-child(3) .simple-img {
	--target-num:88;
}
.simple-item:nth-child(4) .simple-img {
	--target-num:37;
}
.simple-img img {
	max-width:100%;
}
.simple-txt-sub {
	display:block;
	text-align:center;
	font-size: 80%;
}

@media(max-width:768px) {
	.simple-wrpr {
		gap:10vh;
	}
	.simple-items-wrpr {
		flex-wrap: wrap;
        gap: 10vw;
	}
	.simple-item {
		width:40%;
	}
	.simple-img {
		height:auto;
	}
}
/*==== TECHNOLOGY ====*/
.thetech-sec {
	background-image: url(../assets/images/circlebg2.png), 
					url(../assets/images/circlebg1.png), 
					linear-gradient(180deg, #FFFFFF 0%, #EFEFef 100%);
    background-position: top right -10%, left -30% bottom -100%, 0 0;
    background-size: 25vw, 40vw, 100%;
    background-repeat: no-repeat;
    padding-bottom: calc(12vh + 2%);
}
.thetech-wrpr {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:15vh;
}
.thetech-items-wrpr {
	width:100%;
	display:flex;
	justify-content:space-around;
}
.thetech-item {
	width:30%;
	padding:5vh;
	text-align:center;
	border:2px solid var(--green-default);
	background:#ffffff;
}
.thetech-img {
	text-align:center;
	margin:0 auto;
}
.thetech-img img {
	height:120px;
	margin:0 auto;
	margin-bottom:3vh;
}

@media(max-width:768px) {
	.thetech-wrpr {
		gap:10vh;
	}
	.thetech-items-wrpr {
        flex-direction: column;
        gap: 5vh;
    }
	.thetech-item {
        width: 100%;
        display: flex;
        padding: 5vw;
        padding-right: 2vw;
        gap: 5vw;
    }
	.thetech-img {
		max-width:25%;
	}
	.thetech-img img {
		height:auto;
	}
	.thetech-txt {
		font-size:18px;
	}
}

/*==== WHY ====*/
.why-sec {
	position:relative;
	background:#000000 url(../assets/images/whybg.png);
	background-size:cover;
	background-position:top right;
	border-radius: 100% 100% 0 0 / 50%;
    width: 160%;
    overflow: hidden;
    margin-left: -30%;
	margin-top:-2%;
}
.why-sec, .why-sec * {
	color:#ffffff;
}
.why-sec h2 {
	color:var(--green-default);
	text-align:center;
}
.why-wrpr {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:15vh;
}
.why-blocks-wrpr {
	display:flex;
	gap:10vw;
	align-items:flex-start;
	max-width:90vw;
}
.why-block-icon {
	display:block;
	margin-bottom:2vh;
	max-height:12vh;
}
.why-block-ttl {
	margin:0;
	display:block;
	font-size:28px;
	margin-bottom:4vh;
}
.why-sec .why-list {	/*ul*/
	margin: 0;
    padding: 0;
    list-style: none;
}
.why-sec .why-list li {
	position: relative;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.25;
	font-size:20px;
	font-weight:300;
    margin-bottom: 20px;
}
.why-sec .why-list li::before {
	content: '';
    position: absolute;
    width: 20px;
    aspect-ratio: 1;
    margin-top: 2px;
    left: 0;
    top: 3px;
    display: block;
    background: url(../assets/images/li_arr_g.png) no-repeat;
    background-size: contain;
}

@media(max-width:768px) {
	.why-sec {
		border-radius: 100% 100% 0 0 / 30%;
	}
	.why-wrpr {
		gap:10vh;
	}
	.why-sec h2 {
		line-height:1.25;
	}
	.why-blocks-wrpr {
        flex-direction: column;
    }
	.why-block-icon {
		display: inline-block;
		margin-right: 10px;
		vertical-align: text-bottom;
		margin-bottom: 10px;
		max-height: 60px;
	}
	.why-block-ttl {
		display:inline-block;
	}
}

/*==== TEAM ====*/
.team-sec * {
	text-align:center;
}
.team-wrpr {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	align-items:center;
	gap:12vh;
}
.team-wrpr p {
	margin:0;
}
.team-wrpr hr {
	background:#CBCBCB;
	height:1px;
	border:none;
	width:80%;
	margin:0 auto;
}
.team-items-wrpr {
	width:100%;
	display:flex;
	justify-content:space-around;
	align-items:flex-start;
}
.team-item {
	width:30%;
	text-align:center;
}
.team-item:nth-child(1) .team-img {
	--target-num:20;
}
.team-item:nth-child(2) .team-img {
	--target-num:60;
}
.team-item:nth-child(3) .team-img {
	--target-num:40;
}
.team-item:nth-child(4) .team-img {
	--target-num:80;
}
.team-item:nth-child(4) .team-img {
	--target-num:100;
}
.team-img {
	position:relative;
	margin:0 auto;
	margin-bottom:2vh;
	max-height:30vh;
	aspect-ratio:1;
	border-radius:50%;
	border:2vh solid #ffffff;
}
.team-img img {
	max-width:100%;
}
.team-gap {
	color:var(--green-default);
}
.team-txt {
	display:block;
}
.team-sub {
	display:block;
	font-size:80%;
}

@media(max-width:768px) {
	.team-wrpr {
		gap:10vh;
	}
	.team-items-wrpr {
		flex-direction:column;
		gap:5vh;
	}
	.team-item {
		width:100%;
	}
}

/*==== BOTTOM ====*/
.bot-sec {
	padding-bottom:0;
	border-bottom:9px solid var(--green-default);
}	
.bot-wrpr {
	height:100%;
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}
.bot-wrpr-block {
	height:100%;
	display:flex;
	align-items:center;
}
.bot-wrpr-div {
	display:flex;
	gap:5vw;
	align-items:flex-start;
}
.bot-wrpr-div > * {
	min-width:30%;
}
.contact-wrpr {
	width:100%;
	min-height:60%;
	height:fit-content;
	padding:20vh 0 12vh 0;
	background-color:#f6f6f6; 
	background-image: url(../assets/images/circlebg1.png);
	background-position: right -20% top -10%;
    background-size: 40%;
	background-repeat: no-repeat;
}
.bot-mails {
	width:fit-content;
	display:flex;
	flex-direction:column;
	gap:2vh;
}
.bot-mails a {
	display:block;
}
.bot-mails hr {
	width:100%;
	height:1px;
	background:var(--green-default);
	border:none;
}

.footer-wrpr {
	width:100%;
	min-height:40%;
	height:fit-content;
	padding:10vh 0 7vh 0;
	background-color:#000000;
	background-image:	url(../assets/images/grid.png),
						url(../assets/images/circlebg1.png),
						url(../assets/images/circlebg1.png);
    background-position: right top, right -5% bottom -20%, left -10% top -100%;
    background-size: cover, 10vw, 20vw;
    background-repeat: no-repeat;
}
.footer-wrpr,
.footer-wrpr * {
	color:#ffffff;
}
.bot-social {
	min-width: fit-content;
	display: flex;
	flex-direction: column;
}
.bot-social-ttl {
	display:flex;
	gap:1vw;
	align-items:center;
}
.bot-social-ttl-decor {
	position:relative;
	height:1px;
	width:100%;
	background:var(--green-default);
}
.bot-social-ttl-decor span {
	position:absolute;
	right:0;
	width:10px;
	aspect-ratio:1;
	border-radius:100%;
	translate:0 -50%;
	background:var(--green-default);
}
.bot-social-ttl {
	display:flex;
	gap:1vw;
}
.bot-social-ttl h3 {
	white-space:nowrap;
}
.bot-social-ic {
	display:flex;
	gap:1vw;
}
.bot-social-ic a {
	width:40px;
	aspect-ratio:1;
	border-radius:100%;
	background:var(--green-default);
	background-position:center;
	background-size:50%;
	background-repeat:no-repeat;
}
.bot-social-ic a.s_in {
	background-image:url(../assets/images/s_in.png);
}
.bot-social-ic a.s_f {
	background-image:url(../assets/images/s_f.png);
	background-size:30%;
}
.bot-social-ic a.s_i {
	background-image:url(../assets/images/s_i.png);
}
.bot-social-ic a.s_yt {
	background-image:url(../assets/images/s_yt.png);
}

@media(max-width:768px) {
	.contact-wrpr {
		padding-bottom:0;
	}
	.footer-wrpr {
		padding-top:0;
	}
	.bot-wrpr-div {
		flex-direction: column;
		gap: 10vh;
	}
}