:root {
	--pad-clamp: clamp(15px, 4vw, 50px)
}

body, html {
	scroll-behavior: smooth;
}

.divider-right, .divider-left {
	margin-top: 0px;
	margin-bottom: 0px;
	position: relative;
	z-index: 5;
}

.wrap {
    max-width: 1500px;
	position: relative;
}

.site-header, .topbar, .sub-header {
	display: none;
}

.site-inner > .wrap {
    max-width: 100%;
}

#hero {
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* HOW */

#how {
	position: relative;
}

#how .wrap {
	padding: 100px var(--pad-clamp);
}

.landing-content {
	position: relative;
}

.background img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}


.back-texture {
	mix-blend-mode:multiply;
}


.main-title {
	color: var(--orange);
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	font-family: var(--thin-font);
}

.main-subtitle {
	font-size: 40px;
	text-align: center;
	font-family: var(--thin-font);
}

.case-studies {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	gap: 200px;
}

.case-studies img {
	border: 3px solid white;
	margin-bottom: 20px;
}

.case-studies li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between
}


.case-study-title {
	color: var(--orange);
	font-family: var(--thin-font);
	font-size: 30px;
	text-align: center;
}

.case-study-subtitle {
	color: white;
	font-size: 30px;
	font-family: var(--thin-font);
	text-align: center;
}

.case-link {
	background: white;
	color: var(--orange);
	font-family: var(--thing-font);
	text-transform: uppercase;
	padding: 5px 20px;
	font-size: 18px;
	border: 3px solid white;
}

.case-link:hover {
	background: none;
	color: white;
}


/* WHY */


#why {
	position: relative;
}

.why-content {
	position: relative;
	padding: 90px var(--pad-clamp);
}

.services {
	display: flex;
	gap: 35px;
	position: relative;
	z-index: 50;
}

.service {
	width: 25%;
	padding: 20px;
	border: 3px solid var(--orange);
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: .3s;
	background: black;
}

.service:hover {
	background: white;
}

.service:hover .service-title {
	color: var(--orange);
}

.service i {
	position: absolute;
	font-size: 20px;
	bottom: -20px;
	color: var(--orange);
	z-index: 7;
} 

.service-hover {
	position: absolute;
	bottom: -25px;
	left: 0;
	transform: translatey(120%);
	transform-origin: top;
	background: black;
	padding: 15px;
	font-size: 14px;
	line-height: 15px;
	z-index: 6;
	border: 3px solid var(--orange);
	pointer-events: none;

	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

	opacity: 0;
	transition: .6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service:hover .service-hover {
	opacity: 1;
	transform: translatey(100%);
}

.service-hover p:last-child {
	margin-bottom: 0px;
}
   
.service img {
	max-height: 80px;
	object-fit: contain;
	margin-bottom: 20px;
}

.service-title {
	font-size: 18px;
	text-align: center;
	font-family: var(--thin-font);
}



/* CTA */

.cta {
	position: relative;
}

.cta .wrap {
	padding: 90px var(--pad-clamp);

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.orange-text {
	color: var(--orange);
}

.cta-link {
	background: white;
	padding: 5px 50px;
	text-transform: uppercase;
	line-height: 20px;
	text-align: center;
	border: 3px solid white;
	transition: .3s;
}

.cta-link:hover {
	background: none;
	color: white;
}

.cta-title {
	text-transform: capitalize;
	font-family: var(--thin-font);
	margin: 0px;
	text-align: center;
}





/* alt itas */

#alt {
	position: relative;
	padding: 90px var(--pad-clamp);
}

#alt .main-title, #alt .main-subtitle {
	position: relative;
}

.alt-title {
  color: var(--orange);
  font-family: var(--main-font);
  text-transform: uppercase;
	font-size: 24px;
}

.alt-container p {
  color: var(--white);
  font-family: 'Gotham Light';
  font-size: 18px;
    line-height: 21px;
}


.alt-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ODD */

.alt-container .left {
	padding: 40px 0px;
}

.alt-container li:nth-child(odd) {
  display: flex;
  flex-direction: row;
  gap: 90px;
}

.alt-container li:nth-child(odd) .left {
  width: 60%;
}

.alt-container li:nth-child(odd) .right {
  width: 40%;
  position: relative;
}

#alt .wrap {
  max-width: 1200px;
	margin-top: 50px;
}


/* EVEN */


.alt-container li:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  gap: 90px;
}

.alt-container li:nth-child(even) .left {
  width: 60%;
}

.alt-container li:nth-child(even) .right {
  width: 40%;
  position: relative;
}


.alt-container .background {
  position: absolute;
  height: 100%;
  width: 100%;
}

.alt-container .background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.alt-container li:last-of-type .background img {
	object-position: top;
}









/* REVIEWS */

#reviews {
	position: relative;
}

#reviews .wrap {
	padding: 90px var(--pad-clamp);
}




/* SCHEDLUE */

.sch-flex {
	display: flex;
}

.sch-left, .sch-right {
	width: 50%;
	display: flex;
	align-items: center;

	padding: 60px;
}

.sch-left {
	justify-content: flex-end;
	background: var(--orange);
}

.sch-right {
	justify-content: flex-start;
	background: #2D2D2D;
	display: block;
}

.sch-wrap {
	max-width: 700px;
}

.black-text {
	color: black;
}

.sch-subtitle {
	font-family: var(--thin-font);
	font-size: 20px;
	margin: 0px;
}

.sch-title {
	font-family: var(--bold-font);
	font-size: 60px;
	margin-bottom: 0px;
}

/* form */


.sch-right input, .sch-right textarea {
	background: white;
	border: 3px solid white;
	color: black!important;
	transition: .3s;
}

 .sch-right input:focus, .sch-right textarea:focus {
	background: black!important;
}

 .sch-right input:focus::placeholder, .sch-right textarea:focus::placeholder {
	color: white;
}

.sch-right input:hover, .sch-right textarea:hover, 
.sch-right input:focus, .sch-right textarea:focus
{
	border: 3px solid var(--orange);
}


.sch-right input::placeholder, .sch-right textarea::placeholder {
	color: #707070;
	font-family: var(--bold-font);
}

.sch-right input type=[text] {
	color: white!important;
}

.sch-right button, .sch-right input[type=button], .sch-right input[type=reset], .sch-right input[type=submit], .sch-right .button {
	font-family: var(--bold-font)!important;
	color: black!important;
}

.sch-right select:focus, .sch-right input:focus, .sch-right textarea:focus {
	color: white!important;
}


.sch-right button:hover, .sch-right input[type=button]:hover, .sch-right input[type=reset]:hover, .sch-right input[type=submit]:hover, .sch-right .button:hover {
	background: black;
	color: white!important;
}


.schedule .gform_wrapper.gravity-theme .gfield textarea.large {
	height: 200px!important;
}






/* WORK */

#our-work {
	position: relative;
}

#our-work img {
	opacity: 1;
}

.work-content {
	padding: 300px var(--pad-clamp);
	position: relative;
	background: linear-gradient(180deg, rgba(235,106,37,.7) 0%, rgba(0, 0, 0, .8) 100%);
}

.work-content .wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.work-title {
	font-size: 70px;
	font-family: var(--bold-font);
	text-align: center;
}

.work-content p {
	font-size: 18px;
	text-align: center;
	line-height: 19px;
}

.work-link {
	background: var(--orange);
	color: white;
	font-size: 30px;
	margin: auto;
	text-align: center;
	padding: 10px 60px;
	text-transform: uppercase;
	border: 5px solid var(--orange);
	transition: .3s;
	backdrop-filter: blur(10px);
}

.work-link:hover {
	background: none;
}






/* NEW EDITS  */

/* hero */

.pad {
	padding: 100px var(--pad-clamp);
}

#hero .wrap {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

#hero .wrap::before, #hero .wrap::after {
	content: none;
}

.hero-logo {
	max-width: 900px;
	margin-inline: auto;
	display: block;
}

.hero-titles {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
}

.hero-title {
	font-size: 70px;
	font-family: var(--bold-font);
	line-height: 1;
	margin: 0px;
}

.hero-titles img {
	max-width: 276px;
	object-fit: contain;
}

.anchor-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 2px solid var(--orange);
}

.anchor-link {
	text-align: center;
	color: #fff;
	font-weight: bold;
	padding: 10px;
	position: relative;
}

.anchor-link:nth-child(even) {
	border-inline: 2px solid var(--orange);
	/* background: linear-gradient(180deg,rgba(235,106,37,1) 0%,#0d0d0d 100%); */
}

.anchor-link:last-child{
	border-right: 0px;
}

.anchor-link::after {
    content: "\f13a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    margin: auto;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,0%);
    transition: .3s;
}

.anchor-link:hover::after {
    transform: translate(-50%,15px);
    opacity: 1;
}

/* where */

#where {
	border-top: 3px solid var(--orange);
}

.con-title {
	text-align: center;
	font-size: 40px;
	text-wrap: balance;
	font-family: var(--thin-font);
}

.con-subtitle {
	text-align: center;
	font-size: 30px;
	text-wrap: balance;
	font-family: var(--thin-font);
}


/* google services info */

.divider-title {
	font-size: 40px;
	text-align: center;
	text-wrap: balance;
	font-family: var(--bold-font);
	padding: 40px var(--pad-clamp);
	border-block: 3px solid var(--orange);
	margin: 0px;
}

.g-flex {
	display: flex;
	gap: 20px;
}

.g-right .g-flex {
	flex-direction: row-reverse;
}

.g-img {
	width: 30%;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.g-text {
	width: 70%;
}

.g-right {
	background: #2D2D2D;
}

/* service blocks */

.g-service-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.info-block {
	display: flex;
	aspect-ratio: 2 / 1;
	border: 3px solid var(--orange);
}

.g-info-title {
	background: #fff;
	color: #000;
	font-family: var(--bold-font);
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 10px;
	width: 50%;
	margin: 0px;
}

.info-block-text {
	background: var(--orange);
	
	padding: 10px;
	
	width: 50%;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.info-block-text p {
	color: #000;
	font-family: var(--bold-font);
	line-height: 1.1;
	text-align: center;
	font-size: 16px;
	margin: 0px;
}

.info-block-text li {
	color: #000;
	font-family: var(--bold-font);
	line-height: 1.1;
	text-align: left!important;
	font-size: 16px;
	list-style-type: disc;
}


.anchor-btns {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 20px;
	z-index: 50;
}

.anchor-btn {
	font-size: 40px;
	line-height: 1;
	background: white;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 4px solid #fff;
	transition: .4s;
	box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px;
	padding: 10px;
	position: relative;
}

.anchor-btn:hover {
	transform: scale(1.1);
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
}

.tooltip {
	position: absolute;
	background: #2d2d2d;
	font-size: 12px;
	padding: 7px;
	color: #fff;
	border-radius: 20px;
	text-align: center;
	width: 100px;
	height: 40px;
	top: -50px;
	right: 0px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
	z-index: 0;
	opacity: 0;
	transition: .4s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.anchor-btn:hover .tooltip {
	opacity: 1!important;
}






@media(max-width: 2000px) {

	.sch-subtitle {
		font-size: 16px;
	}
	
	.sch-title {
		font-size: 40px;
	}

	.sch-wrap {
		max-width: 500px;
	}

	.work-content {
		padding: 200px var(--pad-clamp);
	}

	.work-content .wrap {
		max-width: 900px;
	}

	.work-title {
		font-size: 50px;
	}

	.work-content p {
		font-size: 16px;
	}

	.work-link {
		font-size: 20px;
	}
}

@media(max-width: 1350px) {
	.hero-logo {
		max-width: 700px;
	}

	.hero-titles {
		flex-wrap: wrap;
	}

	.hero-title {
		font-size: 50px;
		text-wrap: balance;
	}

	/* google services */

	.g-flex, .g-right .g-flex {
		flex-direction: column;
	}

	.g-img, .g-text {
		width: 100%;
	}

	.g-img {
		width: 100%;
		height: 200px;
		position: relative;
	}

	.g-img img {
		height: 100%;
		width: 100%;
		max-width: 300px;
		object-fit: contain;
		position: absolute;
	}
	
}

@media(max-width: 1200px) {
	.case-studies {
		gap: 20px;
	}

	.services {
		flex-direction: column;
	}

	.service {
		width: 50%;
	}

	.service i {
		bottom: initial;
		right: -18px;
		transform: rotate(-90deg);
	}

	.service-hover {
		top: 0;
		bottom: initial;
		left: initial;
		right: -25px;
		height: 100%;
		width: 100%;
		transform: translate(100%, 0%)
	}

	.service:hover .service-hover {
		transform: translate(100%, 0%)
	}

	.sch-left, .sch-right {
		padding: 30px;
	}

	.schedule .gform_wrapper.gravity-theme .gfield textarea.large {
		height: 150px!important;
	}

	/* google services */

	.divider-title {
		font-size: 30px;
	}
	
}

@media(max-width: 1024px) {

	.cta .wrap {
		flex-direction: column;
	}

	.alt-container {
		gap: 30px;
	}

	.alt-container li {
		flex-direction: column-reverse!important;
		gap: 10px!important;
		align-items: center;
	}

	.alt-container .left, .alt-container .right {
		width: 100%!important;
	}

	.alt-container .left {
		padding: 10px 0px;
		max-width: 600px;
		text-align: center;
	}

	.alt-container .right {
		max-width: 600px;
		height: 300px;
	}

	.sch-flex {
		flex-direction: column;
	}

	.sch-left, .sch-right {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.sch-right {
		display: flex;
	}

	.sch-right .sch-wrap, .sch-right p {
		max-width: 100%;
		width: 100%;
	}

	/* NEW STUFF */
	/* HERO */

	.pad {
		padding: 70px var(--pad-clamp);
	}

	/* google services */

	.g-service-info {
		grid-template-columns: 1fr;
	}

	.info-block {
		aspect-ratio: initial;
		max-width: 500px;
		margin-inline: auto;
		width: 100%;
	}

}

@media(max-width: 768px) {

	/* how / case studies */

	.case-studies {
		flex-direction: column;
	}

	.main-title {
		font-size: 20px;
	}

	.main-subtitle {
		font-size: 30px;
	}

	.case-study-title {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.case-study-subtitle {
		font-size: 20px;
	}

	#how .wrap, .why-content, .cta .wrap, #reviews .wrap, #alt {
		padding: 50px var(--pad-clamp);
	}

	.service {
		width: 100%;
	}

	.service-hover {
		position: relative;
		display: block;
		opacity: 1;
		transform: initial;
		left: initial;
		right: initial;
		top: initial;
		bottom: initial;
	}

	.service i {
		display: none;
	}

	.service:hover .service-hover {
		transform: initial;
	}

	.work-content {
		padding: 100px var(--pad-clamp);
	}

	.work-title {
		font-size: 40px;
	}

	.work-link {
		font-size: 18px;
		padding: 10px 30px;
		border: 3px solid var(--orange);
	}

	/* NEW STUFF */
	/* HERO */

	.pad {
		padding: 40px var(--pad-clamp);
	}

	#hero .wrap {
		gap: 20px;
	}

	.hero-logo {
		max-width: 400px;
	}

	.hero-title {
		font-size: 35px;
	}

	.hero-titles img {
		max-width: 200px;
	}

	.anchor-links {
		grid-template-columns: repeat(2, 1fr);
		border: 0px;
	}

	.anchor-links .anchor-link {
		background: none;
		border: 2px solid var(--orange);
		font-size: 14px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.anchor-link::after {
		position: relative;
		transform: none;
		opacity: 1;
		left: 0px;
		margin: 0px;
	}

	.anchor-link:hover::after {
		transform: none;
		opacity: 1;
		left: 0px;
	}

	/* where */

	.con-title {
		font-size: 25px;
	}

	/* google services */

	.info-block-text p, .info-block-text li {
		font-size: 14px;
	}

}

@media(max-width: 550px) {
	.sch-left .sch-wrap {
		max-width: 350px;
	}

	.sch-title {
		font-size: 25px;
	}

	.sch-right button, .sch-right input[type=button], .sch-right input[type=reset], .sch-right input[type=submit], .sch-right .button {
		padding: 10px 20px!important;
	}

	.work-title {
		font-size: 30px;
	}
}