body {
	margin: 0 auto;
}
html {
  scroll-behavior: smooth;
}
:root {
	--black-color: #000;
	--dark-color: #030E09;
	--white-color: #fff;
	--grey-color: #48576A;
}

@font-face {
	font-family: "Outfit-Medium";
	src: url("../fonts/Outfit-Medium.ttf");
	font-weight: normal;
}

@font-face {
	font-family: "Outfit-Regular";
	src: url("../fonts/Outfit-Regular.ttf");
	font-weight: normal;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.ttf");
	font-weight: normal;
}


.container {
	max-width: 1224px;
	margin: 0 auto;
	padding: 0px 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}


.content-fonts h1 {
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 75px;
	font-family: "Outfit-Medium";
}

.content-fonts h2 {
	font-family: "Outfit-Medium";
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 62.4px;
	letter-spacing: -1.7px;
}

.content-fonts h3 {
	font-size: 32px;
	font-style: normal;
	line-height: normal;
	font-family: "Outfit-Regular";
	line-height: 44.8px;
	letter-spacing: -0.5px;
	font-weight: 500;

}

.content-fonts h4 {
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	letter-spacing: -0.5px;
	font-family: 'Outfit-Medium';
}

.content-fonts h5 {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
}

.content-fonts h6 {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 30.6px;
}

.content-fonts p {
	font-family: "Inter";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 27.2px;
}

.content-fonts a {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	font-family: "Inter";
}

.content-fonts img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

.content-fonts .btn-grey {
	padding: 8px 16px;
	border-radius: 32px;
	display: inline-flex;
	width: auto;
	text-decoration: none;
	background-color: var(--grey-color);
	color: #fff;
	line-height: 32px;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}
a.btn-grey:before {
content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(0, 153, 255, 0.5) 50%,
    transparent 100%
  );
  transition: transform 1s ease;
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 0;
}
a.btn-white:before {
    content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
	background: linear-gradient(
	120deg,
	transparent 0%,
	rgba(128, 128, 128, 0.3) 50%,
	transparent 100%
	);
  transition: transform 1s ease;
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 0;
}

a.btn-grey:hover:before ,
a.btn-white:hover:before {
    transform: translateX(100%);
}

.content-fonts .btn-white {
	padding: 8px 16px;
	border-radius: 32px;
	display: inline-flex;
	width: auto;
	text-decoration: none;
	color: var(--dark-color);
	background-color: #fff;
	border: 1px solid var(--grey-color);
	line-height: 32px;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.content-fonts .padding-110 {
	padding: 110px 0px;
}

.content-fonts .bg-grey {
	background-color: var(--grey-color);
	color: var(--white-color);
}
.content-fonts .mob-none{
	display: none;
}
/* homepage */

.home-hero-sec-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;

}

.home-hero-left {
	flex: 0 50%;
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: flex-start;
}

/* .home-hero-left-bottom {
	display: flex;
	align-items: center;
	gap: 16px;
} */


.home-hero-left-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.home-hero-left-middle a.btn-grey {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.hero-stars {
	display: flex;
	gap: 8px;
	align-items: center;
}

.home-hero-left-bottom-right {
	display: flex;
	flex-direction: column;
}

.home-hero-right .home-hero-right-small {
	position: absolute;
	transform: translate(-45%, 35%);
}

.home-hero-right {
	position: relative;
	flex: 0 40%;
}
.home-hero-right img{
	width: 100%;
}
.home-hero-left-top p {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30.6px;
}

section.core-solution-main {
	margin: 0px 20px;
	border-radius: 24px;
	overflow: hidden;
}

.core-section-top {
	max-width: 780px;
}

.core-solution-sec-inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
}


.core-bottom-single {
	border-radius: 24px;
	background: #FFF;
	padding: 52px 46px;
	flex-direction: column;
	gap: 24px;
	display: flex;
	align-items: center;
}

.core-bottom-single-bottom h4 {
	color: #02140D;
}

.core-bottom-single-bottom {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.core-bottom-single-bottom p {
	color: #4B5852;
}

.excellence-solution-inner {
	display: flex;
	flex-direction: column;
	gap: 52px;
}

.excellence-solution-bottom {
	display: flex;
	gap: 16px;
}

.excellence-solution-bottom-single {
	padding: 18px 16px;
	border-radius: 16px;
	background: #F5F6F4;
}

.excellence-solution-top {
	max-width: 508px;
	text-align: center;
	margin: 0 auto;
	color: #4B5852;
}

.more-controls-top-inner {
	max-width: 590px;
	text-align: center;
	margin: 0 auto;
	color: #4B5852;
}

.more-controls {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.more-controls-bottom-single {
	margin: 0px 20px;
	border-radius: 24px;
	overflow: hidden;

}

.more-controls-bottom-single-inner {
	display: flex;
	gap: 50px;
	align-items: center;
	padding: 70px 0px;
	justify-content: space-between;
}

.more-controls-bottom-single-left {
	display: flex;
	flex-direction: column;
	gap: 52px;
	color: #323D4A;
}

.more-controls-bottom-single-left-top {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 385px;
}



.more-controls-bottom-single-right {
	padding: 80px 45px;
	border-radius: 24px;
}

.more-controls-bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.more-controls-bottom .more-controls-bottom-single:nth-child(even) .more-controls-bottom-single-inner {
	flex-direction: row-reverse;
}

.built-integration {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.built-integration-bottom {
	margin: 0 20px;
	border-radius: 24px;
}

.unity-grow-team {
	padding: 80px 0px;
	border-radius: 24px;
	margin: 20px;
}

.unity-grow-team-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.unity-grow-team-top-title {
	flex: 0 44%;
}

.unity-grow-team-inner {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.unity-grow-team-top-btn a.btn-white {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.unity-grow-team-bottom video.video-bg.full.img-bg-center-cover {
	width: 100%;
	border-radius: 16px;
}

.trusted-leaders {
	padding: 80px 0px;
	border-radius: 24px;
	background: #D5E5FC;
	margin: 0px 20px;
}

.trusted-leaders-inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
	color: #323D4A;
}

.trusted-leaders-bottom-single {
	display: flex;
	justify-content: space-between;
}

.trusted-leaders-bottom-single-left-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 34px;
}

.trusted-leaders-bottom-single-left {
	display: flex;
	flex-direction: column;
	gap: 22px;
	flex: 0 60%;
}

.trusted-leaders-bottom-single-left-bottom {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.trusted-leader-single-inner-bottom {
	display: flex;
	gap: 50px;
}

.trusted-leaders-inner p {
	color: #030E09;
	opacity: 0.5;
	font-family: 'Inter';
}

.trusted-leader-single-inner-top {
	display: flex;
	gap: 16px;
	align-items: center;
}

.trusted-leaders-top{
	position: relative;
}
.trusted-leaders-top h2 {
	max-width: 332px;
}

.client-desc h6 {
	font-family: 'Inter';
	color: #323D4A;
	font-weight: 600;
}

#trusted-leader-slider {
	position: relative;
}

#trusted-leader-slider .owl-stage-outer {
	overflow: hidden;
}

#trusted-leader-slider .owl-stage {
	display: flex;
	overflow: hidden;
}

.trusted-leaders-inner .owl-nav {
	position: absolute;
	top: auto;
	left: auto;
	right: 0px;
	bottom: 0;
	display: flex;
	gap:6px;
	justify-content: flex-start;
	align-items: flex-start;
}
.trusted-leaders-inner .owl-nav button {
    border: none;
    background: transparent;
}

.trusted-leaders-inner .owl-nav.disabled {
    display: none;
}

button.owl-next-trust img {
    transform: rotate(180deg);
}

.trusted-leaders-inner .owl-nav button img {
    width: 40px;
    height: 40px;
}

.book-demo-inner {
	border-radius: 24px;
	background: #48576A;
	color: #fff;
	padding: 54px;
	display: flex;
	justify-content: space-between;
	gap: 54px;
	align-items: center;
}

section.book-demo {
	padding-top: 90px;
	position: relative;
}

.book-demo-left-top {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.book-demo-left {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.book-demo-left-bottom input,
.book-demo-left-bottom textarea {
	border-radius: 12px;
	background: #677483;
	box-shadow: 0px 0px 0px 0px #063B26 inset, 0px 0px 0px 1px rgba(6, 59, 38, 0.05) inset;
	padding: 15px 24px 16.19px 18px;
	outline: none;
	border: none;
	color: rgba(255, 255, 255, 0.60);
	width: 85%;
	font-family: Inter;
	font-size: 16px;
}

.book-demo-left-bottom form label {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.book-demo-left-bottom form {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.book-demo-left-bottom input[type="submit"] {
	width: auto !important;
	border-radius: 32px;
	border: 1.5px solid #D5E5FC;
	background: linear-gradient(93deg, rgba(255, 255, 255, 0.20) -59.46%, rgba(72, 87, 106, 0.20) -27.26%, rgba(255, 255, 255, 0.20) 4.25%), #FFF;
	color: #02140D;
	font-size: 16px;
}

section.book-demo:after {
	position: absolute;
	background: #f1f1e6;
	width: 100%;
	content: "";
	height: 240px;
	top: auto;
	bottom: 0px;
	z-index: -1;
}

/* homepage */


/* footer */
#site-footer {
	background: #F1F1E6;
	padding: 100px 0px 35px 0px;
}

.site-footer-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer-top {
	display: flex;
	justify-content: space-between;
}

.site-footer-top-left {
	flex: 0 20%;
}

.footer-top-right {
	flex: 0 65%;
	display: flex;
	justify-content: space-between;
}

.footer-top-right ul.menu {
	padding: 0px;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer-top .widget-title h3,
.site-footer-top .widget-title {
	color: #02140D;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 27.2px;
}

.footer-top-right ul.menu li a,
.footer-top-right p a,
.site-footer-bottom p a{
	color: #030E09;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 27.2px;
	text-decoration: none;
}

.footer-top-right>div {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-contact p {
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-footer-bottom-connect ul {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.site-footer-bottom {
	display: flex;
	justify-content: space-between;
}

.site-footer-inner hr {
	width: 100%;
}

/* footer */

/* header */
#masthead {
    padding: 20px 0px;
}
.header-inner{
	display: flex;
	justify-content: space-between;
}
.d-md-none{
	display: none;
}
.header-menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-family: 'Inter';
	width: 100%;
}

.header-menu-main ul#menu-header-menu {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 32px;
}
.header-menu-main ul#menu-header-menu li a {
    color: var(--black-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}
.header-menu-main #mega-menu-wrap-primary #mega-menu-primary .unity-sub-menu-center {
    height: 225px;
    border-left: 1px solid #9db1cb;
}
.header-menu-main #mega-menu-wrap-primary #mega-menu-primary li.mega-all-page-inner-menu > ul.mega-sub-menu li > ul.mega-sub-menu li:first-child a {
    line-height: 21px;
    color: rgba(50, 61, 74, 0.50) !important;
    font-size: 12px !important;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-all-page-menu-main > ul.mega-sub-menu {
    top: 60px;
}
.desk-none {
    display: none !important;
}
.header-menu-main {
    flex: 0 61%;
}
.header-menu-content #mega-menu-wrap-primary #mega-menu-primary > li.mega-all-page-menu-main.mega-menu-item.all-page-menu-main > a.mega-menu-link span:after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17' fill='none'%3E%3Cpath d='M4.84709 6.5L8.84709 10.5L12.8471 6.5' stroke='%23030E09' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px; 
    vertical-align: middle;
    transition: all 0.4s ease-in-out;
}
.header-menu-content #mega-menu-wrap-primary #mega-menu-primary > li.mega-all-page-menu-main.mega-menu-item.all-page-menu-main.mega-toggle-on > a.mega-menu-link span:after {
	transform: rotate(180deg);
}
/* header */
@media (max-width: 1200px) {

/* .more-controls-top-inner {
    max-width: 63vw;
} */
/* .core-section-top {
    max-width: 65vw;
} */
/* .excellence-solution-top {
    max-width: 45vw;
} */
/* .more-controls-bottom-single-left-top {
    width: 40vw;
} */
/* .trusted-leaders-top {
    width: 50vw;
} */
}
@media (max-width: 991px) {
	.content-fonts .padding-110 {
		padding: 56px 0px;
	}

	.content-fonts h1 {
		font-size: 36px;
		font-style: normal;
		font-weight: 500;
		line-height: 46.8px;
		letter-spacing: -1.7px;
	}

	.content-fonts h2 {
		font-size: 36px;
		font-style: normal;
		font-weight: 500;
		line-height: 46.8px;
		letter-spacing: -1.7px;
	}

	.content-fonts h4 {
		font-size: 21.911px;
		font-style: normal;
		font-weight: 500;
		line-height: 29.215px;
		letter-spacing: -0.456px;
	}

	.home-hero-left-top p {
		font-size: 16px;
	}

	.footer-top-right {
		flex: 0 75%;
	}

	.core-solution-sec-inner {
		gap: 48px;
	}

	/* .core-section-top {
		max-width: 80vw;
	} */

	/* .excellence-solution-top {
		max-width: 85vw;
	} */

	/* .more-controls-top-inner {
		max-width: 70vw;
	} */
	.header-menu-main {
		flex: 0 65%;
	}
	
}

@media (max-width: 767px) {

	.site-footer-top {
		flex-direction: column;
		gap: 48px;
		align-items: center;
		text-align: center;
	}

	.footer-top-right {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 32px;
	}

	.footer-top-right>div {
		text-align: center;
		align-items: center;
		gap: 12px;
	}

	.site-footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 32px;
	}

	footer#site-footer {
		padding: 50px 0px;
	}

	.home-hero-sec-inner {
		flex-direction: column;
		gap: 42px;
	}

	.home-hero-right .home-hero-right-small {
		position: absolute;
		transform: translate(-15%, 85%);
	}

	.core-section-top {
		/* max-width: 80vw; */
		text-align: center;
	}

	/* .more-controls-top-inner {
		max-width: 80vw;
	} */

	.more-controls-bottom-single-inner {
		flex-direction: column-reverse;
		gap: 32px;
		padding: 48px 0px;
	}

	.more-controls-bottom-single {
		margin: 0;
	}

	/* .more-controls-bottom-single-left-top {
		width: 80vw;
	} */

	.more-controls-bottom-single-left {
		gap: 32px;
	}

	.more-controls-bottom .more-controls-bottom-single:nth-child(even) .more-controls-bottom-single-inner {
		flex-direction: column-reverse;
	}

	.more-controls {
		gap: 48px;
	}

	.more-controls-bottom {
		gap: 16px;
	}

	.built-integration {
		gap: 48px;
	}

	.built-integration-bottom {
		margin: 0px;
	}

	section.unity-grow-team {
		padding: 48px 0px;
		margin: 20px 0px;
	}

	.unity-grow-team-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.unity-grow-team-inner {
		gap: 48px;
	}

	.trusted-leaders {
		margin: 0px;
		padding: 48px 0px;
	}

	.trusted-leaders-top {
		/* width: 80vw; */
		text-align: center;
	}

	.trusted-leaders-bottom-single {
		flex-direction: column-reverse;
		gap: 48px;
	}

	.trusted-leaders-bottom-single-left-top {
		gap: 20px;
	}

	.trusted-leaders-bottom-single-left .trusted-leaders-bottom-single-left-top h3 {
		font-size: 18px;
		line-height: 25.2px;
		letter-spacing: 1.2px;
	}

	.trusted-leaders-bottom-single-left {
		gap: 14px
	}

	.trusted-leaders-bottom-single-left-bottom {
		gap: 32px;
	}

	.trusted-leader-single-inner-single h3 {
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: 36.6px;
		letter-spacing: -0.5px;
	}

	section.book-demo {
		padding-top: 48px;
	}

	.book-demo-inner {
		flex-direction: column-reverse;
		background: none;
		gap: 16px;
		padding: 0;
	}

	.book-demo-left {
		background: #48576A;
		padding: 48px 18px;
		border-radius: 24px;
		gap: 26px;
	}

	.core-bottom-single-bottom {
		display: flex;
		flex-direction: column;
		gap: 18px;

	}
	section.core-solution-main{
		margin: 0px;
	}
	.core-bottom-single {
		gap: 36px;
	}
	
	.excellence-solution-bottom {
		flex-wrap: wrap;
		justify-content: center;
	}
	.excellence-solution-bottom-single {
		padding: 13px 12px;
		flex: 0 36%;
		text-align: center;
	}
	
	.header-menu-main {
        justify-content: flex-end;
    }
	#masthead {
		padding: 12px 0px;
	}
	.desk-none{
		display: block !important;
	}
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-desk-none {
        margin-bottom: 24px;
        border-bottom: 1px solid #9DB1CB;
        padding-bottom: 24px;
    }
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-desk-none.mega-menu-close-icon {
		position: absolute !important;
		top: 20px !important;
		right: 0 !important;
	}
	.header-menu-content #mega-menu-wrap-primary #mega-menu-primary {
		padding: 20px 0px !important;
		display: flex !important;
		flex-direction: column;
	}
	.header-menu-main #mega-menu-wrap-primary #mega-menu-primary .unity-sub-menu-center {
		height: auto;
		border-bottom: 1px solid #9db1cb;
		margin: 32px 0px;
	}
	    .header-inner .mobile-menu {
        order: 3;
    }
    .mobile-menu .mob-menu-toggle {
        transform: scale(.6);
    }
    .mobile-menu span.mob-menu-toggle-box {
        width: 40px;
        height: 24px;
        display: inline-block;
        position: relative;
        outline: 0;
    }
.mobile-menu span.mob-menu-toggle-box span.mob-menu-toggle-inner {
        background-color: #000000;
        top: 2px;
        width: 40px;
        height: 4px;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
        display: block;
        margin-top: -2px;
}
    .mobile-menu span.mob-menu-toggle-box span.mob-menu-toggle-inner:before, .mobile-menu span.mob-menu-toggle-box span.mob-menu-toggle-inner:after {
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: .15s;
        content: "";
        display: block;
        position: absolute;
        width: 40px;
        height: 4px;
        background-color: #000000;
    }
    .mobile-menu span.mob-menu-toggle-box span.mob-menu-toggle-inner:before {
        top: 10px;
    }
.mobile-menu span.mob-menu-toggle-box span.mob-menu-toggle-inner:after {
        top: 20px;
    }
.header-menu-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 9999999999;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none; /* prevent interaction when hidden */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header-menu-main.show {
  pointer-events: auto;
  opacity: 1;
}

.header-menu-content {
  transform: translateX(100%);
  width: 90%;
  max-width: 360px;
  height: 100%;
  background: #d5e5fc;
  box-sizing: border-box;
  padding: 0 8px;
  color: #000;
  transition: transform 0.4s ease-in-out;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.header-menu-main.show .header-menu-content {
  	transform: translateX(0);
	display: flex;
    flex-direction: column;
	overflow-y: scroll;
	justify-content: flex-start;
	gap:0px;
}

.header-inner {
	align-items: center;
}
.header-menu-content .header-right-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin: 48px 0px;
	width: 100%;
}
.header-menu-content .header-logo {
    text-align: center;
	margin-bottom: 40px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.contact-wp-mob {
    border-top: 1px solid #9DB1CB;
    margin-top: 24px;
    padding-top: 24px;
}
.header-menu-main.show .header-menu-content div#mega-menu-wrap-primary {
    width: 100%;
}
#trusted-leader-slider .owl-nav{
	left: 0;
}
}

/* @media (max-width: 650px) {
    .core-bottom-single {
        flex: 0 100%;
    }
} */