@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400,700&display=swap");

/* font awesome */
.list li {
	position: relative;
	padding: 0 0 0 40px;
	margin-bottom: 10px;
	color: #000;
}
.list li::before {
	color: #fad65c;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 22px;
	content: "\f00c";
}

:root {
	--color-black: #191919;
	--color-white: #fff;
	--color-blue: #034dba;
	--color-red: #c91600;

	--font-14: 14px;
	--font-14: 16px;
	--font-18: 18px;
	--font-25: 25px;
	--font-50: 50px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	line-height: 1.5;
	background: #e7f1ff;
}

#wrap {
	min-height: calc(100vh - 331px);
}

.container-box {
	background: #fff;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.padding-container {
	padding: 18px;
}
.padding-no-side {
	padding-left: 0;
	padding-right: 0;
}
.padding-no-top-btm {
	padding-top: 0;
	padding-bottom: 0;
}
.padding-no-top {
	padding-top: 0;
}

/* general classes */
ul {
	list-style: none;
	padding: 0;
}
a {
	text-decoration: none;
	display: inline-block;
}
img {
	width: 100%;
	display: block;
}
select,
input[type="text"],
input[type="submit"],
input[type="password"],
input[type="email"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

::selection {
	background: green;
	color: white;
}

/* input */
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
	padding: 8px;
	font-size: 18px;
	border-radius: 2px;
	border: 1px solid #d4d4d4;
}
.input-one {
	padding: 10px 17px;
	background: #fff;
}

/* stacks */

.stack-1 > * + * {
	margin-top: 16px;
}
.stack-2 > * + * {
	margin-top: 32px;
}
.stack-3 > * + * {
	margin-top: 48px;
}

/* alignment */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

/* text color */
.text-black {
	color: var(--color-black) !important;
}
.text-white {
	color: var(--color-white) !important;
}

/* colors */
.color-black {
	color: var(--color-black) !important;
}
.color-white {
	color: var(--color-white) !important;
}
.color-blue {
	color: var(--color-blue) !important;
}
.color-red {
	color: var(--color-red) !important;
}

/* background colors */
.bg-black {
	background: var(--color-black);
}
.bg-white {
	background: var(--color-white);
}

/* title */
.main-title,
.sub-title {
	text-transform: uppercase;
	color: var(--color-white);
}
.main-title {
	font-size: 25px;
}
.sub-title {
	font-size: 20px;
}

/* buttons */
.btn {
	width: 100%;
	padding: 10px 17px;
	text-align: center;
	display: inline-block;
	text-transform: uppercase;
	cursor: pointer;
	border: 0;
}
.btn-blue {
	background: var(--color-blue);
	color: #fff;
	max-width: fit-content;
}
.btn-white {
	max-width: 110px;
	border: 1.5px solid #000;
	color: #000;
}
.btn-yellow {
	background: #fad65c;
	border: 1.5px solid #fad65c;
	color: #000;
}
.btn-red {
	background: var(--color-red);
	color: #fff;
	max-width: fit-content;
}
.btn-red-big {
	background: var(--color-red);
	color: #fff;
	max-width: fit-content;
}
.btn-purple {
	background: #b14ea4;
	color: #fff !important;
	max-width: 200px;
	border-radius: 100px;
}

/* BREADCRUMB */
.breadcrumb {
}
.bread-list {
	display: flex;
	align-items: center;
}
.bread-list li {
	position: relative;
	margin-right: 25px;
}
.bread-list li:not(:last-child)::after {
	content: ">";
	position: absolute;
	top: 50%;
	right: -16px;
	transform: translateY(-50%);
}
.bread-list a {
	text-transform: capitalize;
	font-weight: 600;
	font-size: var(--font-14);
	color: var(--color-black);
}
.bread-list a:hover {
	opacity: 0.7;
}

/* header */
.header {
	background: var(--color-blue);
}
.header-top-box {
	padding: 13px 5px;
	padding-top: 50px;
}
.header-top-box .sub-title {
	color: var(--color-black);
	text-align: center;
	font-style: italic;
}
.header-box {
	position: relative;
}
.header-box .logo {
	z-index: 10;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}

/* index.php */
.logo img {
	max-width: 200px;
}
.nav {
	padding: 20px 5px;
}
.nav-links {
	display: flex;
	justify-content: center;
}
.nav-links li:not(:last-child) {
	margin-right: 16px;
}
.nav-links a {
	color: var(--color-white);
	text-transform: capitalize;
	font-size: 20px;
	padding: 7px 20px;
	position: relative;
}
.nav-links a::after {
	position: absolute;
	content: "";
	height: 3px;
	background: var(--color-white);
	width: 0%;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease;
}
.nav-links a:hover::after {
	width: 100%;
}

.section-banner {
	position: relative;
}
.section-banner .main-title {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: 600;
	font-size: 30px;

	-webkit-text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	-moz-text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	text-shadow: 2px 3px 5px rgb(0 0 0 / 50%);
}

.section-showcase {
}
.show-case-box {
}
.showcase-box .showcase-choices {
	min-height: 415px;
	padding-left: 10px;
	border-right: 2px solid #fad65c;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.showcase-choices .choice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 10px;
	border: 1px solid #fff;
	background: #fff;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.showcase-choices .choice:hover {
	border: 1px solid #fad65c;
	background: #fad65c;
}
.showcase-choices .choice:not(:first-child) {
	margin-top: 10px;
}
.showcase-choices .choice-img {
	margin-right: 10px;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	background: #eee;
	font-size: 30px;
	color: gray;
	display: flex;
	align-items: center;
	justify-content: center;
}
.showcase-choices .choice-details {
	flex-basis: 70%;
	color: var(--color-black);
}
.showcase-choices .choice-details small {
	display: block;
	margin: 5px 0;
}
.showcase-choices .choice-details b {
	font-size: 13px;
	color: var(--color-blue);
}

.showcase-box {
	background: #f4f4f4;
}
.showcase-box .showcase-details {
	padding: 20px;
}
.showcase-details .mini-detail {
	color: var(--color-black);
}
.showcase-choices .choice.active {
	border: 1px solid #fad65c;
	background: #fad65c;
}
.showcase-details .detail.active {
}
.showcase-details .main-title {
	color: var(--color-black);
	display: inline-block;
}
.showcase-details .main-title span {
	display: block;
	font-size: var(--font-18);
}
.showcase-details .mini-detail {
	margin-bottom: 14px;
}
.showcase-details .mini-detail .main-title {
}

.cards-box {
	display: flex;
}
.cards-box .card {
	background: #fff;
	padding: 10px;
}
.cards-box .card a {
	display: block;
}
.cards-box .card-box {
	height: 100%;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}
.cards-box .card .detail {
	padding: 16px;
}

.fancybox-imgs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}

.fancybox-imgs .card-box .link img {
	object-fit: cover;
	height: 150px;
}

/* banner */
.banner-1 {
	background-image: url(images/banner-1.jpg);
}
.banner-2 {
	background-image: url(images/banner-2.jpg);
}
.banner-3 {
	background-image: url(images/banner-3.jpg);
}
.top-banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	height: 270px;
}
.top-banner::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.55);
}
.banner-header {
	padding: 0 10px;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: bolder;
	color: #fff;
	z-index: 2;
	font-style: italic;
}
.banner-title {
	font-size: 48px;
	-webkit-text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	-moz-text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	text-shadow: 2px 3px 5px rgb(0 0 0 / 50%);
}
.banner-text {
	-webkit-text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	-moz-text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	text-shadow: 2px 3px 5px rgb(0 0 0 / 50%);
}

.pipe-video iframe {
	z-index: 30;
	width: 80vw;
	height: 500px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.dimmer {
	z-index: 20;
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

/* contact.php */
.contact-one-text {
	text-align: left;
	line-height: 2;
}
.contact-form .c-box {
	position: relative;
	width: 100%;
}
.contact-form > * + * {
	margin-top: 5px;
}
.contact-form .c-box input,
.contact-form .c-box textarea {
	font-size: 14px;
	width: 100%;
	padding: 25px 10px 12px 10px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 0;
}
.contact-form .c-box label {
	position: absolute;
	pointer-events: none;
	left: 15px;
	top: 19px;
	transition: 0.2s ease all;
	color: #000;
	font-size: 14px;
}
.contact-form .c-box input:focus + label,
.contact-form .c-box textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label,
.contact-form input:not(:placeholder-shown) + label {
	top: 10px;
	left: 10px;
	font-size: 9px;
	opacity: 1;
	transition: 0.2s ease all;
}
.contact-form .c-box.half {
	display: inline-block;
	vertical-align: middle;
	width: calc(50% - 15px / 5);
}

.contact-form textarea {
	height: 90px;
}

.contact-two-box article {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	column-gap: 1rem;
	row-gap: 16px;
}

.footer {
	position: relative;
	background: var(--color-blue);
}
.footer-box {
	padding: 40px 5px;
	padding-bottom: 20px;
	text-align: center;
}
.footer-box .logo {
	max-width: 70px;
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
}
.footer-box .sub-title {
	margin-top: 20px;
}
.footer-box-two {
	background: #000;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}
.footer-links {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-links li:not(:last-child) {
	margin-right: 14px;
}
.footer-links a {
	color: #fff;
	text-transform: capitalize;
}
.burger,
.header-box .call-now {
	display: none;
}

@media (max-width: 1200px) {
	.padding-container {
		padding: 16px;
	}
	.section-two,
	.section-three {
		margin: 16px 0;
	}

	.logo {
		margin: 0 auto;
	}

	/* footer */

	.footer-box__lists {
		flex-direction: column;
	}
	.footer-box__lists li:not(:last-child) {
		margin-right: 0;
	}

	.listing {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.listing.row:after,
	.listing.row:before {
		content: inherit;
	}
}

@media (max-width: 480px) {
	.cards-box {
		display: block;
	}
	.main-title {
		font-size: 20px;
	}
	.showcase-box .showcase-choices {
		min-height: auto;
		border-right: 0;
	}
	.mobile-block {
		display: block;
	}
	.nav {
		padding: 12px 5px;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		padding-top: 1.2rem;
	}
	.nav-links li {
		width: 100%;
		text-align: center;
	}
	.nav-links a {
		font-weight: 700;
		display: block;
		text-align: left;
		padding: 7px 20px;
		font-size: 24px;
	}
	.nav-links a:hover::after {
		border-top: 0;
	}
	/* burger */
	.burger {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.mobile-login {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-right: 12px;
	}
	/* burger-menu */
	.menu-btn {
		display: none;
	}
	.menu-icon {
		cursor: pointer;
		padding: 12px;
		display: inline-block;
	}
	.navicon {
		background: var(--color-white);
		display: inline-block;
		height: 2px;
		position: relative;
		transition: background 0.4s ease-out;
		width: 33px;
		margin-bottom: 5px;
	}
	.navicon::before {
		background: var(--color-white);
		content: "";
		height: 100%;
		position: absolute;
		transition: all 0.4s ease-out;
		width: 100%;
	}
	.navicon::before {
		top: 7px;
	}
	.navicon::after {
		background: var(--color-white);
		content: "";
		height: 100%;
		position: absolute;
		transition: all 0.4s ease-out;
		width: 100%;
	}
	.navicon::after {
		bottom: 7px;
	}

	/* burger-menu animation */
	.menu-btn:checked ~ .menu-icon .navicon {
		background-color: transparent;
	}
	.menu-btn:checked ~ .menu-icon .navicon::before {
		transform: rotate(225deg);
		top: 0;
	}
	.menu-btn:checked ~ .menu-icon .navicon::after {
		transform: rotate(-225deg);
		top: 0;
	}

	.logo img {
		max-width: 100px;
	}
	.header-top-box {
		padding-top: 13px;
		padding-bottom: 25px;
	}
	.header-box .logo {
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header-box .call-now {
		max-width: 75px;
		display: block;
		position: absolute;
		top: 50%;
		right: 12px;
		transform: translateY(-50%);
		font-size: 12px;
		font-weight: 600;
		padding: 10px 5px;
	}
	.section-banner .main-title {
		bottom: 18px;
		font-size: 18px;
	}

	.banner-img {
		object-fit: cover;
		height: 200px;
	}

	.lead-form {
		margin-bottom: 16px;
	}

	.top-banner {
		height: 200px;
	}
	.banner-title {
		font-size: 25px;
	}

	.location-box .contact-two-box-top:not(:last-child) {
		margin-bottom: 16px;
	}

	/* service */
	.section-service {
		display: flex;
		flex-direction: column;
	}
	.service-one-box {
		order: -1;
	}

	/* contact.php */
	.contact-two-box {
		margin-top: 16px;
	}

	.footer-box .logo {
		top: -18px;
	}
	.footer-links {
		flex-direction: column;
		align-items: center;
	}
	.footer-links li:not(:last-child) {
		margin-right: 0;
	}
	.footer-box-two {
		flex-direction: column;
	}
	.flex-horizontal {
		margin-top: 16px;
		flex-direction: row;
	}
	.flex-horizontal li:not(:last-child) {
		margin-right: 10px;
	}
	.footer-box .sub-title {
		font-size: 16px;
	}
}
