:root {
	/* color */
	--black: #000;
	--endeavour-33: #0051a5;
	--selective-yellow-4: #ffbc00;
	--white: #ffffff;
	--blue-gradient: linear-gradient(90deg, #0051a5 0%, rgba(0, 81, 165, 0) 100%);
	--blue-midnight-endeavour: linear-gradient(180deg, #013164 0%, #0051a5 100%);
	--blue-endeavour-midnight: linear-gradient(180deg, #0051a5 0%, #013164 100%);
	--blue-charcoal-583: #020e1b;
	--midnight-441: #012143;
	--midnight-blue-85: #013163;
	--ebony-clay-844: #232c34;
	--apple-5092: #52d03d;
	--oslo-gray-258: #7f868f;
	--sushi-666: #80b940;
	--apple-5093: #52d03e;
	--alto-20: #d9d9d9;
	--wild-sand-5: #f5f5f5;
	--midnight-blue-90: #013164;
	--monorope: "Manrope", sans-serif;
	--roboto: "Roboto", sans-serif;
	--roboto-considered: "Roboto Condensed", sans-serif;
}

/* header section start */
header {
	padding: 0;
	color: var(--white);
	position: sticky;
	z-index: 9;
	top: 0;
}

.header-top {
	background-color: var(--endeavour-33);
}

.logo {
	display: block;
}

.header-nav-container,
.header-top-container {
	max-width: 1920px;
	padding: 20px 5%;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-top-container-list {
	width: 100%;
}

.marquee-container {
	width: 390px;
	overflow: hidden;
}

.marquee-docs-list p {
	flex: 0 0 auto;
}

.marquee-docs {
	position: relative;
	width: max-content;
}

.header-top-container-list,
.header-stars,
.header-we-are-open,
.marquee-docs,
.marquee-docs-list,
.marquee-docs-list ul,
.marquee-docs-list ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.marquee-docs-list ul li::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background-color: var(--white);
	border-radius: 50%;
}

.header-we-are-open,
.header-stars {
	font-size: 20px;
}

.marquee-docs-list {
	font-size: 18px;
}

.header-we-are-open strong,
.header-stars strong,
.marquee-docs-list ul li,
.marquee-docs-list strong {
	font-weight: 700;
}

.header-we-are-open-circle {
	display: block;
	width: 10px;
	height: 10px;
	background-color: var(--apple-5093);
	border-radius: 50%;
	animation: pulse-animation 1s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px var(--apple-5093);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}
}

.header-nav {
	background-color: var(--midnight-441);
}

.menu ul {
	gap: 20px;
}

.open-menu,
.close-menu {
	display: none;
}

.menu li {
	flex: 0 0 auto;
	width: max-content;
	padding: 10px;
}

@media screen and (max-width: 1350px) {
	.header-top {
		padding: 20px 0px;
		width: 100%;
		overflow: hidden;
	}

	.header-top-container {
		padding: 0;
		width: max-content;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}

	.marquee-container,
	.header-top-container-list {
		width: max-content;
	}

	.marquee-container ul {
		display: none;
	}

	.header-top-container-list,
	.header-stars,
	.marquee-container,
	.header-we-are-open {
		flex: 0 0 auto;
	}

	.header-we-are-open,
	.header-stars,
	.marquee-docs-list {
		font-size: 16px;
	}

	.header-we-are-open * {
		display: flex;
	}

	.header-nav-container {
		padding: 20px;
	}

	.menu ul {
		gap: 0px;
	}

	.header-button-group {
		display: none;
	}
}

@media screen and (max-width: 993px) {
	.open-menu {
		display: flex;
		flex-direction: column;
		background-color: transparent;
		gap: 10px;
		color: var(--white);
		text-align: center;
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		line-height: 19.6px;
		border: none;
	}

	.header-top,
	.header-nav-container {
		padding: 10px 20px;
	}

	.logo img {
		height: 49px;
	}

	.menu {
		position: fixed;
		top: 115px;
		left: 0;
		width: 100%;
		overflow: hidden;
		height: 0;
		transition: all 0.5s ease-in-out;
		background-color: var(--midnight-441);
	}

	.menu.active {
		height: calc(100vh - 115px);
	}

	.menu ul {
		padding: 50px 20px;
		flex-direction: column;
		align-items: start;
	}
}

/* header section end */

/* home service section start */
.home-service {
	padding: 100px 0px 180px;
}

.home-service-article {
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	border: 3px solid var(--white);
}

.home-service-article figure,
.home-service-article picture,
.home-service-article img {
	width: 100%;
}

.home-service-article picture::after {
	content: "";
	position: absolute;
	bottom: 3px;
	left: 0;
	height: 312px;
	width: 100%;
	background: linear-gradient(180deg, rgba(1, 33, 67, 0) 0%, #012143 57.29%);
}


.home-service-article .docs {
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: start;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	text-align: center;
	width: 100%;
	align-items: center;
	height: 211px;
}

.home-service-article .docs::before,
.home-service-article .docs::after {
	content: "";
	background: var(--blue-midnight-endeavour);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0% 0%, 53% 55%, 100% 0, 100% 100%, 0% 100%);
	z-index: 0;
}

.home-service-article .docs::before {
	height: calc(100% + 3px);
	clip-path: polygon(0% 0%, 53% 55%, 100% 0, 100% 100%, 0% 100%);
	background: #fff;
}

.home-service-article a {
	padding: 12px 50px;
	margin: auto;
	position: relative;
	margin-bottom: 45px;
	z-index: 2;
}

.heading-2 {
	color: var(--white);
	font-size: 48px;
	font-style: normal;
	letter-spacing: -0.96px;
	font-weight: 700;
	line-height: 100%;
	position: relative;
	z-index: 2;
}

.heading-2 span {
	color: var(--selective-yellow-4);
}

.home-service-article .docs .heading-2 {
	position: absolute;
	width: calc(100% - 40px);
	left: 0;
	right: 0;
	bottom: calc(100% - 30px);
	margin: auto;
	max-width: 300px;
}

@media screen and (max-width: 1350px) {
	.heading-2 {
		font-size: 40px;
	}

	.home-service-article a {
		margin-bottom: 20px;
	}

	.home-service {
		padding: 100px 0px;
	}

	.home-service-article .docs {
		height: 180px;
	}
}

@media screen and (max-width: 993px) {
	.heading-2 {
		font-size: 36px;
	}
}

@media screen and (max-width: 768px) {
	.home-service-article a {
		width: 100%;
		margin-bottom: 10px;
	}

	.home-service-article picture::after {
		height: 255px;
	}

	.home-service-article .docs {
		height: 155px;
	}

	.home-service-article .docs .heading-2 {
		max-width: 250px;
	}

	.home-service {
		padding: 80px 0px;
	}

	.home-service-article::after {
		height: 311px;
	}

	.home-service-article img,
	.home-service-article picture {
		width: 100%;
	}
}

/* home service section end */
/* claim offer section start */
.claim-offer {
	background-color: var(--midnight-441);
	padding: 180px 0;
}

.customer-review-docs-carousel,
.claim-offer-carousel {
	position: relative;
}

.customer-review-docs-carousel .owl-nav,
.claim-offer-carousel .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: max-content;
	width: 100%;
	max-width: 1500px;
}

.customer-review-docs .owl-dots,
.claim-offer-carousel .owl-dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.claim-offer-carousel .owl-dot {
	width: 10px;
	cursor: pointer;
	height: 10px;
	border-radius: 10px;
	background-color: var(--midnight-blue-90) !important;
}

.claim-offer-carousel .owl-dot.active {
	background-color: var(--white) !important;
}

.claim-offer-item {
	/* width: 700px; */
	border-radius: 6px;
	background: var(--blue-endeavour-midnight);
	border: 3px solid var(--white);
	transform: translateX(35.5%);
	display: flex;
}

.claim-offer-item .docs {
	flex: 0 0 auto;
	width: 317px;
	padding: 60px;
	padding-right: 0px;
	display: flex;
	flex-direction: column;
}

.claim-offer-item .docs p {
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	margin-top: 60px;
	line-height: 28px;
}

.claim-offer-item .docs a {
	margin-top: auto;
	width: max-content;
	padding: 12px 50px;
}

.claim-offer-item .img {
	flex: 0 0 auto;
}

.claim-offer-item .img picture {
	width: 380px;
	padding-left: 3px;
	background-color: var(--white);
	clip-path: polygon(54.5% 0%, 100% 0%, 100% 100%, 25% 100%, 0 70%);
}

.claim-offer-item .img img {
	width: 100%;
	height: 100%;
	clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 70%);
}

@media screen and (max-width: 1700px) {
	.claim-offer-item .docs {
		width: 290px;
		padding: 40px;
		padding-right: 0px;
	}

	.claim-offer-item .docs p {
		margin-top: 30px;
	}

	.claim-offer-item .img picture {
		width: 340px;
	}
}

@media screen and (max-width: 1350px) {
	.claim-offer {
		padding: 100px 0;
	}

	.claim-offer-item {
		transform: translateX(25.5%);
	}
}

@media screen and (max-width: 768px) {
	.claim-offer-carousel .owl-dots {
		display: flex;
	}

	.claim-offer-carousel .owl-nav {
		display: none;
	}

	.claim-offer-item {
		flex-direction: column-reverse;
		height: 100%;
		justify-content: space-between;
		width: 247px;
		transform: translateX(0%);
	}

	.claim-offer-item .docs {
		flex: 1;
	}

	.claim-offer-item .img picture {
		width: 100%;
		padding-left: 0;
		padding-bottom: 3px;
		clip-path: polygon(0 0, 100% 0%, 100% 73%, 71% 100%, 0 26%);
	}

	.claim-offer-item .docs {
		width: 100%;
		padding: 20px;
		text-align: center;
		justify-content: center;
		align-items: center;
	}

	.claim-offer-item .docs p {
		margin: 40px 0;
		font-size: 18px;
		line-height: 25px;
	}

	.claim-offer .owl-stage {
		display: flex;
	}

	.claim-offer-item .img img {
		width: 100%;
		height: 100%;
		clip-path: polygon(0 0, 100% 0%, 100% 73%, 71% 100%, 0 26%);
	}
}

/* claim offer section end */

/* customer review section start  */
.customer-review {
	padding: 180px 0 160px;
	overflow: hidden;
}

.heading-1 {
	color: var(--midnight-blue-90);
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -1.28px;
}

.heading-1 span {
	color: var(--endeavour-33);
}

.customer-review-docs {
	margin-top: 60px;
}

.owl-stage {
	display: flex;
}

.customer-review-item-one,
.customer-review-item {
	background-color: var(--white);
	border-radius: 6px;
	padding: 40px;
	border: 3px solid var(--white);
	height: 100%;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.customer-review-item-one {
	background-color: var(--sushi-666);
	padding: 0;
}

.customer-review-item-one .docs-bg {
	background-color: var(--white);
	color: var(--white);
	height: 100%;
	position: relative;
	width: calc(100% - 75px);
	clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.customer-review-item-one .docs {
	clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
	padding: 55px 40px;
	width: calc(100% - 3px);
	height: 100%;
	background-color: var(--midnight-blue-90);
}

.customer-review-item-one .docs-head {
	display: flex;
	gap: 20px;
}

.customer-review-item-one .docs-head strong {
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 67.2px;
}

.customer-review-item-one span {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.customer-review-item-one .star {
	margin-top: 20px;
	margin-bottom: 40px;
	width: max-content;
}

.customer-review-item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--alto-20);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.customer-review-item-head .user {
	display: flex;
	gap: 20px;
}

.customer-review-item-head .user b {
	color: var(--midnight-blue-90);
	font-size: 20px;
	font-style: normal;
	display: block;
	font-weight: 700;
	line-height: 100%;
	margin-bottom: 6px;
	letter-spacing: -0.4px;
}

.customer-review-item-head .user-img {
	width: 35px;
	height: 35px;
	overflow: hidden;
	border-radius: 50%;
}

.customer-review-item-head .user-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.customer-review-item-body p {
	color: var(--ebony-clay-844);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22.4px;
}

.customer-review-item-body p b {
	font-weight: 900;
}

.customer-review-docs-carousel {
	width: 1750px;
}

.customer-review-docs-carousel .owl-stage-outer {
	padding: 20px 2px;
}

.customer-review-docs-carousel .owl-nav {
	right: unset;
	max-width: 1402px;
}

@media screen and (max-width: 1550px) {
	.customer-review-docs-carousel .owl-nav {
		max-width: 1290px;
	}

	.customer-review-docs-carousel {
		width: 1550px;
	}

	.heading-1,
	.customer-review-item-one .docs-head strong {
		font-size: 40px;
	}

	.customer-review {
		padding: 100px 0 80px;
		overflow: hidden;
	}
}

@media screen and (max-width: 1350px) {
	.customer-review-docs-carousel .owl-nav {
		max-width: 100%;
	}

	.customer-review-docs-carousel {
		width: 100%;
	}

	.customer-review-item-one .docs-head strong {
		font-size: 36px;
		line-height: normal;
	}

	.customer-review-docs {
		margin-top: 40px;
	}

	.customer-review {
		padding: 80px 0 60px;
		overflow: hidden;
	}

	.customer-review-docs-carousel .owl-stage-outer {
		padding: 20px 0px;
	}

	.customer-review-item,
	.customer-review-item-one .docs {
		padding: 40px 20px;
	}

	.customer-review-item-one {
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	.customer-review .heading-1 {
		text-align: center;
	}

	.customer-review-item-one .docs {
		width: 100%;
		text-align: center;
		height: calc(100% - 3px);
		clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
	}

	.customer-review-item-one .docs-head {
		justify-content: center;
	}

	.customer-review-item-one .docs-bg {
		width: 100%;
		clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
		height: calc(100% - 50px);
	}

	.customer-review-item-one .star {
		margin: 20px auto;
	}

	.customer-review-item,
	.customer-review-item-one .docs {
		padding: 20px;
	}

	.customer-review-item-one .docs {
		padding-bottom: 30px;
	}

	.customer-review-item-one {
		padding: 0;
		min-height: 250px;
	}
}

/* customer review section end  */
/* Reliable section start */
.reliable-section {
	background-color: var(--midnight-441);
}

.py-180 {
	padding: 180px 0;
}

@media screen and (max-width: 1350px) {
	.py-180 {
		padding: 120px 0;
	}
}

@media screen and (max-width: 768px) {
	.py-180 {
		padding: 80px 0;
	}
}

.reliable-section .docs {
	border-radius: 6px;
	padding: 60px;
	border: 3px solid var(--white);
	height: 100%;
	display: flex;
	flex-direction: column;
	color: var(--white);
	background: var(--blue-endeavour-midnight);
	gap: 0;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.reliable-section .docs p {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.reliable-section .docs p:not(:last-child) {
	margin-bottom: 20px;
}

.reliable-section .docs h2 {
	color: var(--white);
	margin-bottom: 60px;
    letter-spacing: -2px;
}

.reliable-section .docs h2 span {
	color: var(--selective-yellow-4);
}
@media screen and (max-width: 1350px) {
	.reliable-section .docs {
		padding: 30px;
	}.reliable-section .docs h2{
		margin-bottom: 40px;
	}
}
/* Reliable section end */

/* Same Day Service section start */
.same-day article {
	border-radius: 6px;
	background: var(--midnight-blue-90);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border-radius: 6px;
	border: 3px solid #fff;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.same-day article * {
	width: 100%;
}

.same-day article .info {
	padding: 60px;
	padding-bottom: 0;
	text-align: center;
	margin-bottom: auto;
}

.same-day article .info span {
	display: block;
}

/* Same Day Service section end */
.bg-midnight {
	background-color: var(--midnight-441);
}

.plumbing-get-fin-wrapper {
	background: var(--midnight-blue-90);
}

.why-choose-section-about {
	background-size: 55% auto;
	background-position: bottom right;
}

.plumbing-get-fin-wrapper .get-fin-wrapper {
	margin-top: 60px;
}

@media screen and (max-width: 993px) {
	.why-choose-section-about {
		padding-bottom: 0;
	}

	.plumbing-get-fin-wrapper .get-fin-wrapper {
		margin-top: 40px;
	}

	.why-choose-section-about.why-choose-section .right-wrapper {
		height: auto;
		width: 100%;
	}

	.why-choose-section-about.why-choose-section .right-wrapper img {
		position: unset;
		width: 100%;
		height: 100%;
		margin: 0;
	}
}

/* card list start */
.card-list {
	display: grid;
	gap: 40px 20px;
	grid-template-columns: repeat(3, 1fr);
}

.card-item {
	border-radius: 6px;
	border: 3px solid var(--white);
	background: linear-gradient(180deg, #0051a5 0%, #013164 100%);
	color: var(--white);
	margin: 0px;
	display: grid;
	grid-template-rows: auto 1fr;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.card-docs {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 40px;
	padding: 40px;
}

.card-docs-2 {
	grid-template-rows: auto auto;
	align-items: center;
}

.card-docs h4 {
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	margin-bottom: auto;
	letter-spacing: -0.72px;
}

.card-docs p {
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	overflow: hidden;
	-webkit-line-clamp: 4;
	display: box;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
	margin-bottom: 5px;
}

.card-docs .button {
	margin-top: auto;
}

.read-moreless-button {
	cursor: pointer;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;

}

.card-item.view-more {
	grid-row: span 2;
}

.card-item.view-more .card-docs {
	grid-template-rows: auto minmax(200px, 900px) auto;
}

.card-item.view-more .card-docs p {
	overflow: auto;
	height: calc(100% - 50px);
	text-overflow: unset;
	-webkit-line-clamp: unset;
}

.card-item.view-more .card-docs p::-webkit-scrollbar {
	width: 0.3em;
}

.card-item.view-more .card-docs p::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.card-item.view-more .card-docs p::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	outline: 1px solid slategrey;
}

.card-img {
	position: relative;
	border-radius: 0px !important;
	background: var(--white);
	clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.card-img img {
	clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.card-img::before,
.card-img::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.card-img::after {
	background: linear-gradient(180deg, rgba(1, 33, 67, 0.00) 0%, #012143 99.29%);
	clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.card-img::before {
	background: var(--white);
	z-index: 2;
	clip-path: polygon(100% 74%, 100% 75%, 50% 100%, 0 75%, 0 74%, 50% 99%);
}

.card-img * {
	width: 100%;
	border-radius: 0px !important;
}

.button-see-more {
	margin-top: 100px;
	width: 100%;
}

@media screen and (max-width: 1400px) {
	.card-docs {
		padding: 20px;
	}.card-docs h4{
		font-size: 28px;
	}
}

@media screen and (max-width: 993px) {
	.card-list {
		gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.card-list {
		grid-template-columns: repeat(1, 1fr);
	}

	.button-see-more {
		margin-top: 50px;
	}

	.card-docs {
		gap: 20px;
		padding: 20px;
	}

	.card-docs h4 {
		font-size: 30px;
		line-height: 1em;
	}

	.card-item.view-more .card-docs {
		grid-template-rows: auto minmax(200px, 500px) auto;
	}
}

.button-midnight-blue {
	--button-color: var(--white);
	--button-color-bg: var(--midnight-blue-90);
}

.service-filter-section .wrapper {
	gap: 20px;
	text-transform: capitalize;
}

.area-section .wrapper span:first-child,
.service-filter-section .wrapper span {
	width: 220px;
}

/* card list end */

.maintenance-program .heading-2 {
	color: var(--midnight-441);
	margin-bottom: 60px;
}

.maintenance-program {
	color: var(--ebony-clay-844);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.maintenance-program b {
	font-weight: 700;
}

.maintenance-program p {
	margin-bottom: 30px;
}

.maintenance-program ul {

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-left: 20px;
	gap: 10px 30px;
}

.maintenance-program ul li {
	display: list-item;
	width: auto;
	list-style: disc;
}

/* .maintenance-program ul li:first-child {
	list-style: none;
} */

.maintenance-program a {
	color: var(--endeavour-33);
}

.brand-logos {
	display: flex;
	padding: 80px 0 120px;
	flex-wrap: wrap;
	align-items: center;
	/* justify-content: space-between; */
	gap: 50px;
}

.brand-logo img {
	width: 160px;
	height: 70px;
	object-position: center;
	object-fit: contain;
}

@media screen and (max-width: 1550px) {
	.brand-logos {
		gap: 30px;
	}.brand-logo img{
		width: 158px;
	}
}

@media screen and (max-width: 993px) {
	.brand-logos {
		padding: 40px 0 80px;
		gap: 20px;
	}

	.maintenance-program p {
		margin-bottom: 15px;
	}

	.brand-logo img {
		width: 155px;
	}
}

@media screen and (max-width: 768px) {
	.brand-logos {
		gap: 0;
	}

	.brand-logos .owl-dots,
	.brand-logos .owl-nav {
		display: none;
	}
}