html {
	scroll-behavior: smooth;
}
body {
	background: #5b5a61;
}
body.hidden {
    overflow: hidden;
}
.page {
	overflow: hidden;
	position: relative;
	font-family: 'Lato', sans-serif;
	color: #fff;
	background: url('/assets/bg.jpg');
	background-size: 1920px;
	background-position: top center;
	padding-left: 88px;
}
.title {
	font-weight: 700;
	font-size: 48px;
	line-height: 57px;
}
.title .big {
	font-size: 64px;
	line-height: 84px;
}
.title.small {
	font-weight: 400;
	font-size: 32px;
	line-height: 39px;
}
.desc {
	font-family: 'Roboto', sans-serif;
    font-weight: 300;
	font-size: 20px;
	line-height: 29px;
}
button,
a {
	border: 0;
	outline: 0;
	cursor: pointer;
	transition: .3s;
}
a:hover,
button:hover  {
	opacity: .5;
}
.button {
	color: #5D5D61;
	background: #fff;
	border-radius: 4px;
	padding: 10px 50px;
	font-size: 18px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}
.section {
	padding: 80px 24px 100px;
}
.section .wrapper {
	max-width: 1364px;
	margin: 0 auto;
}
.section > .title {
	text-align: center;
}

/* menu */
.sidebar {
	left: 0;
	top: 0;
	position: fixed;
	height: 100%;
	width: 88px;
	background: #908c91;
	cursor: pointer;
	text-align: center;
	padding-top: 57px;
	z-index: 3;
}
.sidebar .img {
	width: 32px;
	height: 32px;
	transition: .3s;
	background-image: url('/assets/menu.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto;
}
.sidebar.active .img {
	background-image: url('/assets/close.svg');
}
.sidebar .title {
	font-size: 20px;
	line-height: 22px;
	transition: .3s;
	text-transform: uppercase;
	margin-top: 40px;
	transform: rotate(-90deg);
}
.sidebar:hover img,
.sidebar:hover .title {
	opacity: .7;
}
.menu {
	background: #6d8ba0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: .3s;
	z-index: 2;
}
.menu.active {
	transform: translateX(0);
}
.menu .wrapper {
	padding-left: 276px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-bottom: 100px;
}
.menu a {
	color: #fff;
	font-size: 52px;
	line-height: 62px;
	font-weight: 400;
}
.menu li + li {
	margin-top: 46px;
}
.menu li:last-child {
	margin-top: 110px;
}
.menu li:last-child a {
	position: relative;
}
.menu li:last-child a::before {
	content: '';
	width: 82px;
	height: 82px;
	position: absolute;
	left: -112px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	background-image: url('/assets/arrow-down.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}


/* hero section */
.hero-section .logo .img {
	width: 122px;
}
.hero-section {
	min-height: 100vh;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 200px;
}
.hero-section .title {
	font-size: 148px;
	line-height: 178px;
	margin-left: 42px;
	font-weight: 400;
}
.hero-section .center {
	display: flex;
	align-items: center;
}
.hero-section .center-container .desc {
	text-align: right;
	font-size: 32px;
	line-height: 43px;
	margin-top: 20px;
}
.hero-section .bottom {
	max-width: 435px;
	margin: 193px auto 0;
}
.hero-section .bottom .desc {
	font-weight: 400;
	font-size: 24px;
	line-height: 34px;
}
.hero-section .bottom a {
	margin: 35px auto 0;
	display: table;
}
.hero-section .bottom a .img {
	width: 55px;
}

/* we grow section */
.we-grow-section .list {
	margin-top: 130px;
	display: flex;
	justify-content: space-between;
}
.we-grow-section .list img {
	width: 55px;
	height: 48px;
}
.we-grow-section .item {
	max-width: 320px;
	text-align: center;
	width: 33%;
}
.we-grow-section .item .title {
	margin-top: 25px;
}
.we-grow-section .item .desc {
	margin-top: 28px;
}

/* method section */
.method-section > .title {
	max-width: 960px;
	margin: 0 auto;
}
.method-section .wrapper {
	margin-top: 120px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.method-section .left {
	width: 50%;
	position: relative;
}
.method-section .left .shadow {
	position: absolute;
	width: 70%;
	left: -20%;
	bottom: -20%;
}
.method-section .left .method {
	position: relative;
}
.method-section .right {
	width: 50%;
	padding-left: 10%;
}
.method-section .desc {
	margin-top: 42px;
}

/* what we design section */
.what-we-design-section .wrapper {
	display: flex;
	margin-top: 120px;
	align-items: center;
	gap: 16px;
}
.what-we-design-section .left {
	width: 50%;
	padding-right: 10%;
}
.what-we-design-section .right {
	width: 50%;
}
.what-we-design-section .desc {
	margin-top: 42px;
}
.what-we-design-section .wrapper:nth-child(even) .left {
	padding-right: 0;
}
.what-we-design-section .wrapper:nth-child(even) .right {
	padding-left: 10%;
}

/* design process */
.design-process-section .wrapper {
	margin-top: 135px;
}
.design-process-section .item {
	margin-top: 55px;
	width: 100%;
}
.design-process-section .num {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
}
.design-process-section .title {
	font-weight: 700;
}
.design-process-section .bottom {
	padding-top: 20px;
}
.design-process-section .top::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc(100% - 56px);
	height: 2px;
	background: #fff;
}
.design-process-section .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
	position: relative;
}
.design-process-section .desc {
	width: 80%;
	margin: 0 0 0 auto;
}

/* best section */
.best-section .wrapper {
	margin-top: 140px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.best-section .left {
	width: 50%;
	padding-right: 10%;
}
.best-section .right {
	position: relative;
	width: 50%;
}
.best-section .best {
	position: relative;
	z-index: 1;
}
.best-section .best-bg {
	width: 131%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.best-section .desc {
	margin-top: 42px;
}


/* process section */
.process-section .wrapper {
	margin-top: 10px;
}
.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.process-section .item img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	object-position: center;
	margin-right: 50px;
}
.process-section .item {
	max-width: 536px;
	width: 50%;
	margin-top: 110px;
}
.process-section .item .top {
	display: flex;
	padding-left: 40px;
	align-items: center;
	padding-bottom: 25px;
	border-bottom: 2px solid #fff;
}
.process-section .item .bottom {
	padding-top: 20px;
}
.process-section .item .desc {
	width: calc(100% - 140px);
	margin: 0 0 0 auto;
}


/* form section */
.form-section {
	padding: 120px 24px;
	background: rgba(0,0,0,.24);
}
.form-section .wrapper {
	max-width: 1088px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.form-section .left {
	width: 50%;
}
.form-section .right {
	width: 50%;
}
.form-section input,
.form-section select {
	border: 1px solid #BABABA;
	border-radius: 4px;
	width: 100%;
	color: #BABABA;
	font-size: 18px;
	line-height: 24px;
	padding: 10px 20px;
	background: #626264;
	outline: none;
}
.form-section input::placeholder {
	color: #BABABA;
}
.form-section select {
	margin-top: 18px;
	-webkit-appearance: none;
  	-moz-appearance: none;
	background-image: url('/assets/select-arrow.svg');
	background-size: 14px;
	background-position: top 18px right 18px;
	background-repeat: no-repeat;
}
.form-section input + input,
.form-section select + input {
	margin-top: 18px;
}
.form-section select option,
.form-section select optgroup  {
	background: #6f8da2;
	color: #fff;
}
.form-section .button {
	margin-top: 30px;
}
.form-section .title {
	max-width: 390px;
	font-size: 48px;
	font-weight: 400;
}
.form-section .title span {
	font-weight: 700;
	font-size: 64px;
	line-height: 74px;
	display: block;
}

/* footer */
.footer {
	height: 277px;
	background: rgba(0,0,0,.48);
	padding: 0 24px;
}
.footer .logo .img {
	width: 72px;
}
.footer .wrapper {
	max-width: 1360px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer .left .big {
	font-weight: 700;
}
.footer .left .small {
	margin-top: 20px;
	font-size: 14px;
	line-height: 20px;
	max-width: 270px;
}
.footer .wrapper > div {
	flex: 1;
}
.footer .center {
	text-align: center;
}
.footer .right {
	text-align: right;
}
.footer .right .desc {
	font-weight: bold;
	text-decoration: underline;
	color: #fff;
}
.footer .right .desc:hover {
	text-decoration: none;
}


/* media */
@media screen and (max-width: 1400px)  {
	.hero-section .title {
		font-size: 96px;
		line-height: 100px;
	}
	.hero-section .logo .img {
		width: 84px;
	}
}
@media screen and (max-width: 800px) {
	.hero-section .title {
		font-size: 56px;
		margin-left: 24px;
		line-height: 70px;
	}
	.hero-section .logo .img {
		width: 52px;
	}
	.hero-section .center-container .desc {
		font-size: 24px;
		line-height: 32px;
		margin-top: 16px;
	}
	.we-grow-section .item {
		width: 100%;
		max-width: 100%;
	}
	.we-grow-section .list {
		justify-content: center;
	}
	.we-grow-section .item + .item {
		margin-top: 24px;
	}
	.method-section .wrapper {
		flex-direction: column;
	}
	.method-section .left {
		width: 100%;
	}
	.method-section .right {
		width: 100%;
		padding-left: 0;
	}
	.what-we-design-section .wrapper {
		flex-direction: column;
	}
	.what-we-design-section .left {
		width: 100%;
		padding-right: 0;
	}
	.what-we-design-section .right {
		width: 100%;
		padding-left: 0;
	}
	.what-we-design-section .wrapper:nth-child(even) .right {
		padding-left: 0;
	}
	.what-we-design-section .wrapper:nth-child(even) {
		flex-direction: column-reverse;
	}
	.best-section .wrapper {
		flex-direction: column;
	}
	.best-section .left {
		width: 100%;
		padding-right: 0;
	}
	.best-section .right {
		width: 100%;
		padding-left: 0;
	}
	.process-section .item {
		width: 100%;
	}
	.form-section .wrapper {
		flex-direction: column;
	}
	.form-section .left {
		width: 100%;
	}
	.form-section .right {
		width: 100%;
	}
	.page {
		padding-left: 50px;
	}
	.sidebar {
		width: 50px;
		padding-top: 32px;
	}
	.sidebar img {
		width: 24px;
	}
	.sidebar .title {
		margin-top: 30px;
		font-size: 16px;
	}
	.menu a {
		color: #fff;
		font-size: 36px;
		line-height: 42px;
		font-weight: 400;
	}
	.menu .wrapper {
		padding-left: 150px;
	}
	.menu li:last-child a::before {
		width: 52px;
		height: 52px;
		left: -70px;
	}
}
@media screen and (max-width: 600px) {
	.title {
		font-size: 32px;
		line-height: 36px;
	}
	.title.small {
		font-size: 24px;
		line-height: 32px;
	}
	.title .big {
		font-size: 42px;
		line-height: 42px;
	}
	.desc {
		font-size: 16px;
		line-height: 22px;
	}
	.section {
		padding-bottom: 20px;
	}
	.hero-section .center {
		flex-direction: column;
	}
	.hero-section .title {
		font-size: 36px;
		line-height: 42px;
		margin-top: 24px;
		margin-left: 0;
	}
	.hero-section .center-container .desc {
		text-align: center;
		font-size: 16px;
		line-height: 21px;
	}
	.hero-section .bottom {
		margin-top: 100px;
	}
	.hero-section .bottom .desc {
		font-size: 16px;
		line-height: 23px;
	}
	.hero-section .bottom a .img {
		width: 42px;
	}
	.hero-section {
		padding-top: 70px;
	}
	.method-section .wrapper  {
		margin-top: 60px;
	}
	.we-grow-section .list {
		margin-top: 60px;
	}
	.what-we-design-section .wrapper {
		margin-top: 60px;
	}
	.what-we-design-section .desc {
		margin-top: 24px;
	}
	.design-process-section .wrapper {
		margin-top: 60px;
	}
	.design-process-section .item {
		margin-top: 0;
	}
	.design-process-section .item + .item {
		margin-top: 24px;
	}
	.design-process-section .num {
		font-size: 32px;
		line-height: 40px;
	}
	.design-process-section .title {
		width: 100%;
		padding-left: 24px;
	}
	.best-section .wrapper {
		margin-top: 60px;
	}
	.best-section .desc {
		margin-top: 24px;
	}
	.process-section .item {
		margin-top: 60px;
	}
	.process-section .item .top {
		padding-left: 0;
	}
	.process-section .item img {
		width: 32px;
		height: 32px;
		margin-right: 16px;
	}
	.process-section .item .desc {
		width: 100%;
	}
	.process-section {
		padding-bottom: 60px;
	}
	.form-section .title {
		font-size: 36px;
	}
	.form-section .title span {
		font-size: 42px;
		line-height: 48px;
	}
	.form-section {
		padding: 60px 24px;
	}
	.footer {
		height: auto;
		padding: 60px 24px;
	}
	.footer .wrapper {
		flex-direction: column;
	}
	.footer .left {
		text-align: center;
	}
	.footer .center {
		margin-top: 24px;
	}
	.footer .right {
		margin-top: 24px;
	}
	.menu li:last-child a::before {
		display: none;
	}
	.menu .wrapper {
		padding-left: 70px;
	}
}
.privacy h1 {
	text-align: center;
	font-size: 64px;
}
.privacy h2 {
    text-align: center;
    font-size: 34px;
    margin: 35px 0px;
}
.last-updated {
	text-align: right;
	padding: 15px 0px;
}
p {
	margin-bottom: 1rem;
}
.privacy > ul {
	padding-left: 20px;
	list-style: disc;
}
.privacy > ul > li {
	padding-bottom: 10px;
}
table {
	border-collapse: collapse;
	width: 100%;
}
table td {
	border: 1px solid #fff;
    padding: 10px;
}
table td b {
	font-weight: bold;
}
p > a {
	color: #fff;
	text-decoration: underline;
}
.footer .right .desc {
	white-space: nowrap;
}
.footer .right .desc.mail {
	margin-right: 30px;
}
@media screen and (max-width: 1120px) {
    .footer .right .desc.mail {
        margin-right: 0px;
        display: block;
    }
}
@media screen and (max-width: 600px) {
	.footer .right {
	   text-align: center;
	}
}
#overlay {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    font-family: 'Lato', sans-serif;
}
#overlay .pop {
    background: #fff;
    max-width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 50px 50px 50px;
    border-radius: 6px;
    display: none;
}
#overlay .pop .close {
    position: absolute;
    right: 25px;
    top: 20px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
}
#overlay .pop .close:hover {
    opacity: 1;
}
#overlay .pop .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}
#overlay .pop .close:before {
    transform: rotate(45deg);
}
#overlay .pop .close:after {
    transform: rotate(-45deg);
}
#overlay .pop .message {
    text-align: center;
    font-size: 18px;
}
ul.dotted {
    margin-top: 110px;
}
ul.dotted li {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 22px;
    padding: 36px 0 36px 60px;
    list-style: none;
    background-image: url("/assets/li.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 28px;
    margin-bottom: 42px;
}
ul.dotted li:last-child {
    margin-bottom: 0px;
}