/*-----------------------------------------------------

    Title :  Fotosold
    Usage :  How It Works
    Edited:  2025-08-24

-------------------------------------------------------

    1. how
    2. responsive (1023px)

-------------------------------------------------------*/



/*  1. how
-------------------------------------------------------*/

#how {
	position: relative;
	z-index: 1;
	margin-inline: auto;
	padding-top: 50px;
	width: var(--width-center-section);
	}

#how dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 60px;
	}

#how dt {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 34px;
	line-height: 1.44;
	font-family: Montserrat, sans-serif;
	}

#how dd {
	margin-top: 8px;
	color: #677382;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	}

#how video {
	display: block;
	margin-top: 80px;
	}

#how section {
	margin-top: 80px;
	padding-bottom: 30px;
	text-align: center;
	}

#how section h2 {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 34px;
	line-height: 1.44;
	font-family: Montserrat, sans-serif;
	text-align: left;
	}

#how section p {
	margin-top: 8px;
	color: #677382;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	text-align: left;
	}

#how section p + p {
	margin-top: 22px;
	}

#how section .btn {
	margin-top: 40px;
	}



/*  2. responsive (1023px)
-------------------------------------------------------*/

@media (max-width: 1023px) {

/*  1. how  */

#how {
	padding-top: 20px;
	}

#how dl {
	grid-template-columns: 1fr;
	gap: 35px;
	}

#how dt {
	font-size: 28px;
	}

#how dd {
	margin-top: 6px;
	font-size: 16px;
	}

#how video {
	margin-top: 60px;
	}

#how section {
	margin-top: 60px;
	padding-bottom: 20px;
	}

#how section h2 {
	font-size: 28px;
	}

#how section p {
	margin-top: 6px;
	font-size: 16px;
	}

#how section p + p {
	margin-top: 20px;
	}

#how section .btn {
	margin-top: 33px;
	}

}