@font-face {
	font-family: "Rubik";
	src: url("../../fonts/sb/Rubik-Medium.eot");
	src: url("../../fonts/sb/Rubik-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/sb/Rubik-Medium.woff2") format("woff2"), url("../../fonts/sb/Rubik-Medium.woff") format("woff"),
		url("../../fonts/sb/Rubik-Medium.ttf") format("truetype"), url("../../fonts/sb/Rubik-Medium.svg#Rubik-Medium") format("svg");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Rubik";
	src: url("../../fonts/sb/Rubik-Bold.eot");
	src: url("../../fonts/sb/Rubik-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/sb/Rubik-Bold.woff2") format("woff2"), url("../../fonts/sb/Rubik-Bold.woff") format("woff"),
		url("../../fonts/sb/Rubik-Bold.ttf") format("truetype"), url("../../fonts/sb/Rubik-Bold.svg#Rubik-Bold") format("svg");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Rubik";
	src: url("../../fonts/sb/Rubik-Regular.eot");
	src: url("../../fonts/sb/Rubik-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/sb/Rubik-Regular.woff2") format("woff2"), url("../../fonts/sb/Rubik-Regular.woff") format("woff"),
		url("../../fonts/sb/Rubik-Regular.ttf") format("truetype"), url("../../fonts/sb/Rubik-Regular.svg#Rubik-Regular") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Rubik";
	src: url("../../fonts/sb/Rubik-SemiBold.eot");
	src: url("../../fonts/sb/Rubik-SemiBold.eot?#iefix") format("embedded-opentype"), url("../../fonts/sb/Rubik-SemiBold.woff2") format("woff2"),
		url("../../fonts/sb/Rubik-SemiBold.woff") format("woff"), url("../../fonts/sb/Rubik-SemiBold.ttf") format("truetype"), url("../../fonts/sb/Rubik-SemiBold.svg#Rubik-SemiBold") format("svg");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

html {
	margin-top: 0 !important;
}

body {
	font-family: var(--font-body-family);
	color: var(--secondary);
	background: #ffffff;
}

body.sydneybusiness {
	background: #ffffff;
}

body.menuoverlay.sydneybusiness main {
	filter: unset;
}

body.sydneybusiness.menuoverlay header,
body.sydneybusiness header:hover {
	background: initial;
}

.sydneybusiness.fixed-header header:hover {
	background: var(--white);
}

[class*="heading-"],
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--black);
	line-height: 1.2;
	margin-bottom: 20px;
	font-family: var(--font-body-family);
	font-weight: 600;
}

.sydneybusiness header {
	min-height: unset;
}

.sydneybusiness.fixed-header header {
	position: fixed;
	z-index: 9999;
	-webkit-animation: 3s ease fadeIn;
	animation: 3s ease fadeIn;
	border-top: 0;
	box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 8%);
	-moz-box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 20%);
	-webkit-box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 20%);
	width: 100%;
	background-color: var(--white);
	border-bottom: 1px solid #ffffff;
	top: 0;
	left: 0;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transition: opacity 3s ease;
	}

	to {
		opacity: 1;
		transition: opacity 3s ease;
	}
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
		transition: opacity 3s ease;
	}

	to {
		opacity: 1;
		transition: opacity 3s ease;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
		transition: opacity 3s ease;
	}

	to {
		opacity: 1;
		transition: opacity 3s ease;
	}
}

/**/
.text-white {
	color: #ffffff !important;
}

.landing-page p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 25px;
	text-align: inherit;
}

/*  heading style */
.capitalize {
	text-transform: capitalize !important;
}

.heading-40 {
	font-size: clamp(1.375rem, 0.8929rem + 1.3393vw, 2.5rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--theme);
	font-family: var(--font-body-family);
	margin-bottom: 10px;
}

.heading-36 {
	font-size: clamp(1.375rem, 1rem + 1.0417vw, 2.25rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--theme);
	font-family: var(--font-body-family);
}

.heading-22 {
	font-size: clamp(1rem, 0.8393rem + 0.4464vw, 1.375rem);
	line-height: 1.3;
}

.heading-60 {
	font-size: clamp(2rem, 1.25rem + 2.0833vw, 3.75rem);
	line-height: 1;
}

button,
.landing-page .button,
.landing-page button[type="submit"],
.landing-page input[type="submit"] {
	font-size: 14px;
	text-transform: uppercase;
	padding: 19px 30px;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	z-index: 1;
	line-height: 1;
	text-decoration: none;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--theme);
	font-family: var(--font-body-family);
	font-weight: var(--font-weightbold);
	background-color: var(--theme);
	color: var(--white);
	border-radius: 6px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	text-transform: uppercase;
	font-weight: 600;
}

.landing-page .button:before,
.bottom-btn .button-theme:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	pointer-events: none;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition: -webkit-transform 0.2s ease-out;
	transition: -webkit-transform 0.2s ease-out;
	transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.landing-page .button:hover:before,
.bottom-btn .button-theme:hover:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.landing-page .button-theme,
.landing-page .btn-theme {
	border: 1px solid var(--theme);
	background-color: var(--theme);
}

.landing-page .button-theme:hover,
.landing-page .btn-theme:hover,
.bottom-btn .button-theme:hover {
	background: var(--white);
	color: var(--theme);
}

.landing-page .button-skyblue {
	background-color: var(--skyblue);
	border: 1px solid var(--skyblue);
	color: var(--theme);
}

.landing-page .sitegradient {
	width: 100%;
	clear: both;
	z-index: 0;
	background: transparent linear-gradient(308deg, #ffe1ae 0%, #57d6ed 100%) 0% 0% no-repeat padding-box;
}

.landing-page .gradient-tp-btm {
	/*  background: transparent linear-gradient(308deg, #FFE1AE 0%, #57D6ED 100%) 0% 0% no-repeat padding-box;*/
	position: absolute;
	height: calc(100% + 500px);
	width: 100%;
	margin-top: -250px;
	z-index: -1;
	background: linear-gradient(105deg, rgb(87 214 237) 15%, rgb(255 225 174) 100%);
}

.landing-page .gradient-tp-btm::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 510px;
	top: 0;
	left: 0;
	background: transparent linear-gradient(0deg, #ffffff00 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
	margin-top: 0px;
}

.landing-page .gradient-tp-btm:after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 510px;
	bottom: 0;
	left: 0;
	background: transparent linear-gradient(180deg, #ffffff00 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
	margin-bottom: 0px;
}

.container.container-full {
	max-width: 1920px;
	padding-left: 0;
	padding-right: 0;
}

.landing-page .sitegradient.topgradient {
	margin-top: -95px;
	padding-top: 100px;
}

.zindex {
	z-index: 0;
	position: relative;
}

.banner-form>.button {
	border: 0;
	background: transparent;
	padding: 0;
	display: block;
	font-size: initial;
	text-transform: initial;
	font-weight: initial;
	position: initial;
}

.banner-form>.button:before {
	display: none;
}

/**/
.image-block {
	width: 960px;
	position: sticky;
	top: 100px;
	align-self: flex-start;
}

.content-block {
	width: calc(100% - 960px);
	max-width: 560px;
	margin: 0 auto;
}

.image-block>img {
	border-radius: 0 20px 20px 0;
}

.key-title {
	font-size: 20px;
	line-height: 26px;
	color: var(--secondary);
	font-weight: 500;
	margin-bottom: 4px;
}

.key-detail {
	font-size: 16px;
	line-height: 22px;
	color: var(--secondary);
}

ul.key-ul {
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 25px;
}

ul.key-ul li {
	border-bottom: 1px solid #e6e6e6;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
	padding: 25px 0;
}

.key-img {
	width: 66px;
	position: relative;
}

.key-img>img {
	margin: 10px auto 0;
	text-align: center;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 0;
}

.key-img:before {
	position: absolute;
	content: "";
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: rgb(206, 245, 252);
	background: linear-gradient(180deg, rgba(206, 245, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
	z-index: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.key-content {
	width: calc(100% - 66px);
	padding-left: 25px;
}

.head-right ul {
	list-style-type: none;
	margin-left: 0;
}

.header-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.header-wrap .headphone {
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: var(--theme);
}

.header-wrap .headphone:hover {
	text-decoration: underline;
}

.header-wrap .headphone>i {
	margin-right: 8px;
}

.head-right ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.head-right ul li:not(:last-child) {
	padding-right: 20px;
}

.head-right ul li {
	margin-bottom: 0;
}

.topgradient .sitegradient {
	height: 100%;
	margin-top: -95px;
}

.banner-left .heading-60 span {
	width: auto;
	position: relative;
	display: inline-block;
	color: var(--theme);
}

.banner-left .heading-60 span:before {
	content: "";
	position: absolute;
	height: 8px;
	background: #ffe1ae;
	bottom: 3px;
	left: 0;
	z-index: -1;
	width: 100%;
}

.banner-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.banner-left .banner_txt {
	color: var(--theme);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 20px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0 0 10px;
}

.banner-left .banner_txt span {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 25px;
	display: block;
	font-weight: normal;
	margin-top: 5px;
}

.banner-wrap .banner-left {
	/* width: 793px; */
	width: calc(100% - 610px);
}

.banner-wrap .banner-right {
	/* width: calc(100% - 720px); */
	width: 610px;
}

.banner-sec .banner-wrap {
	padding: 0 40px 0 100px;
}

.banner-sec {
	padding: 40px 0 80px;
}

.landing-page .topgradient .gradient-tp-btm::before {
	display: none;
}

.landing-page .topgradient {
	position: relative;
}

.landing-page .topgradient .gradient-tp-btm {
	height: calc(100% + 250px);
}

.landing-page .landing-page p:last-child {
	margin-bottom: 0;
}

/**/
.sec-client {
	position: relative;
}

/**/
ul.client-say {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin-left: 0;
	margin-bottom: -60px;
}

ul.client-say li {
	width: 33.33%;
	padding: 0 20px 70px;
}

ul.client-say .play-icon-animation {
	position: relative;
	z-index: 0;
}

ul.client-say .play-icon-animation:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 74px;
	height: 74px;
	background: var(--white);
	border-radius: 50%;
	animation: pulse-border 1100ms ease-out infinite;
	-webkit-animation: pulse-border 1100ms ease-out infinite;
	-moz-animation: pulse-border 1100ms ease-out infinite;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
		opacity: 0;
	}
}

@-webkit-keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
		opacity: 0;
	}
}

@-moz-keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
		opacity: 0;
	}
}

ul.client-say li a:hover .play-icon-animation:before {
	opacity: 1;
	visibility: visible;
}

ul.client-say .cl-li {
	position: relative;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}

ul.client-say .cl-li>img {
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}

.fancybox-video {
	border: 4px solid #57d6ed;
}

.client-ovarlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgb(23 30 72 / 60%);
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.cl-testimonial {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	box-shadow: 0 0 12px rgb(0 0 0 / 15%);
	border-radius: 10px;
	width: 236px;
	height: 66px;
	margin: 0 0 -33px 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.cl-testimonial:before {
	position: absolute;
	content: "";
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	height: 20px;
	width: 18px;
	top: 0;
	left: 50%;
	margin-top: -18px;
	background-color: #ffffff;
	margin-left: 25px;
}

.call-action .call-content {
	background-color: var(--theme);
	border-radius: 20px;
	padding: 85px 80px;
	text-align: center;
	color: var(--white);
	background-image: url(../../images/sb/cta-bg.png);
	background-size: cover;
	background-position: center center;
}

.call-action .call-content [class*="heading-"] {
	color: var(--white);
	margin-bottom: 10px;
}

.banner-form {
	position: relative;
}

/*
.banner-form-box {
  width: 480px;
  position: relative;
  margin-left: auto;
}
*/
.banner-form-box {
/*	width: 420px;*/
	position: relative;
	margin-left: auto;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 10px 10px 10px rgb(0 0 0 / 8%);
/*	padding: 45px 40px 30px;*/
	margin: 35px 55px 0 auto;
	width:470px;
	padding: 45px 30px 30px;
}
.banner-form-box form .form-group.width50 {
    width: calc(50% - 4px);
}
.banner-form-box .init .wpcf7-response-output {
	display: none !important;
}
.banner-form-box form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	   text-align:left;
}
.banner-form-box:after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	background-image: url(../../images/sb/grid-image.png);
	width: 137px;
	height: 149px;
	margin: -35px -55px 0 0;
}

.banner-form-box .heading-22 {
	color: var(--theme);
	text-align: center;
}

.banner-form-box form {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.banner-form-box form .form-group {
	margin-bottom: 8px;
	width: 100%;
}

.banner-form-box form .form-group>p {
	margin-bottom: 0;
}

.banner-form-box form .form-control {
	width: 100%;
	padding: 14px 18px;
	background: var(--white);
	border: 1px solid #cccccc;
	color: #595a5e;
	font-size: 14px;
	line-height: 1;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	font-family: var(--font-body-family);
	font-weight: normal;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}
.banner-form-box form select.form-control {
    background:url(../../images/sb/drop-select-arrow.svg) no-repeat 96% 50%;
}
.banner-form-box form .form-control:focus {
	border-color: var(--skyblue);
}

.banner-form-box form input[type="submit"] {
	cursor: pointer;
	width: 100%;
	background-color: transparent;
	border-color: transparent;
}

.banner-form-box form .btnbox {
	border: 1px solid var(--theme);
	font-family: var(--font-body-family);
	font-weight: var(--font-weightbold);
	background-color: var(--theme);
	color: var(--white);
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 0;
}

.banner-form-box form .btnbox:hover input[type="submit"] {
	color: var(--theme);
}

.banner-form-box form .btnbox:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	pointer-events: none;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition: -webkit-transform 0.2s ease-out;
	transition: -webkit-transform 0.2s ease-out;
	transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
}

.banner-form-box form .btnbox:hover:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.banner-form .banner-logo {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	margin:-35px 0px 0px -30px;
}

.banner-wrap ul.dlist {
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 30px;
	max-width: 600px;
}

.banner-wrap ul.dlist li::before {
	position: absolute;
	content: "";
	background: url(../../images/sb/icon/check-icon.svg) no-repeat;
	width: 22px;
	height: 22px;
	left: 0;
	top: 0;
	margin-top: 2px;
}

.banner-wrap ul.dlist li {
	font-weight: 500;
	color: var(--white);
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
	font-size: 18px;
	font-weight: 500;
}

.banner-wrap ul.dlist li span {
	color: var(--theme);
	text-decoration: underline;
}

.banner-wrap .banner-left p {
	color: #ffffff;
	margin: 40px 0;
}

/* form message style  */

.wpcf7 form .wpcf7-response-output {
	margin: 0em 0em 1em !important;
	font-size: 14px;
	line-height: 1.2;
	width: 100%;
	padding: 0.7em 1em !important;
}

.banner-form-box form .form-control::placeholder {
	color: #595a5e;
	font-size: 14px;
	font-family: var(--font-body-family) !important;
	font-weight: normal;
}

.banner-form-box .form-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 20px 0 0 0;
	justify-content: center;
	width: 100%;
}

.banner-form-box .form-rating img {
	margin-right: 10px;
}

.banner-form-box .form-rating p {
	font-size: 14px;
	font-weight: 600;
	color: #3e4571;
	line-height: 16px;
	margin-bottom: 0;
}

/**/
.logo-banner-wr {
	display: flex;
	flex-wrap: wrap;
	width: 650px;
	margin: 50px -18px 0;
	justify-content: space-between;
}

.logo-banner-li {
	width: 25%;
	padding: 0 18px;
	text-align: center;
}

.feature-sec {
	border-bottom: 1px solid #e6e6e6;
}

.featured-logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -10px 40px;
	align-items: center;
}

.featured-logo.slick-initialized {
	display: block;
}

.featured-logo .slick-track {
	display: flex;
}

.featured-logo .slick-slide {
	height: auto;
}

.featured-logo .slick-slide>div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
}

.featured-li {
	padding: 0 10px;
	width: 10%;
}

.featured-li:not(:nth-child(-n + 10)) {
	display: none;
}

.featured-li img {
	margin: 0 auto;
}

.title-small {
	font-size: 16px;
	letter-spacing: 3.2px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--theme);
	text-align: center;
	margin-bottom: 40px;
}

.sec-business {
	padding: 100px 0 0 0;
}

ul.business-logo {
	list-style-type: none;
	margin-left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	margin: 0 -5px 60px;
	align-items: center;
}

ul.business-logo li {
	width: 11.11%;
	margin-bottom: 40px;
	padding: 0 5px;
}

.divider {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 80px;
}

.sydneybusiness footer {
	z-index: 0;
}

.footer-wrap p {
	font-size: 14px;
	line-height: 18px;
	color: var(--secondary);
	margin-bottom: 0;
	text-align: center;
}

.footer-wrap {
	border-top: 1px solid #e6e6e6;
}

.footer-wrap {
	border-top: 1px solid #e6e6e6;
	padding: 28px 0;
	text-align: center;
}

.expertise-content {
	max-width: 1080px;
	margin: 0 auto;
}

/*ul.expertise-ul {
    list-style-type: none;
    margin-left: 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
ul.expertise-ul li{
     width:20%;
}
ul.expertise-ul li .expertise-li{
    background-color: var(--white);
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
ul.expertise-ul li.w-150 .expertise-li{
 width:150px;
 height:150px;
}
ul.expertise-ul li.w-130 .expertise-li{
    width:130px;
    height:130px;
}
ul.expertise-ul li.w-160 .expertise-li{
    width:160px;
    height:160px;
} */
/* ul.expertise-ul li:nth-child(-n+5) .expertise-li,
ul.expertise-ul li:nth-last-child(-n+5) .expertise-li {
    margin: 0 auto;
}
ul.expertise-ul li:nth-child(-n+5),
ul.expertise-ul li:nth-last-child(-n+5) {
    padding-left: 140px;
} */
.row-reverse {
	flex-direction: row-reverse;
}

.row-reverse .image-block>img {
	border-radius: 20px 0 0 20px;
}

ul.audit-ul {
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 10px;
}

ul.audit-ul .audit-li .audit-number {
	font-size: 20px;
	font-weight: 600;
	color: var(--theme);
	width: 64px;
	height: 64px;
	border-radius: 100%;
	background: rgb(206, 245, 252);
	background: linear-gradient(90deg, rgba(147, 222, 229, 1) 0%, rgba(204, 233, 225, 1) 110%);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

ul.audit-ul .audit-li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

ul.audit-ul li {
	padding: 25px 0;
	margin-bottom: 0;
}

ul.audit-ul .audit-li .audit-title {
	width: calc(100% - 115px);
	padding-left: 20px;
	font-size: 18px;
	color: var(--theme);
	line-height: 22px;
	font-weight: 600;
	max-width: 220px;
}

ul.audit-ul .audit-li img {
	margin-left: auto;
}

ul.audit-ul li:not(:last-child) {
	border-bottom: 1px solid #e6e6e6;
}

.usp-ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 -15px;
}

.usp-ul .usp-li {
	width: 20%;
	padding: 0 15px;
}

.usp-wrap {
	background: rgb(206, 245, 252);
	background: linear-gradient(90deg, rgba(147, 222, 229, 1) 0%, rgba(204, 233, 225, 1) 100%);
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	padding: 20px 45px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.usp-ul .usp-li .usp-icon {
	width: 70px;
	height: 70px;
	background-color: var(--white);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
}

.usp-ul .usp-label {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: var(--secondary);
	padding-left: 15px;
	width: calc(100% - 70px);
}

.industry-ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
	padding-top: 10px;
}

.industry-ul.slick-initialized {
	display: block;
}

.industry-ul .industry-li {
	width: 25%;
	padding: 0 20px;
}

.industry-ul .industry-li:not(:nth-child(-n + 4)) {
	display: none;
}

.industry-ul .industry-list-box {
	border: 2px solid #57d6ed;
	border-radius: 20px;
	background-color: var(--white);
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	flex-direction: column;
}

.industry-ul .industry-list-top {
	border-bottom: 1px solid #57d6ed;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	/*  padding-bottom: 40px;*/
	padding: 30px 30px;
	background-color: #57d6ed;
	border-radius: 18px 16px 0 0;
	flex: 1;
}

.industry-ul .industry-list-bottom {
	padding: 0 30px 40px;
}

.industry-ul .industry-info p:last-child {
	margin-bottom: 0;
}

.industry-ul .industry-icon {
	width: 74px;
	height: 74px;
	background-color: #f6f9fb;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.industry-ul .industry-info {
	width: calc(100% - 74px);
	padding-left: 12px;
}

.industry-ul .industry-info .heading-20 {
	margin-bottom: 5px;
}

.industry-list-bottom ul {
	margin-left: 0;
	list-style-type: none;
}

.industry-list-bottom ul li {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	color: var(--secondary);
	margin-bottom: 0;
	position: relative;
	padding-left: 35px;
}

.industry-list-bottom ul li:not(:last-child) {
	margin-bottom: 15px;
}

.industry-list-bottom ul li:before {
	position: absolute;
	content: "\f105";
	width: 22px;
	height: 22px;
	background-color: #57d6ed;
	border-radius: 100%;
	left: 0;
	top: 0;
	margin-top: -2px;
	font-family: "FontAwesome";
	font-weight: bold;
	color: var(--white);
	text-align: center;
	font-size: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.industry-ul .slick-track {
	display: flex;
}

.industry-ul .slick-track .slick-slide {
	height: auto;
}

.industry-ul .slick-track .slick-slide>div {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}

.expertise-wrap {
	padding: 40px 0 80px;
}

.expertise-sec {
	position: relative;
}

.expertise-sec .gradient-tp-btm {
	height: calc(100% + 320px);
}

.expertise-sec .gradient-tp-btm:after {
	height: 200px;
}

/**/
.digital-service-section .gradient-tp-btm {
	margin-top: -150px;
}

.digital-service-section {
	position: relative;
}

.digital-service-listing-wrapper {
	display: grid;
	grid-auto-flow: column;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 30px;
}

.digital-service-listing-wrapper .dg-service-block {
	border: 2px solid #57d6ed;
	border-radius: 20px;
	background-color: var(--white);
	padding: 0px;
}

.digital-service-listing-wrapper .dg-service-block .head_icon_wrp {
	padding: 30px 30px;
	background-color: #57d6ed;
	border-radius: 16px 16px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.digital-service-listing-wrapper .dg-service-block .dg_cnt_wrp {
	padding: 30px;
}

.top-header .heading-36:has(+ p) {
	margin-bottom: 8px;
}

.top-header {
	margin-bottom: 35px;
}

.heading-26 {
	font-size: 26px;
	color: var(--theme);
}

.heading-24 {
	font-size: 24px;
	color: var(--theme);
}

.digital-service-listing-wrapper .dg-service-block .icon {
	margin-bottom: 0px;
	width: 74px;
	height: 74px;
	background-color: #f6f9fb;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	padding: 10px;
}

.digital-service-listing-wrapper .dg-service-block .heading-24 {
	width: calc(100% - 74px);
	padding-left: 12px;
	margin-bottom: 0;
}

.digital-service-listing-wrapper .dg-service-block .heading-24+p {
	margin-bottom: 30px;
}

.heading-20 {
	color: var(--theme);
	font-size: 20px;
}

.dg-service-block ul.dlist {
	list-style-type: none;
	margin-left: 0;
}

.dg-service-block ul.dlist li {
	font-weight: 500;
	color: #414144;
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.dg-service-block ul.dlist li::before {
	position: absolute;
	content: "";
	background: url(../../images/sb/icon/list-checkmark.svg) no-repeat;
	width: 22px;
	height: 22px;
	left: 0;
	top: 0;
}

.before-after-img {
	width: 1075px;
	position: sticky;
	align-self: flex-start;
	top: 100px;
	margin-bottom: 90px;
}

.before-after-content {
	width: calc(100% - 1075px);
	padding-right: 100px;
	margin-bottom: 90px;
}

.before-after-content .key-content p:last-of-type {
	margin-bottom: 0;
}

.sub-key-title {
	font-size: 18px;
	color: #414144;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 5px;
}

.sub-key-title:not(:last-of-type)+p {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 20px;
}

ul.key-ul li:first-child .key_content_wrp {
	padding: 10px 0 0 25px;
}

.key_content_wrp .sub-key-title:not(:last-of-type)+p {
	padding-bottom: 15px;
	margin-bottom: 15px;
}

/*
.key-content p {
    margin-left: 10px;
}
.sub-key-title:not(:first-child) {
    padding-left: 10px;
}
*/
.md-font p {
	font-weight: 500;
}

.before-after-slider .twentytwenty-container img {
	width: 100%;
}

.twentytwenty-overlay:hover {
	background: none;
}

.twentytwenty-overlay:hover .twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-before-label {
	opacity: 1;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
	background-color: var(--theme);
}

.twentytwenty-container {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
	top: 100%;
	margin-top: -55px;
	bottom: 0;
	height: max-content;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.23;
	padding: 14px 20px;
	letter-spacing: 0;
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
	-webkit-border-radius: 0 0 0 20px;
	-moz-border-radius: 0 0 0 20px;
	border-radius: 0 0 0 20px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
	-webkit-border-radius: 0 0 20px 0;
	-moz-border-radius: 0 0 20px 0;
	border-radius: 0 0 20px 0;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
	right: 5px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
	left: 76px;
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
	width: 4px;
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
	background-color: var(--theme);
}

.twentytwenty-handle {
	width: 66px;
	height: 66px;
	background-color: var(--theme);
	border: 0;
	margin-left: -33px;
	margin-top: -33px;
}

.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-horizontal .twentytwenty-handle:before {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.twentytwenty-right-arrow,
.twentytwenty-left-arrow {
	border: 0;
	background: url(../../images/sb/icon/arrow-after.svg) no-repeat center;
	width: 20px;
	height: 20px;
	display: block;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
	margin-top: -10px;
}

.twentytwenty-left-arrow {
	background: url(../../images/sb/icon/arrow-before.svg) no-repeat center;
}

.md-font p:last-child {
	margin-bottom: 0;
}

.border-radius-20 {
	border-radius: 20px;
	-webkit-border-radius: 20px;
}

.story-brand-maroondah {
	background: rgb(0, 114, 158);
	background: radial-gradient(circle at top right, rgb(0 114 158) 5%, rgba(0, 57, 100, 1) 60%);
	padding: 50px;
	color: var(--white);
}

.story-caption p {
	margin-bottom: 50px;
	min-height: 50px;
}

.story-logo {
	margin-bottom: 30px;
}

.story-slider:not(.slick-slider) {
	display: flex;
}

.story-slider.slick-slider {
	margin-left: -15px;
	margin-right: -15px;
}

.story-slider .slick-slide {
	margin: 0 15px;
}

.story-slider>.story-block {
	width: calc(33.33% - 30px);
	margin: 0 15px;
}

.story-slider:not(.slick-slider) .story-block:not(:nth-child(-n + 3)) {
	display: none;
}

.count-text {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 5px;
}

.story-info-wrapper {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 50px;
	border: 1px solid #ffffff6b;

	padding: 15px;
	border-radius: 10px;
	background-color: rgb(255 255 255 / 8%);
}

.story-info-content:not(:last-child) {
	border-right: 1px solid rgba(230, 230, 230, 0.15);
	padding-right: 30px;
}

.story-info-wrapper .info-text p,
.story-cl-content .cl-des {
	font-size: 14px;
	margin-bottom: 0;
	line-height: 18px;
}

.story-cl-content {
	background-color: var(--white);
	padding: 20px 60px;
	position: relative;
	color: #414144;
	max-width: 450px;
	margin: -50px auto 100px auto;
}

.story-cl-content::before {
	position: absolute;
	top: -16px;
	left: 59px;
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 16px solid #ffffff;
	z-index: 2;
}

.story-cl-content::after {
	position: absolute;
	top: -24px;
	content: "";
	width: 0;
	height: 0;
	left: 56px;
	border-left: 14px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 20px solid #b2d4e2;
	z-index: 1;
}

.story-cl-content {
	box-shadow: 5px 5px 20px #00396433;
	border: 4px solid #00729e4d;
	border-radius: 10px;
	background: #fff url(../../images/sb/bxs-quote-alt-right.svg) no-repeat left 20px top 20px;
}

.story-cl-content p {
	color: #414144;
	font-size: 14px;
	line-height: 20px;
	font-style: italic;
	margin-bottom: 15px;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-moz-line-clamp: 2;
	height: 40px;
	overflow: hidden;
}

.story-cl-content .cl-name {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}

.story-brand-drjodie {
	background: rgb(185, 86, 78);
	background: radial-gradient(circle at top right, rgb(218 188 176) -1%, rgba(185, 86, 78, 1) 60%);
}

.story-block [class*="story-brand-"] {
	padding: 50px;
	color: var(--white);
}

.story-brand-drjodie+.story-cl-content {
	border-color: rgba(218, 188, 176, 0.3);
}

.story-brand-drjodie+.story-cl-content::after {
	border-bottom: 20px solid rgba(218, 188, 176, 0.3);
}

.story-brand-drjodie+.story-cl-content {
	background: #fff url(../../images/sb/bxs-quote-drjodie.svg) no-repeat left 20px top 20px;
}

.story-brand-footlogics {
	background: rgb(1, 148, 198);
	background: radial-gradient(circle at top right, rgb(148 288 255) 0%, rgba(1, 148, 198, 1) 60%);
}

.story-brand-footlogics+.story-cl-content {
	border-color: rgba(10, 153, 201, 0.3);
	background: #fff url(../../images/sb/bxs-quote-footlogics.svg) no-repeat left 20px top 20px;
}

.slick-next,
.slick-prev {
	width: 30px;
	height: 30px;
	background-color: var(--theme);
	border-radius: 100%;
}

.story-slider .slick-next,
.story-slider .slick-prev {
	top: 35%;
}

.slick-next:hover,
.slick-prev:hover {
	background: #ffe1ae;
}

.slick-next:before {
	content: "\f105";
	font-family: "FontAwesome";
	opacity: 1;
	font-size: 20px;
	font-weight: normal;
}

.slick-prev:before {
	content: "\f104";
	font-family: "FontAwesome";
	opacity: 1;
	font-size: 20px;
	font-weight: normal;
}

.slick-next:hover::before,
.slick-prev:hover::before {
	color: var(--theme);
}

.story-slider .slick-prev {
	left: -40px;
}

.story-slider .slick-next {
	right: -40px;
}

.difference-table {
	display: flex;
	max-width: 1254px;
	margin: 0 auto 30px;
	border: 1px solid #e6e6e6;
	border-radius: 20px;
	background-color: var(--white);
}

.difference-table .df-title {
	max-width: 33.33%;
	flex: 1;
}

.df-table-title-wrap {
	position: relative;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0;

	text-align: left;
}

.df-row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	min-height: 93px;
	padding-left: 16px;
	padding-right: 16px;
	border-bottom: 1px solid rgba(73, 72, 74, 0.1);
	text-align: left;
	align-items: flex-start;
	color: #414144;
	padding: 18px 50px 18px 70px;
}

.df-row:last-child {
	border-bottom: 0;
}

.check-list,
.other-check-list {
	margin-left: 0;
	list-style-type: none;
	padding: 0px;
}

.check-list li,
.other-check-list li {
	position: relative;
	padding: 22px 0;
	padding-left: 32px;
	font-weight: 500;
	margin-bottom: 0;
	min-height: 93px;
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
}

.check-list li:not(:last-child),
.other-check-list li:not(:last-child) {
	border-bottom: 1px solid #e6e6e6;
}

.check-list li::before,
.other-check-list li::before {
	position: absolute;
	content: "";
	background: url(../../images/sb/checkmark.svg) no-repeat;
	width: 22px;
	height: 22px;
	left: 0;
	top: 28px;
}

.pt__item__wrap .check-list li,
.other-check-list li {
	padding: 22px 40px 22px 70px;
}

.pt__item__wrap .check-list li::before,
.other-check-list li::before {
	left: 35px;
}

.other-check-list li::before {
	background: url(../../images/sb/cross-mark.svg) no-repeat;
}

.pt__item.recommend {
	background: #f6f9fb;
}

.pricing__table .pt__option .pt__option__item {
	flex: 1;
	width: auto;
	max-width: 50%;
	margin-right: 0;
}

.pricing__table .pt__option {
	position: relative;
	flex: 1;
}

.pricing__table .pt__option .pt__option__mobile__nav {
	position: absolute;
	z-index: 1;
	top: 0%;
	bottom: auto;
	left: 0%;
	right: auto;
	display: none;
	justify-content: space-between;
	width: 100%;
}

.pricing__table .pt__option .pt__option__item .pt__item {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;

	overflow: hidden;
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn.swiper-button-disabled {
	background-color: #c0beb6;
	pointer-events: none;
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn svg {
	width: 16px;
	color: #faf7f2;
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__item__wrap {
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	padding: 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #414144;
	position: relative;
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 70px;
	padding-left: 16px;
	padding-right: 16px;
	font-size: 16px;
	font-weight: 300;
	border-bottom: 1px solid rgba(73, 72, 74, 0.1);
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:first-child {
	border-bottom: 0;
	font-size: 20px;
	font-weight: 600;
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:last-child {
	display: inline-flex;
	padding: 20px 15px;
	align-items: center;
	border-bottom: 0;
}

.df-row .heading-26 {
	margin-bottom: 0;
}

.pt__item.recommend {
	background: var(--theme);
}

.pt__item.recommend .check-list li,
.pt__item.recommend .heading-26 {
	color: var(--white);
}

.whychoose-content {
	max-width: 1254px;
	margin: 0 auto;
}

.real-story-section+.call-action {
	margin-bottom: 200px;
}

.whychoose-section {
	position: relative;
}

.whychoose-section .gradient-tp-btm::before,
.whychoose-section .gradient-tp-btm {
	margin-top: 0;
}

.diffrence-wrapper {
	margin-top: -124px;
}

.before-after-content ul.key-ul {
	margin-bottom: 0;
}

.before-after-content ul.key-ul li:last-child {
	border-bottom: 0;
}

.before-after-content ul.key-ul li:last-child .key-content {
	padding-left: 0;
}

.call-action .call-content {
	transform: scale(0.7);
	transition: all 0.8s ease-in-out;
}

.call-action.scalecta .call-content {
	transform: scale(1);
}

.fixed-header .head-logo a>img {
	filter: none;
}

.fancybox-button {
	background-color: var(--skyblue);
	color: var(--white);
}

.banner-form .wpcf7-spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.before-after-img {
	animation: scale 2s linear infinite;
	-webkit-animation: scale 2s linear infinite;
	-moz-animation: scale 2s linear infinite;
}

@keyframes scale {
	50% {
		-webkit-transform: scale(1.01);
		-moz-transform: scale(1.01);
		-ms-transform: scale(1.01);
		-o-transform: scale(1.01);
		transform: scale(1.01);
	}
}

/* offer  christmas */
.hdr_logo_txt {
	opacity: 0;
	position: relative;
}

.fixed-header .hdr_logo_txt {
	opacity: 1;
}

.form-group.frm_chkbox .form-control {
	padding: 0;
	border: 0;
	margin-left: 0;
}

.form-group.frm_chkbox .form-control>.wpcf7-list-item {
	margin: 0;
}

.form-group.frm_chkbox .form-control label {
	color: var(--secondary);
	margin: 0;
	text-transform: inherit;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	cursor: pointer;
}

.form-group.frm_chkbox .form-control label>input {
	margin: 0 6px -2px 0;
}

img.offerimg {
	position: absolute;
	top: 0;
	display: block;
	margin: 0 auto;
	margin-top: -30px;
}

#wonderplugin-box-1 .wonderplugin-box-content {
	cursor: pointer;
}

#wonderplugin-box-1.wonderplugin-box .wonderplugin-box-top {
	padding: 0 !important;
}

#wonderplugin-box-1.wonderplugin-box .wonderplugin-box-bottom {
	padding: 0 !important;
}

#wonderplugin-box-1 .wonderplugin-box-closebutton {
	background-color: #ffffff;
	margin: 10px !important;
}

.hdr_logo_txt p {
	color: #cd1c21;
	font-weight: bold;
}

.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox {
	border: 0;
	padding: 0;
}

.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox .wpcf7-list-item {
	margin-left: 0;
}

.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label {
	color: var(--theme);
	font-size: 14px;
	text-transform: initial;
}

.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label>input {
	position: absolute;
	left: 0;
	top: 0px;
	margin: 0;
}

.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label {
	position: relative !important;
}

.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label .wpcf7-list-item-label {
	display: inline-flex;
	padding-left: 20px;
	font-size: 14px;
	font-weight: normal;
	line-height: 14px;
}

/**/
@media (min-width: 577px) {
	ul.business-logo li.toggleable {
		display: block !important;
	}

	.loadmoretext {
		display: none;
	}

	.head-logo a>img {
		filter: invert(1) brightness(100);
	}
}

@media (max-width: 1860px) {
	.story-slider .slick-prev {
		left: 20px;
	}

	.story-slider .slick-next {
		right: 20px;
	}

	.before-after-content {
		padding-right: 70px;
	}
}

@media (max-width: 1700px) {}

@media (max-width: 1600px) {
	.banner-wrap .banner-left {
		/* width: 720px; */
	}

	.image-block {
		width: 700px;
	}

	.content-block {
		width: calc(100% - 700px);
		max-width: none;
		padding-left: 30px;
		padding-right: 15px;
	}

	.row-reverse .content-block {
		padding-right: 30px;
		padding-left: 15px;
	}

	ul.client-say li {
		padding: 0 10px 40px;
	}

	ul.client-say {
		margin-bottom: -40px;
	}

	.industry-ul .industry-li {
		padding: 0 10px;
	}

	.industry-ul {
		margin: 0 -10px;
	}

	.usp-ul .usp-li {
		padding: 0 10px;
	}

	.count-text {
		font-size: 30px;
	}

	.story-slider .slick-slide {
		margin: 0 10px;
	}

	.story-slider.slick-slider {
		margin-left: -10px;
		margin-right: -10px;
	}

	.story-cl-content {
		max-width: 90%;
		margin-bottom: 80px;
	}

	/*
  .digital-service-listing-wrapper .dg-service-block {
    padding: 40px;
  }
*/

	.before-after-content {
		padding-right: 50px;
		width: calc(100% - 66%);
		margin-bottom: 70px;
	}

	.before-after-img {
		width: 66%;
	}

	.banner-form-box {
		margin: 35px 15px 0 0px;
		margin-left: 105px;
	}

	.banner-form-box:after {
		margin: -35px -15px 0 0;
	}
		.banner-form .banner-logo{
		    margin: -35px 0px 0px 0px;
	}
}

@media (max-width: 1440px) {
	.banner-sec .banner-wrap {
		padding: 0 15px;
	}

	.banner-form .banner-logo {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		margin: -35px 0px 0px -5px;
		width: 140px;
	}

	.banner-wrap .banner-right {
		width: 580px;
		max-width: none;
	}

	.banner-wrap .banner-left {
		width: calc(100% - 580px);
	}

	.image-block {
		width: 500px;
	}

	.content-block {
		width: calc(100% - 500px);
		max-width: none;
		padding-left: 30px;
	}

	ul.key-ul li {
		padding: 20px 0;
	}

	.key-title {
		font-size: 18px;
		line-height: 22px;
	}

	.client-ovarlay .video-icon {
		width: 45px;
	}

	.cl-testimonial img {
		width: auto;
		max-width: 160px;
	}

	.cl-testimonial {
		width: 200px;
		height: 55px;
		margin: 0 0 -33px 20px;
		padding: 10px;
	}

	ul.client-say li {
		width: 33.33%;
	}

	.sec-business {
		padding: 80px 0 0 0;
	}

	ul.business-logo li {
		width: 14.28%;
		margin-bottom: 30px;
	}

	ul.business-logo {
		margin: 0 -5px 50px;
	}

	.industry-ul .industry-li:not(:nth-child(-n + 3)) {
		display: none;
	}

	.industry-ul .industry-li {
		width: 33.33%;
	}

	.industry-ul .slick-next {
		right: 20px;
	}

	.industry-ul .slick-prev {
		left: 20px;
	}

	.industry-ul .slick-next,
	.industry-ul .slick-prev {
		margin-top: 15px;
	}

	.df-row {
		padding: 20px 30px;
	}

	.pt__item__wrap .check-list li,
	.other-check-list li {
		padding: 22px 30px 22px 55px;
	}

	.pt__item__wrap .check-list li::before,
	.other-check-list li::before {
		left: 20px;
	}

	.story-info-content:not(:last-child) {
		padding-right: 15px;
	}

	.story-info-wrapper {
		grid-gap: 15px;
	}

	.story-cl-content {
		padding: 20px 20px 20px 50px;
		background-position: left 12px top 20px;
	}

	.story-block [class*="story-brand-"] {
		padding: 40px;
	}

	.count-text {
		font-size: 25px;
	}

	.story-cl-content {
		margin-bottom: 60px;
	}

	.digital-service-listing-wrapper {
		grid-gap: 20px;
	}

	.heading-24 {
		font-size: 22px;
	}

	.before-after-img {
		width: 600px;
	}

	.before-after-content {
		padding-right: 50px;
		width: calc(100% - 600px);
	}

	.hdr_logo_txt {
		width: calc(100% - (180px + 320px));
		text-align: center;
	}

	.hdr_logo_txt p {
		letter-spacing: 0;
		text-wrap-style: balance;
		text-align: center;
		line-height: 18px;
	}

	.hdr_logo_txt {
		position: initial;
	}

	img.offerimg {
		position: absolute;
		top: 0;
		display: block;
		margin: 0 auto;
		margin-top: -4px;
		object-fit: contain;
		object-position: 0 0;
	}

}

@media (max-width: 1200px) {
	.banner-form .banner-logo {
		width: 98px;
		height:98px;
		margin: -15px 0px 0px -5px;
	}

	.logo-banner-li {
		padding: 0 8px;
	}

	.logo-banner-wr {
		margin: 50px -8px 0;
		width: 100%;
	}

	.banner-wrap .banner-right {
		width: 480px;
		max-width: none;
	}

	.banner-wrap .banner-left {
		width: calc(100% - 480px);
	}

	.banner-form-box {
		width: 410px;
		margin: 35px 20px 0 auto;
	}

	.call-action .call-content {
		padding: 60px;
	}

	.sec-business {
		padding: 60px 0 0 0;
	}

	.divider {
		margin-bottom: 60px;
	}

	.industry-ul .industry-list-box {
		/*    padding: 30px 25px;*/
		padding: 0;
	}

	.industry-ul .industry-list-top {
		margin-bottom: 25px;
		padding: 25px 20px;
	}

	.industry-ul .industry-list-bottom {
		padding: 0px 20px 25px;
	}

	.industry-ul .industry-icon {
		width: 60px;
		height: 60px;
	}

	.industry-ul .industry-info {
		width: calc(100% - 60px);
		padding-left: 10px;
	}

	.usp-wrap {
		padding: 20px 30px;
	}

	.usp-ul .usp-li .usp-icon {
		width: 50px;
		height: 50px;
		padding: 6px;
	}

	.usp-ul .usp-label {
		padding-left: 15px;
		width: calc(100% - 50px);
		font-size: 16px;
		line-height: 20px;
	}

	.usp-ul .usp-li {
		width: 33.33%;
		margin-bottom: 20px;
	}

	.usp-ul {
		margin: 0 -15px -20px;
	}

	ul.business-logo li {
		width: 16.66%;
	}

	.featured-li:not(:nth-child(-n + 7)) {
		display: none;
	}

	.featured-li {
		width: 14.28%;
	}

	.pt__item__wrap .check-list li,
	.other-check-list li {
		padding: 22px 15px 22px 40px;
	}

	.pt__item__wrap .check-list li::before,
	.other-check-list li::before {
		left: 10px;
		width: 18px;
		height: 18px;
		background-size: 100%;
	}

	.story-block [class*="story-brand-"] {
		padding: 30px;
		border-radius: 15px;
		-webkit-border-radius: 15px;
	}

	.story-cl-content {
		margin-bottom: 40px;
	}

	.story-slider .slick-next,
	.story-slider .slick-prev {
		top: 40%;
	}

	.digital-service-listing-wrapper .dg-service-block {
		/*    padding: 25px;*/
		border-radius: 10px;
	}

	.before-after-content {
		padding-right: 30px;

		margin-bottom: 50px;
	}

	.heading-26 {
		font-size: 24px;
	}

	.before-after-img {
		width: 500px;
	}

	.before-after-content {
		width: calc(100% - 500px);
	}

	.banner-form-box:after {
		margin: -35px -20px 0 0;
	}

	.digital-service-listing-wrapper .dg-service-block .head_icon_wrp {
		padding: 25px 20px;
	}

	.digital-service-listing-wrapper .dg-service-block .dg_cnt_wrp {
		padding: 25px 20px;
	}

	.digital-service-listing-wrapper .dg-service-block .icon {
		width: 60px;
		height: 60px;
	}

	.digital-service-listing-wrapper .dg-service-block .heading-24 {
		width: calc(100% - 60px);
		padding-left: 10px;
	}

	.digital-service-listing-wrapper .dg-service-block .head_icon_wrp {
		border-radius: 6px 6px 0 0;
	}

	img.offerimg {
		left: 0;
		right: 0;
	}
}

@media (max-width: 992px) {
	.sydneybusiness footer {
		padding: 0;
	}

	ul.business-logo li {
		width: 20%;
		margin-bottom: 20px;
		padding: 0 15px;
	}

	ul.business-logo {
		margin: 0 -15px 50px;
	}

	.head-logo {
		width: 115px;
	}

	.header-wrap {
		padding: 10px 0;
	}

	.banner-wrap .banner-right {
		max-width: 480px;
		width: 100%;
		margin: 0 auto;
	}

	.banner-wrap .banner-left {
		width: 100%;
		margin-bottom: 50px;
	}

	.logo-banner-wr {
		margin: 20px -8px 0;
	}

	.banner-sec .banner-wrap {
		padding: 0;
	}

	.banner-wrap ul.dlist li {
		font-size: 16px;
		line-height: 20px;
	}

	.banner-sec {
		padding: 40px 0;
	}

	.image-block {
		width: 100%;
		position: relative;
		top: 0;
		margin-bottom: 40px;
	}

	.container.container-full {
		padding-left: 15px;
		padding-right: 15px;
	}

	.image-block>img,
	.row-reverse .image-block>img {
		border-radius: 10px;
	}

	.content-block {
		width: 100%;
		padding-left: 0;
	}

	ul.key-ul li:first-child {
		padding-top: 0;
	}

	.key-img>img {
		margin: 5px auto 0;
		width: 50px;
	}

	ul.client-say li {
		padding: 0 8px 30px;
	}

	ul.client-say {
		margin-bottom: -30px;
	}

	.call-action .call-content {
		padding: 50px;
	}

	.expertise-wrap {
		padding: 40px 0;
	}

	.sec-business {
		padding: 50px 0 0 0;
	}

	.divider {
		margin-bottom: 50px;
	}

	.industry-ul {
		padding-top: 0;
	}

	.row-reverse .content-block {
		padding-left: 0;
		padding-right: 0;
	}

	ul.audit-ul li:first-child {
		padding-top: 0;
	}

	ul.audit-ul li {
		padding: 20px 0;
	}

	.sydneybusiness header {
		border-bottom: 1px solid rgb(255 255 255 / 20%);
	}

	.industry-ul .industry-li:not(:nth-child(-n + 2)) {
		display: none;
	}

	.industry-ul .industry-li {
		width: 50%;
	}

	.pricing__table .pt__option .pt__option__item .pt__item {
		/* border: 1px solid #ddd; */
		background-color: #f6f9fb;
		border-top-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.pricing__table .pt__option .pt__option__item .pt__item.recommend {
		background: var(--theme);
	}

	.digital-service-listing-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-flow: initial;
	}

	.before-after-content {
		padding-right: 0;
	}

	.before-after-img,
	.before-after-content {
		width: 100%;
		margin-bottom: 40px;
	}

	.pt__option .pt__item__wrap .df-row {
		align-items: center;
	}

	.pricing__table .pt__option .pt__option__item {
		width: 100%;
		max-width: none;
		flex: none;
	}

	.pricing__table .pt__option .pt__option__slider {
		overflow: hidden;
	}

	.difference-table .df-title,
	.pricing__table .pt__option {
		max-width: 50%;
	}

	.df-row {
		padding: 15px 30px;
	}

	.pricing__table .pt__option .pt__option__mobile__nav {
		z-index: 2;
		top: 40px;
		display: flex;
		grid-column-gap: 8px;
		grid-row-gap: 8px;
		justify-content: space-between;
		width: 110%;
		margin-left: -5%;
	}

	.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30px;
		height: 30px;
		color: #fff;
		border-radius: 50%;
		background-color: var(--theme);
		transition: 0.25s;
	}

	.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn.swiper-button-disabled {
		background-color: #c0beb6;
		pointer-events: none;
	}

	.difference-table {
		max-width: 96%;
	}

	.story-slider>.story-block {
		width: calc(50% - 20px);
		margin: 0 10px;
	}

	.story-slider:not(.slick-slider) .story-block:not(:nth-child(-n + 2)) {
		display: none;
	}

	.real-story-section+.call-action {
		margin-bottom: 170px;
	}

	.hdr_logo_txt p {
		letter-spacing: 0;
		text-wrap-style: unset;
		text-align: center;
		margin: 0 auto;
		font-size: 14px;
		line-height: 18px;
	}

	.hdr_logo_txt {
		width: calc(100% - (130px + 300px));
		text-align: center;
		margin: 0 auto;
	}

	.hdr_logo_txt {
		text-align: center;
		margin: 0 auto;
		opacity: 1;
		position: absolute;
		top: 0;
		width: 100%;
		left: 0;
		padding: 25px 0 5px;
		height: 55px;
		margin-top: -55px;
		background-color: #ffffff;
		border-bottom: 1px solid #efefef;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.sydneybusiness header {
		margin-top: 0px;
	}

	.fixed-header .hdr_logo_txt {
		background-color: #ffffff;
	}
}

@media (max-width: 768px) {
	.digital-service-listing-wrapper .dg-service-block .head_icon_wrp {
		border-radius: 4px 4px 0 0;
	}

	.industry-ul .industry-list-top {
		border-radius: 4px 4px 0 0;
	}

	.banner-left .banner_txt {
		margin-top: 20px;
		line-height: 22px;
	}

	button,
	.landing-page .button,
	.landing-page button[type="submit"],
	.landing-page input[type="submit"] {
		padding: 19px 24px;
	}

	.title-small {
		font-size: 14px;
		letter-spacing: 1.4px;
		line-height: 18px;
		margin-bottom: 20px;
	}

	.featured-logo {
		margin: 0 -10px 20px;
	}

	.banner-sec {
		padding: 30px 0;
	}

	[class*="heading-"],
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin-bottom: 10px;
	}

	.cl-testimonial {
		width: auto;
		height: 48px;
		margin: 0 0 -20px 24px;
		padding: 2px 10px;
		max-width: 200px;
	}

	.cl-testimonial img {
		width: auto;
		max-width: 120px;
	}

	.cl-testimonial:before {
		height: 18px;
		width: 14px;
		margin-left: 35px;
		margin-top: -17px;
	}

	ul.client-say .cl-li>img,
	ul.client-say .cl-li,
	.client-ovarlay,
	.cl-testimonial,
	.call-action .call-content,
	.industry-ul .industry-list-box,
	.cl-testimonial {
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	.sec-business {
		padding: 40px 0 0 0;
	}

	.divider {
		margin-bottom: 40px;
	}

	.industry-ul.slick-slider .slick-list {
		padding-left: 0 !important;
	}

	.top-header {
		margin-bottom: 25px;
	}

	ul.audit-ul .audit-li .audit-number {
		width: 54px;
		height: 54px;
		font-size: 16px;
	}

	ul.audit-ul .audit-li .audit-title {
		width: calc(100% - 105px);
		padding-left: 20px;
		font-size: 16px;
		line-height: 22px;
	}

	ul.audit-ul {
		padding-top: 10px;
	}

	.usp-wrap {
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		padding: 20px;
	}

	.usp-ul .usp-li .usp-icon {
		width: 42px;
		height: 42px;
	}

	.usp-ul .usp-label {
		width: calc(100% - 42px);
		font-size: 14px;
		line-height: 18px;
		padding-left: 8px;
	}

	.usp-ul .usp-li {
		padding: 0 5px;
		margin-bottom: 10px;
	}

	.usp-ul {
		margin: 0 -5px -10px;
	}

	.industry-ul .industry-list-box {
		padding: 0px;
	}

	ul.business-logo li {
		width: 25%;
	}

	.featured-li:not(:nth-child(-n + 5)) {
		display: none;
	}

	.featured-li {
		width: 20%;
	}

	.industry-ul .industry-li:not(:nth-child(-n + 1)) {
		display: none;
	}

	.industry-ul .industry-li {
		width: 100%;
	}

	.gradient-tp-btm {
		background: transparent linear-gradient(0deg, #ffe1ae 0%, #57d6ed 100%) 0% 0% no-repeat padding-box;
	}

	.df-row {
		min-height: 103px;
		font-size: 16px;
		line-height: 20px;
	}

	.pt__item__wrap .check-list li,
	.other-check-list li {
		padding: 20px 15px 20px 40px;
	}

	.count-text {
		font-size: 22px;
	}

	.story-slider.slick-slider .slick-list {
		padding-left: 0 !important;
	}

	.digital-service-listing-wrapper {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.digital-service-listing-wrapper .dg-service-block {
		/*    padding: 20px;*/
		border-radius: 5px;
	}

	.difference-table {
		margin-top: 20px;
	}

	.story-cl-content,
	.story-brand-drjodie+.story-cl-content,
	.story-brand-footlogics+.story-cl-content {
		padding: 15px 15px 15px 35px;
		background-position: left 10px top 18px;
		background-size: 15px;
	}

	.heading-20 {
		font-size: 18px;
	}

	.heading-26 {
		font-size: 22px;
	}

	.digital-service-listing-wrapper .dg-service-block .heading-24+p {
		min-height: auto;
	}

	.twentytwenty-handle {
		width: 40px;
		height: 40px;
		margin-left: -20px;
		margin-top: -20px;
	}

	.pt__item__wrap .check-list li,
	.other-check-list li {
		padding: 15px 15px 15px 40px;
		font-size: 16px;
		min-height: 103px;
		/* font-size: 14px;
        line-height: 20px; */
	}

	.check-list li::before,
	.other-check-list li::before {
		top: 18px;
	}

	.df-row {
		padding: 15px 20px;
		min-height: 103px;
	}

	.story-block [class*="story-brand-"] {
		padding: 25px 20px;
		border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	.digital-service-listing-wrapper .dg-service-block .icon img {
		width: 48px;
	}

	/*
  .digital-service-listing-wrapper .dg-service-block {
    padding: 30px;
  }
*/

	.digital-service-listing-wrapper .dg-service-block .heading-24+p,
	.digital-service-listing-wrapper .dg-service-block .heading-20 {
		margin-bottom: 15px;
	}

	.twentytwenty-left-arrow,
	.twentytwenty-right-arrow {
		margin-top: -7px;
	}

	.twentytwenty-right-arrow,
	.twentytwenty-left-arrow {
		width: 12px;
		height: 13px;
		background-size: cover;
	}

	.twentytwenty-right-arrow {
		margin-right: -10px;
	}

	.twentytwenty-left-arrow {
		margin-left: -10px;
	}

	ul.client-say li {
		width: 50%;
	}

	.banner-form .banner-logo {
		margin-left: -22px;
	}

	.before-after-img {
		animation: none;
		-webkit-animation: none;
		-moz-animation: none;
	}

	.hdr_logo_txt p {
		font-size: 12px;
		line-height: 16px;
	}

	.hdr_logo_txt {
		padding: 15px 0 10px;
	}
}

@media (max-width: 576px) {

	.sydneybusiness header,
	.sydneybusiness header.fixhead {
		position: sticky;
		top: 0;
		z-index: 999;
		width: 100%;
		background-color: #ffffff !important;
	}

	.head-right li.bottom-btn {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
		border-radius: 0;
		background: var(--theme);
		right: 0;
		margin-top: 65px;
	}

	.head-right li.bottom-btn .button-theme,
	.head-right li.bottom-btn .btn-theme {
		padding: 14px 0;
		width: 100%;
		border-radius: 0;
	}

	.banner-wrap ul.dlist li {
		font-size: 14px;
		line-height: 18px;
	}

	.banner-form .banner-logo {
		width: 90px;
		margin: -50px auto 0;
		left: 0;
		right: 0%;
		top: 0;
		height: 90px;
	}

	.banner-form-box .heading-22 {
		font-size: 16px;
	}

	banner-form-box:after {
		margin: -20px -20px 0 0;
	}

	.banner-sec {
		padding: 25px 0 40px;
	}

	.key-detail {
		font-size: 14px;
		line-height: 18px;
	}

	.key-img:before {
		width: 40px;
		height: 40px;
	}

	.key-content {
		width: calc(100% - 50px);
		padding-left: 20px;
	}

	.key-img {
		width: 50px;
	}

	ul.key-ul li {
		padding: 18px 0;
	}

	.image-block {
		margin-bottom: 30px;
	}

	ul.client-say li {
		width: 50%;
		padding: 0 8px 13px;
	}

	.client-ovarlay .video-icon {
		width: 28px;
	}

	ul.client-say {
		margin: 0 -8px -30px;
	}

	.cl-testimonial {
		width: 100px;
		margin: 0 0 -13px 14px;
		padding: 4px 10px;
		max-width: 100px;
		border-radius: 5px;
		height: 28px;
	}

	.cl-testimonial img {
		width: auto;
		max-width: 100%;
		height: 100%;
	}

	.cl-testimonial:before {
		height: 12px;
		width: 10px;
		margin-left: 28px;
		margin-top: -11px;
	}

	.landing-page p,
	.landing-page ul li,
	.landing-page ol li {
		font-size: 14px;
		line-height: 20px;
	}

	.call-action .call-content {
		border-radius: 5px;
		padding: 40px;
	}

	.expertise-wrap {
		padding: 25px 0;
	}

	.key-title {
		margin-bottom: 5px;
	}

	ul.audit-ul .audit-li {
		text-align: left;
	}

	.key-content {
		text-align: left;
	}

	.usp-ul .usp-li {
		width: 50%;
	}

	.usp-wrap {
		padding: 10px 15px;
	}

	.usp-ul .usp-li:last-child {
		width: 100%;
	}

	.usp-ul .usp-li:last-child .usp-label {
		width: auto;
	}

	.footer-wrap {
		padding: 20px 0 64px;
	}

	.footer-wrap p {
		line-height: 20px;
	}

	.industry-ul .industry-icon {
		width: 50px;
		height: 50px;
	}

	.industry-ul .industry-info {
		width: 100%;
		padding-left: 0px;
		margin-top: 10px;
	}

	.industry-ul .industry-list-top {
		flex-direction: column;
	}

	.industry-list-bottom ul li {
		font-size: 14px;
		line-height: 18px;
		padding-left: 28px;
	}

	.industry-list-bottom ul li:before {
		width: 18px;
		height: 18px;
	}

	ul.business-logo li {
		width: 33.33%;
	}

	ul.business-logo {
		margin: 0 -15px 20px;
	}

	.loadmoretext {
		font-size: 16px;
		font-weight: 600;
		line-height: 1;
		color: var(--theme);
		font-family: var(--font-body-family);
		text-align: center;
		display: block;
		margin-bottom: 30px;
	}

	.featured-li:not(:nth-child(-n + 4)) {
		display: none;
	}

	.featured-li {
		width: 25%;
	}

	.banner-wrap .banner-right {
		width: 100%;
	}

	.banner-form-box {
		width: 100%;
		max-width: unset;
		padding: 45px 20px 20px;
		margin: 20px 10px 0 auto;
	}

	.banner-form-box:after {
		margin: -35px 0px 0 0;
	}

	.pricing__table .pt__option .pt__option__item .pt__item .pt__row:last-child a {
		padding: 12px 20px;
	}

	.story-slider.slick-slider {
		margin-left: -5px;
		margin-right: -5px;
	}

	.story-slider .slick-slide {
		margin: 0 5px;
	}

	.story-caption p,
	.dg-service-block ul.dlist li {
		font-size: 14px;
		line-height: 18px;
	}

	.dg-service-block ul.dlist li {
		padding-left: 22px;
	}

	.dg-service-block ul.dlist li::before {
		width: 16px;
		height: 16px;
		left: 0;
		top: 0px;
		background-size: 100% 100%;
	}

	.story-info-wrapper .info-text p,
	.story-cl-content .cl-des,
	.story-cl-content p {
		font-size: 12px;
	}

	.story-cl-content p {
		height: 30px;
		line-height: 16px;
	}

	.heading-20 {
		font-size: 16px;
	}

	.sub-key-title:not(:last-of-type)+p {
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	ul.key-ul li {
		padding: 20px 0;
	}

	.key-content {
		width: calc(100% - 45px);
		padding-left: 15px;
	}

	.key-img {
		width: 45px;
	}

	.key-title {
		font-size: 18px;
		line-height: 1.2;
	}

	.difference-table .df-title {
		max-width: 40%;
	}

	.pricing__table .pt__option {
		max-width: 60%;
	}

	.pt__item__wrap .check-list li,
	.other-check-list li {
		padding: 15px 5px 15px 30px;
		font-size: 14px;
		line-height: 18px;
		min-height: 103px;
	}

	.pt__item__wrap .check-list li::before,
	.other-check-list li::before {
		width: 15px;
		height: 15px;
		left: 8px;
	}

	.df-row {
		padding: 15px 15px;
		min-height: 103px;
		font-size: 14px;
		line-height: 18px;
	}

	.df-table-title-wrap .df-row:not(:first-child) {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.pricing__table .pt__option .pt__option__item .pt__item .pt__item__wrap .heading-26 {
		font-size: 18px;
	}

	.pricing__table .pt__option .pt__option__item .pt__item {
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.difference-table {
		border-radius: 10px;
	}

	.head-logo a>img {
		/*    filter:invert(1) brightness(100);*/
	}

	.sec-keycontent {
		text-align: center;
	}

	.real-story-section+.call-action {
		margin-bottom: 160px;
	}

	.banner-form-box form .form-group {
		margin-bottom: 12px;
	}

	.banner-form-box form .form-control {
		padding: 10px 12px;
	}

	.banner-form-box form input[type="submit"] {
		padding: 18px 12px;
		font-size: 12px;
	}

	.landing-page {
		margin-top: 44px;
	}

	.banner-form-box .form-rating p {
		font-size: 12px;
	}

	.banner-form-box .form-rating img {
		margin-right: 5px;
	}

	.digital-service-listing-wrapper .dg-service-block .head_icon_wrp {
		border-radius: 2px 2px 0 0;
	}

	.digital-service-listing-wrapper .dg-service-block .icon {
		margin-bottom: 5px;
	}

	.digital-service-listing-wrapper .dg-service-block .head_icon_wrp {
		flex-direction: column;
		align-items: flex-start;
	}

	.digital-service-listing-wrapper .dg-service-block .heading-24 {
		width: 100%;
		padding-left: 0;
	}

	ul.key-ul li:first-child .key_content_wrp {
		padding: 10px 0 0 15px;
	}

	.hdr_logo_txt {
		height: 48px;
		margin-top: -48px;
		background-color: #ffffff;
		padding: 15px 0 5px;
	}

	.hdr_logo_txt p {
		font-size: 12px;
		line-height: 1;
	}

	.sydneybusiness header {
		margin-top: 0px;
	}

	.head-right li.bottom-btn {
		margin-top: 65px;
	}

	.sydneybusiness header,
	.sydneybusiness header.fixhead {
		top: 0px;
	}

	img.offerimg {
		margin-top: 0;
	}

	.banner-left .banner_txt {
		font-weight: 400;
		font-size: 16px;
	}

	.banner-left .heading-60 span.noborder,
	.banner-left .heading-60 span.fullbg {
		margin-top: 10px;
	}

	.banner-left .heading-60 br {
		display: none;
	}
	.banner-form-box form .form-group.width50 {
    width:100%;
}
}

@media (max-width: 370px) {
	.banner-form-box .heading-22 {
		font-size: 13px;
	}

	.banner-form .banner-logo {
		width: 80px;
	}

	.banner-form-box {
		width: 100%;
	}
}

.offer_link {
	right: 0;
	position: absolute;
	background: #3e4571;
	padding: 0 15px;
	border-radius: 5px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-family: var(--font-body-family);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
}

.offer_link:hover {
	color: #3e4571;
	background: #fff;
	border: 1px solid #3e4571;
	text-decoration: none;
}

@media (max-width: 576px) {
	.offer_link {
		position: relative;
		margin-top: 5px;
		font-size: 0.75rem;
	}
}

.holiday-header {
	justify-content: center;
}

/* .holiday-header img.offerimg {
	top: 70px;
} */
.holiday-header.fixed-header .hdr_logo_txt {
	/* min-width: 1024px; */
	width: 100%;
	display: flex;
	justify-content: center;
}

.holiday-header.fixed-header .hdr_logo_txt p {
	/* display: contents; */
	text-align: center;
	align-items: center;
}

.holiday-header.fixed-header img.offerimg {
	opacity: 0.6;
	width: 100%;
	top: -76px;
}

.holiday-header.fixed-header .offer_link {
	position: relative;
	margin-left: 25px;
	padding: 5px 15px;
	margin-top: -5px;
}

@media (max-width: 576px) {
	.holiday-header .hdr_logo_txt {
		margin-top: 130px;
	}

	.holiday-header.fixed-header .offer_link {
		margin-left: 0;
		margin-top: 5px;
	}

	.holiday-header.fixed-header .hdr_logo_txt p {
		margin-top: -15px;
	}

	.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label>input {
		position: absolute;
		left: 0;
		top: 0px;
	}

	.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label .wpcf7-list-item-label {
		display: inline-flex;
		padding-left: 20px;
		font-size: 11px;
		font-weight: 600;
		line-height: 14px;
	}

	.sydneybusiness .banner-form-box form .form-control.wpcf7-checkbox label {
		position: relative !important;
	}
}