﻿
/* Import Google Fonts - Noto Sans JP */

/* Regular */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJPRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJPMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJPSemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJPBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Import Google Fonts - Zen Maru Gothic */

/* Regular */
@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/ZenMaruGothicRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/ZenMaruGothicMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/ZenMaruGothicBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}



* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
	font-family: "Zen Maru Gothic", sans-serif;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

[id] {
  scroll-margin-top: 80px; /* adjust to your header height */
}

.container {
	width: 100%;
}

.sub-container {
	width: 100%;
	max-width: 1025px;
	padding: 0 40px;
	margin: 0 auto;
}

img {
	width: 100%;
	height: auto;
}

.bg-gray {
	background-color: #f4f6f8;
}

.bg-white {
	background-color: #FFFFFF;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}


@media screen and (max-width: 400px) {
	.sub-container {
		padding: 0 30px;
	}
}

/* Start Header  */
.yuigon-nav {
	width: 100%;
	height: 72px;
	padding: 12px 16px;
	background: #FFFFFF;
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 990;
	box-shadow: 0px 1px 24px 0 rgba(0, 0, 0, 0.1);
	
}

.yuigon-logo {
	width: 100%;
	max-width: 131px;
}

.yuigon-logo img {
	width: 100%;
}

.menu-btn,
.menu-btn-two {
	width: 100%;
	max-width: 48px;
	cursor: pointer;
}

.menu-btn-two {
	margin-left: auto;
}

.menu-btn img,
.menu-btn-two img {
	width: 100%;
}

.menu-lists-box {
	width: 100%;
	position: fixed;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: top;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.menu-lists-box.show {
	transition: all 0.4s ease-in-out;
	opacity: 1;
	visibility: visible;
}

.menu-lists-cont {
	width: 100%;
	height: 100vh;
	max-width: 329px;
	overflow-y: auto;
	padding: 12px;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: end;
}

.menu-lists {
	width: 100%;
	max-width: 329px;
	background-color: #FFFFFF;
	padding: 0 12px;
	margin-top: 10px;
}

.menu-lists .menu-list {
	list-style: none;
	text-align: right;
	padding-bottom: 16px;
	margin-top: 16px;
	border-bottom: 1px solid #E9E9E9;
	cursor: pointer;
}

.menu-lists .menu-list .menu-list-item {
	text-decoration: none;
	color: #27292A;
	font-weight: 700;
	font-size: 14px;
	display: block;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
	.menu-lists-cont {
		max-width: 80%;
	}
}

/* End Header  */

/* Start MV  */

.yuigon-mv-cont {
	width: 100%;
	margin: 0 auto;
	padding: 145px 0 64px 0;
}

.mv-logo-img-cont {
	width: 100%;
	max-width: 181px;
	margin: 0 auto;
	text-align: center;
}

.mv-logo-img-cont img {
	width: 100%;
}

.mv-ttl {
	width: 100%;
	max-width: 574px;
	color: #0B5892;
	font-size: 69px;
	margin: 0 auto;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 11px;
	position: relative;
}

.mv-ttl::before {
	content: "";
	width: 79px;
	height: 79px;
	background: url("../img/mv_ai.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: -30px;
	left: -10px;
	position: absolute;
}

.s-mv-letter {
	font-size: 53px;
}

.mv-img-cont {
	width: 100%;
	max-width: 537px;
	min-height: 54px;
	background: url("../img/mv_photo_bg.png") no-repeat center;
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.mv-img-cont::before {
	content: "";
	width: 47px;
	height: 93px;
	background: url("../img/mv_photo_bg_2.png") no-repeat center;
	background-size: contain;
	position: absolute;
	top: -85px;
	right: -28px;
	z-index: 1;
}

.mv-sub-ttl {
	font-size: 20px;
	font-weight: 300;
	color: #0B5892;
	text-align: center;
	letter-spacing: 4px;
}

.mv-img-txt {
	font-size: 19px;
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
	letter-spacing: 2px;
}

.download-box {
	width: 100%;
	max-width: 574px;
	margin: 0 auto;
	margin-top: 51px;
	border-radius: 8px;
	padding: 24px;
	padding-top: 20px;
}

.download-ttl {
	font-size: 20px;
	font-weight: 700;
	color: #0B5892;
	text-align: center;
	position: relative;
}

.download-ttl::before {
	content: "";
	width: 36px;
	height: 46px;
	background: url("../img/cat.png") no-repeat center;
	background-size: contain;
	position: absolute;
	top: -19px;
	right: 124px;
}

.draft-txt {
	width: 100%;
	max-width: 141px;
	height: 30px;
	position: absolute;
	top: -36px;
	left: 228px;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background: url("../img/draft_txt_bg.png") no-repeat center;
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: baseline;
	line-height: 1.2;
}

.draft-num{
	font-size: 22px;
}

.qr-boxes {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
	margin-top: 2px;
}

.qr-box {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
}

.apple-store-box {
	width: 100%;
	max-width: 131px;
	height: 48px;
}

.google-play-box {
	width: 100%;
	max-width: 162px;
	height: 48px;
}

.qr-img-cont {
	width: 100%;
	max-width: 76px;
	height: 76px;
}

.gotoweb-btn {
	width: 100%;
	max-width: 293px;
	height: 48px;
	border-radius: 32px;
	text-decoration: none;
	background: linear-gradient(90deg, #1DB6D1 0%, #287DC0 100%);
	padding: 16px 24px;
	display: block;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	margin-top: 18px;
	font-family: "Noto Sans JP", sans-serif;
}

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

	.yuigon-mv-cont {
		padding: 143px 0 48px 0;
	}

	.mv-ttl {
		max-width: 332px;
		font-size: 35px;
		margin-bottom: 15px;
	}

	.mv-ttl::before {
		width: 50px;
		height: 50px;
		top: -20px;
		left: 3px;
	}

	.mv-img-cont {
		background: url("../img/mv_photo_bg_sp.png") no-repeat center;
		border-radius: 6px;
		top: 7px;
		left: -7px;
	}

	.mv-img-txt {
		padding: 13px 11px;
		font-size: 16px;
	}

	.mv-sub-ttl {
		font-size: 16px;
	}

	.s-mv-letter {
		font-size: 23px;
	}

	.download-ttl {
		font-size: 20px;
	}

	.download-box {
		max-width: 345px;
		padding: 20px 10px;
		padding-bottom: 26px;
		margin-top: 59px;
	}

	.download-ttl::before {
		right: 21px;
	}

	.draft-txt {
		left: 123px;
		font-size: 12px;
	}

	.qr-boxes {
		gap: 12px;
		justify-content: center;
		margin-top: 13px;
	}

	.qr-img-cont {
		display: none;
	}

	.gotoweb-btn {
		margin-top: 16px;
	}

	.google-play-box{
		max-width: 154px;
		height: 46px;
	}

	.apple-store-box{
		max-width: 123px;
		height: 45px;
	}

	.download-box .google-play-box img
	{
		width: 100%;
		max-width: 154px;
	}

	.download-box .apple-store-box img
	{
		width: 100%;
		max-width: 123px;
	}

	.mv-img-cont::before{
		right: -31px;
	}


}

@media screen and (max-width: 425px) {
	.download-ttl::before {
		right: 5%;
	}

	.draft-txt {
		left: 37%;
	}

	.download-ttl{
		font-size: 20px;
	}
}


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

	.mv-ttl::before {
		top: -28px;
		left: -3px;
	}

	.download-ttl::before {
		right: 2%;
	}

	.draft-txt {
		left: 37%;
	}

	.download-ttl{
		font-size: 18px;
	}
}

@media screen and (max-width: 360px) {
	.mv-ttl::before {
		top: -28px;
		left: -10px;
	}
	
}

@media screen and (max-width: 350px) {
	.download-ttl::before {
		right: 0%;
	}

	.draft-txt {
		left: 26%;
	}

	.download-ttl{
		font-size: 16px;
	}

	.mv-ttl::before {
		top: -28px;
		left: -7%;
	}

}

/* End MV   */

/* Start How to Start   */
.start-cont {
	padding: 64px 0 24px;
}

.start-cont-section{
	padding-bottom: 30px;
}

.start-box {
	width: 100%;
	max-width: 418px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.stepbox {
	width: 100%;
	max-width: 345px;
	margin: 0 auto;
	background-color: #E5F1F9;
	border-radius: 8px;
	text-align: left;
	margin-bottom: 16px;
	padding: 16px;
}

.start-box .stepbox:last-of-type {
  margin-bottom: 8px;
}

.stepbox-txt {
	font-size: 16px;
	font-weight: 700;
	font-family: "Noto Sans JP", sans-serif;
	color: #0B5892;
	letter-spacing: 4px;
}

.start-ttl {
	font-size: 16px;
	font-weight: 700;
	color: #0B5892;
	position: relative;
	margin-bottom: 43px;
}

.start-ttl::before{
	content: "";
	width: 50px;
	height: 30px;
	background: url("../img/start_polygon.png") no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: -43px;
	left: 50%;
	transform: translateX(-50%);
}

.start-sub-ttl{
	font-size: 16px;
	max-width: 319px;
	font-weight: 700;
	padding-top: 32px;
	color: #0B5892;
	position: relative;
	text-align: center;
	margin: 0 auto;
	letter-spacing: 4px;
}

.start-sub-ttl::before{
	content: "";
	width: 13px;
	height: 47px;
	background: url("../img/ai_text_left.png") no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: -4%;
}

.start-sub-ttl::after{
	content: "";
	width: 13px;
	height: 47px;
	background: url("../img/ai_text_right.png") no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: 0;
	right: -4%;
}

.ai-circle{
	width: 100%;
	max-width: 418px;
	height: 418px;
	background-image: url("../img/ai_circle_img.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-top: 27px;
	margin: 0 auto;
	line-height: 1.8;
}

.ai-circle-logo{
	width: 100%;
	max-width: 139px;
	height: 40px;
	margin: 0 auto;
	padding-top: 86px;
}

.head-ttl-three.ai-circle-ttl {
	margin-top: 56px;
	padding-top: 0;
	margin-bottom: 33px;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 4px;
	font-size: 24px;
}

.ai-circle-txt{
	width: 100%;
	max-width: 345px;
	font-size: 16px;
	color: #0B5892;
	font-weight: 700;
	margin: 0 auto;
	text-align: center;
	letter-spacing: 4px;
	font-family: "Noto Sans JP", sans-serif;
}



@media screen and (max-width: 768px) {
	.start-cont {
		padding: 48px 0px 24px;
	}

	.start-cont-section{
		padding-bottom: 48px;
		overflow: hidden;
	}

	.start-box .stepbox:last-of-type{
		margin-bottom: 15px;
	}

	.start-ttl::before{
		bottom: -48px;
	}

	.head-ttl-three.ai-circle-ttl {
		font-size: 20px;
		margin-top: 55px;
        margin-bottom: 40px;
		letter-spacing: 3px;
	}
	
	.ai-circle-txt{
		font-size: 16px;
	}

	.stepbox-txt{
		font-size: 14px;
	}

	.start-ttl{
		font-size: 14px;
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 450px) {
	.ai-circle{
		width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        max-width: unset;
	}
}


@media screen and (max-width: 375px) {
	.start-sub-ttl{
		font-size: 12px;
	}

	.start-sub-ttl::before{
		bottom: -5%;
	}

	.start-sub-ttl::after{
		bottom: -5%;
	}

	.ai-circle-txt{
		font-size: 14px;
		letter-spacing: 4px;
	}

	.ai-circle{
		padding: 0 20px;
	}
	
}

/* End How to Start    */

/* Start Yuigon Flex Block   */

.app-features-section {
	max-width: 1113px;
	margin: 0 auto;
}

.app-features-container {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	max-width: 1105px;
	margin: 0 auto;
	padding: 0 20px;
}

.app-feature-card {
	flex: 1;
	background: #FFFFFF;
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
}

.feature-num {
	width: 48px;
	height: 48px;
	background: #287DC0;
	color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 700;
	margin: 0 auto 10px;
	font-family: "Noto Sans JP", sans-serif;
}

.app-feature-heading {
	font-size: 22px;
	font-weight: 700;
	color: #27292A;
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 15px;
	line-height: 1.4;
}

.app-feature-desc {
	font-size: 16px;
	color: #27292A;
	line-height: 1.6;
	margin: 0;
}

.feature-container {
	max-width: 822px;
	margin: 0 auto;
}

.head-ttl-three {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #0B5892;
	margin-bottom: 45px;
	padding-top: 55px;
	position: relative;
}

.head-ttl-three::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 4px;
	border-radius: 8px;
	background-color: #FD9D66;
}

.feature-block {
	display: flex;
	align-items: center;
	border-radius: 20px;
	margin-bottom: 40px;
	overflow: hidden;
}

.feature-text {
	flex: 1;
	text-align: center;
}

.feature-ttl-img {
	max-width: 334px;
	width: 100%;
	margin: 0 auto;
}

.feature-title {
	font-size: 28px;
	font-weight: 700;
	color: #0B5892;
	margin-bottom: 20px;
	line-height: 1.4;
	letter-spacing: 2px;
}

.feature-title .sm-txt{
	font-size: 18px;
}

.feature-description {
	font-size: 16px;
	color: #0B5892;
	line-height: 1.6;
	margin-bottom: 0;
	letter-spacing: 3px;
}

.feature-visual {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone-mockup {
	width: 100%;
}

.phone-mockup img {
	width: 100%;
}

.feature-note {
	font-size: 12px;
	color: #757575;
	text-align: end;
	display: flex;
	justify-content: end;
}

.feature-osusume-container {
	max-width: 1105px;
	padding: 0 20px;
	margin: 0 auto;
}

.feature-osusume-content {
	background-color: #E5F1F9;
	border-radius: 8px;
	padding: 16px;
}

.feature-osusume-content p {
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	color: #0B5892;
	letter-spacing: 4px;
}

.feature-osusume-content p:not(:last-child) {
	margin-bottom: 25px;
}

@media screen and (max-width: 1100px) {
	.app-features-container {
		justify-content: center;
		flex-wrap: wrap;
	}

	.app-feature-card {
		flex: unset;
		max-width: 340px;
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.head-ttl-three {
		padding-top: 45px;
	}

	.app-features-container {
		flex-direction: column;
		gap: 48px;
		padding: 0 35px;
	}

	.app-feature-card {
		max-width: 100%;
		padding: 24px 15px;
	}

	.feature-block {
		flex-direction: column;
		gap: 0;
	}

	.feature-block-container .head-ttl-three {
		margin-bottom: 26px;
	}

	.feature-visual{
		overflow: hidden;
	}

	.phone-mockup {
		width: 450px;
	}

	.feature-block:not(:nth-child(2)) .phone-mockup{
		margin-top: -20px;
	}

	.feature-block:nth-child(2) .phone-mockup{
		margin-top: 10px;
		width: 500px;
	}

	.feature-block:nth-child(4){
		margin-bottom: 28px;
	}

	.feature-note {
		text-align: start;
		padding: 0 24px;
	}
}

@media screen and (max-width: 400px) {
	.feature-block:not(:nth-child(2)) .phone-mockup{
		margin-left: -20px;
	}
}

@media screen and (max-width: 372px) {
	.app-feature-heading{
		font-size: 20px;
	}

	.app-feature-desc{
		font-size: 14px;
	}
}

@media screen and (max-width: 340px) {
	.app-feature-heading{
		font-size: 18px;
	}

	.app-feature-desc{
		font-size: 12px;
	}
}

.feature-updates-section {
	padding: 0 20px 64px;
}

.updates-header {
	text-align: center;
	margin-bottom: 25px;
}

.updates-header .feature-ttl-img {
	max-width: 355px;
	margin-top: 60px;
}

.updates-container {
	display: flex;
	justify-content: space-between;
	gap: 64px;
	max-width: 849px;
	margin: 0 auto;
}

.update-block {
	flex: 1;
	text-align: center;
}

.update-ttl {
	margin: 0 auto 16px;
	position: relative;
	padding-bottom: 5px;
	color: #21ACCE;
	font-weight: 600;
}

.update-ttl-icon {
	max-width: 22px;
	width: 100%;
	margin: 0 auto;
}

.update-ttl::before {
	content: '';
	position: absolute;
	width: 100%;
    height: 3px;
	background: url("../img/border_img.png");
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-size: cover;
}

.update-ttl-txt {
	font-size: 16px;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.update-ttl-num {
	font-size: 38px;
	position: relative;
	bottom: 3px;
}

.update-main-text {
	font-size: 20px;
	color: #27292A;
	line-height: 1.6;
	margin-bottom: 5px;
	font-weight: 600;
}

.update-sub-text {
	font-size: 12px;
	color: #27292A;
	line-height: 1.4;
	margin: 0;
	font-weight: 400;
}

@media screen and (max-width: 900px) {
	.update-main-text{
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.feature-updates-section {
		margin-top: 60px;
		padding: 0 24px 48px;
	}

	.updates-container {
		max-width: 375px;
		margin: 0 auto;
		flex-direction: column;
		gap: 20px;
		padding: 0;
	}

	.update-block {
		display: flex;
		padding: 0;
		gap: 44px;
		align-items: center;
		justify-content: center;
	}

	.update-content {
		text-align: start;
		width: calc(100% - 48px);
	}

	.update-ttl {
		max-width: 48px;
		width: 100%;
		margin: 0;
		padding-bottom: 0;
	}

	.update-ttl::before {
		content: '';
        position: absolute;
        width: 100%;
        height: 112px;
        background: url(../img/vertical_border_img.png) no-repeat center;
        top: 0;
        left: 100%;
        transform: unset;
        background-size: contain;
	}

	.update-ttl-txt {
		display: block;
		text-wrap: nowrap;
	}

	.update-main-text {
		font-size: 20px;
		line-height: 1.4;
		letter-spacing: -1px;
	}

	.update-ttl-num {
		display: block;
        line-height: 1.2;
	}
}

@media screen and (max-width: 368px) {
    .update-main-text {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: -1px;
    }
}

/* End Yuigon Flex Block   */

/* Start faq Block   */
.faq-section {
	padding: 0 0 64px;
}

.faq-container {
	max-width: 1109px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq-title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #27292A;
	margin-bottom: 50px;
	position: relative;
}

.faq-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	border-radius: 8px;
	background-color: #FD9D66;
}

.faq-blocks {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-block {
	background: #E5F1F9;
	border-radius: 8px;
	padding: 16px;
}

.faq-content {
	position: relative;
	z-index: 1;
}

.faq-question {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
	gap: 15px;
	padding-bottom: 15px;
	position: relative;
	overflow: hidden;
}

.faq-question::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: url("../img/long_border_img.png");
	background-repeat: no-repeat;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-size: cover;
}

.faq-answer {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.faq-label {
	font-size: 16px;
	font-weight: 600;
	color: #27292A;
	min-width: 25px;
	line-height: 1.4;
}

.faq-answer-txt {
	font-size: 16px;
	color: #27292A;
}

@media screen and (max-width: 768px) {
	.faq-section {
		padding: 0 0 48px;
	}

	.faq-container {
		padding: 0 24px;
	}

	.faq-title {
		font-size: 24px;
		margin-bottom: 40px;
	}

	.faq-block {
		padding: 25px 20px;
	}

	.faq-question,
	.faq-answer {
		gap: 12px;
	}

	.faq-label {
		font-size: 16px;
		min-width: 20px;
	}

	.faq-question p,
	.faq-answer p {
		font-size: 15px;
	}

	.faq-question::before{
		background-repeat: no-repeat;
		background-size: cover;
		height: 3px;
	}
}

/* End faq Block   */

/* Start Download Block    */
.download-container {
	padding: 60px 0px 64px;
}

.download-txt {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
}

.download-container .download-box {
	margin-top: 44px;
}

@media screen and (max-width: 768px) {
	.download-container {
		padding: 48px 0px 40px;
	}

	.download-txt {
		text-wrap: nowrap;
	}

	.download-container .sub-container{
		padding:0;
	}

	.download-sub-container{
		padding: 0 30px;
	}
}

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

	.download-txt {
		font-size: 20px;
		text-wrap: wrap;
	}
	
}

/* End Download Block  */

/* Start Footer   */
.footer-container {
	background-color: #1EAECB;
	padding: 24px 26px;
}

.footer-txt {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
}

.copy-right {
	font-size: 10px;
	color: #ffffff;
	text-align: center;
	margin-top: 16px;
	font-weight: 700;
}

.footer-link{
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	cursor: pointer;
	color: #FFFFFF;
}

@media screen and (max-width: 768px) {
	.footer-txt{
		font-size: 20px;
	}
	
}

/* End Footer  */