/*!
Theme Name: lordlayers
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lordlayers
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

lordlayers is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

html,
body {
	margin: 0;
	/* font-size: 100%; */
	background: #fff;
	font-size: .9em;
	font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body a {
	text-decoration: none;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	font-family: 'Montserrat', sans-serif;
}

body img {
	max-width: 100%;
}

a:hover {
	text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	letter-spacing: 1px;
}

li {
	list-style-type: none;
}

p {
	margin: 0;
	font-size: 1em;
	/* line-height: 1.9em; */
	letter-spacing: 1px;
}

ul {
	margin: 0;
	padding: 0;
}

/* header */

/* CSS Document */
.header {
	position: absolute;
	z-index: 9;
	width: 100%;
}
.header > .nav-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2em;
	padding-bottom: 2em;
}
.menu-container {
	position: relative;
}

.menu-container .menu {
	color: #fff;
	position: absolute;
	background-color: #FF300A;
	width: 26em;
	height: 0px;
	right: -1em;
	top: -2em;
	transition: all .5s ease-in-out;
	overflow: hidden;
	/* display: block; */
}

.menu-container .menu ul {
	display: block;
	padding-left: 2.5em;
	padding-top: 3.5em;
	list-style-type: none;
}

.menu-container .menu ul li {
	display: inline-block;
	padding: .5em 0 1.5em 0;
	width: 100%;
}

.menu-container .menu ul li a {
	font-size: 1.5em;
	transition: all .5s ease-in-out;
	color: #fff;
}

.menu-container .menu ul li a:hover {
	color:  #050C44;
}

.menu-container.open .menu {
	height: 30em;
	/* height: 484px; */
	/* width: 388px; */
}

.menu-btn {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	cursor: pointer;
	/* transition: all .5s ease-in-out; */
	/* transition: all .5s cubic-bezier(1, 0, 0, 1); */
	/* transition: all .5s cubic-bezier(0.68, -0.6, 0.32, 1.6); */
	/* border: 3px solid #fff; */
}

.menu-btn__burger {
	width: 32px;
	height: 3px;
	background: #050C44;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
	transition: all .5s ease-in-out;
	/* z-index: 10; */
	/* transition: all .5s cubic-bezier(1, 0, 0, 1); */
	/* transition: all .5s cubic-bezier(0.68, -0.6, 0.32, 1.6); */
}

.menu-btn__burger::before,
.menu-btn__burger::after {
	content: '';
	position: absolute;
	width: 32px;
	height: 3px;
	background-color: #FF300A;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
	transition: all .5s ease-in-out;
	/* transition: all .5s cubic-bezier(1, 0, 0, 1); */
	/* transition: all .5s cubic-bezier(0.68, -0.6, 0.32, 1.6); */
}

.menu-container.open .menu-btn__burger::before,
.menu-container.open .menu-btn__burger::after {
	background-color: #fff;
}

.menu-btn__burger::before {
	transform: translateY(-10px);
}

.menu-btn__burger::after {
	transform: translateY(10px);
}

/* ANIMATION */
.menu-btn.open .menu-btn__burger {
	/* transform: translateX(-50px); */
	background: transparent;
	box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
	transform: rotate(45deg);
	/* transform: rotate(45deg) translate(35px, -35px); */
}

.menu-btn.open .menu-btn__burger::after {
	transform: rotate(-45deg);
	/* transform: rotate(-45deg) translate(35px, 35px); */
}

.clear {
	clear: both;
}

#logo a {
	float: left;
	text-transform: capitalize;
	display: initial;
	margin: 0;
	letter-spacing: 1px;
	color: #fff;
	font-weight: 800;
	padding: 0;
}

/* #logo a span {
	color: #fff;
} */


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content: "";
	display: table;
	clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display: inline-block;
	/* float: left; */
}

/* Styling the links */

/* Change ' +' in order to change the Dropdown symbol */
li>a:only-child:after {
	content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 800px) {}

@media all and (max-width : 330px) {}

/*-- //header --*/


/*--/banner-info--*/

.banner {
	color: #8F93AB;
	position: relative;
	z-index: 1;
}

.banner .btn-video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 110px;
	height: 110px;
	display: flex;
	background-color: #FF300A;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	justify-content: center;
	align-items: center;
}

.banner .btn-video:hover {
	box-shadow: 0 0 10px 5px rgb(0 0 0 / 30%)
}

.banner .btn-video::after {
	content: "";
	width: 11px;
	height: 11px;
	display: block;
	/* background-color: #fff; */
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: 16px solid #fff;
	transform: rotate(90deg);
}

.banner-info-grid h2 {
	display: inline-block;
	font-size: 4rem;
	font-weight: normal;
	letter-spacing: 0;
}

.banner-info-grid h2 strong {
	color: #050C44;
	font-weight: bold;
}

.banner-info-grid p {
	font-size: 1em;
	color: #000000;
	margin: 2em 0;
}

.banner-info-grid p span {
	color: #FF300A;
}

.slider-info a.btn {
	background: none;
	padding: 10px 25px;
	color: #fff;
	border: 2px solid #fff;
	font-size: 15px;
	letter-spacing: 1px;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-o-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-o-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.slider-info a.btn:hover {
	opacity: 0.8;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-o-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.banner-text {
	padding: 14vw 0 7vw;
}

.banner-image h4 {
	font-size: 20px;
}

.banner-image img {
	border-radius: 10px;
	box-shadow: 0 0 40px 0px rgb(0 0 0 / 20%)
}

/*-- //banner --*/

/*-- popup --*/
.popup-effect {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 0ms;
	visibility: hidden;
	opacity: 0;
	z-index: 99;
}

.popup-effect:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	background: #fff;
	border-radius: 4px;
	max-width: 60rem !important;
	position: relative;
	margin: 8em auto;
	padding: 3em 2em;
	z-index: 999;
}

.popup p {
	font-size: 15px;
	color: #FFFFFF;
}

.popup .close {
	position: absolute;
	top: 10px;
	right: 15px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
}

.iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* .popup iframe {
	width: 100%;
	height: 60vh;
	border: none;
} */

/*-- //popup --*/
@media (min-width: 992px) {
	/* .pt-lg-7 {
		padding-top: 7em;
	} */
}

/*-- all section --*/
section {
	color: #050C44;
	max-width: 100%;
}

section.bg-blue {
	background-color: #050C44;
	color: #FFFFFF;
}

h1,
h2 {
	font-family: 'Montserrat', sans-serif;
}

h3,
h4,
h5,
h6 {
	font-family: 'Roboto Slab', serif;
}

h2.heading-nav,
h3.heading-nav {
	position: relative;
	font-family: 'Roboto Slab', serif;
	font-size: 1.25em;
	letter-spacing: 0;
	text-transform: uppercase;
	padding-bottom: 1em;
}

.heading-nav::after {
	content: "";
	height: 2px;
	width: 2.5em;
	background-color: #FF300A;
	position: absolute;
	left: 0;
	top: 1.75em;
}

.heading {
	font-size: 2.75em;
	margin-bottom: 1em;
}

h4.counter {
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	font-size: 5em;
}

/*-- //all section --*/

/*-- about --*/
.about-text p {
	font-size: 1.5em;
	font-weight: 600;
}
.about-description p {
	line-height: 2em;
	font-size: 1.8em;
	font-weight: 500;
	margin-bottom: 1.5em;
}
/*-- our-work --*/
.work-title {
	letter-spacing: 2.44px;
}

.work-item:nth-child(even) {
	padding-top: 7em;
}

.work-item.more {
	padding-top: unset;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-outline-custom {
	border: 3px solid #FF300A;
	border-radius: 0;
	padding: 1em 2.5em;
	color: #fff;
	text-transform: uppercase;
}

.btn-outline-custom:hover {
	color: #ccc;
}

.work-thumb {
	max-width: 600px;
	width: 85%;
}
.work-thumb a {
	display: block;
	overflow: hidden;
}
.work-thumb img {
	transition: .5s ease-in;
}

.work-thumb:hover img {
	transform: scale(1.1);
}

/*-- services --*/
.service-category {
	color: #FF300A;
	font-size: 2em;
	font-weight: bold;
}

.services-list {
	font-size: 1.5em;
}

.services-list small {
	font-size: .65em;
}

/*-- approch --*/
.custom-card {
	color: #050C44;
	min-height: 28em;
	transition: .3s ease;
	box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, .1);
	background: #fff;
}

.custom-card:hover {
	color: #f8f9fa;
	background-color: #FF300A;
}

.custom-card h3 {
	font-size: 1.5em;
	font-weight: 600;
	letter-spacing: 1px;
}

.custom-card p {
	font-size: 1em;
}

.custom-card span.fa {
	text-align: center;
	background: rgba(76, 110, 245, .1);
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 20px;
	border-radius: 50%;
}

.testimonial-text {
	font-size: 1.5em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.testimonial-text .quote {
	font-size: 3.5rem;
	font-family: Georgia, 'Times New Roman', Times, serif;
}

.testimonial-author {
	font-family: 'Montserrat', sans-serif !important
}

.testimonial-author span {
	font-size: .8em;
}

/*-- why choose us --*/

.choose,
.video {
	background: #f8f9fa;
}

/*-- offered services --*/
/*-- projects --*/

.gal-img {
	margin-bottom: 1em;
	padding-right: 0px;
}

/* popup */
.pop-overlay {
	position: fixed;
	top: 0px;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 0ms;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
}

.pop-overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	background: #fff;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	max-width: 500px;
	position: relative;
	margin: 8em auto;
	padding: 3em 2em 2em;
}

.popup .close {
	position: absolute;
	top: 5px;
	right: 15px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
}

/* //popup */
/*-- //projects --*/

/*-- Testimonials --*/
.testi {
	background: url(../images/bg.jpg) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
}

.testimonials blockquote {
	background: #fff none repeat scroll 0 0;
	border: medium none;
	color: #666;
	display: block;
	font-size: 14px;
	padding: 30px 30px;
	position: relative;
}

blockquote span.fa {
	color: #009688;
}

.testimonials .carousel-info img {
	border-radius: 150px !important;
	height: 80px;
	width: 80px;
}

.testimonials .carousel-info {
	overflow: hidden;
}

.testimonials .carousel-info img {
	margin-right: 15px;
}

.testimonials .carousel-info span {
	display: block;
}

.testimonials span.testimonials-name {
	color: #fff;
	letter-spacing: 1px;
	font-size: 20px;
	font-weight: 500;
	margin: 15px 0 0px;
}

.testimonials span.testimonials-post {
	color: #eee;
	font-size: 14px;
	letter-spacing: 1px;
}

/*-- //testimonials --*/


/*-- footer --*/
footer {
	color: #fff;
	background: #050C44;
}

footer a {
	color: #fff;
}

footer a:hover {
	color: #bbb;
}

.contact-title {
	font-size: 4.5em;
}

.footer-title {
	font-size: 20px;
	letter-spacing: 1px;
	color: #fff;
}

a.contact-me {
	font-size: 2em !important;
	text-decoration: underline;
	letter-spacing: 2.8px;
}
.footer .footer-menu {
	display: flex;
	justify-content: space-between;
}
.footer ul.nav-links {
	font-size: 1.5em;
}
.footer ul.nav-links li {
	padding: .5em 0;
}
/* .nav-links > div:nth-child(even){
	padding-left: 10em;
} */
/* //quick links */

/* //footer */

/*-- move top --*/

.move-top {
	position: relative;
}

a.move-top {
	text-align: center;
	position: absolute;
	right: 1%;
	bottom: 1%;
}

a.move-top span {
	/* color: #fff; */
	width: 36px;
	height: 36px;
	border: transparent;
	line-height: 2em;
	background: #ffffff;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-o-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
}

/*-- //move top --*/


/*-- Helper --*/
.p-32 {
	font-size: 1.5em !important;
}

/*-- Responsive design --*/
/*-- slick-slider --*/
/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;

	position: absolute;
	top: 50%;

	display: block;

	width: 72px;
	height: 72px;
	/* background-color: red; */
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);

	cursor: pointer;

	color: transparent;
	border: none;
	outline: none;
	background: #F4F8FE;
	box-shadow: 0 3px 20px rgba(0, 0, 0, .2);
	border-radius: 50%;
	transition: all .2s ease-in-out;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	/* color: transparent; */
	outline: none;
	/* background: transparent; */
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before,
.slick-next:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}

.slick-prev:before {
	/* content: '←'; */
	content: "\f060";
}

[dir='rtl'] .slick-prev:before {
	/* content: '→'; */
	content: "\f061";
}

.slick-next {
	right: -25px;
}

[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}

.slick-next:before {
	/* content: '→'; */
	content: "\f061";
}

[dir='rtl'] .slick-next:before {
	/* content: '←'; */
	content: "\f060";
}

.slick-next:before,
.slick-prev:before {
	font-size: 24px;
	color: #000;
	/* background-color: #000; */
}

/*
.slick-prev:before {
	display: none;
} */
.fs-72 {
	font-size: 2.25em !important;
}

.fs-40 {
	font-size: 2.25em !important;
}

.fs-32 {
	font-size: 2em !important;
}

.fs-24 {
	font-size: 1.5em !important;
}

.fs-26 {
	font-size: 1.5em !important;
}

/* ==========================================================================
   Overlay
   ========================================================================== */

.overlay {
	position: fixed;
	top: 0px;
	left: 0;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;
}

.overlay-box {
	margin-top: 100px;
	display: inline-block;
}

.overlay-close {
	float: right;
	font-size: 30pt;
	margin-left: 10px;
	margin-top: -15px;
	cursor: pointer;
	color: White;
}

.overlay-content {
	float: left;
}


/*-- //Responsive design --*/

@media(max-width:1440px) {}

@media(max-width:1366px) {
	.banner-info-grid h2 {
		font-size: 3em;
		line-height: 60px;
	}
}

@media(max-width:1280px) {}

@media(max-width:1080px) {
	.banner-info-grid h2 {
		font-size: 2.8em;
		line-height: 55px;
	}

	.banner-info-grid p {
		font-size: 15px;
		margin: 1em 0;
	}

	.about-left h4 {
		font-size: 30px;
	}

	.about-text p {
		font-size: 14.5px;
	}

	.contact-info h4 {
		font-size: 14.5px;
		letter-spacing: 0px;
	}

	.serv-grids h3 {
		font-size: 18px;
		letter-spacing: 0px;
	}

	.information span.fa {
		font-size: 23px;
	}

	.banner-text {
		padding: 18vw 0 6vw;
	}
}

@media(max-width:1024px) {

	h2.heading-nav,
	h3.heading-nav {
		font-size: 1.25em;
	}

	.contact-info p a,
	.contact-info p,
	ul.links li a {
		font-size: 14px;
	}

	ul.partners-icon li i {
		font-size: 2.5em;
	}

	.inner-banner {
		height: 200px;
	}

	.custom-card h3 {
		font-size: 21px;
	}

	.custom-card p {
		font-size: 15px;
	}

	h4.feed-title {
		font-size: 20px;
	}

	ul.partners-icon li span.fa {
		font-size: 2.5em;
	}
}

@media(max-width:991px) {
	.login-icon {
		position: absolute;
		right: 10%;
	}

	.information p {
		font-size: 15px;
	}

	nav ul {
		margin-right: 3.5em;
	}

	#logo a {
		font-size: .7em;
	}

	nav a {
		font-size: 15px;
		padding: 10px 8px;
	}

	.information h4 {
		font-size: 19px;
		letter-spacing: 1px;
	}

	.process-grids img {
		width: 200px;
	}

	.contact_left iframe {
		min-height: 445px;
	}
	.counter-block {
		text-align: center;
	}
	.counter-block > div {
		margin-bottom: 1.5em;
	}
	.work-item {
		margin-top: 1.5em;
		padding-top: 1em !important;
	}
	.work-thumb {
		width: 90%;
		margin: 0 auto;
	}
	.service-category {
		margin: 1em 0;
	}
	.services-list {
		font-size: 1.25em;
	}
	.custom-card {
		text-align: center;
		min-height: 15em;
	}
	.custom-card p {
		min-height: 5em;
	}

	.footer .footer-menu {
		padding-top: 1.25em;
	}
}

@media(max-width:900px) {}

@media(max-width:800px) {}

@media(max-width:768px) {
	/* .banner-info-grid h2 {
		font-size: 1.75em;
		line-height: 1.2;
	} */
	#logo a {
		width: 70%;
	}

	.menu-container .menu {
		/* background-color: #FF300A; */
		width: 20em;
		/* height: 0px;
		right: -1em;
		top: -2em;
		transition: all .5s ease-in-out;
		overflow: hidden; */
		/* display: block; */
	}

	.video-right p {
		font-size: 14px;
	}

	.inner-banner {
		height: 170px;
	}

	.information h4 {
		font-size: 20px;
		letter-spacing: 1px;
	}

	.contact_right h3 {
		font-size: 26px;
	}

	.login-icon {
		right: 11%;
	}
	.custom-card {
		text-align: center;
		min-height: 20em;
	}
	.custom-card p {
		min-height: 5em;
	}
	.testimonial-slider img {
		border-radius: 1em;
	}
	.testimonial-text .quote {
		font-size: 1.5em;
	}
	.slick-next {
		right: 0;
	}
}

@media(max-width:736px) {
	.banner-info-grid h2 {
		margin-top: 1em;
		font-size: 2em;
		line-height: 1.2;
	}
	.banner .btn-video {
		width: 55px;
		height: 55px;
	}

.banner .btn-video::after {
	width: 6px;
	height: 6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 9px solid #fff;
}
.custom-card p {
		font-size: 14.5px;
	}
	.counter-block > div {
		display: flex;
		/* flex-direction: row-reverse; */
		justify-content: space-between;
		align-items: center;
	}
	.counter-block > div p {
		text-align: right;
	}

}

@media(max-width:684px) {}

@media(max-width:668px) {}

@media(max-width:640px) {}

@media(max-width:600px) {}

@media(max-width:568px) {}

@media(max-width:480px) {}

@media(max-width:414px) {}

@media(max-width:384px) {}

@media(max-width:320px) {}

/* .wp-block-image .size-large {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}
.wp-block-image .size-large img {
	width: 100%;
} */