/* Variables */

:root {

 --main-bg-color: #EFEFEF;
 --primary-color:#222;
 --secondary-color: #21AFFF;
 --accent-color: rgb(255, 243, 229);
 --footer-text: #fff;
 --button-text: #fff;
 --gradient-button: linear-gradient(180deg, #FFA3D8 -149.2%, #7FA1C3 82.35%);
  /* white icon filter */
--icon-filter:brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(5%) hue-rotate(168deg) brightness(101%) contrast(103%);
--icon-filter-hover:brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(5%) hue-rotate(168deg) brightness(101%) contrast(103%);
--services-text-hover: #fff;

}

* {
	outline: none !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
ol {
	padding: 0px;
	margin: 0px;
}

ul li,
ol li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

a,
a:hover,
a:focus,
a:active {
	outline: none !important;
	text-decoration: none;
	color: var(--secondary-color);
}

body {
	font-size: 14px;
	overflow-x: auto;
}
body, html {
	height: inherit !important;
}
img {
	max-width: 100%;
	display: block;
}
.dropdown-container {
	position: relative;
}
.dropdown-menu {
	display: none;
	position: absolute;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	padding: 10px 0;
	opacity: 0;
	pointer-events: none;
	column-count: 2;
}
.dropdown-menu>li>a {
	padding: 8px;
}
.dropdown-container:hover .dropdown-menu {
	display: block;
	opacity: 1;
	pointer-events: auto;
	top: 40px;
}
.close {
	opacity: 1 !important;
}

/* Common css */
#about {
	float: left;
	width: 100%;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.content-main {
	float: left;
	width: 100%;
}

.page-dark-btn {
	padding: 15px 20px;
	font-weight: 700;
	font-size: 20px;
	border-radius: 10px;
	background: var(--secondary-color);
	border: 1px solid var(--secondary-color);
	transition: all .5s;
	color: #fff;
	line-height: inherit !important;
}
.page-dark-btn:hover {
	background-color: #fff;
	transition: all .5s;
	color: var(--secondary-color);
}
.page-dark-btn:hover svg rect {
	fill: var(--secondary-color);
}
.page-dark-btn:hover svg path{
	fill: #fff;
}
.page-dark-btn:hover img {
	filter: brightness(0) saturate(100%) invert(53%) sepia(88%) saturate(1411%) hue-rotate(176deg) brightness(98%) contrast(111%);
}
.fw-medium {
	font-weight: 500;
}
.service-icon,
.theme-btn {
	background: var(--secondary-color);
}
/* keyframe */
/* Border hover */
@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

/* Header fixed */
@-webkit-keyframes slide-in {
	from {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slide-in {
	from {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* Header start */
.header {
	position: fixed;
	top: 12px;
	width: 100%;
	z-index: 999;
}

.header.fixed-top {
	top: 0;
}
.header .header-inner {
	/* padding: 14px 0; */
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.fixed-top .header-inner {
	/* padding: 10px 0; */
	background-color: #000;
	-webkit-animation: slide-in 400ms ease-out;
	animation: slide-in 400ms ease-out;
}
.logo {
	padding-right: 30px !important;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-border {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.header.fixed-top .header-inner .logo {
	border-right: 0;
}
.header.fixed-top .header-inner .btn-border {
	border-left: 0;
}
.navbar-nav .nav-item {
	padding: 10px 20px !important;
}
.nav-item .nav-link {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	position: relative;
	color: #fff;
}

.nav-item .nav-link:after {
	content: "";
	height: 2px;
	width: 0;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	transition: all ease-in-out 300ms;
	background: var(--secondary-color);
	margin: auto;
}

.nav-item:hover .nav-link {
	color: var(--secondary-color);
}

.nav-item:hover .nav-link:after {
	width: 100%;
	-webkit-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	transition: all ease-in-out 300ms;
}

.header-mobile-number {
	background:#FFFFFF;
	margin-top: 1px;
	padding: 10px 20px;
}

.header-mobile-number a {
	font-size: 20px;
	font-weight: 800;
	color: var(--secondary-color);
}

.mobile-bottom-btn {
	position: fixed;
	width: 100%;
	bottom: 0;
}
.mobile-btn-left {
	background-color: #222;
}
.mobile-btn-right {
	background-color: var(--secondary-color);

	&:hover {
		color: #222;
	}
}
.mobile-btn {
	padding: 17px 22px;
	font-size: 24px;
	width: 50%;
	display: block;
	color: #fff;
	font-weight: 700;
}
/* Home Page */
/* Hero section */
.hero-section {
	height: calc(100vh - 32px);
	max-height: 1000px;
	background-image: url(../images/header1.jpg);
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 70px 0;
	border-radius: 12px;
}
.hero-section:after {
	content: '';
	background: linear-gradient(180deg, rgba(24, 28, 30, 0.5) 13.22%, rgba(24, 28, 30, 0) 51.37%, rgba(24, 28, 30, 0.8) 82.45%);
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	position: absolute;
	border-radius: 12px;
}

.hero-inner {
	max-width: 666px;
	width: 100%;
	margin: auto 0 0 0;
	position: relative;
	z-index: 1;
}
.hero-inner strong {
	color: #fff;
	font-weight: 700;
	line-height: 56px;
	padding-bottom: 26px;
	font-size: 48px;
}

.hero-inner p {
	font-size: 22px;
	color: #fff;
	font-weight: 400;
	line-height: 26px;
	padding-bottom: 32px;
}

.hero-inner a {
	color: #222;
	padding: 15px 30px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #fff;
	text-align: center;
	font-weight: 700;
	font-size: 28px;
	transition: all .5s;
	line-height: inherit !important;
	white-space: normal;
}
.hero-inner a:hover {
	background-color:var(--secondary-color);
	color: #fff;
	transition: all .5s;
}

/* contact-section */
.contact-section {
	padding: 80px 0;
	background-color: #fff;
}
.contact-us {
	background: var(--main-bg-color);
	border-radius: 40px;
	padding: 10px;
}
.contact-us-left {
	padding: 70px;
	width: 48%;
}
.contact-us-left h2 {
	color: #222222;
	font-weight: 700;
	line-height: 82px;
	padding-bottom: 38px;
	font-size: 70px;
}
.contact-us-left p {
	font-weight: 500;
	font-size: 20px;
	line-height: 26px;
	color: rgba(34, 34, 34, 0.6);
}
.contact-us-right {
	background-color: #fff;
	border-radius: 30px;
	padding: 42px;
	width: 52%;
}
.text-red {
	color: rgba(235, 31, 31, 1);
}
.page-field .form-control {
	font-size: 15px;
	font-weight: 500;
	color: rgba(34, 34, 34, 1);
	padding: 16px;
	line-height: 22px;
	background-color: rgba(245, 245, 245, 1);
	border-radius: 10px;
}

.page-field .iti__selected-flag {
	border-radius: 10px 0 0 10px;
	padding: 0 14px;
	background-color: transparent;
}
.page-field .intl-tel-input,
.page-field .iti{
  width: 100%;
}

.form_button {
	min-width: 150px;
	height: 60px;
}

.parsley-required, .parsley-type {
	color: red;
	font-weight: 500;
}
/* Footer Start */
.footer {
	background:var(--secondary-color);
	padding: 60px 0;
}

.footer-description {
	color: #fff;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
word-break:break-word;
}
.footer-contact-detail svg {
    min-width: 21px;
}
.footer-list ul li a:hover,
.footer-contact-detail a:hover {
	color: #fff;
}
.footer-list h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #fff;
}
.footer-list ul li {
	padding-top: 24px;
}
/* .copyright-text {
	margin-top: -90px;
} */
/* Footer End */
/* Header end */

@media(max-width:991px) {
	.dropdown-menu {
		display: none;
		position: static;
		box-shadow: none;
		column-count: 1;
		background-color: transparent;
	}
	.dropdown-menu>li>a {
		color: #222;
	}
	.dropdown-menu.show {
		display: block;
	}
	.dropdown-container:hover .dropdown-menu {
		border: 0;
	}
	/* Header */
	.header {
		top: 0;
	}
	.navbar-toggler-icon {
		background-image: none;
	}
	.logo {
		margin-right: unset !important;
		padding-right: 0 !important;
		border-right: 0;
		max-width: 150px;
	}
	.nav-item .nav-link {
		color: #222;
	}
	.logo-close-sidebar-top {
    padding: 20px;
	}

	.navbar-nav .nav-item {
    padding: 10px 20px !important;
	}

	.navbar-toggler-icon.close {
			background-image: none;
	}
	.header-mobile-number {
		display: none !important;
	}
	.header.fixed-top .header-mobile-number {
		display: block !important;
	}
	.mobile-bottom-btn {
		display: none !important;
	}
	.header.fixed-top .mobile-bottom-btn {
		display: flex !important;
	}
	.header .header-inner {
		background: #fff;
		padding: 10px 0;
	}
	.header.fixed-top .header-inner {
		background-color: #fff;
	}
	/* sidebar */
	.header .header-inner .navbar-collapse {
		display: block !important;
		position: fixed;
		top: 0;
		bottom: 0;
		left: -350px;
		background-color: #fff;
		width: 100%;
		max-width: 350px;
		z-index: 33;
		height: auto !important;
		overflow-y: auto;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}

	.header .header-inner .navbar-collapse.show {
		left: 0;
	}

	.sidebar-overlay {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.5);
		-webkit-filter: blur(1px);
		filter: blur(1px);
		filter: invert(100%);
		-webkit-filter: invert(100%);
		-webkit-animation: fadeIn ease .3s;
		animation: fadeIn ease .3s;
		z-index: 3;
	}

	/* sidebar end */
	/* Home */
	.hero-section {
		margin-top: 71px;
    height: calc(100vh - 71px);
		border-radius: 0;
	}
	.hero-section:after {
		border-radius: 0;
	}
	.contact-us-left {
    padding: 27px;
    width: 100%;
	}
	.contact-us-right {
    padding: 32px;
    width: 100%;
}
	/* Footer */
	.copyright-text {
		margin-top: 20px;
		text-align: center;
	}
	.footer {
		margin-bottom: 70px;
	}
	/* Footer end */
}
@media(max-width:767px) {
	/* Footer */
	.footer {
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.footer-logo-text {
		padding-bottom: 20px;
	}
	.footer-list {
    padding: 20px 0;
	}
	.footer-list ul li {
    flex-basis: 50%;
		padding: 24px 0 0 0 ;
	}
	.copyright-text {
		text-align: left;
	}
}
@media(max-width:576px) {
	/* Hero */
	.hero-section {
		padding: 44px 0;
	}
	.hero-section:after {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 55.17%, rgba(0, 0, 0, 0.8) 74.08%);
	}
	.hero-inner strong {
    line-height: 43px;
    padding-bottom: 24px;
    font-size: 36px;
	}
	.hero-inner p {
    font-size: 18px;
    line-height: 21px;
	}
	.hero-inner a {
    padding: 9px 22px;
    font-size: 20px;
	}
	.mobile-btn {
		padding: 25px 22px;
		font-size: 20px;
	}
	/* Home */
	.contact-section {
		padding: 50px 0;
	}
	.contact-us {
		border-radius: 24px;
		padding: 5px;
	}
	.contact-us-left h2 {
		font-size: 42px;
		line-height: 48px;
		padding-bottom: 24px;
	}
	.contact-us-left p {
    font-size: 16px;
    line-height: 20px;
	}
	.contact-us-right {
		padding: 16px;
		border-radius: 20px;
	}
	.form_button {
		height: 58px;
	}
	/* Footer */
	.footer {
		margin-bottom: 80px;
	}
	.environment-agency {
		max-width: 95px;
	}
	.stripe {
		max-width: 206px;
	}
}
