* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

:root {
	--brown-dark: #3d2e1e;
	--brown-mid: #695B4D;
	--brown-light: #efe4b0;
	--white: #fff;
	--transition-base: 0.3s ease;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'EB Garamond', serif;
	color: #695B4D;
	line-height: 1.75;
	font-size: 17px;
	overflow-x: hidden;
}

p {
	font-size: 1.1em;
	line-height: 1.8;
}

#lang {
	position: fixed;
	top: 20px;
	right: 28px;
	left: auto;
	bottom: auto;
	transform: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 1000;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

#lang.lang-hidden {
	opacity: 0;
	visibility: hidden;
}


.lang-item {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 5px 11px 5px 7px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-decoration: none;
	color: #3d2e1e;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(105, 91, 77, 0.45);
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	cursor: pointer;
}

.lang-item:hover {
	background: #fff;
	color: #695B4D;
	border-color: rgba(105, 91, 77, 0.7);
}

.lang-flag {
	width: 19px;
	height: auto;
	border-radius: 2px;
	display: block;
	flex-shrink: 0;
	filter: none;
}


/*********** COMMON **********************/

.container {
	max-width: 1300px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}

.mask-img {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.mask-img-reverse {
	position: absolute;
	top: 0;
	width: 100%;
}

.title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4em;
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.18em;
	position: relative;
	margin: 80px 0;
	color: #3d2e1e;
}


.title::after {
	content: '';
	background: linear-gradient(to right, transparent, #695B4D, transparent);
	width: 120px;
	height: 1px;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.title span {
	display: block;
	font-size: 0.48em;
	font-weight: 500;
	font-style: italic;
	letter-spacing: 0.18em;
	opacity: 0.85;
	margin-top: 8px;
	font-family: 'EB Garamond', serif;
	color: #695B4D;
}

.row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}

.row .col {
	padding: 10px;
	flex-grow: none;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}


/*****************************************/


/************ HEADER SECTION *****************/

#header {
	min-height: 110vh;
	position: relative;
	isolation: isolate;
	filter: grayscale(0.7);
}

#header::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(images/Landscape.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 35%;	
	z-index: -1;
}


#header nav {
	display: flex;
	align-items: center;
	padding: 28px;
	justify-content: center;
	position: relative;
	z-index: 10;
}

#menuLogoMobile {
	width: 150px;
	display: none;
}

#menuLogoDesktop {
	width: 180px;
}

nav {
	flex: 1;
	text-align: center;
}

nav ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-left: 55px;
	gap: 8px;
}

nav ul li {
	display: inline;
	align-self: flex-end;
}

nav ul li a {
	text-decoration: none;
	padding: 8px 16px;
	color: #3d2e1e;
	font-size: 20px;
	letter-spacing: 0.06em;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	position: relative;
	transition: color 0.2s ease;
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 16px;
	right: 16px;
	height: 1px;
	background: #695B4D;
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

nav ul li a:hover {
	color: #695B4D;
}

nav ul li a:hover::after {
	transform: scaleX(1);
}

.menu-icon {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-left: 20px;
	flex-shrink: 0;
}

.menu-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: #695B4D;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

.menu-icon.open span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.menu-icon.open span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

#titlePart {
	text-align: center;
	padding: 10px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 70%;
	margin: 0 auto;
}

#titlePart h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 62px;
	line-height: 1.15;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	position: relative;
	margin-bottom: 50px;
	color: #3d2e1e;
}

#titlePart h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5em;
	font-weight: 300;
	line-height: 1.5;
	font-style: italic;
	letter-spacing: 0.04em;
	color: #3d2e1e;
	background: transparent;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border: none;
	border-radius: 40px;
	padding: 6px 18px;
	display: inline-block;
}

#titlePart h1:after {
	content: '';
	background: linear-gradient(to right, transparent, #695B4D, transparent);
	width: 120px;
	height: 1px;
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translateX(-50%);
}

#titlePart p {
	font-size: 25px;
	max-width: 100%;
	line-height: 1.1;
}

.scroll-arrow {
	text-align: center;
	position: absolute;
	bottom: 14%;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-arrow a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	text-decoration: none;
}


.chevron {
	display: block;
	width: 24px;
	height: 24px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	opacity: 1;
	filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}

.chevron:first-child {
	opacity: 0.5;
	margin-bottom: -8px;
}

.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-30px);
	}
	60% {
		transform: translateY(-15px);
	}
}


/*--- Scroll reveal ---*/
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/**********************************************/


/*************** ABOUT US ********************/

#o-nama {
	text-align: center;
}

#o-nama .container>p {
	text-align: justify;
	hyphens: auto;
	padding: 0 3%;
}

#o-nama #descriptionMapImage {
	width: 70%;
	margin: 0 auto;
	height: 300px;
	opacity: 0.5;
}

#o-nama #descriptionFieldImage {
	width: 100%;
	height: 400px;
	filter: grayscale(0.6);
}

.description-step {
	margin: 35px 0;
}

.description-step h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.9em;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #3d2e1e;
	margin-bottom: 8px;
	text-align: left;
}

.description-step .description-text {
	flex-basis: 50%;
}

.description-step p {
	text-align: justify;
	hyphens: auto;
}

.description-step .description-img {
	flex-basis: 40%;
	text-align: center;
}

.description-step .description-img img {
	width: 100%;
	max-height: 250px;
	border-radius: 5px;
	filter: grayscale(0.6);
	opacity: 0.9;
}


/**********************************************/


/*************** PRODUCTS ********************/

#nasi-proizvodi {
	text-align: center;
	padding-bottom: 50px;
	position: relative;
	margin-top: 150px;
}

#nasi-proizvodi .mask-img-reverse {
	left: 0;
	top: 75px;
}

.product-container .mask-img-reverse {
	top: 25px !important;
}

#productsCover {
	margin-bottom: 50px;
}

#productsCover img {
	width: 100%;
}

.product-container {
	padding: 0 9%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	margin-top: 40px;
}

.product-description,
.product-image {
	flex-basis: 50%;
}

.product-image {
	margin-top: 35px;
}

.product-image img {
	width: 100%;
}

.product-description {
	align-self: center;
	padding: 15px;
}

.product-description p {
	padding: 30px 20px;
	text-align: justify;
	hyphens: auto;
}

.product-description h3 {
	font-family: 'Cormorant Garamond', serif;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.7em;
	letter-spacing: 0.12em;
	margin-top: 10px;
	color: #3d2e1e;
}

.product-description > span {
	display: inline-block;
	font-size: 0.85em;
	letter-spacing: 0.1em;
	color: rgba(105, 91, 77, 0.6);
	border-bottom: 1px solid rgba(105, 91, 77, 0.2);
	padding-bottom: 4px;
	margin-bottom: 4px;
}


.product-description .fruit {
	width: 120px;
	position: absolute;
	top: 30px;
	right: 7%;
	opacity: 0.7;
	mix-blend-mode: multiply;
	filter: grayscale(0.6);
	transform: rotate(8deg);
}

.left {
	left: 7%;
	right: auto;
	transform: rotate(-8deg);
}

.col-product {
	flex-basis: 33.33%;
	padding: 10px;
	min-width: 0;
	margin-bottom: 50px;
	transition: transform 0.5s;
	position: relative;
}

.col-product img {
	max-width: 40%;
	margin-bottom: 20px;
	-webkit-filter: drop-shadow(5px 15px 15px #222);
	filter: drop-shadow(5px 15px 15px #222);
}

.col-product p {
	font-size: 14px;
	display: none;
	position: absolute;
	width: 70%;
	text-align: center;
	line-height: 20px;
	top: 20%;
	left: 15%;
}

.col-product:hover {
	transform: translateY(-5px);
}

.col-product:hover>p {
	display: block;
}

.col-product:hover img {
	transform: translateY(-5px);
	opacity: 0.1;
}

#productSljiva {
	position: relative;
	overflow: visible;
}

#medalContainer {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100px;
	z-index: 2;
}

#medalContainer img {
	width: 100%;
	opacity: 1;
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.55));
	transform: rotate(-6deg);
	transition: transform 0.4s ease, filter 0.4s ease;
}

#medalContainer img:hover {
	transform: rotate(0deg) scale(1.1);
	filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.65));
}

/*------- CENOVNIK -----------*/

#priceContainer {
	max-width: 1300px;
	padding: 0 25px;
}

#pricePart {
	background: #efe4b0;
	padding: 100px 0 150px;
	position: relative;
}

#priceList {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.price-item {
	background: #fff;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(105, 91, 77, 0.08), 0 12px 40px rgba(105, 91, 77, 0.12);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease;
}

#priceList.visible .price-item {
	opacity: 1;
	transform: translateY(0);
}

#priceList.visible .price-item:nth-child(1) { transition-delay: 0.05s; }
#priceList.visible .price-item:nth-child(2) { transition-delay: 0.12s; }
#priceList.visible .price-item:nth-child(3) { transition-delay: 0.19s; }
#priceList.visible .price-item:nth-child(4) { transition-delay: 0.26s; }
#priceList.visible .price-item:nth-child(5) { transition-delay: 0.33s; }
#priceList.visible .price-item:nth-child(6) { transition-delay: 0.40s; }

#priceList.visible .price-item:hover {
	box-shadow: 0 4px 16px rgba(105, 91, 77, 0.14), 0 24px 60px rgba(105, 91, 77, 0.18);
	transform: translateY(-7px);
}

.price-image {
	width: 100%;
	overflow: hidden;
	flex: 1;
}

.price-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.price-item:hover .price-image img {
	transform: scale(1.03);
}

.price-header {
	padding: 22px 20px 14px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	width: 100%;
}


.price-header img {
	width: 80px;
	opacity: 0.9;
	margin-bottom: 12px;
}

.price-product {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3em;
	font-weight: 400;
	letter-spacing: 0.14em;
	color: #3d2e1e;
	text-transform: uppercase;
	line-height: 1.1;
}

.price-volume {
	font-size: 0.95em;
	color: rgba(105, 91, 77, 0.8);
	font-style: normal;
	letter-spacing: 0.08em;
	line-height: 1.1;
}

.price-header::after {
	display: none;
}

.price-value {
	width: 100%;
	text-align: center;
	padding: 14px 16px 20px;
	font-size: 1.65em;
	font-weight: 600;
	color: #3d2e1e;
	letter-spacing: 0.02em;
	background: #faf7f2;
	border-top: 1px solid rgba(105, 91, 77, 0.1);
}

.price-value span {
	display: block;
	font-size: 0.48em;
	font-weight: 400;
	color: rgba(105, 91, 77, 0.55);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-top: 2px;
}

#priceNote {
	margin-top: 60px;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

#priceNoteText {
	font-size: 1.05em;
}

.priceNoteLink {
	color: #695B4D;
	font-weight: bold;
	text-decoration: none;
}

#priceNoteLogo {
	width: 96px;
	margin-top: 12px;
}

/*------- PARTNERI -----------*/

#partners {
	display: flex;
	justify-content: space-evenly;
	justify-items: center;
	flex-wrap: wrap;
}

.partnerItem {
	flex-basis: 33.33%;
	text-align: center;
	padding: 20px;
	line-height: 1.4;
	transition: transform var(--transition-base);
}

.partnerItem:hover {
	transform: translateY(-4px);
}

.partnerItem img {
	padding: 12px;
	filter: grayscale(0.3);
	transition: filter 0.4s ease, opacity 0.4s ease;
	border-radius: 50px;
}

.partnerItem img:hover {
	filter: grayscale(0);
	opacity: 0.8;
}

.partnerItem h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1em;
	font-weight: 400;
	color: #3d2e1e;
	letter-spacing: 0.06em;
	margin-top: 6px;
}

.partnerItem span {
	font-size: 0.82em;
	color: rgba(105, 91, 77, 0.6);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}


/*-------- GALLERY ---------*/

#galleryPart {
	background: #efe4b07d;
	padding: 100px 0px 150px 0px;
	position: relative;
}

.gallery {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}

/* Column for Larger Images */
.gallery-column.large {
    flex: 2;
}

.gallery-column.small{
    flex: 1;
}

/* Gallery Item Styling */
.gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
    display: block;
}

/* Styling for larger images */
.gallery-column.large .gallery-item img {
    width: 100%;
    height: 300px; /* Fixed height for larger images */
}

/* Styling for smaller images */
.gallery-column.small .gallery-item img {
    width: 100%;
    height: 190px; /* Fixed height for smaller images */
}

/* Hover Effects */
.gallery-item img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-item.insta img {
    width: 100px;
}

/* Animation for fading in images */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Lightbox styling */
.lightbox img {
    cursor: pointer;
}

.lightbox img:hover {
    filter: brightness(0.8);
}

/*------- FOOTER -----------*/

#footerPart {
	color: #8a8a8a;
	padding: 0;
	background: #2F2522;
	border-top: 3px solid rgba(105, 91, 77, 0.4);
}

.footer {
	width: 100%;
	bottom: 0;
	color: #fff;
	font-size: 16px;
	padding: 60px 0 20px;
}

.footer h3 {
	font-family: 'Cormorant Garamond', serif;
	color: #fff;
	margin-bottom: 20px;
	font-size: 1.8em;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.footer-col-1,
.footer-col-2 {
	min-width: 250px;
	margin-bottom: 20px;
}

.footer-col-1 {
	flex-basis: 40%;
}

.footer-col-2 {
	flex: 1;
	text-align: center;
	min-width: 0;
}

.footer-col-2 p {
	line-height: 1.5;
}

.footer-col-1 img {
	width: 180px;
	margin-bottom: 20px;
}

.app-logo img {
	width: 140px;
}

.footer hr {
	border: none;
	background: rgba(181, 181, 181, 0.25);
	height: 1px;
	margin: 20px 0;
}

.footer a img {
	transition: opacity var(--transition-base), transform var(--transition-base);
}

.footer a:hover img {
	opacity: 0.7;
	transform: scale(1.1);
}

.copyright {
	text-align: center;
	font-size: 0.85em;
	opacity: 0.5;
	letter-spacing: 0.05em;
}

@media only screen and (max-height: 500px) {
	#header {
		min-height: 700px;		
	}
}

@media only screen and (max-width: 1100px) {
	#priceList {
		grid-template-columns: repeat(2, 1fr);
	}
	.fruit {
		display: none;
	}
}

@media only screen and (max-width: 1500px) and (min-width: 550px){
	#header {		
		background-position-y: 50px;
	}
}

@media only screen and (min-width: 901px) and (max-width: 1200px) {
	#header::before {
		background-image: url(images/Landscape_tablet.jpg);
		background-position: center 40%;
	}
}

@media only screen and (max-width: 900px) {
	body {
		line-height: 1.65;
		font-size: 16px;
	}
	h3{
		line-height: normal;
	}
	.reveal,
	.price-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
	#lang {
		top: 38px;
		right: 14px;
		left: auto;
		transform: translateY(-50%);
		flex-direction: row;
	}
	.lang-item {
		font-size: 12px;
		padding: 4px 9px 4px 6px;
	}
	nav ul {
		position: absolute;
		top: 55px;
		left: 0;
		background: #695B4D;
		width: 100%;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.35s ease;
		z-index: 1;
		flex-direction: column;
		margin-left: 0;
		padding: 0;
	}

	nav ul.visible {
		max-height: 400px;
	}
	nav ul li {
		display: block;
		margin: 0;
		padding: 0 24px;
	}
	nav ul li a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255,255,255,0.15);
	}
	nav ul li:last-child a {
		border-bottom: none;
	}
	nav ul li a {
		color: #fff;
	}
	#header nav {
		justify-content: space-between;
		padding-left: 20px;
		padding-right: 20px;
	}
	#menuLogoMobile {
		width: 50%;
		display: block;
	}
	#header::before {
		background-image: url(images/Landscape_mobile.jpg);
		background-position: center bottom;
	}
	#menuLogoDesktop {
		display: none;
	}
	.menu-icon {
		display: flex;
	}
	.scroll-arrow {
		bottom: 12%;
	}
	#titlePart {
		width: 100%;
		margin: 0 auto;
		padding-top: 60px;
	}
	#titlePart h1 {
		font-size: 38px;
		line-height: 1.2;
		margin-top: 10px;
	}
	#titlePart h2 {
		font-size: 1.25em;
		line-height: 1.5;
	}
	#titlePart p {
		padding: 5px;
		text-align: center;
		border-style: hidden;
	}
	#titlePart #titleWalker{
		line-height: 1;
	}
	.title {
		font-size: 1.8em;
		line-height: 1.3;
		margin: 50px 0;
	}
	#o-nama .title {
		word-spacing: 100vw;
	}
	#o-nama #descriptionMapImage {
		height: 150px;
	}
	#o-nama #descriptionFieldImage {
		height: 200px;
	}
	.description-step .description-text,
	.description-step .description-img {
		flex-basis: 100%;
		text-align: center;
	}
	.description-step h3 {
		text-align: center;
	}
	.description-step .description-text p {
		margin-top: 15px;
		text-align: justify;
	}
	.description-step .wrap-reverse {
		flex-wrap: wrap-reverse;
	}
	#nasi-proizvodi .mask-img-reverse {
		top: 110px;
	}
	.product-container .mask-img-reverse {
		top: 408px !important;
	}
	.product-container {
		margin-top: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.product-description {
		padding: 0;
	}
	.product-description,
	.product-image {
		flex-basis: 100%;
	}
	.product-description>img {
		margin-top: 50px;
		margin-bottom: 5px;
	}
	.product-description p {
		padding-left: 0;
		padding-right: 0;
		padding-top: 20px;
	}
	#nasi-proizvodi .row .wrap-reverse {
		flex-wrap: wrap-reverse;
	}
	.col-product {
		flex-basis: 100%;
	}
	.col-product img {
		width: 70%
	}
	.col-product:hover img {
		opacity: 1;
	}
	.col-product p {
		display: block;
		position: relative;
	}
	#footerPart {
		min-height: 500px;
	}
	.footer .row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-col-1,
	.footer-col-2 {
		min-width: 0;
		text-align: center;
	}
	.footer-col-1 {
		flex-basis: auto;
	}
	.footer-col-2 {
		flex: none;
	}
	.footer-col-1 img {
		width: 125px;
	}
	#priceList {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 420px;
		margin: 0 auto;
	}
	.price-image img {
		height: auto;
	}

	#priceNoteText {
    	text-align: justify;
    	margin: 20px 0;
	}
	#medalContainer {
		left: -50px;
		width: 100px;
	}
	
	.gallery-column.large .gallery-item img {		
		height: 200px;
	}
	
	.gallery-column.small .gallery-item img {		
		height: 125px;
	}

	.insta img {		
		object-fit: scale-down;
	}

}