@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: "pirelli-bold-B";
  src: url("fonts/Pirelli-Bold_B.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pirelli-bold-C";
  src: url("fonts/Pirelli-Bold_C.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "pirelli-bold";
  src: url("fonts/Pirelli-Bold_A.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[style*="pirelli-bold"],
[typeface-data="pirelli-bold"],
.pirelli-bold,
.pirelli-bold * {
  font-family: "pirelli-bold", pirelli-bold-B, pirelli-bold-C !important;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gooper-condensed-regular";
  src: url("fonts/gooper-condensed-regular.otf");
}
@font-face {
  font-family: "Gooper-condensed-semibold";
  src: url("fonts/gooper-condensed-semibold.otf");
}

@font-face {
  font-family: "ABCDiatype-Regular-Trial";
  src: url("fonts/ABCDiatype-Regular-Trial.otf");
}
.abcdiatype-regular-trial, .abcdiatype-regular-trial * {
  font-family: "ABCDiatype-Regular-Trial";
}

html, body {
	margin: 0;
}

body {
	background-color: rgb(234, 212, 193);
}

.shop-button {
    display: flex;
    align-items: center;
    height: 60px;
    padding-left: 23px;
    padding-right: 23px;
    background-color: #fff;
    border-radius: 41px;
    border: 2px white solid;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    gap: 40px;
    font-family: Inter;
}
.shop-button:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.shop-button .img-container {
    background-color: #f74d26;
    padding: 7px 18px;
    border-radius: 25px;
    display: flex;
}

.shop-button img {
    width: 15px;
}

@media screen and (max-width: 750px) {
    .shop-button {
        font-size: 18px;
        height: 51px;
        gap: 15px;
    }
}

h2 {
    font-family: pirelli-bold, pirelli-bold-B, pirelli-bold-C;
    line-height: 1;
    font-size: 50px;
    margin-block-end: 0;
    margin-block-start: 0;
}

@media screen and (max-width: 1100px) {
    h2 {
        font-size: 36px; 
    }
}

header {
	height: 77px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 7.5px;
	padding-bottom: 7.5px;
}
header img {
	max-height: 100%;
}

section, .page-width {
	width: 95%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

/* Video Modal */
.video-modal {
    display: flex;
    background-color: black;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.video-modal.active {
    opacity: 1;
    pointer-events: unset;
    transition: 0.3s;
}

.video-modal .close {
    position: absolute;
    cursor: pointer;
    height: 30px;
    width: 30px;
    left: 20px;
    top: 20px;
    z-index: 100002;
}

.video-modal .video-bar {
    position: absolute;
    left: 20px;
    width: 84px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 100001;
}

.video-modal .video-bar img {
    object-fit: cover;
    aspect-ratio: 1;
    cursor: pointer;
}
.video-modal .video-bar img.active {
    border: 2px #ff3333 solid;
}

.video-modal video {
    transition: 0.15s;
}
.video-modal video.fade {
    transition: 0.15s;
    opacity: 0;
}
/* End Video Modal */

/* Gallery Modal */
.gallery-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 5;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 85px;
	box-sizing: border-box;
}
.gallery-modal.active {
	opacity: 1;
	pointer-events: unset;
	transition: 0.3s;
}

.gallery-modal .close {
	position: absolute;
    cursor: pointer;
    height: 70px;
    width: 70px;
    right: 20px;
    top: 20px;
    z-index: 100002;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s;
}

.arrow {
	position: absolute;
	height: 70px;
	width: 70px;
	top: 50%;
	margin-top: -25px;
	opacity: 0.7;
	cursor: pointer;
}

.arrow:hover {
	opacity: 1;
}

.left-arrow {
	left: 10px;
}
.right-arrow {
	right: 10px;
}

@media screen and (max-width: 850px) {
	.gallery-modal {
		padding: 45px;
	}

	.gallery-modal .close {
		height: 30px;
		width: 30px;
		top: 10px;
		right: 10px;
	}

	.arrow { 
		height: 40px;
		width: 40px;
		margin-top: -20px;
	}
	.left-arrow {
		left: 2px;
	}
	.right-arrow {
		right: 2px;
	}
}
 /* End Gallery Modal */

/* Bundle and Footer */
.bundle-section {
	margin-bottom: 50px;
}

h1 {
	font-family: pirelli-bold, pirelli-bold-B, pirelli-bold-C;
	font-size: 45px;
	color: rgb(26, 26, 26);
	text-align: center;
	margin-top: 50px;
	margin-bottom: 0;
	text-transform: uppercase;
}

/*
h2 {
	text-align: center;
	font-size: 22px;
	margin-top: 0px;
	margin-bottom: 0;
	font-family: Gooper-condensed-semibold;
	color: rgb(26, 26, 26);
}

.reviews-text {
	text-align: center;
	font-size: 12px;
	font-family: "Inter";
	margin-top: 2px;
}
*/

.main-container {
	display: flex;
	gap: 30px;
	margin-top: 30px;
	align-items: flex-start;
}

.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.left-column .product {
	border: 1px black solid;
	border-radius: 12px;
	overflow: hidden;
}

.image-and-details-container {
	display: flex;
}

.left-column .product .product-image-container {
	height: 210px;
	width: auto;
	aspect-ratio: 1;
	position: relative;
}

.left-column .product .product-image-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	border-bottom-left-radius: 0;
	cursor: pointer;
}

.left-column .product .product-image-container .first-image {
	z-index: 3;
	background-color: white;
	opacity: 1;
	transition: 0.3s;
}

.image-container-bottom-background {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
}

.left-column .product .details-container {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.left-column .product .details-container .top {
	flex: 1;
	padding: 20px;
	box-sizing: border-box;
}

.left-column .product .details-container .top .product-title {
	font-family: Inter;
	color: rgb(18, 18, 18);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
}

.left-column .product .details-container .top .description {
	font-family: Gooper-condensed-regular;
	margin-top: 5px;
	font-size: 16px;
}

.strength-row {
	display: flex;
	margin-top: 20px;
	gap: 30px;
}

.strength-row-mobile {
	display: none !important;
}

.strength-group {
	display: flex;
	gap: 7px;
}

.strength-circle {
	font-size: 20px;
	border: 2px black solid;
	border-radius: 100%;
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Gooper-condensed-semibold;
}

.strength-text-container {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.strength-large-text {
	font-family: Gooper-condensed-semibold;
	font-size: 20px;
}

.strength-small-text {
	font-family: ABCDiatype-Regular-Trial;
	font-size: 10px;
	font-weight: 600;
}

.left-column .product .details-container .bottom {
	height: 60px;
	display: flex;
	align-items: center;
	padding-left: 20px;
}

.bundle-button-container {
	height: 70px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	background-color: #555;
	gap: 20px;
}

.bundle-button {
    width: 100%;
    max-width: 200px;
    height: 44px;
    background-color: rgb(247, 77, 38);
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    border-radius: 100px;
    padding-left: 15px; 
    padding-right: 15px;
    cursor: pointer;
}
.bundle-button:hover {
    opacity: 0.8;
}

.bundle-button.remove {
    background-color: #8b1d04;
}

.bundle-button.disabled {
    background-color: #ccc;
    cursor: unset;
}
.bundle-button:hover.disabled {
    opacity: 1;
}

.bundle-button .text {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    font-family: Inter;
    color: white;
}

.bundle-button .action {
    width: 38px;
    height: 22px;
    background-color: white;
    display: flex; 
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    line-height: 1;
}
.bundle-button .action .symbol {
    margin-top: -2px;
    color: rgb(247, 77, 38);
    font-weight: 700;
    font-size: 20px;
}

.right-column {
    width: 400px;
    background-color: white;
    border-radius: 15px;
    border: 1px solid #000;
    position: fixed;
    bottom: 20px;
    z-index: 4;
    left: 50%;
    margin-left: -200px;
}

.right-column .top {
    padding-top: 10px;
    padding-left: 15px; 
    padding-right: 15px;
    padding-bottom: 3px;
}

.right-column .bundle-title {
	font-family: Inter;
    color: rgb(18, 18, 18);
    text-align: center;
    font-size: 24px; 
    font-weight: 700;
    text-transform: uppercase;
}

.right-column .instructions-text {
    color: rgb(18, 18, 18);
    font-family: Gooper-condensed-semibold;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
}

.right-column .progress-container {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.right-column .line-part {
    height: 10px;
    background-color: rgb(238, 238, 238);
    width: calc( (100% - 192px) / 3)
}
.right-column .line-part.first-part {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.right-column .line-part .fill {
    background-color: rgb(255, 194, 105);
    height: 100%;
    width: 0;
    transition: 0.4s;
    display: block !important;
}


.right-column .bag-container {
    width: 64px; 
    height: 64px; 
    border-radius: 100%;
    background-color: rgb(255, 194, 105);
    border: 3px rgb(255, 194, 105) solid;
}
.right-column .bag-container img {
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 100%;
    background-color: white;
}

.right-column .bottom {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.right-column .bottom-row {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.right-column .bottom-row .text {
    color: rgb(18, 18, 18);
    font-family: Gooper-condensed-regular;
    font-size: 12px;
    display: flex; 
    align-items: center; 
    gap: 4px;
}
.right-column .bottom-row .text img {
    width: 13px;
    height: 13px;
}

.right-column .checkout-button-container {
    overflow: hidden;
    height: 0;
    margin-top: 0;
    transition: 0.3s;
}

.right-column .checkout-button {
    width: 95%;
    display: block;
    cursor: pointer;
    font-family: Inter;
    height: 60px;
    border-radius: 100px; 
    border: 1px rgb(247, 77, 38) solid;
    text-decoration: none;
    color: unset; 
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgb(247, 77, 38);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    margin-left: auto;
    margin-right: auto;
}

footer {
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgb(247, 77, 38);
	padding-bottom: 45px;
	padding-left: 17px;
	padding-right: 17px;
	padding-top: 45px;
	border-radius: 25px;
	margin-bottom: 36px;
	box-sizing: border-box;
}

footer .information-container {
	padding-bottom: 43px;
	padding-left: 53px;
	padding-right: 53px;
	padding-top: 43px;
	background-color: rgb(252, 176, 134);
	border-radius: 20px;
	box-sizing: border-box;
}

footer .information-container p {
	color: rgb(18, 18, 18);
	font-family: Inter, sans-serif;
	font-size: 12px;
}

footer .happy-fruit-text {
	margin-top: 20px;
	font-size: 180px;
	text-align: center;
	color: rgb(252, 176, 134);
	line-height: 1.1;
	font-family: pirelli-bold, pirelli-bold-B, pirelli-bold-C;
}

footer .bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: -15px;
}

footer .bottom-row .left {
	display: flex;
	align-items: center;
	gap: 7px;
}

footer .bottom-row .left a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	background-color: rgb(252, 176, 134);
	border-radius: 100%;
}

footer .bottom-row .center {
	color: rgb(255, 255, 255);
	font-family: Gooper-condensed-regular;
	text-transform: uppercase;
}

footer .bottom-row .right {
	width: 400px;
}

.size-and-effect-mobile {
	display: none !important;
}

.size-and-effect {
	display: flex;
	gap: 30px;
}

.size-and-effect-group {
	gap: 10px;
	display: flex;
	align-items: center;
}

.size-and-effect-image {
	height: 35px;
	width: 35px;
}

.size-and-effect-text {
	font-family: Gooper-condensed-semibold;
	font-size: 20px;
}

.strength-strain-effect .main-text:first-child {
    width: 120px;
}

.information-container {
	padding: 20px;
	box-sizing: border-box;
}

.text-feature-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.text-feature-group {
	display: flex;
	gap: 10px;
	align-items: center;
}

.text-feature-image {
	height: 26px;
	width: 26px;
}

.text-feature-text {
	font-family: Gooper-condensed-regular;
    color: #000;
    font-size: 18px;
    line-height: 1.1;
}

.ingredients-title {
	color: rgb(18, 18, 18);
	font-family: Gooper-condensed-semibold;
	font-size: 18px;
}

.ingredients-text {
	color: rgb(18, 18, 18);
	font-family: Gooper-condensed-regular;
	font-size: 16px;
	line-height: 1.3;
	margin-top: 5px;
}

@media screen and (max-width: 1350px) {

	footer .happy-fruit-text {
		font-size: 60px;
		margin-top: 30px;
	}

	footer .bottom-row {
		margin-top: 20px;
	}

	footer .bottom-row .right {
		width: 300px;
	}
}

@media screen and (max-width: 850px) {
	h1 {
		font-size: 25px;
		margin-top: 30px;
	}

	h2 {
		font-size: 15px;
		margin-top: 5px;
	}

	footer .bottom-row { 
		flex-direction: column;
	}

	footer .bottom-row { 
		margin-top: 10px;
	}

	footer .bottom-row .center {
		margin-top: 20px;
	}

	footer .bottom-row .right {
		margin-top: 20px;
	}
}

@media screen and (max-width: 750px) {
	.left-column .product .product-image-container { 
		height: 150px;
	}

	.strength-row {
		display: none;
	}

	.strength-row-mobile {
		display: flex !important;
		padding-left: 10px;
		padding-right: 10px;
		gap: 15px !important;
		margin-top: 12px !important;
	}

	.strength-circle { 
		height: 25px;
		width: 25px;
	}

	.strength-group { 
		gap: 4px;
	}

	.strength-large-text { 
		font-size: 15px;
	}

	.strength-small-text { 
		gap: 7px;
	}
}

@media screen and (max-width: 700px) {
	.left-column .product .product-image-container {
        height: 100px;
    }

	.left-column .product .details-container .top {
		padding: 10px;
		padding-bottom: 5px;
	}

	.left-column .product .details-container .top .product-title { 
		font-size: 18px;
		line-height: 1.1;
	}

	.left-column .product .details-container .top .description { 
		margin-top: 2px;
		font-size: 16px;
	}

	.left-column .product .details-container .bottom {
		height: 40px;
		padding-left: 10px;
		display: flex;
		align-items: center;
	}

	.bundle-button { 
		height: 30px;
	}

	.bundle-button .text {
		font-size: 10px;
	}

	.bundle-button .action { 
		width: 30px;
		height: 18px;
	}

	.bundle-button .action .symbol { 
		font-size: 16px;
	}

	.bundle-button-container {
		height: 50px;
	}

	.size-and-effect {
		gap: 15px;
	}

	.size-and-effect-desktop {
		display: none !important;
	}

	.size-and-effect-mobile {
		display: flex !important;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.size-and-effect-group {
		gap: 6px;
	}

	.size-and-effect-image {
		height: 20px;
		width: 20px;
	}

	.size-and-effect-text {
		font-size: 16px;
	}

	.information-container {
		padding: 10px;
	}

	.text-feature-container { 
		gap: 7px;
	}

	.text-feature-group {
		gap: 7px;
	}

	.text-feature-image { 
		height: 20px;
		width: 20px;
	}

	.text-feature-text {
		font-size: 12px;
		line-height: 1.2;
	}

	.ingredients-title {
		font-size: 16px;
	}

	.ingredients-text {
		font-size: 14px;
		margin-top: 5px;
	}
}

@media screen and (max-width: 600px) {
	footer .information-container { 
		padding: 10px 20px;
	}

	.right-column { 
		margin-left: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		box-sizing: border-box;
	}
}
/* End Bundle and Footer */

/* Hero */
.hero {
    padding-top: 40px;
    padding-bottom: 40px;
    height: 300px;
    position: relative;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero .page-width {
    z-index: 2;
    height: 100%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero h1 {
    text-align: center;
    font-size: 50px;
    line-height: 1;
    font-family: pirelli-bold, pirelli-bold-B, pirelli-bold-C;
    text-shadow: 1px 1px 2px black;
    margin-block-start: 0;
    margin-block-end: 0;
    line-height: 1.2;
    color: white;
}
.hero .subheading {
    text-align: center;
    margin-top: 10px;
    font-family: Gooper-condensed-semibold;
    font-size: 35px;
    text-shadow: 1px 1px 2px black;
    line-height: 1;
    color: white;
}

.hero .shop-button {
    margin-top: 50px;
    color: #f74d26;
}


@media screen and (max-width: 750px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero .subheading {
    	font-size: 25px;
    }
}


/* End Hero */

/* Better Section */
.better-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f74d26;
}

.better-section h2 {
    text-align: center;
    color: white;
}

.better-section .page-width {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.better-section .column-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1000px;
}

.better-section .column {
    display: flex; 
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}

.better-section .column img {
    width: 82px;
    height: 82px;
}

.better-section .what-to-expect {
    font-family: Gooper-condensed-semibold;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1;
}

.better-section .effect {
    font-family: pirelli-bold, pirelli-bold-B, pirelli-bold-C;
    font-size: 32px;
    line-height: 1;
    margin-top: 15px;
}

.better-section .description {
    font-family: Gooper-condensed-semibold;
    font-size: 18px;
    line-height: 1.3;
    margin-top: 15px;
}

.better-section .shop-button {
    margin-top: 60px;
}

@media screen and (max-width: 1000px) {
    .better-section .column-container {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
        row-gap: 50px;
    }
}
/* End Better Section */

/* Trusted Section */
.trusted-section {
    padding-top: 70px;
    padding-bottom: 50px;
    background-color: white;
}

.trusted-section h2 {
    color: #1a1a1a;
}

.trusted-section .stars-container {
    display: flex; 
    align-items: center;
    margin-top: 5px; 
    gap: 5px;
}

.trusted-section .stars-container .stars {
    margin-top: -2px;
    color: #F74D26;
}

.trusted-section .stars-container .text {
    font-family: Gooper-condensed-regular;
    font-size: 18px;
}

.trusted-section .testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 15px;
    gap: 20px;
}

.trusted-section .testimonial {
    background-color: #FFC269;
    width: 100%;
    padding: 14px 30px 12px 23px;
    border-radius: 10px;
    position: relative;
    padding-bottom: 120px;
    box-sizing: border-box;
}

.trusted-section .description {
    letter-spacing: 0.1px;
    font-size: 18px;
    line-height: 22px;
    font-family: "Gooper-condensed-regular";
}

.trusted-section .bottom {
    position: absolute;
    padding-left: 23px;
    padding-right: 30px;
    padding-bottom: 12px;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.trusted-section .name {
    font-family: pirelli-bold, pirelli-bold-B, pirelli-bold-C;
    font-size: 18px;
    font-style: normal;
    margin-top: -2px;
}

.trusted-section .verified-customer {
    font-family: Gooper-condensed-regular;
    font-size: 13px;
    margin-top: 5px;
}

.trusted-section .videos-container {
    display: grid;
    margin-top: 70px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-section .video-column {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px #f54f25 solid;
    cursor: pointer;
    position: relative;
}

.trusted-section .video-column .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.trusted-section .video-column .icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -45px;
    margin-left: -45px;
    z-index: 2;
    padding: 30px;
    border: 30px; 
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0);
} 
.trusted-section .video-column .icon-container:hover {
    background-color: white;
}

.trusted-section .video-column .icon-container svg {
    margin-left: 5px;
}

@media screen and (max-width: 1150px) {
    .trusted-section .stars-container .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 850px) {
    .trusted-section .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-section .stars-container .text {
        font-size: 13px;
    }

    .trusted-section .videos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .trusted-section .testimonials-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .trusted-section .videos-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* End Trusted Section */