/* Enter Your Custom CSS Here */
/* General */
html {
	overflow-x: hidden;
}
body {
	font-family:'Muli', sans-serif;
	overflow-x: hidden;
}
body::before, body::after{
	display: none !important;
}
#page {
  margin: 0;
	background: #f3f3f3;
}
.site-inner {
  max-width: 100%;
}
#content {
	padding: 0;
}
a:focus,
button:focus {
	outline: none;
}
#content {
	background: #ffffff;
}
/* CONTAINER */
.my-container {
  width: 100%;
  max-width: 1482px;
  display: block;
  margin: 0 auto;
	position: relative;
}
.clear {
	display: block;
	margin: 0 auto;
	width: 100%;
	clear: both;
}
.inner-sec {
  position: relative;
}
/* Font Sizes */
p {
	font-family:'Lato', sans-serif;
	font-size: 24px;
	line-height: 45px;
	color:#575757;
	margin-bottom: 30px;
}
p:last-child {
	margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6{
	font-family:'Muli', sans-serif;
	color:#575757;
}
h1 {
	font-size: 104px;
	line-height: 120px;
}
h2 {
	font-size: 60px;
	line-height: 70px;
}
h3 {
	font-size: 34px;
	line-height: 40px;
}
h4 {
	font-size: 26px;
	line-height: 32px;
}
h5 {
	font-size: 20px;
	line-height: 25px;
}
a {
	font-family:'Muli', sans-serif;
	font-size: 21px;
	line-height: 26px;
}
/** Header **/
#masthead {
	padding: 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
	margin-top: 100px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
#masthead.sticky-header {
  margin-top: 0;
  background-color: #f3f3f3;
	padding: 15px 0
}
#masthead .site-branding {
  width: auto;
  float: left;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
#masthead.sticky-header .site-branding {
   width: 150px;
}
#masthead.sticky-header #site-header-menu {
	margin: 0;
}
#site-header-menu {
  float: right;
	margin-right: 50px;
}
#masthead nav ul li {
	position: relative;
}
#masthead nav ul li a {
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    padding: 20px 35px;
		position: relative;
}
#masthead nav ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 70%;
	height: 2px;
	background: #e49124;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform .4s ease;
	-moz-transition: transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
}
#masthead nav ul li:hover a::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}
#masthead nav ul li.unique:hover a::before, #masthead nav ul li.nav-search:hover a::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
}
#masthead nav ul li.unique {
	border: 3px solid #e49124;
	border-radius: 100px;
	width: 200px;
	display: inline-block;
	text-align: center;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
#masthead nav ul li.unique:hover {
	background-color: #e49124;
}
#masthead nav ul li.unique:hover a {
	color: #fff;
}
#masthead nav ul li.nav-search a {
	color: #e49124;
}
/* GLOBAL BUTTON */
.btn-grdnt {
    -webkit-appearance: none;
    background: -webkit-gradient(to right, #F7971E 0%, #FFD200 50%, #F7971E 100%);
    background: linear-gradient(to right, #F7971E 0%, #FFD200 50%, #F7971E 100%);
    background-size: 400%;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    padding: 20px 0;
    width: 276px;
    border-radius: 100px;
    text-align: center;
}
.btn-grdnt:hover {
    animation-name: gradient;
    -webkit-animation-name: gradient;
    animation-duration: 1.5s;
    -webkit-animation-duration: s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
		color: #fff;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%
	}

	100% {
		background-position: 100%
	}
}

/* Standard syntax */
@keyframes gradient {
	0% {
		 background-position: 0% 50%
	}
	100% {
		background-position: 100%
	}
}

/* HOMEPAGE */
#hp-banner {
	padding-top: 310px;
  background-repeat: no-repeat;
  background-position: left top;
}
#hp-banner .col2 {
  width: 40%;
  float: right;
  text-align: right;
	position: relative;
}
#hp-banner .col1 {
  width: 60%;
  float: left;
	padding-top: 155px;
}
#hp-banner h1 {
  font-weight: 900;
	margin-bottom:40px;
	text-transform: unset;
}
#hp-banner h1 span {
	color: #e49124;
	width: 59%;
	display: inline-block;
}
#hp-banner .bnr-btn {
  display: inline-block;
  vertical-align: middle;
}
#hp-banner .bnr-btn.apl {
  margin-right: 23px;
}
#hp-banner p {
	letter-spacing: 0.2px;
}
#hp-banner .col1 .hero-detail {
  padding-bottom: 100px;
}
.with-bg {
	background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#hp-sec2::before {
  content: '';
  position: absolute;
  background-image: url('/wp-content/uploads/2019/06/Hero-Wave-bg.png');
  left: 0;
  right: 0;
  height: 560px;
  background-size: 100%;
  background-repeat: no-repeat;
  top: -162px;
	z-index: 1;
}
#hp-sec2 {
  padding: 200px 0 310px;
}
#hp-sec2 .my-container {
  z-index: 1;
}
.column {
  width: 50%;
  float: left;
}
.inner-sec h2 {
  font-weight: 900;
  color: #4a5154;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.inner-sec h2 span {
  color: #e6952c;
}
#hp-sec2 .row1 {
  padding-bottom: 50px;
}
.row1 .column.col2 {
  padding-top: 190px;
}
.row1 .column.col1 {
  text-align: center;
}
.column.col1 {
  z-index: 999;
  position: relative;
}
.row2 .column.col2 ul {
  list-style: none;
  margin: 0;
  position: relative;
	vertical-align: middle;
}
.row2 .column.col2 ul li {
  background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(245, 187, 110) 100%);
  text-align: center;
  width: 300px;
  min-height: 405px;
  vertical-align: top;
  border-radius: 8px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row2 .column.col2 ul li:first-child {
  top: 0;
}
.row2 .column.col2 ul li:nth-child(2) {
  left: 35%;
  top: -220px;
}
.row2 .column.col2 ul li:nth-child(3) {
  right: 0;
}
.row2 .column.col2 ul li:last-child {
  left: 35%;
  top: 220px;
}
.row2 .box-container img {
	margin-bottom: 30px;
}
.row2 .box-container h4 {
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}
.row2 {
  padding-top: 245px;
}
#hp-sec3::before {
	content: '';
	background-image: url('/wp-content/uploads/2019/06/Our-Sevices-Wave-img.jpg');
	height: 450px;
	left: 0;
	right: 0;
	position: absolute;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top;
}
#hp-sec3 .my-container {
	padding: 320px 0 100px;
}
.serv-content {
  width: 50%;
	z-index: 999;
	position: relative;
}
.serv-boxes ul {
  list-style: none;
  margin: 0;
  text-align: center;
  position: relative;
}
.serv-boxes ul li {
  display: inline-block;
  width: 22%;
  margin: 0 25px;
	vertical-align: top;
}
.serv-box-cont {
  background-color: #f3f3f3;
  box-shadow: 5px 10px 20px #ddd;
  border-radius: 30px;
	position: relative;
}
.serv-box-cont img {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.serv-box-content {
  padding: 25px;
  min-height: 330px;
}
.serv-box-content h4 {
  color: #4a5154;
  font-weight: 800;
  margin-bottom: 10px;
	min-height: 65px;
	text-transform: uppercase;
}
.serv-box-content p {
  line-height: 32px;
  font-size: 21px;	
  color: #868b8d;
  font-family: 'Muli', sans-serif;
  margin-bottom: 0;
}
.serv-box-content a {
	margin: 0 auto;
	width: 81%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -35px;
}
.serv-boxes {
  position: relative;
  z-index: 999;
	padding-top: 60px;
}
#hp-sec4 {
  padding: 50px 0 150px;
	text-align: center;
	z-index: 1;
	background-position: top center;
}
#hp-sec4::before {
  content: '';
  background-image: url('/wp-content/uploads/2019/06/Our-Services-curve.jpg');
  height: 313px;
  position: absolute;
  left: 0;
  right: 0;
  top: -233px;
  z-index: -1;
  bottom: 0;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top;
}
#hp-sec4 .latest-details {
  max-width: 950px;
  margin: 0 auto;
}
#hp-sec4 .latest-details h2 {
  margin-bottom: 40px;
}
#hp-sec4 .latest-details p {
  color: #6e7376;
  font-family: 'Muli', sans-serif;
}
.project-slides .slick-dots {
  list-style: none;
  position: relative;
  margin: 50px auto 20px;
  text-align: center;
}
.project-slides .slick-dots li {
  display: inline-block;
  vertical-align: middle;
}
.project-slides .slick-dots li button {
  font-size: 0;
  border: 3px solid #e49225;
  padding: 4px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 17px;
	outline: none;
	vertical-align: middle;
}
.project-slides .slick-dots .slick-active button {
	background-color: #f5ba6d;
}
.project-slides {
  padding: 40px 0 0;
}
.project-slides .project-img {
  height: 900px;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 20px;
  background-size: cover;
  margin: 20px 17px;
  overflow: hidden;
  -webkit-box-shadow: 0px 7px 15px 0px rgba(204,204,204,1);
	-moz-box-shadow: 0px 7px 15px 0px rgba(204,204,204,1);
	box-shadow: 0px 7px 15px 0px rgba(204,204,204,1);
}
.project-slides .project-img::after {
  content: '';
  background: linear-gradient(0deg, rgb(249, 190, 113) 0%, rgba(255,255,255,0) 100%);
  height: 280px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.btn-brd {
  position: relative;
  background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(249, 202, 139) 100%);
  max-width: 450px;
  margin: auto;
  border-radius: 50px;
  padding: 3px;
	z-index: 1;
}
.btn-brd a {
	background-color: #fff;
	display: block;
	border-radius: 50px;
	padding: 20px;
	font-size: 20px;
	color: #4a5154;
	font-weight: bold;
	line-height: 25px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all .35s;
	-moz-transition: all .35s;
	transition: all .35s;
	z-index: -1;
}
.btn-brd a:hover {
	color: #fff;
}
.btn-brd a::before, .btn-brd a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(249, 202, 139) 100%);
	z-index: -1;
	-webkit-transition: all .35s;
	-moz-transition: all .35s;
	transition: all .35s;
}
.btn-brd a::before {
	opacity: .5;
}
.btn-brd a::after{
	-webkit-transition-delay:.2s;
	-moz-transition-delay: .2s;
	transition-delay: .2s;
}
.btn-brd a:hover::before, .btn-brd a:hover::after {
	left: 0;
}
#hp-sec5 {
  padding: 30px 0 320px;
	position: relative;
}
#hp-sec5 .my-container {
  position: unset;
}
.why-col {
  width: 50%;
  float: left;
}
.why-col ul {
  margin: 0;
  list-style: none;
  position: relative;
  padding-top: 50px;
}
.why-col ul li {
	font-size: 36px;
	color: #525252;
	line-height: 58px;
	padding: 20px 0;
	letter-spacing: -1px;
}
.why-col ul li::before {
  content: '';
  background-image: url('/wp-content/uploads/2019/06/orange-check.png');
  width: 29px;
  height: 23px;
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 10px;
	position: relative;
	vertical-align: middle;
}
.why-col.col1 {
  padding-right: 15px;
}
.why-col.col2 {
  position: absolute;
  right: 0;
  background-color: #eca547;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.4);
  width: 50%;
  height: 85%;
  background-size: cover;
  background-repeat: no-repeat;
	background-position: center;
}
.why-col.col2::before {
  content: '';
  position: absolute;
  background-color: rgba(236, 165, 71, 0.74);
  width: 100%;
  height: 100%;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
#hp-sec6 {
  padding: 100px 0;
  -webkit-box-shadow: 0 -7px 20px -9px rgba(179, 175, 175, 0.8);
  -moz-box-shadow: 0 -7px 20px -9px rgba(179, 175, 175, 0.8);
  box-shadow: 0 -7px 20px -9px rgba(179, 175, 175, 0.8);
}
.testimonial-slides {
  text-align: center;
  max-width: 1460px;
  margin: 0 auto;
}
.testi-cont.slick-slide img {
  margin: 15px auto;
  padding: 10px;
  border: 2px solid #e6972f;
  border-radius: 50%;
}
.testimonial-slides button {
  position: absolute;
	top: 0;
	bottom: 0;
  z-index: 1;
  font-size: 0;
  padding: 25px 15px;
  background-color: transparent;
  background-image: url('/wp-content/uploads/2019/06/arrow-left.png');
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-slides button:hover {
	background-color: transparent;
}
.testimonial-slides .slick-prev.slick-arrow {
  left: -230px;
}
.testimonial-slides .slick-next.slick-arrow {
  right: -230px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.testi-cont.slick-slide h4, .testi-cont.slick-slide p {
	font-size: 33px;
  line-height: 62px;
  font-family: 'Muli', sans-serif;
  font-style: italic;
  color: #000;
  font-weight: 300;
	margin-bottom: 50px;
}
#hp-sec7 {
  padding: 125px 0;
	z-index: 1;
}
#hp-sec7::before {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(246,189,114,1) 100%);
  opacity: .8;
}
#hp-sec7::after {
	content: '';
	position: absolute;
	background-image: url('/wp-content/uploads/2019/06/Talk-wave-bg.png');
	width: 100%;
	height: 421px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
#hp-sec7 .my-container {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 51px 9px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 51px 9px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 51px 9px rgba(0,0,0,0.2);
}
.form-container {
  padding: 50px;
  max-width: 980px;
  margin: auto;
	text-align: center;
}
.form-container h2 {
  text-transform: unset;
}
.form-container p {
	font-family: 'Poppins', sans-serif;
  font-size: 30px;
  line-height: 40px;
}
#hp-sec7 .form-container #wpcf7-f142-o1 {
  text-align: left;
}
.hp-cf-field {
  display: inline-block;
  width: 48%;
  margin-right: 25px;
	padding-bottom: 20px;
}
.hp-cf-field.email {
	margin-right: 0px;
}
.home-form .field {
  border-bottom: 2px solid #999 !important;
  border: none;
  background-color: transparent;
}
.home-form label {
  font-size: 23px;
	color: #333333;
	font-family:'Lato', sans-serif;
}
.home-form textarea {
	height: 80px;
	margin-bottom: 45px;
}
.home-form .btn-grdnt {
  background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(245, 187, 110) 100%);
  color: #fff;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 18px 0;
  display: block;
  margin: auto;
  letter-spacing: 0;
  width: 275px;
}
/** Footer **/
#colophon {
	padding: 20px 0;
	position: relative;
	display: block;
	background-position: center;
}
.foot-col, .contact-details div, .contact-details i{
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.foot-col.col1 {
    width: 39%;
	padding-right: 100px;
}
.foot-col.col2 {
    width: 60%;
    border-bottom: 1px solid #e9a54b;
    padding-bottom: 30px;
}
.foot-col ul {
    text-align: right;
}
.foot-col ul {
    list-style: none;
    position: relative;
    margin: 0;
}
.foot-col ul li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.foot-social {
	margin: 0 3px;
	text-align: center;
}
.foot-social a {
	color: #e49124;
	font-size: 26px;
	line-height: 47px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	border: 3px solid #e49124;
	display: inline-block;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.foot-social a::before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.foot-social a::after {
	content: "";
	display: block;
	width: 91%;
	height: 91%;
	top: -110%;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	background-color: #E9A54B;
	border-radius: 50%;
}
.foot-social a:hover {
		color: #fff;
		-webkit-transition: all 0.2s linear 0s;
		-moz-transition: all 0.2s linear 0s;
		transition: all 0.2s linear 0s;
}
.foot-social a:hover::after {
	top: 5%;
	z-index: -1;
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;

}
.contact-details div, .contact-details i {
	vertical-align: middle;
}
.contact-details i {
    font-size: 28px;
    color: #e9a54b;
	width: 32px;
	margin-right: 10px;
}
.contact-details div p {
	font-size: 21px;
	line-height: 30px;
	color: #4a5154;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	text-align: left;
	margin-bottom: 0px;
}
.contact-details {
   margin: 0 30px;
}
.contact-details:last-child, .footer-nav ul li:last-child {
   margin-right: 0;
}
/** CREDITS **/
.site-info {
    padding: 25px 0 0;
    margin: 0;
}
.credits {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}
.credits.col2 {
	width: 50%;
}
.credits p {
    font-size: 19px;
    font-family: 'Muli', sans-serif;
    color: #4a5154;
}
.footer-nav ul {
	margin: 0;
	list-style: none;
	position: relative;
	text-align: right;
}
.footer-nav ul li {
	display: inline-block;
	margin: 0 25px;
}
.footer-nav ul li a {
	font-weight: 700;
	text-transform: uppercase;
	color: #4a5154;
}
/* About Page */
#inner-page-hero {
	padding: 450px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top right;
}
#inner-page-hero.about-hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(255, 255, 255, 0.49);
}
#inner-page-hero h1 {
	font-size: 130px;
	font-weight: 900;
	padding-bottom: 40px;
}
#inner-page-hero h1 span {
	color: #e49124;
}
#inner-page-hero p {
	margin-bottom: 100px;
}
.banner-container {
	max-width: 730px;
}
#abt-sec2::before, #portfolio-sec2::before {
	content: '';
	position: absolute;
	top: -210px;
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/Inner-hero-wave.png');
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
	width: 100%;
	height: 560px;
	z-index: 1;
}
#abt-sec2 {
	padding: 110px 0 180px;
}
#abt-sec2 .my-container {
	z-index: 9;
}
#abt-sec2 .column, #abt-sec3 .column{
    text-align: center;
}
#abt-sec2 .column.col2 img {
	border-radius: 40px;
	-webkit-box-shadow: 0px 7px 11px 1px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 7px 11px 1px rgba(0,0,0,0.15);
	box-shadow: 0px 7px 11px 1px rgba(0,0,0,0.15);
}
#abt-sec2 .column.col1 {
	padding-top: 250px;
}
#abt-sec2 .column.col2 p, #abt-sec3 .column.col1 p {
	font-size: 21px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	padding-top: 10px;
}
#abt-sec3 {
    background-color: #f3f3f3;
    padding: 230px 0 400px;
}
#abt-sec3 .column.col1 .img-cont, .inner-serv-cont .img-cont {
	background-color: #f4b96b;
	border-radius: 50%;
	padding: 30px;
	width: 90%;
	margin: 0 auto;
}
#abt-sec3 .column.col1 .img-cont img, .inner-serv-cont .img-cont img {
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 20px -3px rgba(0,0,0,0.59);
	-moz-box-shadow: 0px 0px 20px -3px rgba(0,0,0,0.59);
	box-shadow: 0px 0px 20px -3px rgba(0,0,0,0.59);
}
#abt-sec3::before, #abt-sec3::after {
	content: '';
	position: absolute;
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/why-wave-top-bg.jpg');
	height: 177px;
	width: 100%;
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
	top: 0;
}
#abt-sec3::after {
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/why-wave-bot-bg.jpg');
	height: 242px;
	background-position: bottom;
	bottom: 0;
	top: unset;
}
#abt-sec3 .column.col2 {
	padding-top: 200px;
}
.badges-cont ul {
	list-style: none;
	text-align: center;
	margin: 0;
}
.badges-cont ul li {
	width: 185px;
	margin: 0 22px;
	display: flex;
	min-height: 250px;
	background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(245, 187, 110) 100%);
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	float: left;
	box-shadow: 0px 10px 11px 2px rgba(0,0,0,0.15);
}
.badges-cont ul li h4 {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
}
.badges-cont ul li img {
    width: 66px;
    margin-bottom: 15px;
}
.badges-cont {
    padding-top: 30px;
}
#abt-sec4 {
	background: rgb(228,145,36);
	background: -moz-linear-gradientlinear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(228,145,36,1) 40%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradientlinear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(228,145,36,1) 40%, rgba(255,255,255,1) 100%);
	background: linear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(228,145,36,1) 40%, rgba(255,255,255,1) 100%);
	padding-bottom: 210px;
}
#abt-sec4 h2 {
	text-align: center;
	margin-bottom: 50px;
}
#abt-sec4 .boxes-cont ul {
	margin: 0;
	text-align: center;
	list-style: none;
}
#abt-sec4 .boxes-cont ul li {
	width: 21%;
	margin: 25px 35px;
	background-color: #f3f3f3;
	border-radius: 20px;
	display: inline-block;
	-webkit-box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.47);
	-moz-box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.47);
	box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.47);
}
#abt-sec4 .boxes-cont img {
	border-radius: 20px 20px 0 0;
}
#abt-sec4 .box-content {
  padding: 30px;
}
#abt-sec4 .boxes-cont h4 {
	color: #e89a34;
	margin: 0 0 38px;
	font-weight: 900;
}
#abt-sec4 .boxes-cont h4 span {
    font-size: 21px;
    display: block;
    color: #575757;
    line-height: 20px;
    font-weight: 700;
}
#abt-sec4 .boxes p {
	font-size: 21px;
	line-height: 32px;
	color: #868b8d;
}
#abt-sec5 {
	padding: 100px 0;
	margin-bottom: 80px;
	box-shadow: 0px 0px 51px 9px rgba(0,0,0,0.2);
}
#hp-sec6.inner-testi {
	margin-bottom: 80px;
	-webkit-box-shadow: 0px 7px 65px 4px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 7px 65px 4px rgba(0,0,0,0.2);
	box-shadow: 0px 7px 65px 4px rgba(0,0,0,0.2);
}
/*** Services Page ***/
#inner-page-hero.services-banner::after {
	content: '';
	position: absolute;
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/Services-curve.png');
	width: 100%;
	height: 264px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	bottom: 0;
}
.services-hero {
	max-width: 1170px;
	margin: 0 auto;
	text-align: center;
}
.services-hero h1 {
	margin-bottom: 20px;
}
.services-hero p {
	font-size: 26px;
	line-height: 37px;
	color: #262626;
	text-shadow: 3px 2px 5px rgba(0, 0, 0, 0.24);
}
#serv-sec2 .our-serv-cont {
	text-align: center;
	max-width: 1240px;
	margin: 0 auto 70px;
}
#serv-sec2 ul {
	list-style: none;
	margin: 0;
	text-align: center;
	position: relative;
}
#serv-sec2 ul li {
	display: inline-block;
	width: 945px;
	margin: 20px;
	border-radius: 30px;
	vertical-align: top;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.27);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.27);
	box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.27);
}
#serv-sec3 {
	padding: 100px 0 0;
}
.our-serv-square {
    display: flex;
}
.our-serv-square img,
.our-serv-square .square-cont {
	width: 50%;
}
.our-serv-square .square-cont {
	background-color: #fff;
	padding: 40px 40px 0;
	text-align: left;
	border-radius: 0 30px 30px 0;
}
.our-serv-square img {
	border-radius: 30px 0 0 30px;
}
.our-serv-square .square-cont h3 {
	color: #4a5154;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: -1px;
	padding-bottom: 10px;
}
.our-serv-square .square-cont p {
	font-family: 'Muli', sans-serif;
	font-size: 21px;
	line-height: 32px;
	color: #868b8d;
	margin-bottom: 20px;
}
#serv-sec3 .we-do-cont {
	max-width: 1250px;
	margin: 0 auto 65px;
	text-align: center;
}
#serv-sec3 .we-do-cont p {
	font-size: 21px;
	line-height: 37px;
	color: #575757;
}
#serv-sec3 ul {
	list-style: none;
	margin: 0;
	text-align: center;
}
#serv-sec3 ul li {
	display: inline-block;
	width: 26%;
	margin: 0px 70px 90px;
	background-color: #f9f9f9;
	padding: 30px 35px;
	vertical-align: top;
	min-height: 660px;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.20);
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.20);
	border-radius: 20px;
}
#serv-sec3 ul li:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
#serv-sec3 ul li:hover .box-icon {
	background-color: #e6952c;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
#serv-sec3 ul li:hover .box-icon img {
	filter: brightness(0) invert(1);
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
.we-do-boxes .box-icon {
	display: inline-block;
	background-color: #efefef;
	width: 250px;
	border-radius: 50%;
	height: 250px;
	line-height: 250px;
	margin-bottom: 45px;
}
.we-do-boxes h3 {
	font-size: 40px;
	font-weight: 800;
	line-height: 52px;
	margin-bottom: 20px;
}
.we-do-boxes p {
	font-size: 21px;
	color: #868b8d;
	line-height: 32px;
}
#serv-sec3::after {
	content: '';
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/What-We-Do-curve.png');
	width: 100%;
	height: 179px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	bottom: -179px;
	position: absolute;
	z-index: 2;
}
#serv-sec4 {
	padding: 230px 0 180px;
}
#serv-sec4::before, #conclusion-sec::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	background: rgb(228,145,36);
	background: -moz-linear-gradient(90deg, rgba(228,145,36,0.85) 0%, rgba(243,174,91,0.85) 100%);
	background: -webkit-linear-gradient(90deg, rgba(228,145,36,0.85) 0%, rgba(243,174,91,0.85) 100%);
	background: linear-gradient(90deg, rgba(228,145,36,0.85) 0%, rgba(243,174,91,0.85) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e49124",endColorstr="#f3ae5b",GradientType=1);
}
#serv-sec4::after {
	content: '';
	position: absolute;
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/CTA-Curve.png');
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	bottom: 0;
	z-index: 1;
}
.serv-cta {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}
.serv-cta p {
	color: #fff;
	font-size: 32px;
	line-height: 53px;
	font-weight: 500;
	font-family: 'Muli', sans-serif;
}
.serv-cta h2 {
	color: #fff;
	max-width: 760px;
	margin: 0 auto 40px;
	font-size: 54px;
	line-height: 64px;
}
.serv-cta a {
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	background-color: #4a5154;
	padding: 28px 0;
	width: 365px;
	display: inline-block;
	border-radius: 50px;
	border: 3px solid transparent;
}
.serv-cta a:hover {
	border: 3px solid #4a5154;
	background-color: #fff;
	color: #4a5154;
}
#serv-sec4 .my-container {
  z-index: 9;
}
/*** Contact Us Page ***/
#inner-page-hero p {
    font-size: 21px;
    line-height: 37px;
}
#inner-page-hero.contact-banner {
    padding: 470px 0 570px;
}
#inner-page-hero.contact-banner::after {
	content: '';
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/Contact-hero-curve.png');
	position: absolute;
	width: 100%;
	height: 242px;
	bottom: 0;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
}
#connect-sec {
    padding: 0 0 100px;
}
.connect-content {
	max-width: 1100px;
	margin: 0 auto 50px;
	text-align: center;
}
.connect-content p {
	font-size: 21px;
	font-family: 'Muli', sans-serif;
	line-height: 37px;
}
.contact-us-form .contact-us-field {
	display: inline-block;
	margin: 17px 13px;
	vertical-align: top;
	width: 47%;
}
.contact-us-form .contact-us-field.message-field {
	width: 97%;
}
.contact-us-form .contact-us-field.message-field .cuf-field {
    height: 364px;
}
.contact-us-form .contact-us-field .cuf-field {
	font-size: 32px;
	color: #bababa;
	background-color: #f3f3f3;
	font-family: 'Muli', sans-serif;
	padding: 30px 18px;
	border: 1px solid #dedede;
	border-radius: 20px;
}
.contact-us-form .contact-us-field.select .cuf-field {
	width: 100%;
}
.contact-us-form .contact-us-field.select {
	font-size: 15px;
}
.contact-us-form .contact-us-field .cuf-field::-webkit-input-placeholder { /* Edge */
  color: #bababa;
}
.contact-us-form .contact-us-field .cuf-field::-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bababa;
}
.contact-us-form .contact-us-field .cuf-field::placeholder {
	opacity: 1;
	color: #bababa;
}
.connect-form iframe {
	border: 4px solid #cacaca !important;
	border-radius: 30px;
	margin: 0;
}
.connect-form .column.col2 {
	padding: 0 30px;
}
.contact-us-form .btn-grdnt {
	background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(245, 187, 110) 100%);
	color: #fff;
	border-radius: 100px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 30px 0;
	display: block;
	margin: 80px auto 0;
	letter-spacing: 0;
	width: 365px;
	font-size: 24px;
}
/*** Services Inner Page ***/
#inner-page-hero.inner-serv-hero .banner-container {
	max-width: 860px;
}
#inner-serv-sec2::before {
	content: '';
	position: absolute;
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/Inner-Serv-banner-wave1.png');
	width: 100%;
	height: 577px;
	top: -190;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
}
#inner-serv-sec2 {
	padding: 120px 0;
}
#inner-serv-sec2 .column.col1 {
	padding-top: 300px;
	padding-right: 50px;
}
#conclusion-sec {
    padding: 270px 0 160px;
}
#conclusion-sec .my-container {
	z-index: 1;
}
#conclusion-sec::before {
	content: '';
	position: absolute;
	background-image: url('http://appoff.com.au/wp-content/uploads/2019/06/Inner-Serv-white-wave01.png');
	width: 100%;
	height: 267px;
	z-index: 1;
	top: 0;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top center;
}
/*** Portfolio Page ***/
#portfolio-sec2 {
  padding-top: 180px;
}
#portfolio-sec2 h2 {
	text-align: center;
}
#portfolio-sec2 ul {
	list-style: none;
	text-align: center;
	margin: 20px auto;
}
#portfolio-sec2 ul li {
	width: 30%;
	display: inline-block;
	margin: 0 23px;
	-webkit-box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.47);
	-moz-box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.47);
	box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.47);
	border-radius: 30px;
}
#portfolio-sec2 ul li img {
	border-radius: 30px;
}
#portfolio-sec2 {
	padding: 300px 0 150px;
}
/*** My Responsive ***/
@media only screen and (max-width: 2560px) { 
	.my-container {
		max-width: 1980px;
	}
}
@media only screen and (max-width: 2100px) { 
	.my-container {
		max-width: 1760px;
	}
	#masthead {
    margin-top: 80px;
	}
	#masthead nav ul li a {
    padding: 15px 28px;
		font-size: 20px;
	}
	#hp-banner h1 {
    font-size: 95px;
    line-height: 110px;
	}
	#hp-sec2 {
		padding: 90px 0 310px;
	}
	.row2 .column.col2 ul li {
    width: 280px;
    min-height: 385px;
	}
	.row2 .column.col2 ul li:nth-child(2) {
    left: 34.2%;
    top: -205px;
	}
	.row2 .column.col2 ul li:last-child {
    left: 34.2%;
    top: 205px;
	}
	#hp-sec3 .my-container {
    padding: 280px 0 100px;
	}
	.serv-boxes ul li {
    margin: 0 20px;
	}
	.badges-cont ul li {
    width: 175px;
	}
	#inner-page-hero {
    padding: 355px 0;
	}
	#serv-sec2 ul li {
    width: 837px;
	}
	#serv-sec2 .our-serv-cont {
    max-width: 920px;
	}
	.our-serv-cont p {
    font-size: 18px;
	}
	.our-serv-square .square-cont h3 {
    font-size: 30px;
    line-height: 40px;
	}
	.our-serv-square .square-cont a {
    padding: 18px 0;
    width: 226px;
    font-size: 18px;
    line-height: 24px;
	}
	.our-serv-square .square-cont p {
    font-size: 20px;
    line-height: 30px;
	}
	.our-serv-square .square-cont {
    padding: 20px 30px;
	}
	#serv-sec3 ul li {
    margin: 0px 50px 80px;
    width: 27%;
    min-height: 700px;
	}
	#serv-sec3::after {
    bottom: -139px;
	}
	#inner-page-hero.contact-banner .btn-grdnt {
    margin: 0;
	}
	.contact-us-form .contact-us-field {
		margin: 17px 12px;
	}
	#abt-sec4 .boxes-cont ul li {
    margin: 25px 33px;
	}
	#inner-serv-sec2::before {
    top: -260px;
	}
	#portfolio-sec2 {
    padding: 250px 0 150px;
	}
}
@media only screen and (max-width: 1980px) { 
	.my-container {
		max-width: 1482px;
	}
	#masthead nav ul li a {
    font-size: 16px;
    padding: 15px 22px;
	}
	#hp-banner {
    background-size: 100%;
	}
	#masthead .site-branding {
    width: 270px;
	}
	#hp-banner {
    padding-top: 235px;
	}
	#hp-banner .col1 {
    padding-top: 120px;
	}
	#hp-banner h1 {
    font-size: 78px;
    line-height: 95px;
	}
	p {
    font-size: 20px;
    line-height: 35px;
	}
	a {
		font-size: 20px;
	}
	h4 {
    font-size: 20px;
    line-height: 28px;
	}
	#hp-sec2 {
    padding: 100px 0 310px;
	}
	#hp-sec2 .row1 .column img {
    width: 80%;
	}
	.row2 .column.col2 ul li {
    width: 230px;
    min-height: 305px;
	}
	#hp-sec2 .row12 .column img {
    width: 60%;
	}
	.row2 .column.col2 ul li:nth-child(2) {
    left: 34.2%;
    top: -165px;
	}
	.row2 .column.col2 ul li:last-child {
    left: 34.2%;
    top: 165px;
	}
	#hp-sec3 .my-container {
    padding: 200px 0 100px;
	}
	.serv-box-content p {
    line-height: 24px;
    font-size: 16px;
	}
	.serv-box-content {
    padding: 20px 16px;
    min-height: 290px;
	}
	.serv-box-content a {
    font-size: 16px;
    padding: 15px 0;
	}
	.project-slides .project-img {
    height: 685px;
	}
	.why-col ul li {
    font-size: 27px;
    line-height: 43px;
    padding: 15px 0;
	}
	#hp-sec5 {
    padding: 30px 0 200px;
	}
	.testi-cont.slick-slide h4, .testi-cont.slick-slide p {
    font-size: 25px;
    line-height: 47px;
	}
	.testimonial-slides {
    max-width: 1100px;
	}
	.testimonial-slides .slick-prev.slick-arrow {
    left: -190px;
	}
	.testimonial-slides .slick-next.slick-arrow {
    right: -190px;
	}
	#hp-sec7 {
    padding: 95px 0;
	}
	.form-container p {
    font-size: 23px;
	}
	.home-form label {
    font-size: 18px;
	}
	.foot-social a {
    font-size: 20px;
    line-height: 33px;
    height: 38px;
    width: 38px;
	}
	.foot-social a::after {
    width: 88%;
    height: 88%;
	}
	.foot-social a:hover::after {
    top: 6%;
	}
	.contact-details div p,
	.footer-nav ul li a {
    font-size: 16px;
    line-height: 23px;
	}
	.credits p {
    font-size: 14px;
	}
	#abt-sec3 .column.col2 {
    padding-top: 150px;
	}
	.badges-cont ul li {
    width: 140px;
    min-height: 200px;
	}
	.boxes-cont ul li {
    width: 21%;
	}
	#inner-page-hero {
    padding: 355px 0;
	}
	#abt-sec2::before {
    content: '';
    top: -195px;
	}
	.banner-container {
    max-width: 550px;
	}
	#inner-page-hero h1 {
    font-size: 100px;
	}
	#inner-page-hero p {
    font-size: 16px;
		line-height: 28px;
		margin-bottom: 80px;
	}
	#abt-sec2 p {
    font-size: 16px;
    padding: 0px 50px 0 50px;
	}
	#abt-sec3 p {
    font-size: 16px;
    padding: 20px 60px 0;
	}
	.boxes p {
    font-size: 16px;
	}
	.services-hero {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
	}
	#inner-page-hero.services-banner p {
    margin-bottom: 50px;
	}
	#serv-sec2 ul li {
    width: 698px;
	}
	.our-serv-square .square-cont h3 {
    font-size: 25px;
    line-height: 34px;
	}
	.our-serv-square .square-cont p {
    font-size: 18px;
    line-height: 26px;
	}
	.our-serv-square .square-cont a {
    padding: 16px 0;
    width: 220px;
    font-size: 16px;
    line-height: 20px;
	}
	.our-serv-square .square-cont {
    min-height: 370px;
	}
	.we-do-boxes h3 {
    font-size: 30px;
    line-height: 40px;
	}
	.we-do-boxes p, #serv-sec3 .we-do-cont p, .we-do-boxes p {
    font-size: 16px;
    line-height: 24px;
	}
	#serv-sec3 ul li {
    margin: 0px 45px 45px;
    width: 27%;
    min-height: 550px;
	}
	#serv-sec3::after {
    bottom: -130px;
	}
	#serv-sec3 .we-do-cont {
    max-width: 930px;
	}
	.we-do-boxes .box-icon img {
    width: 50%;
	}
	.we-do-boxes .box-icon {
    width: 190px;
    height: 190px;
    line-height: 190px;
	}
	.serv-cta p {
    font-size: 24px;
    line-height: 40px;
	}
	.serv-cta h2 {
    max-width: 700px;
    font-size: 42px;
    line-height: 54px;
	}
	.serv-cta a {
    padding: 20px 0;
    width: 275px;
    font-size: 16px;
	}
	#serv-sec4 .serv-cta {
    max-width: 900px;
	}
	.serv-cta p {
    font-size: 22px;
    line-height: 32px;
	}
	#inner-page-hero.contact-banner {
    padding: 350px 0 425px;
	}
	.connect-content {
    margin: 0 auto 50px;
		max-width: 870px;
	}
	.connect-content p {
    font-size: 16px;
    line-height: 28px;
	}
	.contact-us-form .contact-us-field .cuf-field {
    font-size: 24px;
    padding: 20px 15px;
	}
	.contact-us-form .contact-us-field {
    margin: 13px 10px;
	}
	.contact-us-form .contact-us-field.message-field .cuf-field {
    height: 280px;
	}
	.connect-form iframe {
    height: 490px;
	}
	.contact-us-form .btn-grdnt {
    padding: 20px 0;
    margin: 50px auto 0;
    width: 275px;
    font-size: 18px;
	}
	.badges-cont ul li h4 {
    font-size: 14px;
    line-height: 20px;
	}
	#abt-sec4 .boxes-cont h4 span {
    font-size: 16px;
	}
	#abt-sec4 .boxes-cont h4 {
    margin: 0 0 24px;
	}
	#abt-sec4 .boxes p {
    font-size: 16px;
    line-height: 24px;
	}
	#abt-sec4 .box-content {
    padding: 30px 25px;
	}
	#abt-sec4 .boxes-cont ul li {
		margin: 25px;
		min-height: auto;
	}
	#abt-sec4 {
    background: -moz-linear-gradientlinear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(228,145,36,1) 20%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradientlinear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(228,145,36,1) 20%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(228,145,36,1) 0%, rgba(228,145,36,1) 20%, rgba(255,255,255,1) 100%);
    padding-bottom: 160px;
	}
	#inner-serv-sec2 .column.col1 {
    padding-top: 200px;
    padding-right: 0px;
	}
	#inner-serv-sec2 {
    padding: 100px 0;
	}
	#inner-serv-sec2::before {
    top: -202px;
    height: 431px;
	}
	#portfolio-sec2::before {
    top: -150px;
		height: 420px;
	}
}
@media only screen and (max-width: 1500px) {
	.my-container {
		max-width: 1200px;
	}
	#masthead {
		margin-top: 10px;
	}
	#hp-banner {
    padding-top: 175px;
	}
	#hp-banner .col1 {
    padding-top: 70px;
	}
	#hp-banner h1 span {
		width: 50%;
	}
	#hp-banner h1, #inner-page-hero h1 {
		font-size: 64px;
		line-height: 80px;
	}
	#hp-banner .col1 .hero-detail {
    padding-bottom: 40px;
	}
	a {
    font-size: 18px;
	}
	p {
    font-size: 18px;
    line-height: 30px;
	}
	#hp-sec2::before {
    top: -117px;
	}
	#hp-sec2 {
		padding: 60px 0 200px;
	}
	#hp-sec2 .row2 {
		padding-top: 200px;
	}
	.row2 .box-container img {
    margin-bottom: 10px;
	}
	.row2 .column.col2 ul li {
    width: 185px;
    min-height: 235px;
	}
	#hp-sec2 .row1 .column img {
		width: 80%;
	}
	#hp-sec2 .row2 .column img {
		width: 50%;
	}
	.row1 .column.col2 {
    padding-top: 110px;
	}
	.row2 .column.col2 ul li:nth-child(2) {
		top: -145px;
	}
	.row2 .column.col2 ul li:last-child {
		top: 145px;
	}
	#hp-sec3 .my-container {
    padding: 160px 0 100px;
	}
	.serv-box-cont img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
	}
	.serv-box-cont {
    border-radius: 20px;
	}
	.serv-boxes ul li {
		margin: 0 16px;
	}
	.serv-box-content h4 {
    min-height: auto;
	}
	.project-slides .project-img {
    height: 550px;
	}
	.why-col.col1 {
		padding-right: 30px;
	}
	.why-col ul {
		padding-top: 20px;
	}
	.why-col ul li {
		font-size: 20px;
		line-height: 28px;
	}
	#hp-sec4::before {
		top: -159px;
	}
	#hp-sec5 {
		padding: 0 0 150px;
	}
	#hp-sec6 {
    padding: 60px 0;
	}
	#hp-sec7 {
		padding: 90px 0 70px;
	}
	.contact-details {
    margin: 0 29px;
	}
	#inner-page-hero {
    padding: 230px 0;
		background-blend-mode: overlay;
		background-color: #c2c2c2;
	}
	.badges-cont ul li {
    width: 130px;
    margin: 0 10px;
	}
	.boxes-cont h4 {
    margin: 20px 10px 0 10px;
	}
	.boxes-cont ul li {
    width: 21%;
    margin: 20px;
	}
	.boxes {
    padding-bottom: 10px;
	}
	#abt-sec2::before {
    content: '';
    top: -155px;
	}
	.testimonial-slides .slick-prev.slick-arrow {
    left: -50px;
	}
	.testimonial-slides .slick-next.slick-arrow {
			right: -50px;
	}
	#serv-sec2 ul li {
    width: 567px;
    margin: 15px;
	}
	.our-serv-square .square-cont {
    padding: 20px 15px 0;
    min-height: 320px;
	}
	.our-serv-square .square-cont h3 {
    font-size: 22px;
    line-height: 30px;
	}
	.our-serv-square .square-cont p {
    font-size: 15px;
    line-height: 24px;
	}
	.we-do-boxes h3 {
    font-size: 26px;
    line-height: 36px;
	}
	#serv-sec3 ul li {
    margin: 0px 35px 35px;
    width: 27%;
    min-height: 550px;
    padding: 20px 30px;
	}
	#serv-sec3::after {
    bottom: -91px;
	}
	#serv-sec4 {
    padding: 200px 0 150px;
	}
	.contact-us-form .contact-us-field .cuf-field {
    padding: 15px;
    font-size: 20px;
	}
	.contact-us-form .contact-us-field {
    width: 46%;
    margin: 10px;
	}
	.connect-form .column.col2 iframe {
    height: 450px;
	}
	#inner-page-hero.contact-banner {
    padding: 260px 0 310px;
	}
	#abt-sec2 p {
    padding: 0;
	}
	#abt-sec2 .column.col1 {
    padding-top: 100px;
		padding-right: 30px;
	}
	#abt-sec2 {
    padding: 80px 0;
	}
	#abt-sec3 {
    padding: 180px 0 300px;
	}
	#abt-sec3 p {
    padding: 0;
	}
	#abt-sec4 .boxes-cont ul li {
    margin: 20px 16px;
    width: 22%;
	}
	#inner-page-hero.inner-serv-hero .banner-container {
    max-width: 570px;
	}
	#inner-serv-sec2 {
    padding: 0 0 70px;
	}
	#inner-serv-sec2::before {
    top: -220px;
    height: 340px;
	}
	#portfolio-sec2 {
    padding: 130px 0 100px;
	}
	 #portfolio-sec2::before {
    top: -150px;
    height: 330px;
	}
	#portfolio-sec2 ul li {
    margin: 0 18px;
	}
}
@media only screen and (max-width: 1300px) {
	.my-container {
		max-width: 1100px;
	}
	#masthead nav ul li.unique {
    width: 175px;
	}
	#hp-banner .col1 {
		width: 63%;
		padding-top: 50px;
	}
	#hp-banner h1 {
		font-size: 60px;
		line-height: 70px;
		margin-bottom: 20px;
	}
	#hp-banner h1 span {
		width: 60%;
	}
	#hp-banner .col2 {
		width: 37%;
	}
	.inner-sec h2, .inner-serv-cont h2 {
		font-size: 40px;
		line-height: 46px;
	}
	.btn-grdnt {
		padding: 17px 0;
		width: 250px;
		font-size: 16px;
		line-height: 22px;
	}
	h4 {
    font-size: 18px;
    line-height: 25px;
	}
	.row1 .column.col2 {
		padding-top: 70px;
	}
	#hp-sec2 {
		padding: 60px 0 0;
	}
	#hp-sec2 .row2 {
		padding-top: 160px;
	}
	#hp-sec2 .row2 .column img {
		width: 35%;
	}
	.row2 .column.col2 ul li {
		width: 165px;
		min-height: 190px;
	}
	.row2 .column.col2 ul li:nth-child(2) {
		top: -110px;
	}
	.row2 .column.col2 ul li:last-child {
		top: 110px;
	}
	.serv-boxes ul li {
		margin: 0 14px;
	}
	.serv-box-content {
    padding: 20px 16px;
    min-height: 310px;
	}
	.serv-box-content a {
		font-size: 14px;
		line-height: 14px;
		padding: 17px 0;
		width: 80%;
		bottom: -25px;
	}
	#hp-sec4::before {
    top: -145px;
	}
	#hp-sec4 {
		padding: 0 0 50px;
	}
	.project-slides .project-img {
		height: 500px;
	}
	.btn-brd a {
		padding: 17px;
		font-size: 17px;
		line-height: 25px;
	}
	.btn-brd {
		max-width: 420px;
	}
	.why-col ul {
		padding-top: 0;
	}
	.why-col ul li {
		font-size: 18px;
		line-height: 24px;
		padding: 15px 0;
	}
	#hp-sec5 {
		padding: 0 0 120px;
	}
	#hp-sec6 {
    padding: 50px 0;
	}
	.testimonial-slides .slick-prev.slick-arrow {
		left: -80px;
	}
	.testimonial-slides .slick-next.slick-arrow {
		right: -80px;
	}
	#hp-sec7 {
		padding: 70px 0;
	}
	.contact-details {
		margin: 0 18px;
	}
	.credits {
		width: 35%;
	}
	.credits.col2 {
		width: 64%;
	}
	.badges-cont ul li {
    min-height: 180px;
    margin: 10px;
    width: 46%;
	}
	#abt-sec3 .column.col2 {
		padding-top: 70px;
	}
	#abt-sec3 {
    padding: 160px 0 240px;
	}
	#serv-sec2 ul li {
    width: 517px;
    margin: 15px;
	}
	.our-serv-square {
    display: block;
	}
	.our-serv-square .square-cont a {
    padding: 15px 0;
    width: 200px;
	}
	.our-serv-square img, .our-serv-square .square-cont {
    width: 100%;
	}
	.our-serv-square .square-cont {
    border-radius: 0 0px 30px 30px;
		min-height: 230px;
	}
	.our-serv-square img {
    border-radius: 30px 30px 0 0px;
	}
	#serv-sec3 ul li {
    margin: 0px 15px 30px;
    width: 30%;
	}
	#serv-sec3::after {
    bottom: -84px;
	}
	#serv-sec4 {
		padding: 170px 0 120px;
	}
	#serv-sec4 .serv-cta {
    max-width: 750px;
	}
	.serv-cta p {
    font-size: 20px;
    line-height: 28px;
	}
	.serv-cta h2 {
    font-size: 36px;
    line-height: 42px;
    max-width: 580px;
	}
	#inner-page-hero h1 {
    padding-bottom: 20px;
	}
	#inner-page-hero p {
    margin-bottom: 50px;
	}
	.contact-us-form .contact-us-field .cuf-field {
    padding: 10px;
    font-size: 18px;
	}
	.contact-us-form .contact-us-field {
    width: 47%;
    margin: 7px;
	}
	.contact-us-form .contact-us-field.message-field .cuf-field {
    height: 240px;
	}
	.connect-form .column.col2 iframe {
    height: 366px;
	}
	.contact-us-form .btn-grdnt {
    margin: 20px auto 0;
	}
	#connect-sec {
    padding: 0 0 70px;
	}
	#abt-sec4 .boxes-cont ul li {
    margin: 20px 15px;
    width: 30%;
	}
	#abt-sec4 {
		padding-bottom: 120px;
	}
	#inner-serv-sec2::before {
    top: -185px;
    height: 295px;
	}
	#portfolio-sec2::before {
    height: 290px;
	}
	#portfolio-sec2 ul li {
    margin: 0 16px;
	}
}
@media only screen and (max-width: 1200px) {
	.my-container {
		max-width: 940px;
	}
	#masthead .site-branding {
		width: 180px
	}
	#site-header-menu {
		margin-right: 0;
		padding-top: 10px;
	}
	#masthead nav ul li a {
    font-size: 14px;
		padding: 10px 18px;
	}
	#hp-banner {
		padding-top: 160px;
	}
	#masthead nav ul li.unique {
		width: 160px;
	}
	#hp-banner .col1 {
		width: 63%;
		padding-top: 20px;
	}
	#hp-banner h1, #inner-page-hero h1 {
		font-size: 52px;
		line-height: 64px;
	}
	#hp-banner .my-container {
		padding-top: 0;
	}
	#hp-banner p {
		margin-bottom: 20px;
		letter-spacing: 0.2px;
	}
	#hp-sec2::before {
    top: -93px;
	}
	#hp-sec2 {
		padding: 30px 0;
	}
	.btn-grdnt {
		width: 220px;
		font-size: 14px;
		line-height: 20px;
	}
	.row1 .column.col2 {
		padding-top: 90px;
	}
	#hp-sec2 .row1 {
		padding-bottom: 20px;
	}
	#hp-sec2 .row2 {
		padding-top: 130px;
	}
	.inner-sec h2, .inner-serv-cont h2 {
		font-size: 35px;
		line-height: 42px;
	}
	.row2 .column.col2 ul li:first-child {
		left: 6px;
	}
	.row2 .column.col2 ul li:nth-child(2) {
		top: -105px;
	}
	.row2 .column.col2 ul li:last-child {
		top: 105px;
	}
	.row2 .column.col2 ul li {
		width: 145px;
	}
	#hp-sec3 .my-container {
		padding: 170px 0 100px;
	}
	.serv-content {
		width: 76%;
	}
	.serv-box-content {
    min-height: 350px;
	}
	.serv-box-content a {
		font-size: 13px;
		line-height: 13px;
		padding: 15px 0;
	}
	.project-slides .project-img {
		height: 425px;
	}
	#hp-sec4::before {
    top: -115px;
	}
	#hp-sec5 {
		padding: 0 0 40px;
	}
	.testi-cont.slick-slide h4, .testi-cont.slick-slide p {
		font-size: 22px !important;
	}
	.testi-cont.slick-slide h4 {
		margin-bottom: 20px;
	}
	.serv-boxes ul li {
		margin: 0 12px;
	}
	#hp-sec6 {
		padding: 40px 0;
	}
	#hp-sec7 {
		padding: 50px 0;
	}
	.form-container {
		padding: 50px;
	}
	.foot-col.col1 {
		width: 30%;
		padding-right: 0px;
	}
	.foot-col.col2 {
    width: 69%;
    padding-bottom: 20px;
	}
	.contact-details {
    margin: 0 15px;
	}
	.foot-col ul {
    text-align: center;
	}
	#abt-sec2 .column.col1 {
    padding-top: 80px;
	}
	.badges-cont ul li {
    width: 45%;
	}
	#abt-sec4 .boxes-cont ul li {
    width: 30%;
		margin: 20px 14px;
	}
	#abt-sec2::before {
    content: '';
    top: -125px;
	}
	.testimonial-slides .slick-prev.slick-arrow {
    left: -10px;
	}
	.testimonial-slides .slick-next.slick-arrow {
    right: -10px;
	}
	#inner-page-hero p {
    font-size: 18px;
    line-height: 30px;
	}
	#inner-page-hero {
    padding: 170px 0;
	}
	#inner-page-hero .my-container {
    z-index: 9;
	}
	#serv-sec2 ul li {
    width: 437px;
	}
	.our-serv-square .square-cont {
    min-height: 250px;
		padding: 20px;
	}
	#serv-sec3 .we-do-cont {
    max-width: 100%;
    margin: 0 auto 40px;
	}
	#serv-sec3 ul li {
    width: 29%;
		padding: 20px;
		min-height: 590px;
	}
	#serv-sec3::after {
    bottom: -68px;
	}
	#serv-sec4 {
    padding: 120px 0 100px;
	}
	.serv-cta p {
    font-size: 18px;
    line-height: 26px;
	}
	#serv-sec4 .serv-cta {
    max-width: 690px;
	}
	.serv-cta a {
    padding: 15px 0;
    width: 260px;
	}
	#inner-page-hero.contact-banner {
    padding: 180px 0 260px;
    background-position: 20%;
	}
	.contact-us-form .contact-us-field {
    width: 48%;
    margin: 7px 3px;
	}
	.contact-us-form .contact-us-field .cuf-field {
    font-size: 16px;
	}
	#inner-serv-sec2::before {
    height: 277px;
    top: -133px;
	}
	#inner-serv-sec2 .column.col1 {
    padding-top: 150px;
	}
	#conclusion-sec {
    padding: 170px 0 90px;
	}
	#portfolio-sec2 ul li {
    margin: 0 14px;
	}
	#portfolio-sec2::before {
    top: -120px;
    height: 270px;
	}
}
@media only screen and (max-width: 980px) {
	.my-container {
		max-width: 747px;
	}
	.menu-toggle.toggled-on:focus {
    outline: none;
	}
	#menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    z-index: 1;
	}
	#masthead.sticky-header #menu-toggle {
    margin: 0;
    font-size: 17px;
	}
	#masthead.sticky-header {
    padding: 10px 0;
	}
	#site-header-menu.site-header-menu {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
	}
	#site-header-menu.site-header-menu #site-navigation {
    margin: 0;
	}	
	#site-header-menu {
		position: fixed;
		width: 50%;
		left: 0;
		top: 70px;
		bottom: 0;
		display: block;
		z-index: 99998;
		overflow-y: auto;
		overflow-x: hidden;
		outline: 1px solid transparent;
		transition: transform 0.5s;
		margin: 0;
		padding: 0;
	}
	#site-header-menu.site-header-menu.toggled-on {
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.main-navigation .primary-menu {
		text-align: left;
		background-color: #ffffff;
	}
	#masthead nav ul li:hover a::before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
	}
	#masthead nav ul li {
    float: none;
    padding: 0;
    width: 100%;
		border-top: none;
	}
	#masthead nav ul li.unique {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    text-align: left;
	}
	#masthead nav ul li.unique:hover {
    background-color: unset;
	}
	#masthead nav ul li a {
		color: #1a1a1a;
		z-index: 1;
		padding: 20px;
		border-bottom: 2px solid #e49124;
		border-left: 10px solid #e49124;
		font-family:'Lato', sans-serif;
	}
	#masthead nav ul li a:hover, #masthead nav ul li.unique:hover a {
		color: #fff;
	}
	#masthead nav ul li a::after {
    content: '';
    height: 100%;
    left: 0;
    top: 0;
    width: 0px;
    position: absolute;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    z-index: -1;
		background: linear-gradient(90deg, rgb(229, 147, 39) 0%, rgb(245, 187, 110) 100%);
	}
	#masthead nav ul li a:hover::after {
		width: 100%;
	}
	#masthead nav ul li a::before {
    width: 50%;
	}
	#masthead.sticky-header .site-branding {
    width: 120px;
	}
	#hp-banner {
    padding-top: 140px;
	}
	#hp-banner .my-container {
		padding-bottom: 50px;
	}
	#hp-banner h1, #inner-page-hero h1 {
		font-size: 40px;
		line-height: 54px;
	}
	#hp-banner .bnr-btn.apl {
		margin-right: 10px;
	}
	#hp-banner .col1 .hero-detail {
    padding-bottom: 0;
	}
	.btn-grdnt {
		width: 180px;
		padding: 15px 0;
	}
	p, #inner-page-hero p, .our-serv-cont p {
		font-size: 16px;
		line-height: 24px;
	}
	#hp-sec2::before {
    top: -62px;
	}
	#hp-sec2 .row1 .column img {
		width: 90%;
	}
	#hp-sec2 .column {
		z-index: 9;
		position: relative;
	}
	#hp-sec2 .row2 {
		padding-top: 110px;
	}
	.inner-sec h2, .inner-serv-cont h2 {
		font-size: 30px;
		line-height: 38px;
		margin-bottom: 10px;
	}
	.row2 .column.col2 ul li:first-child {
		left: 8px;
	}
	#hp-sec2 .row2 .column h4 {
    line-height: 20px;
	}
	.row2 .column.col2 ul li {
		width: 31%;
		min-height: 145px;
	}
	.row2 .column.col2 ul li:nth-child(2) {
		top: -75px;
		left: 36%;
	}
	.row2 .column.col2 ul li:last-child {
		top: 75px;
		left: 36%;
	}
	.serv-content {
		width: 100%;
	}
	.serv-boxes ul li {
		margin: 0px 20px 50px;
		width: 44%;
	}
	.serv-boxes ul li:first-child .serv-box-content, .serv-boxes ul li:nth-child(2) .serv-box-content {
		min-height: 190px;
	}
	.serv-box-content h5 {
		min-height: 50px;
		margin-bottom: 10px;
	}
	.serv-box-content a {
		width: 65%;
	}
	#hp-sec3 .my-container {
		padding: 160px 0 40px;
	}
	#hp-sec4::before {
    top: -85px;
	}
	.serv-boxes {
    padding-top: 40px;
	}
	.serv-box-content {
    min-height: 260px;
	}
	.project-slides .project-img {
		height: 352px;
	}
	.project-slides .slick-dots {
		margin: 30px auto 20px;
	}
	.btn-brd a {
		padding: 14px;
		font-size: 16px;
		line-height: 25px;
	}
	.btn-brd {
		max-width: 400px;
	}
	.why-col ul li {
		font-size: 16px;
		line-height: 23px;
	}
	.why-col ul li::before {
		background-size: 85%;
		margin-right: 0px;
	}
	.testi-cont.slick-slide h4, .testi-cont.slick-slide p {
		font-size: 20px !important;
		line-height: 28px;
	}
	.form-container {
		padding: 50px;
	}
	.form-container p {
    font-size: 20px;
	}
	.hp-cf-field {
		margin-right: 21px;
	}
	.home-form .field {
		padding: 5px;
	}
	.home-form .btn-grdnt {
		width: 255px;
	}
	.foot-col.col1 {
		width: 26%;
		padding-right: 0;
	}
	.foot-col.col2 {
		width: 73%;
	}
	.credits {
		width: 25%;
	}
	.credits.col2 {
		width: 74%;
		padding-bottom: 20px;
	}
	.contact-details:first-child div {
			width: auto;
	}
	.footer-nav ul li a {
		font-size: 12px;
		line-height: 18px;
	}
	.foot-col ul {
    text-align: center;
	}
	.contact-details {
    margin: auto;
    width: 49%;
	}
	#abt-sec2 .column.col1 {
		padding-top: 20px;
	}
	#abt-sec3 .column.col2 {
		padding-top: 0px;
	}
	.badges-cont ul li {
		min-height: 170px;
		margin: 10px 10px;
		width: 160px;
	}
	.badges-cont {
		padding-top: 0px;
	}
	#abt-sec3 {
		padding: 100px 0 150px;
	}
	#abt-sec4 .boxes-cont ul li {
    margin: 20px 11px;
	}
	.boxes p {
    padding: 0 10px;
    margin-bottom: 10px;
	}
	.ourteam_headline h2 {
    margin-bottom: 70px;
	}
	#abt-sec5 {
    padding: 50px 0;
    margin-bottom: 50px;
	}
	#inner-page-hero {
    padding: 120px 0;
	}
	#abt-sec2::before {
    content: '';
    top: -100px;
	}
	#inner-page-hero h1 {
    margin-bottom: 10px;
	}
	#inner-page-hero.services-banner::after {
    height: 100px;
	}
	.our-serv-square .square-cont {
    min-height: auto;
	}
	#serv-sec3 {
    padding: 70px 0 0;
	}
	.we-do-boxes h3 {
    font-size: 22px;
    line-height: 30px;
	}
	.we-do-boxes .box-icon {
    margin-bottom: 30px;
	}
	#serv-sec3 ul li {
    width: 45%;
    min-height: 520px;
	}
	#serv-sec3::after {
    bottom: -54px;
    height: 70px;
	}
	#serv-sec2 .our-serv-cont {
    margin: 0 auto 40px;
	}
	#inner-page-hero h1 {
    margin-bottom: 0;
	}
	#inner-page-hero p {
    margin-bottom: 30px;
	}
	#inner-page-hero.contact-banner {
    padding: 160px 0 190px;
    background-position: 20%;
	}
	.connect-form .column {
    width: 100%;
    float: none;
	}
	.connect-form .column.col2 {
    padding: 0;
	}
	#inner-serv-sec2::before {
    height: 220px;
		top: -104px;
	}
	#inner-serv-sec2 {
    padding: 20px 0 60px;
	}
	#inner-serv-sec2 .column.col1 {
    padding-top: 70px;
	}
	#abt-sec3 .column.col1 .img-cont, .inner-serv-cont .img-cont {
    padding: 15px;
	}
	#conclusion-sec {
    padding: 120px 0 40px;
	}
	#portfolio-sec2 ul li {
    margin: 0 10px;
	}
	#portfolio-sec2::before {
    top: -90px;
    height: 220px;
	}
	#portfolio-sec2 {
    padding: 100px 0;
	}
}
@media only screen and (max-width: 767px) {
	.my-container {
		max-width: 600px;
	}
	#masthead.sticky-header .site-branding {
		width: 120px;
	}
	#menu-toggle {
		margin: 15px 0;;
	}
	#masthead.sticky-header #menu-toggle {
    margin: 2px 0;
    font-size: 16px;
	}
	#hp-banner {
		padding-top: 150px;
	}
	#hp-banner .col1 {
		width: 100%;
		padding-top: 0;
		float: none;
	}
	#hp-banner h1 span {
		width: auto;
	}
	#hp-banner .col2 {
		width: 75%;
		padding-top: 20px;
		margin: 0 auto;
		float: none;
	}
	#hp-banner .my-container {
		padding-bottom: 0;
	}
	.column {
		float: none;
		width: 100%;
	}
	#hp-sec2 .row1 .column img {
		width: 80%;
	}
	.row1 .column.col2 {
		padding-top: 50px;
	}
	.inner-sec h2, .inner-serv-cont h2 {
		font-size: 26px;
		line-height: 32px;
	}
	#hp-sec2 .row2 {
		padding-top: 30px;
	}
	.row2 .column.col2 ul li {
		width: 45%;
		min-height: 188px;
		padding: 20px 0;
		position: relative;
		margin: 10px 9px;
		top: 0 !important;
		left: 0 !important;
		right: 0;
		bottom: 0;
		display: inline-block;
	}
	.row2 .column.col2 ul {
		padding-top: 20px;
	}
	#hp-sec3 .my-container {
		padding: 100px 0 40px;
	}
	.serv-boxes ul li {
		margin: 0px 12px 50px;
		width: 45%;
	}
	.serv-box-content {
    min-height: 280px;
	}
	.serv-boxes ul li:first-child .serv-box-content, .serv-boxes ul li:nth-child(2) .serv-box-content {
    min-height: 230px;
	}
	#hp-sec4 .latest-details h2 {
		margin-bottom: 20px;
	}
	#hp-sec4::before {
    top: -78px;
	}
	.why-col {
		width: 100%;
	}
	.why-col ul, .why-col.col2 {
		width: 50%;
	}
	.why-col.col2 {
		bottom: 70px;
		height: 65%;
	}
	#hp-sec6 {
		padding: 10px 0;
	}
	.testi-cont.slick-slide h4, .testi-cont.slick-slide p {
		font-size: 18px !important;
		line-height: 26px;
	}
	.testimonial-slides .slick-prev.slick-arrow {
		left: -60px;
	}
	.testimonial-slides .slick-next.slick-arrow {
		right: -60px;
	}
	.testimonial-slides button {
		background-size: 50%;
	}
	.form-container {
		padding: 40px;
	}
	.form-container p {
    font-size: 16px;
    line-height: 24px;
	}
	.hp-cf-field {
		margin-right: 16px;
	}
	.home-form label {
		font-size: 14px;
	}
	.foot-social a {
		font-size: 19px;
	}
	.contact-details {
		margin: 0;
		width: 100%;
	}
	.contact-details:first-child div {
		width: auto;
	}
	.foot-col.col2 ul {
		padding-left: 0px;
	}
	.foot-col.col2 .contact-details {
		margin-bottom: 5px;
		text-align: center;
		width: 49%;
		display: inline-block;
	}
	.foot-col.col2 {
		padding-bottom: 15px;
	}
	.credits p {
		font-size: 12px;
	}
	.footer-nav ul li {
		margin: 0 17px;
	}
	#abt-sec2 {
		padding: 40px 0 50px;
	}
	.badges-cont ul li {
		margin: 10px 6px;
		width: 137px;
	}
	.boxes h5 {
		padding: 0 5px;
	}
	#abt-sec4 {
		padding-bottom: 100px;
	}
	#abt-sec2::before {
		content: '';
		top: -80px;
	}
	#serv-sec3 {
    padding: 90px 0 0;
	}
	#serv-sec3 ul li {
    width: 44%;
    min-height: 555px;
	}
	#serv-sec4 {
    padding: 90px 0 70px;
	}
	.serv-cta p {
		font-size: 16px;
		line-height: 24px;
	}
	.serv-cta h2 {
    max-width: 380px;
	}
	.serv-cta a {
    width: 230px;
    margin-top: 10px;
	}
	#inner-page-hero.contact-banner {
    padding: 130px 0 150px;
    background-position: 20%;
	}
	#abt-sec2 .column.col1 {
		padding-top: 40px;
    padding-right: 0;
	}
	#abt-sec2 .column.col2 img {
    margin-top: 30px;
	}
	#abt-sec3 .column.col2 {
    padding-top: 30px;
	}
	#abt-sec4 .boxes-cont ul li {
    margin: 15px 10px;
    width: 46%;
	}
	#abt-sec4 {
    padding-bottom: 60px;
	}
	#inner-serv-sec2::before {
    height: 175px;
    top: -84px;
	}
	#inner-serv-sec2 .column.col1 {
    padding-top: 80px;
	}
	#inner-serv-sec2 .column.col2 {
    margin-top: 40px;
	}
	#conclusion-sec {
    padding: 80px 0 40px;
	}
	#portfolio-sec2 ul li {
    width: 44%;
    margin: 0 15px 30px;
	}
	#portfolio-sec2::before {
    top: -70px;
	}
}
@media only screen and (max-width: 640px) {
	.my-container {
		max-width: 420px;
	}
	#menu-toggle {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
	}
	#masthead .site-branding {
    width: 150px;
	}
	#masthead.sticky-header #menu-toggle {
    margin: 0;
	}
	#masthead.sticky-header .site-branding {
    width: 100px;
	}
	#site-header-menu {
		width: 50%;
		top: 60px;
	}
	#hp-banner {
    background-size: 150%;
	}
	#hp-banner h1, #inner-page-hero h1 {
    font-size: 28px;
    line-height: 34px;
	}
	p, #inner-page-hero p, .our-serv-cont p, #abt-sec4 .boxes p, .we-do-boxes p, #serv-sec3 .we-do-cont p, .we-do-boxes p {
    font-size: 14px;
    line-height: 24px;
		margin-bottom: 20px;
	}
	.inner-sec h2, .inner-serv-cont h2 {
    font-size: 20px;
    line-height: 26px;
	}
	#hp-sec2 .row2 {
    padding-top: 20px;
	}
	#hp-sec3 .my-container {
    padding: 110px 0 40px;
	}
	.serv-boxes ul li {
    margin: 0px 0px 50px;
    width: 69%;
	}
	.serv-box-content h5 {
    line-height: 22px;
	}
	.serv-box-content h5 {
    min-height: auto;
	}
	.serv-boxes ul li .serv-box-content p {
		margin-bottom: 20px;
	}
	#hp-sec4 {
    padding: 0 0 40px;
	}
	#hp-sec4::before {
    top: -48px;
	}
	.project-slides .project-img {
    height: 300px;
	}
	.btn-brd a {
    padding: 12px;
    font-size: 14px;
    line-height: 20px;
	}
	.btn-brd {
    max-width: 320px;
	}
	.project-slides .slick-dots {
    margin: 10px auto 20px;
	}
	.project-slides .slick-dots li button {
    padding: 3px;
    margin: 0 10px;
	}
	.why-col ul, .why-col.col2 {
			width: 100%;
	}
	.why-col {
		float: none;
	}
	.why-col.col2 {
    bottom: unset;
    height: 360px;
    position: relative;
    float: none;
    top: unset;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
	}
	.why-col.col2::before {
		border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
	}
	.why-col ul li {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
	}
	.testimonial-slides .slick-prev.slick-arrow {
    left: -40px;
	}
	.testimonial-slides .slick-next.slick-arrow {
    right: -40px;
	}
	.hp-cf-field {
    margin-right: 0;
    width: 100%;
	}
	.form-container {
    padding: 30px;
	}
	.form-container p {
    font-size: 14px;
    line-height: 20px;
	}
	.home-form .btn-grdnt {
    width: 201px;
    font-size: 14px;
    padding: 16px 0;
	}
	#hp-sec7 {
    padding: 50px 0 20px;
	}
	#colophon {
    background-position: right;
	}
	.foot-col.col1, .foot-col.col2 {
    width: 100%;
		padding-bottom: 10px;
	}
	.credits {
    width: 100%;
    text-align: center;
	}
	.credits.col2 {
    width: 100%;
		padding-bottom: 0;
	}
	.footer-nav ul {
    text-align: center;
	}
	.footer-nav ul li {
    margin: 10px 10px 0;
	}
	.badges-cont ul li {
    width: 195px;
	}
	.boxes-cont ul li {
    width: 100%;
	}
	.foot-col.col2 .contact-details {
    width: 55%;
	}
	#abt-sec2::before {
    content: '';
    top: -55px;
	}
	.testimonial-slides .slick-prev.slick-arrow {
    left: -10px;
	}
	.testimonial-slides .slick-next.slick-arrow {
    right: -10px;
	}
	#abt-sec2 p, #abt-sec3 p {
    font-size: 14px;
	}
	#abt-sec3 {
    padding: 70px 0 100px;
	}
	#abt-sec4 h2 {
    margin-bottom: 20px;
	}
	#abt-sec4 .boxes-cont ul li {
    margin: 15px 0px;
    width: 100%;
	}
	#inner-page-hero.services-banner p {
    margin-bottom: 20px;
	}
	#inner-page-hero {
    padding: 110px 0 50px;
	}
	.our-serv-square .square-cont h3 {
    font-size: 18px;
    line-height: 26px;
	}
	.our-serv-square .square-cont p {
    font-size: 14px;
    line-height: 24px;
	}
	.our-serv-square .square-cont a {
    padding: 14px 0;
    width: 180px;
	}
	#serv-sec2 .our-serv-cont {
    margin: 0 auto 40px;
	}
	#serv-sec2 ul li {
    width: 100%;
    margin: 15px 0;
	}
	#serv-sec3 {
    padding: 80px 0 0;
	}
	#serv-sec3 ul li {
    width: 100%;
    min-height: auto;
    margin: 0 0 30px;
	}
	.we-do-boxes h3 {
    font-size: 20px;
    line-height: 26px;
		margin-bottom: 10px;
	}
	#serv-sec3::after {
    bottom: -31px;
		height: 60px;
	}
	#serv-sec4 {
			padding: 60px 0;
	}
	.serv-cta h2 {
    max-width: 100%;
	}
	#hp-sec6.inner-testi {
    margin-bottom: 70px;
	}
	#inner-page-hero.contact-banner {
    padding: 120px 0 140px;
    background-position: 0%;
	}
	.contact-us-form .contact-us-field.message-field .cuf-field {
    height: 200px;
	}
	.contact-us-form .btn-grdnt {
    padding: 15px 0;
    margin: 20px auto 0;
    width: 220px;
    font-size: 16px;
	}
	#abt-sec3 .column.col1 .img-cont {
    padding: 20px;
	}
	#inner-serv-sec2::before {
    height: 150px;
	}
	#inner-page-hero.inner-serv-hero {
    padding-bottom: 60px;
	}
	#inner-serv-sec2 .column.col1 {
    padding-top: 50px;
	}
	#inner-serv-sec2 {
    padding: 20px 0;
	}
	#conclusion-sec {
    padding: 60px 0 40px;
	}
	#portfolio-sec2 ul li {
    width: 100%;
    margin: 0 0 30px;
	}
	#portfolio-sec2 {
    padding: 60px 0 30px;
	}
	#portfolio-sec2::before {
    top: -50px;
    height: 150px;
	}
}
@media only screen and (max-width: 440px) {
	.my-container {
		max-width: 280px;
	}
	#masthead .site-branding {
    width: 130px;
	}
	#hp-banner {
    padding-top: 120px;
	}
	.btn-grdnt {
    width: 120px;
    padding: 13px 0;
    font-size: 12px;
    line-height: 17px;
	}
	#hp-sec2::before {
    top: -32px;
	}
	#hp-sec2 .row1 .column img, #hp-banner .col2 {
    width: 100%;
	}
	.row2 .column.col2 ul li {
    width: 100%;
    min-height: auto;
	}
	.serv-boxes ul li {
    margin: 0px 0px 50px;
    width: 100%;
	}
	.row2 .column.col2 ul li {
		margin: 10px auto;
	}
	#hp-sec3 .my-container {
    padding: 90px 0 20px;
	}
	.project-slides {
    padding: 10px 0 0;
	}
	#hp-sec4 {
    padding: 0 0 30px;
	}
	#hp-sec4::before {
    top: -38px;
	}
	.why-col ul li::before {
    background-size: 76%;
    margin-right: 0px;
    width: 23px;
	}
	.testi-cont.slick-slide h4, .testi-cont.slick-slide p {
    font-size: 14px !important;
    line-height: 24px;
		margin-bottom: 15px;
	}
	.testimonial-slides .slick-prev.slick-arrow,
	.testimonial-slides .slick-next.slick-arrow {
		display: none;
	}
	#hp-sec7 {
    padding: 30px 0;
	}
	.form-container {
    padding: 20px;
	}
	.hp-cf-field {
			padding-bottom: 10px;
	}
	.foot-col.col2 .contact-details {
    margin-bottom: 5px;
    width: 100%;
	}
	.footer-nav ul li {
    margin: 10px 7px 0;
	}
	.contact-details div p {
		font-size: 14px;
	}
	.badges-cont ul li {
    width: 265px;
	}
	.foot-col.col2 .contact-details {
    text-align: center;
	}
	#colophon {
    padding-top: 0;
	}
	#abt-sec2::before {
    content: '';
		top: -40px;
	}
	#inner-page-hero {
    padding: 90px 0 50px;
	}
	.our-serv-square .square-cont {
    padding: 15px;
	}
	.we-do-boxes h3 {
    font-size: 18px;
    margin-bottom: 5px;
	}
	#serv-sec3 {
    padding: 70px 0 0;
	}
	#serv-sec3::after {
    bottom: -18px;
	}
	#inner-page-hero.contact-banner {
    padding: 100px 0 60px;
    background-position: 40%;
	}
	.contact-us-form .contact-us-field {
    width: 100%;
    margin: 7px 0;
	}
	#abt-sec2 .column.col1 {
    padding-top: 20px
	}
	#abt-sec2 .column.col2 p, #abt-sec3 .column.col1 p {
    font-size: 14px;
	}
	#abt-sec4 .box-content {
    padding: 15px 10px;
	}
	#abt-sec4 .boxes-cont h4 {
    margin: 0 0 15px;
	}
	#abt-sec3 .column.col1 .img-cont {
    padding: 10px;
		width: 100%;
	}
	#inner-serv-sec2::before {
    height: 100px;
    top: -60px;
	}
	#inner-page-hero.inner-serv-hero {
    padding-bottom: 40px;
	}
	#inner-serv-sec2 .column.col1 {
    padding-top: 30px;
	}
	#inner-serv-sec2 .column.col2 {
    margin-top: 20px;
	}
	#conclusion-sec {
    margin-bottom: 40px;
	}
	#portfolio-sec2::before {
    top: -40px;
    height: 100px;
	}
}
@media only screen and (max-width: 320px) {
	.my-container {
		max-width: 100%;
		width: 90%;
	}
	#abt-sec2 .column.col1 {
    padding-top: 20px
	}
	#portfolio-sec2::before {
    top: -30px;
	}
}
