* {
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
	font-family: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	border-collapse: collapse;
	color: #212b35;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
    padding: 0;
	display: flex;
    align-items: center;
    justify-content: center;
}

img {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #333;
}

p {
	font-size: 1.2rem;
    line-height: 1.5;
	color: #555;
}

.container-index {
    display: inline-block;
	width: 100vw;
	max-width: 1200px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.container-go {
	width: 100vw;
	max-width: 1200px;
}

.header-effect {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 90px;
	background-image: url("https://fieldsmedia.com/img/ffffff-75.png");
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	z-index: 90;
}
	
.header {
	position: fixed;
	text-align: left;
	padding-top: 15px;
	padding-left: 10px;
	top: 0px;
	width: 100%;
	max-width: 1200px;
	height: 90px;
	z-index: 100;
}

.logo {
	height: 60px;
	}
	
#logo {
	height: 60px;
	width: auto;
}

#logo:hover {
    cursor: pointer;
}

.products-container {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 15px;
    padding: 15px;
   	padding-top: 75px;
    text-align: center;
}

.product {
	display: inline-block;
    /* min-height: 300px; */
    background-color: #fff;
    text-align: center;
}

.product:hover {
	cursor: pointer;
}

.product-page {
	padding-top: 90px;
	width: 100%;
	max-width: 1200px;
	height: 400px;
}

.product-picture {
	width: 100%;
	height: 440px;
	overflow: hidden;
	background-color: rgb(245, 245, 247);
}

.product-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.product-info {
	display: flex;
	/* flex-direction: row; */
	/* gap: 20px; */
	width: 100%;
	min-height: 500px;
	margin: 0 auto;
	padding: 0;
}

.quote {
	width: 100%;
	min-height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 0;
}

.product-info-item {
	width: 50%;
	box-sizing: border-box;
	padding: 20px;
	padding-top: 30px;
}

.image {
	width: 100%;
	vertical-align: top;
	text-align: center;
	display: table-cel;
	transition: transform .2s;
}

.title {
	width: 100%;
	height: 36px;
	font-size: 18px;
	line-height: 36px;
}

.footer {
	width: 100%;
	height: 200px;
	padding: 15px;
	background-color: rgb(245, 245, 247);
	color: #000;
	font-size: 14px;
}

@media only screen and (max-width: 600px) {
	.container {
		width: 100vw;
	}
	
	.header {
		position: fixed;
		display: flex;
		justify-content: center;
		padding-top: 16px;
		padding-right: 8px;
		padding-left: 0;
		}
		
	.header-effect {
		height: 140px;
		}
		
	.products-container {
		padding-top: 140px;
		}
			
	.product-page {
		padding-top: 140px;
		}
		
	.logo {
		width: calc(100% - 50px);
		}
	
	#logo {
		height: auto;
		max-height: 100px;
		width: auto;
		}
		
	.product {
	    /* min-height: 400px; */
		}
		
	.product-info {
		flex-direction: column;
	    align-items: center;
	}
	
	.title {
		font-size: 24px;
		}
		
	.product-info-item {
		width: 100%;
		min-height: 440px;
		padding: 25px;
		padding-top: 32px;
	}
}