@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
	--color-rojo: rgba(155, 28, 68, 0.80);

	--primary-overlay-color: rgba(112, 20, 66, 0.80);

	--secondary-overlay-color: rgba(1, 118, 1, 0.80);

	--overlay-color: rgba(0, 0, 0, 0.80);

	--pimg-overlay-color: rgba(112, 20, 66, 0.90);

	--menu-speed: 0.75s;

	--text-color: #beb7a4;

	--color-black: #1c1b1b;
}






* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: var(--text-color);
}



body,
html {
	height: 100%;
	margin: 0;
	font-family: 'Roboto Slab', serif;
	font-family: 'Rubik', sans-serif;
	scroll-behavior: smooth;
	line-height: 1.8em;
	letter-spacing: 1px;
	background-color: var(--color-black);

	/* ADDED */
	width: 100%;
}



/*-- Main Titles --*/


h1 {
	font-weight: 900;
	/*font-size: 3rem;*/
	font-size: clamp(1.9rem, calc(7vw + 1rem), 3rem);

	font-family: 'Roboto Slab', serif;
	line-height: 1.4em;
	margin-bottom: 1px;
}

h2 {
	font-weight: 800;
	/*font-size: 2.3rem;*/
	font-size: clamp(1.9rem, calc(7vw + 1rem), 3rem);
	font-family: 'Roboto Slab', serif;

	line-height: 1.4em;
	margin-bottom: 1px;
}

h3 {
	font-weight: 600;
	/*font-size: 1.5rem;*/
	font-size: clamp(1.5rem, calc(5vw + 1rem), 1.5rem);

	font-family: 'Rubik', sans-serif;
	margin-bottom: 1px;
}

h4 {
	font-weight: 500;
	font-size: 1.4rem;

	margin-bottom: 1px;
}

p {
	font-weight: 400;
	font-size: 1.2rem;

	line-height: 2.3em;
}


/* Core Styles End */







/* Preloader */

.preload {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;

	/* background-color: #77b3d4; */
	background-color: var(--text-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease;
	/* ADDED */
	z-index: 8;
}

.cloud1,
.cloud2,
.cloud3 {
	height: 100px;
	position: absolute;
	right: 0;
	z-index: -1;
}

.cloud1 {
	top: 27%;
	transform: translate(100%, -27%);
	animation: clouds 3s ease infinite;
}

.cloud2 {
	top: 50%;
	transform: translate(100%, -50%);
	animation: clouds 3s ease infinite 2s;
}

.cloud3 {
	top: 75%;
	transform: translate(100%, -75%);
	animation: clouds 3s ease infinite 1s;
}

.airplane {
	height: 200px;
	animation: airplane 1s ease infinite alternate;
}


.preload h3 {
	position: absolute;
	top: 75%;
	transform: translateY(-75%);
	color: #202020;
	/* rgb 32, 32, 32 */
	font-family: 'Roboto Slab', serif;
	font-size: 1.8rem;
	z-index: 8;
}


.preload-finish {
	opacity: 0;
	pointer-events: none;
}


@keyframes airplane {
	from {
		transform: translateX(60px);
	}

	to {
		transform: translateX(-60px);
	}
}



/* Preloader End */












button:hover {
	background-color: #1fb56c;
	border-color: #ffffff;
	color: var(--text-color);
	text-decoration: none;
	transform: scale(120%);
	transition-duration: 0.8s;
}












/* Contact Button */


.getintouch {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10002;
	cursor: pointer;
	width: 60px;
	height: 60px;
	background-color: var(--secondary-overlay-color);
	margin-top: 0px;
	transition-duration: 0.8s;
}


.getintouch img {
	align-content: center;
	align-items: center;
	justify-content: center;
	height: auto;
	width: 60px;

	/*color: var(--text-color); , changed actual graphic to be this color*/
}

/*ADDED NEW BUTTON END*/












/* Navbar Menu */

.menu-wrap {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9;
}

.menu-wrap .toggler {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10002;
	cursor: pointer;
	width: 50px;
	height: 50px;
	opacity: 0;
}

.menu-wrap .hamburger {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	width: 60px;
	height: 60px;
	padding: 1rem;
	background: var(--primary-overlay-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hamburger Line */

.menu-wrap .hamburger>div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.7s ease;
}

/* Hamburger Lines - Top & Bottom */

.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
	content: '';
	position: absolute;
	z-index: 10001;
	top: -10px;
	width: 100%;
	height: 2px;
	background-color: inherit;
}

/* Moves Line Down */

.menu-wrap .hamburger>div::after {
	top: 10px;
}

/* Toggler Animation */

.menu-wrap .toggler:checked+.hamburger>div {
	transform: rotate(135deg);
}

/* Turns Lines Into X */

.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
	top: 0;
	transform: rotate(90deg);
}

/* Rotate On Hover When Checked */

.menu-wrap .toggler:checked:hover+.hamburger>div {
	transform: rotate(225deg);
}

/* Show Menu */

.menu-wrap .toggler:checked~.menu {
	visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
	transform: scale(1);
	transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>nav {
	opacity: 1;
	transition: opacity 0.7s ease 0.7s;
}

.menu-wrap .menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-wrap .menu>div {
	background: var(--overlay-color);
	border-radius: 50%;
	width: 300vw;
	height: 300vw;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: all 0.7s ease-in;
}

.menu-wrap .menu>div>nav {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.7s ease-in;
}

.menu-wrap .menu>div>nav>ul>li {
	list-style: none;
	color: var(--text-color);
	font-size: 1.5rem;
	padding: 1rem;
	/*---ADDED---*/
	text-transform: uppercase;
}

.menu-wrap .menu>div>nav>ul>li>a {
	color: inherit;
	text-decoration: none;
	transition: color 0.7s ease-in;
	z-index: 9;
	/* font-family: 'Roboto Slab', serif; */
}


/*--Navbar Menu End --*/











/*--Video --*/



.showcase {
	position: relative;
	right: 0;
	width: 100%;
	min-height: 100vh;
	padding: 170px;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	background-color: var(--color-black);
	transition: 0.5s;
	z-index: 2;
}

.showcase video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}


/*
If added image instead ... Continue on Line 2664


.showcase {
	background-image: url(./images/video/xxx.png);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}
*/




.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-black);
	mix-blend-mode: overlay;
}

.text {
	position: relative;
	z-index: 10;
}

.text h1 {
	font-size: 9.7rem;
	font-weight: 900;
	color: var(--text-color);
	line-height: 1em;
}

.text h2 {
	font-size: 6rem;
	font-weight: 700;
	color: var(--text-color);
	line-height: 1em;
}


.text p {
	font-size: 1.7rem;
	color: var(--text-color);
	margin-top: 50px;
	line-height: 1.7em;
	font-weight: 400;
}


/*--Video End --*/













/* Images */


.pimg1,
.pimg2,
.pimg3,
.pimg4,
.pimg5,
.pimg6,
.pimg7,
.pimg8 {
	position: relative;
	opacity: 0.5;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;




	/*
fixed = parallax
scroll = normal
*/

	background-attachment: fixed;
	z-index: -2;
}


.pimg1 {
	background-image: url(./images/pimg1.png);
	min-height: 100%;
}


.pimg2 {
	background-image: url(./images/pimg2.png);
	min-height: 100%;
}


.pimg3 {
	background-image: url(./images/pimg3.png);
	min-height: 100%;
}


.pimg4 {
	background-image: url(./images/pimg4.png);
	min-height: 100%;
}


.pimg5 {
	background-image: url(./images/pimg5.png);
	min-height: 100%;
}


.pimg6 {
	background-image: url(./images/pimg6.png);
	min-height: 100%;
}


.pimg7 {
	background-image: url(./images/pimg7.png);
	min-height: 100%;
}

.pimg8 {
	background-image: url(./images/pimg8.png);
	min-height: 100%;
}

/* Images End */







/* Back Home Logo */



.logo img {
	width: auto;
	height: 77px;
	display: block;
	margin: 0 auto;
}





/* Logo background */


/*
.backgroundlogo {
	/*background-color: var(--color-black);
	padding-bottom: 70px;
}
*/

/* Logo background */











/* Descriptions  --- Media Querries at Line 1330 */


.section {
	text-align: center;
	/*padding: min(50px, 50%);*/
}


/* Descriptions End */







/* Background Images (Description) */


.section-dark {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-image: url(./images/ink_vert.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.section-dark p {
	padding: 0 27%;
}


.section-dark .centercopy h1 {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-color: transparent;
}

.section-dark .centercopy p {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-color: transparent;
}

.section-dark-flip {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-image: url(./images/ink_vert_flip.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.section-dark-flip p {
	padding: 0 27%;
}

.section-dark-flip .centercopy h1 {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-color: transparent;
}

.section-dark-flip .centercopy p {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-color: transparent;
}

.centercopy h2 {
	font-weight: 700;
	font-size: clamp(1.9rem, calc(7vw + 1rem), 3rem);
	font-family: 'Roboto Slab', serif;
	margin-top: 5px;
	line-height: 1.4em;
}


.section-questions {
	background-color: var(--color-black);
	color: var(--text-color);
	text-align: center;
	background-image: url(./images/ink_vert_2_questions.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}


.section-questions p {
	padding: 0 27%;
}


/* Background Images (Description) End */





















/* Text at Center of Images */


.ptext {
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	color: var(--text-color);
	font-size: 1.3rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 2.3em;
}



.ptext .border {
	background-color: var(--pimg-overlay-color);
	color: var(--text-color);
	padding: 15px;
	border-radius: 0px;


	clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);


	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


/* Rabbet - "Cross"
clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);


/* Inset
clip-path: inset(5% 20% 15% 10% round 5% 20% 0 10%);


/* Trapezoid
clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);


/* Right Arrow
clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);


/* Border Only shape
clip-path: polygon(evenodd, 0% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 90%, 10% 10%, 90% 10%, 90% 90%, 10% 90%, 0% 100%);


/* Star shape

clip-path: polygon(50% 2.45%, 61.8% 38.77%, 100% 38.77%, 69.1% 61.215%, 80.9% 97.55%, 50% 75.1%, 19.1% 97.55%, 30.9% 61.215%, 0% 38.77%, 38.2% 38.77%);


/* Speech Bubble
clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 80%, 95% 85%, 85% 85%, 85% 100%, 70% 85%, 5% 85%, 0% 80%, 0% 5%);

/* Speech Bubble #2
clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 60% 80%, 50% 100%, 40% 80%, 0% 80%);


/* Rectangle Outline - bent corners
 clip-path: polygon(0 0, calc(100% - 76.08px) 0, calc(100% - 60px) 60px, 100% 76.08px, 100% 100%, 76.08px 100%, 60px calc(100% - 60px), 0 calc(100% - 76.08px), 0 0, 17px 17px, 17px calc(100% - 76.08px - 13.04px), calc(60px + 13.88px) calc(100% - 60px - 13.88px), calc(76.08px + 13.04px) calc(100% - 17px), calc(100% - 17px) calc(100% - 17px), calc(100% - 17px) calc(76.08px + 13.04px), calc(100% - 60px - 13.88px) calc(60px + 13.88px), calc(100% - 76.08px - 13.04px) 17px, 17px 17px);


 /* Rectangle Solid - bent corners
clip-path: polygon(0 0, calc(100% - 76.08px) 0, calc(100% - 60px) 60px, 100% 76.08px, 100% 100%, 76.08px 100%, 60px calc(100% - 60px), 0 calc(100% - 76.08px));





/* Text at Center of Images End */














/* Testimonials */


.section-b-grid {
	padding: 2em 1em 1em;
	background-color: var(--color-black);
}

.section-b-grid h2 {
	text-align: center;
}



.section-b-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	align-content: center;
	text-align: center;
}

.section-b-grid li {
	margin-bottom: 1em;
	background-color: var(--color-black);
	color: var(--text-color);
}

.card img {
	width: 90px;
	border-radius: 50%;
}


/*--Client Name --*/


.card h2 {
	font-size: 1.4rem;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
}

.card p {
	font-size: 1rem;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
}

.card-content {
	padding: 1.5em;
}

.testimonials h1 {
	font-weight: 900;
	font-size: 2.5rem;
	color: var(--text-color);
	line-height: 1.3em;
	text-align: center;
	align-items: center;
	align-content: center;
	padding-top: 0.5em;
	padding-bottom: 0.9em;
}


.testimonials {
	background-image: url(./images/ink_line_2.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}



/* Testimonials End */








/* Testimonials Two*/



.testimonialstwo h1 {
	color: var(--text-color);
	text-align: center;
	align-items: center;
	align-content: center;
}

.testimonialstwo p {
	color: var(--text-color);
	text-align: center;
	align-items: center;
	align-content: center;
}

.testimonialstwo-image {
	background-image: url(./images/ink_line_2.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}


/* Testimonials Two -- End */













/* Contact Form*/



.forminfo {
	width: 100%;
	height: auto;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}


form {
	display: flex;
	flex-direction: column;
	padding: 2vw 4vw;
	width: 80%;
	max-width: 600px;
	/* border-radius: 7px; */
}

form h1 {
	font-size: 1.8rem;
	color: var(--text-color);
	font-weight: 900;
	margin-bottom: 20px;
	margin-top: 20px;
}



/*-- Name - Email - How can we help you? --*/
form input,
form textarea {
	border: 0;
	margin: 10px 0;
	padding: 20px;
	outline: none;
	background-color: var(--text-color);
	/* font-family: 'Roboto Slab', serif;  */
	font-family: 'Rubik', sans-serif;
	color: var(--color-black);
}

form button {
	padding: 7px 16px;
	background-color: var(--color-rojo);
	color: var(--text-color);
	font-size: 20px;
	border: 0;
	outline: none;
	cursor: pointer;
	width: 150px;
	margin: 20px auto 0;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	margin-bottom: 20px;
	transition-duration: 0.8s;
	font-family: 'Rubik', sans-serif;
}

form button submit {
	background-color: #1fb56c;
	/* border-color: #1fb56c; */
	text-decoration: none;
	transform: scale(117%);
	transition-duration: 0.8s;
}

form button:hover {
	background-color: #1fb56c;
	/* border-color: #1fb56c; */
	color: var(--text-color);
	text-decoration: none;
	transform: scale(120%);
	transition-duration: 0.8s;
}


/* Contact Form End */












/* Footer */


.main-footer-grid {
	padding: 0.7em;
	/*background: var(--color-black);*/
	color: var(--text-color);
	text-align: center;
	font-family: 'Roboto Slab', serif;
	font-weight: 300;
}

.main-footer-grid a {
	color: var(--text-color);
	text-decoration: none;
}


/* Footer End */
/*



















*/
/* Media Querries */



/*
fixed = parallax
scroll = normal
*/




/* Images */

@media (max-width:568px) {

	.pimg1,
	.pimg2,
	.pimg3,
	.pimg4,
	.pimg5,
	.pimg6,
	.pimg7,
	.pimg8 {
		background-attachment: scroll;
		scroll-behavior: smooth;
	}
}

/* Images End */
/*



















*/
/* Descriptions */



.testimonialstwo p {
	color: var(--text-color);
	text-align: center;
	align-items: center;
	align-content: center;
}

.testimonialstwo {
	padding: 1px;
}

/*



















*/
@media(max-width:1080px) {
	.section-dark p {
		padding: 0 27%;
	}
}

@media(max-width:1024px) {
	.section-dark p {
		padding: 0 27%;
	}
}

@media(max-width:960px) {
	.section-dark p {
		padding: 0 27%;
	}
}

@media(max-width:932px) {
	.section-dark p {
		padding: 0 27%;
	}
}

@media(max-width:915px) {
	.section-dark p {
		padding: 0 20%;
	}
}

@media(max-width:914px) {
	.section-dark p {
		padding: 0 20%;
	}
}

@media(max-width:912px) {
	.section-dark p {
		padding: 0 15%;
	}
}

@media(max-width:882px) {
	.section-dark p {
		padding: 0 15%;
	}
}

@media(max-width:853px) {
	.section-dark p {
		padding: 0 115%;
	}
}

@media(max-width:820px) {
	.section-dark p {
		padding: 0 11%;
	}
}

@media(max-width:720px) {
	.section-dark p {
		padding: 0 8%;
	}
}

@media(max-width:667px) {
	.section-dark p {
		padding: 0 2px;
	}
}

@media(max-width:568px) {
	.section-dark p {
		padding: 0 2px;
	}
}

@media(max-width:375px) {
	.section-dark p {
		padding: 0 2px;
	}
}

@media(max-width:414px) {
	.section-dark p {
		padding: 0 2px;
	}
}

@media(max-width:375px) {
	.section-dark p {
		padding: 0 2px;
	}
}

@media(max-width:320px) {
	.section-dark p {
		padding: 0 2px;
	}
}

/*



















*/
@media(max-width:1080px) {
	.section-dark-flip p {
		padding: 0 27%;
	}
}

@media(max-width:1024px) {
	.section-dark-flip p {
		padding: 0 27%;
	}
}

@media(max-width:960px) {
	.section-dark-flip p {
		padding: 0 27%;
	}
}

@media(max-width:932px) {
	.section-dark-flip p {
		padding: 0 27%;
	}
}

@media(max-width:915px) {
	.section-dark-flip p {
		padding: 0 20%;
	}
}

@media(max-width:914px) {
	.section-dark-flip p {
		padding: 0 20%;
	}
}

@media(max-width:912px) {
	.section-dark-flip p {
		padding: 0 15%;
	}
}

@media(max-width:882px) {
	.section-dark-flip p {
		padding: 0 15%;
	}
}

@media(max-width:853px) {
	.section-dark-flip p {
		padding: 0 115%;
	}
}

@media(max-width:820px) {
	.section-dark-flip p {
		padding: 0 11%;
	}
}

@media(max-width:720px) {
	.section-dark-flip p {
		padding: 0 8%;
	}
}

@media(max-width:667px) {
	.section-dark-flip p {
		padding: 0 2px;
	}
}

@media(max-width:568px) {
	.section-dark-flip p {
		padding: 0 2px;
	}
}

@media(max-width:375px) {
	.section-dark-flip p {
		padding: 0 2px;
	}
}

@media(max-width:414px) {
	.section-dark-flip p {
		padding: 0 2px;
	}
}

@media(max-width:375px) {
	.section-dark-flip p {
		padding: 0 2px;
	}
}

@media(max-width:320px) {
	.section-dark-flip p {
		padding: 0 2px;
	}
}

/*



















*/
@media(max-width:1080px) {
	.section-questions p {
		padding: 0 27%;
	}
}

@media(max-width:1024px) {
	.section-questions p {
		padding: 0 27%;
	}
}

@media(max-width:960px) {
	.section-questions p {
		padding: 0 27%;
	}
}

@media(max-width:932px) {
	.section-questions p {
		padding: 0 27%;
	}
}

@media(max-width:915px) {
	.section-questions p {
		padding: 0 20%;
	}
}

@media(max-width:914px) {
	.section-questions p {
		padding: 0 20%;
	}
}

@media(max-width:912px) {
	.section-questions p {
		padding: 0 15%;
	}
}

@media(max-width:882px) {
	.section-questions p {
		padding: 0 15%;
	}
}

@media(max-width:853px) {
	.section-questions p {
		padding: 0 115%;
	}
}

@media(max-width:820px) {
	.section-questions p {
		padding: 0 11%;
	}
}

@media(max-width:720px) {
	.section-questions p {
		padding: 0 8%;
	}
}

@media(max-width:667px) {
	.section-questions p {
		padding: 0 2px;
	}
}

@media(max-width:568px) {
	.section-questions p {
		padding: 0 2px;
	}
}

@media(max-width:375px) {
	.section-questions p {
		padding: 0 2px;
	}
}

@media(max-width:414px) {
	.section-questions p {
		padding: 0 2px;
	}
}

@media(max-width:375px) {
	.section-questions p {
		padding: 0 2px;
	}
}

@media(max-width:320px) {
	.section-questions p {
		padding: 0 2px;
	}
}

/*



















*/
@media(max-width:2880px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:2560px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:2048px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1600px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1440px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1280px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}


@media(max-width:1920px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}


@media(max-width:1800px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1700px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1600px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1536px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1440px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1368px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1366px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1280px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1180px) {
	.section {
		text-align: center;
		padding: 50px 15%;
	}
}

@media(max-width:1080px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:1024px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:960px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:932px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:915px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:914px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:912px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:882px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:853px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:820px) {
	.section {
		text-align: center;
		padding: 50px 2%;
	}
}

@media(max-width:720px) {
	.section {
		text-align: center;
		padding: 50px 2px;
	}
}

@media(max-width:667px) {
	.section {
		text-align: center;
		padding: 50px 2px;
	}
}

@media(max-width:568px) {
	.section {
		text-align: center;
		padding: 50px 2px;
	}
}

@media(max-width:375px) {
	.section {
		text-align: center;
		padding: 34px 2px;
	}
}

@media(max-width:414px) {
	.section {
		text-align: center;
		padding: 35px 2px;
	}
}

@media(max-width:375px) {
	.section {
		text-align: center;
		padding: 34px 2px;
	}
}

@media(max-width:320px) {
	.section {
		text-align: center;
		padding: 33px 2px;
	}
}

/*



















*/
/* Images at */





@media (max-width:2880px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:2560px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:2048px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:1920px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:1800px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:1600px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:1536px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:1440px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:1366px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:1280px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media (max-width:1080px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:1024px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:960px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:932px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:912px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:882px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:853px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:820px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:720px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}




@media (max-width:667px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


@media (max-width:568px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}



@media (max-width:375px) {
	.section-dark {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-questions {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_2_questions.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.section-dark-flip {
		background-color: var(--color-black);
		color: var(--text-color);
		background-image: url(./images/ink_vert_flip.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/* Descriptions End */
/*



















*/
/* Preloader */


@media (max-width:568px) {
	.airplane {
		height: 127px;
	}
}


/* Preloader End */
/*



















*/
/* Testimonials*/


@media (min-width: 700px) {
	.grid {
		display: grid;
		grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
	}


	.content-wrap,
	.section-b-grid ul {
		grid-column: 2/4;
	}

	.box,
	.main-footer-grid div {
		grid-column: span 2;
	}

	.section-b-grid ul {
		display: flex;
		justify-content: space-around;
	}

	.section-b-grid li {
		width: 30%;
	}
}

/*



















*/
@media (max-width: 1080px) {

	.section-b-grid {
		/* background-image: url(./images/ink_brushstroke_thin.png); */
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.logo img {
		width: auto;
		height: 70px;
		display: block;
		margin: 0 auto;
	}

	.ptext .border {
		background-color: var(--pimg-overlay-color);
		color: var(--text-color);
		padding: 20px;
		border-radius: 5px;
	}

	.ptext {
		letter-spacing: 3px;
	}
}

/* Testimonials End */
/*



















*/
/* Video */


@media (max-width:568px) {
	.showcase video {
		display: none;
	}


	/*

	.showcase {
		background-image: url(./images/video/xxx.png);
		background-size: 200%;
		background-position: center;
		background-repeat: no-repeat;
	}

	*/
}





@media (max-width: 991px) {

	.showcase {
		padding: 40px;
	}

	.text h1 {
		font-size: 4.5rem;
	}

	.text h2 {
		font-size: 2.7rem;
	}

	.text p {
		font-size: 1.1rem;
	}
}


/* Video End */



@media (max-width:1280px) {
	.showcase .text p {
		font-size: 1.2rem;
		color: var(--text-color);
	}
}

/*



















*/
/*  Contact  Form */


/*

@media (min-width: 320px) {
	.forminfo {
		background-image: url(./images/ink_brush_strokes_horiz_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
}

@media (min-width: 480px) {
	.forminfo {
		background-image: url(./images/ink_brush_strokes_horiz_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
}

@media (min-width: 900px) {
	.forminfo {
		background-image: url(./images/ink_brush_strokes_horiz_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
}

@media (min-width: 2048px) {
	.forminfo {
		background-image: url(./images/ink_brush_strokes_horiz_2.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
}

*/


/*  Contact  End  */