:root {
	--mod: 8px;
	
	/*colors*/
	--anthracite: #28404D;
	
	--blue-100: #0a1326;
	--blue-200: #1B2B4C;
	--blue-300: #206C91;
	--blue-500: #1b2b4c;
	--blue-700: #5aa2e0;
	--blue-800: #A0C6E9;
	--blue-900: #f4fbff;
	
	
	
	--gray-900: #E6E6E6;
	--gray-100: #808080;
	
	--orange-200: #B3421B;
	--orange-500: #E1592B;
	--orange-900: #FAF2EF;
	
	/* transitions */
	--transition: 0.4s;
	
	/* sizes */
	--radius: calc(var(--mod) * 2);
	--radius-small: var(--mod);
  
	/* base font size */
	--base-font-size: var(--mod);

	/* header height */
	--header-height: calc(var(--mod) * 10);
	--header-height-collapsed: calc(var(--mod) * 7.5);

}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	
	/* default font */
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300; /*300-900*/
	font-style: normal;
	font-variation-settings: "wdth" 100;
	
	/* default font color */
	color: var(--anthracite);
}

html {scroll-behavior: smooth !important; font-size: var(--base-font-size); /*for REM units */}
body {padding:0; margin:0; scroll-behavior: smooth !important;}
html:focus-within {scroll-behavior: smooth !important;}

img {max-width: 100%; height: auto; display: block;}

::selection {
  color: #fff;
  background: var(--orange-500);
}

section {width: 100%; min-height: 100vh;}

div.trigger {width: 1px; height: 1px; background-color: transparent; position: absolute; left: 0;}
div.trigger.start {top: 0;}
div.trigger.mid {top: 50%;}
div.trigger.end {bottom: 0;}

/*
TYPOGRAPHY
*/
h1, h2, h1 *, h2 * {
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;	
}
h1 {font-weight: 700;}


h2:not(section#hero h2) {
	font-size: 27px;
	font-weight: 700;
	padding-bottom: 0.33em;
}
h3:not(section#hero h3) {
	font-size: 19px;
	font-weight: 600;
	font-style: italic;
}
h4:not(section#hero h4) {
	font-size: 17px;
	font-weight: 600;
	font-style: italic;
}
h5:not(section#hero h5) {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
}
p:not(section#hero p) {
	font-size: 18px;
	line-height: 1.33em;
}

/* min 680 */
@media only screen and (min-width: 680px) {
h2:not(section#hero h2) {
	font-size: 33px;
}
h3:not(section#hero h3) {
	font-size: 23px;
}
p:not(section#hero p) {
	font-size: 19px;
}

}/* END min 680 */



/*
end TYPOGRAPHY
*/

div.sticky-fix {
	width: 100%;
	position: relative;
	height: 200px;
	background: transparent;
	display: none;
}
/* min 980 */
@media only screen and (min-width: 980px) {div.sticky-fix{display: block;}}

a {
	text-decoration: none;
	color: inherit;
	transition: all var(--transition);
}

a.button,
input[type=submit] {
	display: block;
	min-width: 192px;
	height: 48px;
	border-radius: 24px;
	padding: 0 calc(var(--mod) * 2);
	background-color: var(--orange-500);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.33);
	transition: all var(--transition);
}
a.button div {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	color: var(--blue-900);
	transition: all var(--transition);
}
a.button:hover,
input[type=submit]:hover {
	background-color: var(--orange-900);
	box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
}
a.button:hover div {color: var(--orange-500);}


/* min 980 */
@media only screen and (min-width: 980px) {

a.button,
input[type=submit] {
	height: 52px;
	border-radius: 26px;
	padding: 0 calc(var(--mod) * 3);
}
a.button div {
	font-size: 18px;
}

}/* END min 980 */

/* min 1400 */
@media only screen and (min-width: 1400px) {

a.button,
input[type=submit] {
	height: 64px;
	border-radius: 32px;
	padding: 0 calc(var(--mod) * 4);
}
a.button div {
	font-size: 20px;
}

}/* END min 1400 */

/*
|
| END GLOBALS
|
*/

/*
HERO
*/

section#hero {
	position: sticky;
	top:0;
	height: 100vh;
	/* background: linear-gradient(16deg, var(--orange-500) 8%, #8B4539 15%, #1B2B4C 50%, var(--blue-100) 80%); */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	background-image: url("./img/hero-img.jpg");
	background-repeat: no-repeat;
	background-position: fixed;
	background-size: cover;
}

#video-wrap {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;	
}
#video-wrap video#hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#video-wrap.hidden {display: none;}

div#over-video {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width: 100%;
	height: 100%;
}

div#header-wrap {
	position: absolute;
	top:0; left:0;
	width: 100%;
	height: auto;
	padding: 32px 16px 0 16px;
}
div#header-bar {
	width: 100%;
	height: 80px;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

nav#main-nav ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: calc(var(--mod) * 3);
	
	display: none;
}
nav#main-nav ul li {}
nav#main-nav ul li a {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: var(--blue-800);
}
nav#main-nav ul li a.active {color: var(--orange-500);}
nav#main-nav ul li a:hover {
	color: var(--blue-900);
}
div#header-bar #header-button {display: none;}


div#hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: calc(var(--mod) * 3);
	padding: 15vh 32px 0 32px;
}
div#hero-content h1#hero-title {
	color: var(--blue-900);
	/* color: var(--orange-500); */
	text-align: center;
	font-size: 32px;
	font-style: italic;
}
div#hero-content div#hero-separator {
	width: 80vw;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--mod) * 3);
}
div.hero-separator-line {
	width: 80%;
	height: 1px;
	border-top: solid 1px var(--blue-900);
	
	display: none;
}
div#hero-content h2#hero-subtitle {
	font-weight: 300;
	color: var(--blue-900);
	text-align: center;
	line-height: 1.5em;
	font-size: 18px;
}
div#hero-content h2#hero-subtitle br {display: none;}

a#hero-cta-button {display: block; transform: translateY(24px);}


/* min 680 */
@media only screen and (min-width: 680px) {
	
div#header-wrap {padding: 32px 32px 0 32px;}
div#header-bar {
	height: 96px;
	border-radius: 48px;
	padding: 0 24px;
	background-color: var(--blue-100);
	border: solid 1px #000000;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.75);
	justify-content: space-between;
}

div#header-bar #header-button {display: block;}

div#hero-content {
	padding-top: 15vh;
}
div#hero-content h1#hero-title {
	font-size: 48px;
}
div.hero-separator-line {display: block;}
div#hero-content h2#hero-subtitle {
	font-size: 22px;
}


a#hero-cta-button {display: none;}

}/* END min 680*/


/* min 980 */
@media only screen and (min-width: 980px) {

div#header-wrap {padding: 48px 48px 0 48px;}
div#header-bar {
	height: 100px;
	border-radius: 50px;
	padding: 0 24px 0 50px;
	background-color: var(--blue-100);
	border: solid 1px #000000;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.75);
	justify-content: space-between;
}

div#hero-content h1#hero-title {
	font-size: 64px;
	text-shadow: 1px -1px 2px var(--blue-100), 0 2px 2px var(--blue-800);
}
div#hero-content h2#hero-subtitle {
	font-size: 28px;
}
div#hero-content h2#hero-subtitle br {display: inline;}

}/* END min 980*/


/* min 1400 */
@media only screen and (min-width: 1400px) {

div#header-wrap {padding: 64px 64px 0 64px;}
nav#main-nav ul {display: flex;}

div#hero-content {
	padding-top: 5vh;
}	
	
}/* END min 1400*/


/*
end HERO
*/


/*
OVERVIEW section
*/

section#overview {
	position: relative;
	z-index: 10;
	min-height: 100vh;
	background-color: var(--blue-900);
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

section#overview div#overview-inner {
	position: relative;
	max-width: 1400px;
	padding: calc(var(--mod) * 5) 0 0 0;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: calc(var(--mod) * 6);
}

div#overview-content {
	flex-grow: 0;
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	
	padding: 0 calc(var(--mod) * 2);
	
	position: relative;
}

div#overview-content #overview-headings {
	width: 100%;
	padding-bottom: calc(var(--mod) * 4);
}
div#overview-content #overview-headings h2 {
	color: var(--blue-200);
}
div#overview-content #overview-headings h3 {
	color: var(--orange-500);
}
div#overview-content p {
	color: var(--blue-200);
}

div#overview-image {
	height: 100%;
	flex-grow: 0;
	flex-basis: 50%;
	overflow: hidden;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
div#overview-image img {}


/* min 680 */
@media only screen and (min-width: 680px) {

section#overview div#overview-inner {
	height: 100%;
	padding: calc(var(--mod) * 8) calc(var(--mod) * 4);
}

div#overview-image img {
	border-radius: var(--radius);
}


}/* END min 680 */


/* min 980 */
@media only screen and (min-width: 980px) {

section#overview {
	flex-direction: row;
	height: 100vh;
	position: sticky;
	top: 0;
}

div#overview-content {
	height: 100%;
	padding: 0;
}

section#overview div#overview-inner {
	flex-direction: row;
	padding: calc(var(--mod) * 16) calc(var(--mod) * 4);
}

	
}/* END min 980 */

/* min 1200 */
@media only screen and (min-width: 1200px) {
	
div#overview-content {
	background-image: url('./img/watermark4.jpg');
	background-repeat: no-repeat;
	background-size: 240px;
	background-position: left top;
}
	
}/* END min 1200 */

/*
end OVERVIEW section
*/


/*
DETAILS section
*/

section#details {
	position: relative;
	z-index: 20;
	min-height: 100vh;
	background-color: var(--blue-200);
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	
	/* background-image: url("./img/sparkling-bg.jpg");
	background-repeat: no-repeat;
	background-position: fixed;
	background-size: cover; */
}

section#details div#details-inner {
	position: relative;
	max-width: 1400px;
	height: 100%;
	padding: calc(var(--mod) * 5) 0 0 0;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: calc(var(--mod) * 6);
}

div#details-content {
	height: 100%;
	flex-grow: 0;
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	
	padding: 0 calc(var(--mod) * 2);
}
div#details-content #details-headings {
	width: 100%;
	padding-bottom: calc(var(--mod) * 4);
}
div#details-content #details-headings h2 {
	color: var(--orange-500);
}
div#details-content #details-headings h3 {
	color: var(--blue-700);
	text-shadow: 1px 1px 3px rgba(0,0,0,1);
}
div#details-content p {
	color: var(--blue-900);
	text-shadow: 1px 1px 3px rgba(0,0,0,1);
}

div#details-image {
	height: 100%;
	flex-grow: 0;
	flex-basis: 50%;
	overflow: hidden;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	
	order: 5;
}
div#details-image img {}


/* min 680 */
@media only screen and (min-width: 680px) {

section#details div#details-inner {
	height: 100%;
	padding: calc(var(--mod) * 8) calc(var(--mod) * 4);
}

div#details-image img {
	border-radius: var(--radius);
	border: solid 2px var(--blue-100);
}

}/* END min 680 */

/* min 980 */
@media only screen and (min-width: 980px) {


section#details {
	position: sticky;
	top: 0;
	flex-direction: row;
	justify-content: center;
	height: 100vh;
}

div#details-content {
	padding: 0;
	justify-content: center;
}

section#details div#details-inner {
	flex-direction: row;
	padding: calc(var(--mod) * 16) calc(var(--mod) * 4);
}

div#details-image {
	order:0;
	justify-content: center;
}
	
}/* END min 980 */


/*
end DETAILS section
*/


/*
SERVICES section
*/
section#services {
	min-height: 100vh;
	position: relative;
	z-index: 50;
	background-color: var(--blue-100);
	background: linear-gradient(16deg, var(--orange-500) 1%, var(--blue-100), var(--blue-100), var(--blue-100));
/* 	background-image: url("./img/orange-to-dark-bg.jpg");
	background-repeat: no-repeat;
	background-position: fixed;
	background-size: cover; */
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}

section#services #services-inner {
	position: relative;
	height: 100%;
	width: 100%;
	max-width: 1400px;
	padding: 0 0 calc(var(--mod) * 5) 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
div#services-blocks {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--mod) * 3);
}

div#services-intro-block {
	background-color: var(--orange-500);
	padding: calc(var(--mod) * 5) calc(var(--mod) * 2);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
div#services-headers {
	position: relative;
	width: 100%;
	padding-bottom: calc(var(--mod) * 4);
}
div#services-intro-block h2 {
	width: 100%;
	color: var(--orange-900);
}
div#services-intro-block h3 {
	width: 100%;
	color: var(--blue-100);
}
div#services-intro-block p {
	width: 100%;
	color: var(--orange-900);
}

div#services-items-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(var(--mod) * 6);
	width: 100%;
	padding: calc(var(--mod) * 4) calc(var(--mod) * 2);
}
div#services-items-wrap div.services-item {
	position: relative;
	width: 100%;
	min-height: 160px;
	background-color: var(--blue-900);
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: space-between;
	align-items: center;
	border-radius: var(--radius);
	overflow: hidden;
}
div#services-items-wrap div.services-item div.services-item-img {
	/* height: 100%; */
	width: 100%;
	aspect-ratio: 1/1;
	background-color: var(--blue-700);
}
div#services-items-wrap div.services-item div.services-item-img img {}
div#services-items-wrap div.services-item div.services-item-text-wrapper {
	padding: calc(var(--mod) * 3) calc(var(--mod) * 2) calc(var(--mod) * 3) calc(var(--mod) * 2);
}
div#services-items-wrap div.services-item p.services-item-text {
	display: inline;
	text-align: center;
}

div#services-footer {
	padding-top: calc(var(--mod) * 4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(var(--mod) * 4);
}
div#services-footer p {
	color: var(--blue-900);
	min-width: 0;
	text-align: center;
	padding: calc(var(--mod) * 2);
	text-shadow: 1px 1px 3px rgba(0,0,0,1);
}
div#services-footer a.button {
	flex-shrink: 0
}
div#services-footer a.button div {}


/* min 680 */
@media only screen and (min-width: 680px) {

div#services-intro-block {
	padding: calc(var(--mod) * 8) calc(var(--mod) * 4);
}

div#services-items-wrap div.services-item {
	padding-right: calc(var(--mod) * 4 );
	flex-direction: row;
	gap: calc(var(--mod) * 4 );
	justify-content: space-between;
	overflow: hidden;
}



}/* END min 680 */

/* min 800 */
@media only screen and (min-width: 800px) {

div#services-items-wrap div.services-item div.services-item-img {
	height: 100%;
	width: auto;
}

}/* END min 800 */

/* min 980 */
@media only screen and (min-width: 980px) {

section#services {

}

section#services #services-inner {
	padding: calc(var(--mod) * 8) calc(var(--mod) * 4);
}

div#services-blocks {
	grid-template-columns: 1fr 2fr;
	gap: calc(var(--mod) * 3);
}
div#services-intro-block {
	height: 100%;
	padding: calc(var(--mod) * 4);
	border-radius: var(--radius);
}
div#services-items-wrap {
	padding: 0;
	gap: calc(var(--mod) * 4);
}
div#services-items-wrap div.services-item {
	gap: calc(var(--mod) * 3 );
}


div#services-items-wrap div.services-item div.services-item-img {
	width: auto;
	height: 192px;
}
div#services-items-wrap div.services-item p.services-item-text {
	text-align: left;
	padding: 0;
}

div#services-footer {
	padding-top: calc(var(--mod) * 4);
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
div#services-footer p {
	text-align: right;
	padding: 0;
}

	
}/* END min 980 */

/* min 1200 */
@media only screen and (min-width: 1200px) {
	
section#services {
	position: sticky;
	top: 0;
}

}/* END min 1200 */

div.sticky-fix#pre-testimonials {
	display: none;
}
/* min 1200 */
@media only screen and (min-width: 1200px) {
div.sticky-fix#pre-testimonials {
	display: block;
}
}/* END min 1200 */

/*
end SERVICES section
*/


/*
TESTIMONIALS section
*/
section#testimonials {
	position: relative;
	width: 100%;
	z-index: 100;
	min-height: 100vh;
	background-color: var(--blue-900);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


section#testimonials #testimonials-inner {
	position: relative;
	height: 100%;
	width: 100%;
	max-width: 1400px;
	padding: calc(var(--mod) * 5) calc(var(--mod) * 2) calc(var(--mod) * 5) calc(var(--mod) * 2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section#testimonials #testimonials-headers {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-bottom: calc(var(--mod) * 4);
}
section#testimonials #testimonials-headers h2 {text-align: center; color: var(--blue-100);}
section#testimonials #testimonials-headers h3 {text-align: center; color: var(--orange-500);}

div#testimonials-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--mod) * 4);
}

div.testimonials-item {
	display: flex;
	flex-direction: column;
	gap: calc(var(--mod) * 2);
	padding-bottom: calc(var(--mod) * 3);
}

div.testimonials-item .testimonials-item-content {
	background-color: #fff;
	border-radius: var(--radius);
	border-bottom-left-radius: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	padding: calc(var(--mod) * 3) calc(var(--mod) * 2);
	height: auto;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	transition: all var(--transition);
}
div.testimonials-item .testimonials-item-content:hover {box-shadow: 2px 3px 6px rgba(0,0,0,0.2);}
div.testimonials-item .testimonials-item-content p {display: inline;}

div.testimonials-item div.testimonials-item-caption {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
div.testimonials-item div.testimonials-item-caption div.testimonial-image {
	background-color: var(--blue-700);
	width: 64px; height: 64px; border-radius: 50%;
	/* border-top-left-radius: 0; */
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
div.testimonials-item div.testimonials-item-caption div.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

div.testimonials-item div.testimonials-item-caption .testimonial-data {
	padding-left: calc(var(--mod) * 2);
}
div.testimonials-item div.testimonials-item-caption .testimonial-data h4 {
	color: var(--orange-500);
	padding-bottom: 0.15em;
}
div.testimonials-item div.testimonials-item-caption .testimonial-data h4 span {
	color: var(--blue-100);
	font-weight: 400;
	font-style: inherit;
}
div.testimonials-item div.testimonials-item-caption .testimonial-data h5 {
	color: var(--blue-300);
	padding-left: 0.33em;
}

/* min 680 */
@media only screen and (min-width: 680px) {

div#testimonials-wrapper {
	grid-template-columns: 1fr 1fr;
	gap: calc(var(--mod) * 6);
}

section#testimonials #testimonials-headers {
	padding-bottom: calc(var(--mod) * 5);
}

section#testimonials #testimonials-headers h2 {text-align: left;}
section#testimonials #testimonials-headers h3 {text-align: left;}

div.testimonials-item .testimonials-item-content {
	height: 360px;
}

}/* END min 680 */


/* min 980 */
@media only screen and (min-width: 980px) {

/* section#testimonials #testimonials-inner {
	padding: 0 0 calc(var(--mod) * 5) 0;
} */

section#testimonials {
	height: auto;
	min-height: 100vh;
}

section#testimonials #testimonials-inner {
	padding: calc(var(--mod) * 8) calc(var(--mod) * 4);
}

section#testimonials #testimonials-headers {
	padding-bottom: calc(var(--mod) * 6);
}

div.testimonials-item .testimonials-item-content {
	height: 208px;
	padding: calc(var(--mod) * 2) calc(var(--mod) * 4);
}
	
}/* END min 980 */


@media only screen and (min-width: 1200px) {
	
section#testimonials {
	position: sticky;
	top: -50vh;
}	
	
}/* END min 1200 */

/*
end TESTIMONIALS section
*/




/*
CLIENTS section
*/

section#clients {
	min-height: 100vh;
	background-color: var(--blue-800);
	position: relative;
	z-index: 200;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

section#clients div#clients-inner {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	padding: calc(var(--mod) * 4) calc(var(--mod) * 2);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
}
section#clients div#clients-inner div.logo-box {
	position: relative;
	width: 45%;
	max-width: 290px;
	max-height: 290px;	
	/* border: solid 1px #000; */
}
section#clients div#clients-inner div.logo-box img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

div.sticky-fix#clients-to-contact {display: none}

/* min 460*/
@media only screen and (min-width: 460px) {
	
section#clients div#clients-inner div.logo-box {
	width: 30%;
}

}/* END min 460*/

/* min 680*/
@media only screen and (min-width: 680px) {

section#clients {
	min-height: 75vh;
}

section#clients div#clients-inner {
	width: 100%;
	max-width: 1400px;
	padding: calc(var(--mod) * 5);
}

}/* END min 680*/

/* min 980*/
@media only screen and (min-width: 980px) {

section#clients {
	height: 50vh;
}

section#clients div#clients-inner {
	width: 100%;
	max-width: 1400px;
	padding: calc(var(--mod) * 5);
}

section#clients div#clients-inner div.logo-box {
	width: 30%;
	max-width: 200px;
	max-height: 200px;	
}
	
}/* END min 980*/


/* min 1200*/
@media only screen and (min-width: 1200px) {
	
div.sticky-fix#clients-to-contact {display: block}

section#clients {
	position: sticky;
	top: 0;
}	

section#clients {
	height: 75vh;
}

section#clients div#clients-inner div.logo-box {
	width: 15%;
	max-width: 290px;
	max-height: 290px;	
}
	
}/* END min 1200 */

/*
end CLIENTS section
*/



/*
CONTACT section
*/

section#contact {
	position: relative;
	z-index: 300;
	min-height: 100vh;
	background: linear-gradient(16deg, var(--blue-700) 8%, #1B2B4C 50%, var(--blue-100) 80%);
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
section#contact div#contact-inner {
	position: relative;
	width: 100%;
	max-width: 1400px;
	height: 100%;
	padding: calc(var(--mod) * 6) calc(var(--mod) * 2) calc(var(--mod) * 6) calc(var(--mod) * 2);	
	display: flex;
	flex-direction: column;
	gap: calc(var(--mod) * 4);
}

div#contact-text {
	flex-basis: 50%;
	background-color: var(--orange-500);
	border-radius: var(--radius);
	padding: calc(var(--mod) * 2) calc(var(--mod) * 2) calc(var(--mod) * 32) calc(var(--mod) * 2);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-image: url("./img/contact-img.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

div#contact-text h2 {
	color: var(--blue-900);
	/* text-shadow: 0 0 2px #fff; */
}
div#contact-text p {color: var(--blue-900);}

div#contact-form-wrap {
	position: relative;
	height: 100%;
	flex-basis: 100%;
}
div#contact-inner.invisible {display: none !important;}

form#contact-form {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: calc(var(--mod) * 2);
}
form#contact-form div.input-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	/* align-items: center; */
	gap: var(--mod);
}

form#contact-form label {
	font-size: 18px;
	color: var(--blue-800);
}
form#contact-form input[type=text] {
	width: 100%;
	height: 48px;
	padding: var(--mod) calc(var(--mod) * 2);
	border-radius: var(--radius-small);
	background-color: var(--blue-800);
	border: none;
	color: var(--blue-100);
	font-size: 16px;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
form#contact-form textarea {
	height: 256px;

	padding: calc(var(--mod) * 2);
	border-radius: var(--radius-small);
	background-color: var(--blue-800);
	border: none;
	color: var(--blue-100);
	font-size: 16px;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

div#send-button-wrap {
	width: 100%;
	padding-top: calc(var(--mod) * 2);
	display: flex;
	justify-content: flex-end;
}
form#contact-form div#send-button-wrap input#send-btn {
	border: none;
	cursor: pointer;
	font-size: 20px;
	font-weight: 500;
	color: var(--blue-900);
}
form#contact-form div#send-button-wrap input#send-btn:hover { 
	color: var(--orange-500);
}

form#contact-form div#send-button-wrap input#send-btn:disabled {
	cursor: no-drop;
	opacity: 0.33;
}
form#contact-form div#send-button-wrap input#send-btn:disabled:hover {
	cursor: no-drop;
	opacity: 0.33;
	color: var(--blue-900);
	background-color: var(--orange-500);
}

input::placeholder,
textarea::placeholder {
  color: #fff;
}

form#contact-form input:focus,
form#contact-form textarea:focus {
  background-color: var(--blue-900);
  border: none;
  outline: none;
  box-shadow:inset 0 0 6px rgba(0,0,0,.66);


}

form#contact-form #hehe,
form#contact-form #hehe * {overflow: hidden; width:0; height:0;}

div#form-message {
	position: absolute;
	z-index: 800;
	top: 0; left:0; right:0; bottom:0;
	width: 100%;height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	display:none;
}
div#form-message p {
	font-weight: 700;
	text-align: center;
	font-size: 24px !important;
	width: 50%;
	min-width: 300px;
	padding: calc(var(--mod) * 8) calc(var(--mod) * 6);
	background-color: var(--blue-900);
	color: var(--blue-700);
	border-radius: var(--radius);
}
div#form-message.message-sent {display: flex;}

/* min 680 */
@media only screen and (min-width: 680px) {

div#contact-text {
	padding: calc(var(--mod) * 3) calc(var(--mod) * 3) calc(var(--mod) * 48) calc(var(--mod) * 3);
}

form#contact-form label {
	font-size: 19px;
}

}/* END min 680 */

/* min 480*/
@media only screen and (min-width: 480px) {

form#contact-form input[type=text] {
	width: 66%;
}

}/* END min 480*/

/* min 800*/
@media only screen and (min-width: 800px) {

section#contact div#contact-inner {
	padding: calc(var(--mod) * 4) calc(var(--mod) * 4);	
	flex-direction: row;
}

form#contact-form input[type=text] {
	width: 50%;
}

} /* END min 800*/

/*
end CONTACT section
*/



div#footer {
	position: sticky;
	top: calc(100vh - 48px);
	width: 100%;
	height: 48px;
	z-index: 500;
	background-color: var(--blue-100);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
div#footer p {
	color: var(--blue-800);
	font-size: 14px !important;
	text-align: center;
}


a#to-top-btn {
	position: fixed;
	z-index: 500;
	bottom: var(--mod);
	right: var(--mod);
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: var(--orange-500);
	opacity: 0;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
a#to-top-btn:hover {background-color: var(--orange-900);}

a#to-top-btn span {
	color: var(--orange-900);
	font-weight: 500;
	font-size: 24px;
	line-height:0px;
	text-align: center;
	transition: all var(--transition);
	transform: translateX(-1px) rotate(-90deg);	
}
a#to-top-btn:hover span {color: var(--blue-100);}

a#to-top-btn.hidden-btn {opacity: 0;}
a#to-top-btn.show-btn {opacity: 1;}

/* min 680*/
@media only screen and (min-width: 680px) {

a#to-top-btn {
	bottom: calc(var(--mod) * 2);
	right: calc(var(--mod) * 2);
	width: 48px;
	height: 48px;
	border-radius: 24px;
}
a#to-top-btn span {
	font-size: 32px;
}
	
}/* END min 680*/


















