.second-title
{
	display: block;
	position: relative;
	display: block;
	padding-top:15px;	
	text-transform:uppercase;
	&::after
	{
		content:' ';
		width: 50px;
		height: 3px;
		background-color: $second-color;
		position: absolute;
		top:0;
		left:0;
	}
}

#banner
{
	position: relative;
	min-height:100vh;
	display: flex;
	flex-direction:column;
	&::after
	{
		content:' ';
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.5);
		position: absolute;
		top:0;
		left:0;
	}
	.content
	{
		position: relative;
		z-index: 1;
		flex:1;
		padding-top:80px;
		padding-bottom:60px;
		display: flex;
		flex-direction:column;
		justify-content:center;
		color:$text-color;
    .m
    {
      margin-bottom:20px;
      span
      {
        font-size:0.875rem;
        
        color:#ff6467;
        background-color: rgba(251, 44, 54, .3);
        border: 1px solid rgba(251, 44, 54, 40%);
        border-radius: 50px;
        padding:8px 16px;
      }
    }
		h1
		{
			color:$text-color;
			font-size:5rem;
			font-weight: 700;
			line-height:1.2;
			margin-bottom:20px;
      span
      {
        color:$second-color;
      }
		}
		p
		{
			font-size:1.3rem;
			margin-bottom:20px;
			font-weight: 300;
			color:$link-color;
		}
		.socil
		{
			li
			{
				margin-bottom:16px;
				a
				{
					justify-content: center;
					align-items:center;
					color:$text-color;
					padding:0 32px;
					display: flex;
					height:62px;	
					border:1px solid rgba(255,255,255,90%);
					border-radius: 5px;
					background-color: rgba(255,255,255,10%);
					font-size:1.2rem;
					font-weight: 700;
					i
					{
						padding-right:10px;
						font-size:1.5rem;
					}
				}
				&:first-child
				{
					a
					{
						border:1px solid $main-color;
						background-color: $main-color;
					}
				}
			}
		}
		.list
		{
			display: flex;
			flex-wrap:wrap;
			li
			{
				color:#99a1af;
				font-size:0.875rem;
				padding-right:20px;
				margin-bottom: 8px;
				&:last-child
				{
					padding-right: 0;
				}
				&::before
				{
					content:'●';
					color:$main-color;
				}
			}
		}
		
	}
	.history
	{
		border-top:1px solid rgba(255,255,255,10%);
		background-color: $bg-color;
		position: relative;
		z-index: 1;
		display: flex;
		color:$text-color;
		align-items:center;
		justify-content:center;
		height: 120px;
		dl
		{
			border-right: 1px solid rgba(255,255,255,10%);
			&:last-child
			{
				border-right: 0;
			}
			width: 25%;
			text-align: center;
			dt
			{
				font-size:2.3rem;
				font-weight: 900;
			}
			dd
			{
				color:$link-color;
				font-size:0.875rem;
			}
		}
	}

	picture
	{
		display: block;
		position: absolute;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		img
		{
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center;
			filter: blur(6px) brightness(0.9);
		}
	}
	@media(min-width:768px)
	{
		.content
		{
			.socil
			{
				display: flex;
				li
				{
					margin-left:16px;
					&:first-child
					{
						margin-left:0;
					}
				}
			}	
		}
	}
	@media(max-width:767px)
	{
		.content
		{
			h1
			{
				font-size:7vw;
			}
			p
			{
				font-size:0.875rem;
			}
      .socil
      {
        li
        {
          a
          {
            font-size:1rem;
          }
        }
      }
		}
		.history
		{
			flex-wrap:wrap;
			height: 240px;
			dl
			{
				width: 50%;
				dt
				{
					font-size:1.5rem;
				}
				&:nth-child(2n)
				{
					border-right: 0;
				}
			}
		}
		
	}

}


#service
{
	position: relative;
	z-index: 1;
	padding-top:50px;
	background-color: $bg-color;
	padding-bottom:60px;
	.header
	{
		margin-bottom:40px;
		div
		{
			.second-title
			{
				color:$second-color;
				font-weight: 700;
				margin-bottom:15px;
			}
			h2
			{
				font-size: 3rem;
				font-weight: 700;
				color:$text-color;
				line-height: 1.2;
				
			}
		}
		p
		{
			color:$description-color;
		}
	}
	.list
	{
		display: flex;
		flex-wrap:wrap;
		>div
		{
			border:1px solid rgba(255,255,255,10%);
			border-radius: 10px;
			background-color: #1F2937;
			padding:32px;
			span
			{
				color:$second-color;
				border:1px solid rgba(251, 44, 54, 50%);
				display: flex;
				width: 56px;
				height:56px;
				border-radius: 10px;
				background-color: rgba(231, 0, 11, 15%);
				align-items:center;
				justify-content:center;
			}
			h3
			{
				padding:24px 0;
				font-weight: 700;
				color:$text-color;
				font-size:1.2rem;
			}
			p
			{
				color:$description-color;
				font-size:0.875rem;
			}
		}
	}
	
	@media(min-width:768px)
	{
		.header
		{
			display: flex;
			justify-content:space-between;
			align-items:flex-end;
			p
			{
				text-align: right;
			}
		}
		.list
		{
			>div
			{
				width: calc((100% - 64px) / 3);
				margin:0 16px 32px 16px;
				&:nth-child(3n)
				{
					margin-right: 0;
				}
				&:nth-child(3n + 1)
				{
					margin-left: 0;
				}
			}
		}
	}
	@media(max-width:767px)
	{
		.header
		{
			div
			{
				h2
				{
					margin-bottom:24px;
					font-size:1.8rem ;
				}
			}
		}
		.list
		{
      flex-wrap:nowrap;
      max-width:100%;
      overflow-y:auto;
      padding-bottom:20px;
			>div
			{
        margin-right:16px;
        min-width:300px;
        h3
        {
          font-size:1.1rem;
        }
        &:last-child
        {
          margin-right:0;
        }
			}
		}
		
	}
}


#strong
{
	background-color: #0D1117;
	padding-top:60px;
	padding-bottom:60px;
	.header
	{
		text-align: center;
		margin-bottom:60px;
		span
		{
			color:$second-color;
			font-weight: 700;
			text-transform:uppercase;
		}
		h2
		{
			padding:15px 0;
			font-size: 3rem;
			font-weight: 700;
			color:$text-color;
			line-height: 1.2;
		}
		p
		{
			color:$description-color;
		}
	}
	.list
	{
		>div
		{
			margin-bottom:60px;
			&:last-child
			{
				margin-bottom:0;
			}
			.picture
			{
				position: relative;
				span
				{
					top:-10px;
					left:-10px;
					border-radius: 10px;
					position: absolute;
					color:$text-color;
					font-weight: 700;
					font-size:1.5rem;
					width:64px;
					height:64px;
					display: flex;
					justify-content:center;
					align-items:center;
					background-color: $main-color;
					
				}
				picture
				{
					position: relative;
					display: block;
					&::after
					{
						content: ' ';
						display: block;
						padding-top:80%;
						width: 100%;
					}
					img
					{
						border-radius: 10px;
						position: absolute;
						top:0;
						left:0;
						display: block;
						width: 100%;
						height: 100%;
						object-fit: cover;
						object-position: center;
					}
				}
			}
			.content
			{
				h3
				{
					font-size:2em;
					color:$text-color;
					font-weight: 700;
					margin-bottom:20px;
				}
				p
				{
					color:$description-color;
					margin-bottom:20px;
				}
				ul
				{
					li
					{
						color:$link-color;
						display: flex;
						align-items:center;
						margin-bottom:10px;
						font-size:0.875rem;
						&:last-child
						{
							margin-bottom: 0;
						}
						svg
						{
							color:$second-color;
							margin-right:10px;
						}

					}
				}
			}
		}
	}
	@media(min-width:980px)
	{
		.list
		{
			>div
			{
				display: flex;
				align-items:center;
				&:nth-child(2n + 1)
				{
					.picture
					{
						width: calc(50% - 24px);
						margin-right:24px;
					}
					.content
					{
						width: calc(50% - 24px);
						margin-left:24px;
					}
				}
				&:nth-child(2n)
				{
					.picture
					{
						width: calc(50% - 24px);
						margin-left:24px;
						order:1;
					}
					.content
					{
						order:0;
						width: calc(50% - 24px);
						margin-right:24px;
					}
				}
			}
			
		}
	}

	@media(max-width:767px)
	{
		.header
		{
			h2
			{
				margin-bottom:24px;
				font-size:2rem ;
			}
		}
		.list
		{
      display: flex;
      max-width: 100%;
      overflow-y: auto;
			>div
			{
        min-width:80%;
        margin-right:16px;


        &:last-child
        {
          margin-right: 0;
        }
				.picture
				{
					margin-bottom:40px;
					picture
					{
						&::after
						{
							padding-top:60%;
						}
					}					
				}
				.content
				{
					h3
					{
						font-size:1.2rem;
					}
				}
			}
		}
	}
}


#step
{
	padding-top:120px;
	padding-bottom:120px;
	background-color: $bg-color;
	.header
	{
		text-align: center;
		margin-bottom:60px;
		span
		{
			color:$second-color;
			font-weight: 700;
			text-transform:uppercase;
		}
		h2
		{
			padding:15px 0;
			font-size: 3rem;
			font-weight: 700;
			color:$text-color;
			line-height: 1.2;
		}
		p
		{
			color:$description-color;
		}
	}
	.list
	{
		margin-bottom:120px;
		>div
		{
			display: flex;
			flex-direction:column;
			align-items:center;
			margin-bottom:40px;
			text-align: center;
			.svg
			{
				width: 80px;
				height: 80px;
				border-radius: 100%;
				border:1px solid $main-color;
				color:$main-color;
				display: flex;
				background-color: #26292e;
				justify-content:center;
				align-items:center;
				position: relative;
				span
				{
					position: absolute;
					top:0px;
					right:0px;
					color:$text-color;
					width:25px;
					height:25px;
					background-color: $main-color;
					border-radius: 100%;
					font-size:0.7rem;
					text-align: center;
					font-weight: 700;
					line-height:25px;
				}
			}
			h3
			{
				padding:20px 0;
				color:$text-color;
				font-weight: 700;
				font-size:1.1rem;
			}
			p
			{
				color:$description-color;
				font-size:0.875rem;
			}
		}
	}
	.btn
	{
		display: flex;
		flex-direction:column;
		align-items:center;
		a
		{
			margin-bottom:20px;
			padding:15px 40px;
			background-color: $main-color;
			border-radius: 10px;
			color:$text-color;
			font-weight: 700;
		}
		p
		{
			color:$description-color;
		}
	}
	@media(min-width:980px)
	{
		.list
		{
			display: flex;
			>div
			{
				padding:0 10px;
			}
		}
	}
	@media(max-width:767px)
	{
		.header
		{
			h2
			{
				font-size:2rem;
			}
		}
    .list
		{
			display: flex;
      min-width:100%;
      overflow-y: auto;
			>div
			{
        min-width:180px;
				padding:0 10px;
        h3
        {
          font-size:1rem;

        }
			}
		}

	}
}


#good
{
	padding-top:120px;
	padding-bottom:60px;
	>div
	{
		background-color: $main-color;
		color:$text-color;
		border-radius: 20px;
		padding:32px;
		text-align: center;
		h2
		{
			font-size:2rem;
			font-weight: 700;
			
		}
		p
		{
			padding:20px 0;
			font-size:0.875rem;
		}
		ul
		{
			display: flex;
			flex-wrap:wrap;
			li
			{
				background-color: $second-color;
				padding:16px;
				border-radius: 10px;
				font-size:0.875rem;
				font-weight: 700;
				span
				{
					display: block;
				}
			}
		}
	}
	@media(min-width:980px)
	{
		>div
		{
			ul
			{
				li
				{
					width: calc((100% - 64px) / 5);
					margin:0 8px;
					
					
					&:nth-child(5n)
					{
						margin-right:0;
					}
					&:nth-child(5n + 1)
					{
						margin-left: 0;
					}
				}
			}
		}
	}
	@media(max-width:979px)
	{
		>div
		{
			padding:16px;
			h2
			{
				font-size:1.5rem;
			}
			ul
			{
				li
				{
					width: calc(50% - 8px);
					margin:0 8px;
					margin-bottom:16px;
					&:nth-child(2n)
					{
						margin-right:0;
					}
					&:nth-child(2n + 1)
					{
						margin-left: 0;
					}
				}
			}
		}
	}
}

#reasons
{
	padding-top:60px;
	padding-bottom:120px;
	text-align: center;
	>span
	{
		color:$second-color;
		font-weight: 700;
		text-transform:uppercase;
	}
	h2
	{
		font-size:3rem;
		color:$text-color;
		padding:15px 0;
		font-weight: 700;
	}
	>p
	{
		color:$description-color;
	}
	.list
	{
		padding-top:50px;
		display: flex;
		flex-wrap:wrap;
		color:$text-color;
		>div
		{
			background-color: #1F2937;
			border:1px solid rgba(255,255,255, 10%);
			border-radius: 10px;
			margin:0 8px 16px 8px;
			span
			{
				display: flex;
				width:64px;
				height:64px;
				margin:auto;
				align-items:center;
				justify-content:center;
				margin-bottom:8px;
				border:1px solid $second-color;
				border-radius: 10px;
				background-color: rgba(231, 0, 11, 15%);
				color:$second-color;
			}
			h3
			{
				font-weight: 700;
				margin-bottom:8px;
			}
			p
			{
				color:$description-color;
				font-size:0.875rem;
			}
		}
	}
	@media(min-width:980px)
	{
		.list
		{
			>div
			{
				width: calc((100% - 48px) / 4);
				padding:32px;
				&:nth-child(4n)
				{
					margin-right: 0;
				}
				&:nth-child(4n + 1)
				{
					margin-left: 0;
				}
			}
		}
	}
	@media(max-width:979px)
	{
		h2
		{
			font-size:1.8rem;
		}
		.list
		{
			>div
			{
				width: calc(50% - 8px);
				padding:32px 16px;
				&:nth-child(2n)
				{
					margin-right: 0;
				}
				&:nth-child(2n + 1)
				{
					margin-left: 0;
				}
			}
		}
	}
  @media(max-width:767px)
  {
    .list
    {
      max-width: 100%;
      overflow-y: auto;
      flex-wrap: nowrap;
      >div
      {
        margin-right:16px;
        margin-left:0;
        min-width:250px;
        &:nth-child(2n)
				{
					margin-right: 16px;
				}
				&:nth-child(2n + 1)
				{
					margin-left: 0;
				}
      }
    }
  }
}


#faq
{
	padding-top:120px;
	background-color: $bg-color;
	padding-bottom:120px;
	.header
	{
		margin-bottom:50px;
		.second-title
		{
			color:$second-color;
			font-weight: 900;
			
		}
		h2
		{
			padding:20px 0;
			font-size:3rem;
			color:$text-color;
			font-weight: 700;
			line-height:3.5rem;
		}
		p
		{
			color:$description-color;
			margin-bottom:20px;
		}
		.btn
		{
			display: flex;
			a
			{
				background-color:$main-color;
				color:#fff;
				padding:12px 32px;
				border-radius: 10px;
				font-weight: 700;
			}
		}
	}
	.list
	{
		.faq-content
		{
			border:1px solid rgba(255,255,255,10%);
			border-radius: 10px;
			margin-bottom:16px;
			transition-duration:0.5s;
			&:hover
			{
				background-color: rgba(255,255,255,.1);
									
			}
			label
			{
				cursor:pointer;
			}
			h3
			{
				padding:16px 50px 16px 16px;
				color:$text-color;
				font-weight: 700;
				position: relative;
				span
				{
					color:$main-color;
					margin-right:10px;		
				}
				svg
				{
					transition-duration:0.5s;
					position: absolute;
					right:16px;
					top:16px;
					transform:rotate(180deg);
				}
				
			}
			p
			{
				color:$description-color;
				padding:0px 32px 16px 32px;
				display: none;
			}
			input
			{
				display: none;
			}
			&:has(input:checked)
			{
				h3
				{
					svg
					{
						transform:rotate(0);
					}
				}
				p
				{
					display: block;
				}
			}
		}
	}
	@media(min-width:980px)
	{
		display: flex;
		.header
		{
			width:400px;
			padding-right:16px;
		}
		.list
		{
			flex:1;
		}
	}
	@media(max-width:767px)
	{
		.header
		{
			h2
			{
				font-size:1.8rem;
				line-height:2.5rem;
			}
		}
    .list
    {

    }
	}
}

#review
{
	padding-top:120px;
	padding-bottom:120px;
	.header
	{
		text-align: center;
		margin-bottom:60px;
		span
		{
			color:$main-color;
			font-weight: 900;
			text-transform:uppercase;
		}
		h2
		{
			font-size:3rem;
			font-weight: 700;
			padding:20px 0;
			line-height:3.5rem;
			color:$text-color;
		}
		p
		{
			color:$description-color;
		}
	}
	.list
	{
		margin-bottom:50px;
		display: flex;
		flex-wrap:wrap;
		.content
		{
			background-color: #1F2937;
			border:1px solid rgba(255,255,255,.1);
			border-radius: 10px;
			padding:32px;
			.svg
			{
				position: relative;
				>svg
				{
					color:rgba(251, 44, 54, 20%);
					position: absolute;
					right:0;
					top:0;
				}
				span
				{
					svg
					{
						color:$second-color;
						fill:$second-color;
					}
				}
				
			}
			p
			{
				padding:20px 0;
				color:$description-color;
			}
			.name
			{
				display: flex;
				align-items:center;
				border-top:1px solid rgba(255,255,255,.1);
				padding-top:20px;
				>span
				{
					width:32px;
					height:32px;
					background-color: $second-color;
					border-radius: 100%;
					color:$text-color;
					text-align: center;
					line-height:32px;
					margin-right:10px;
				}
				>div
				{
					
					color:$text-color;
					line-height: 1rem;
					span
					{
						display: block;
						color:$description-color;
						font-size:0.875rem;
						line-height: 1rem;
					}
				}
			}
		}
	}
	.btn
	{
		display: flex;
		justify-content:center;
		a
		{
			padding:16px 32px;
			border-radius: 50px;
			border:1px solid #ff6467;
			color:#ff6467;
			font-weight: 700;
			font-size:1rem;
		}
	}
	@media(min-width:980px)
	{
		.list
		{
			.content
			{
				width: calc((100% - 64px) / 3);
				margin:0 16px 32px 16px;
				&:nth-child(3n)
				{
					margin-right:0;					
				}
				&:nth-child(3n + 1)
				{
					margin-left:0;
				}
			}
		}
	}
	@media(max-width:979px)
	{
		.list
		{
			.content
			{
				width: calc(50% - 16px);
				margin:0 16px 32px 16px;
				&:nth-child(2n)
				{
					margin-right:0;					
				}
				&:nth-child(2n + 1)
				{
					margin-left:0;
				}
			}
		}
	}
	@media(max-width:767px)
	{
		.header
		{
			h2
			{
				font-size:1.8rem;
				line-height:2.5rem;
			}
		}
		.list
		{
      flex-wrap:nowrap;
      max-width: 100%;
      overflow-y: auto;
      padding-bottom:16px;
			.content
			{
				min-width: 80%;
				margin:0 16px 0 0;
        &:last-child
        {
          margin-right:0;
        }
			}
		}
	}
}