@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&family=Manrope:wght@400;700&display=swap');


/* Varialbes */
:root {
	--font-default: 'Manrope', sans-serif;
	--font-heading: 'Manrope', sans-serif;
	--font-optional: 'Barlow', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #1f2b38;
	--dark-secondary: #283849;
	--dark-optional: #00194C;
	--white: #ffffff;
	--color-primary: #015FC9;
	--color-secondary: #25cdc7;
	--color-style-two: #00868C;
	--color-style-three: #00A775;
	--color-style-four: #E50418;
	--color-style-five: #05be8a;
	--color-style-six: #be9e00;
	--color-style-seven: #c60505;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #eef5f5;
	--bg-gradient: linear-gradient(45deg, var(--color-primary) 30%, var(--color-secondary) 90%);
	--bg-gradient-two: linear-gradient(45deg, var(--color-style-two) 30%, var(--color-style-five) 100%);
	--bg-gradient-three: linear-gradient(45deg, var(--color-style-three) 30%, var(--color-style-six) 100%);
	--bg-gradient-four: linear-gradient(65deg, var(--color-style-four) 30%, var(--color-style-seven) 100%);
	--bg-gradient-five: linear-gradient(65deg, var(--color-secondary) 30%, var(--color-primary) 100%);
}


/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img, ul, li, a, p, h2, h3, h4, h5, h6, option, label, footer, header, nav {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a img {
	border: none;
}

a:active {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
	opacity: 1;
}

a:focus {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a:hover {
	outline: none;
	text-decoration: none;
	color: var(--color-primary);
	opacity: 1;
}

button {
	outline: medium none;
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

textarea:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

ul {
	list-style-type: none;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.row {
	--bs-gutter-x: 30px;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);
}

h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	font-weight: 700;
	line-height: 1.2;
	font-family: var(--font-heading);
	letter-spacing: 0;
	margin: 0;
	margin-bottom: 15px;
}

h2 {
	font-size: 40px;
	margin-bottom: 25px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

a, .btn, button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 700;
}

p {
	color: var(--color-paragraph);
	margin: 0 0 25px;
	text-transform: none;
	font-weight: 500;
	font-family: var(--font-default);
}

.split-text {
	overflow: hidden;
	position: relative;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px auto;
  padding: 20px;
}

.testimonial-card {
  background-color: #0066cc;
  color: #fff;
  border-radius: 10px;
  padding: 25px;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
	color: #fff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-icon {
  width: 30px;
  height: 30px;
}



/* ============================================================== 
    # Helper CSS
=================================================================== */

@media only screen and (max-width: 767px) {
	.row {
		--bs-gutter-x: 1.5rem;
	}
}

.bg-cover {
	background-position: center center !important;
	background-size: cover !important;
}

.bg-dark {
	background-color: var(--dark) !important;
}

.text-light {
	color: var(--white);
}

.text-light h3,
.text-light h4,
.text-light p {
	color: var(--white);
}

.default-padding {
	position: relative;
}

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.default-padding.bottom-less {
	padding-top: 120px;
	padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
	.default-padding.bottom-less {
		padding-top: 60px;
		padding-bottom: 30px;
	}
}

.site-heading {
	margin-bottom: 60px;
}

.title {
	font-weight: 800;
	font-size: 50px;
}

@media (max-width: 767px) {
	.title {
		font-size: 36px;
		margin-top: 0;
	}
}

.site-heading .title {
	margin-bottom: 0;
	font-size: 25px;
	font-weight: 800;
}

.sub-title {
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
	background: var(--bg-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-flex;
	position: relative;
	z-index: 1;
	margin-bottom: 15px;
	align-items: center;
	font-size: 32px;
}

@media (max-width: 767px) {
	.sub-title {
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 767px) {
	.site-heading {
		margin-bottom: 40px;
		font-size: 36px;
		line-height: 1.2;
	}
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */



/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */

/*Zoom Animation */

/* Slider Zoom Effect */

/* Spiner Animation */

/*Preloader Spiner Animation */


/* Spiner Animation */

/*Preloader Spiner Animation */

/* Infinite Up Down Animation */

/* Animation UpDown */

/* Animation Left Right */

/* Fade Left Right */

/* Animation Right Left */

/* Animation Zoom Up Down */

/* Zoom Up Down */

/* Animation Moving */

/* Mooving Animation */

/* Animation Rotation */

/* Button Border Animation */

/* Animation Shine (A shine color will move inside the text) */

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 5px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: none !important;
	font-size: 16px;
	letter-spacing: 0;
	padding: 13px 30px;
	background: #FAAA1F;
	position: relative;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.btn:focus {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border: 2px solid transparent;
}

.btn:hover {
	background-color: var(--color-primary);
	color: var(--white);
}

.btn1 {
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 5px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: none !important;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0;
	padding: 11px 30px;
	background: #06385B;
	position: relative;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.btn1:focus {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border: 2px solid transparent;
}

.btn1:hover {
	background-color: #F6AE1C;
	color: var(--white);
}


.btn2 {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 5px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: none !important;
	font-size: 16px;
	letter-spacing: 0;
	padding: 11px 30px;
	background: #FBAB21;
	position: relative;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;

}
.btn2:focus {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border: 2px solid transparent;
}

.btn2:hover {
	background-color: var(--color-primary);
	color: var(--white);
}

button {
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 7px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	font-size: 16px;
	letter-spacing: 0;
	padding: 14px 40px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
	color: var(--white);
	border: none;
	background: var(--color-primary);
}

button::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
	margin-right: 4px;
}

/* Btn Animation */
@media (max-width: 768px) {
  .button-group {
    justify-content: center;
  }
}


@media only screen and (max-width: 767px) {
	.row {
		--bs-gutter-x: 1.5rem;
	}
}

.bg-dark,
.bg-dark p {
	color: #cccccc;
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */

.top-bar-style-two {
	padding: 20px 0;
}


/* ============================================================== 
    # Top Header
=================================================================== */

ul.top-header-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.top-bar-style-two ul.top-header-list {
	justify-content: center;
}

ul.top-header-list li {
	margin-left: 35px;
	position: relative;
	z-index: 1;
	display: inline-flex;
	padding-left: 19px;
}

ul.top-header-list li p {
	margin-bottom: 0;
}

ul.top-header-list li i {
	display: inline-block;
	height: 60px;
	width: 60px;
	text-align: center;
	background: #FBAC23;
	line-height: 60px;
	color: var(--white);
	font-weight: 800;
	font-size: 23px;
	border-radius: 50%;
	margin-right: 15px;
}

ul.top-header-list li h6 {
	margin: 0;
}

ul.top-header-list li a {
	font-weight: 800;
}

ul.top-header-list li::after {
	position: absolute;
	left: 0;
	top: 50%;
	content: "";
	height: 90%;
	width: 1px;
	background: #cccccc;
	transform: translateY(-50%);
}

ul.top-header-list li:first-child {
	margin: 0;
	padding: 0;
}

ul.top-header-list li:first-child::after {
	display: none;
}

.top-bar-style-two ul.top-header-list li i {
	height: 50px;
	width: 50px;
	line-height: 52px;
	font-size: 20px;
}


/* ============================================================== 
    # Navbar Styles
=================================================================== */
@media (min-width: 1024px) {

	nav.navbar.validnavs.navbar-box {
		top: 152px;
	}

	nav.navbar.validnavs.navbar-box.box-style-one .nav-box {
		background: url(../img/shape/menu.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: right bottom;
		border-radius: 0 0 8px 8px;
	}

	nav.navbar.validnavs.navbar-box.box-style-one .nav-box ul.nav > li > a {
		color: var(--white);
	}

	nav.navbar.validnavs.navbar-box.box-style-one .attr-nav .side-menu span {
		background: var(--white);
		height: 2px;
	}

	nav.navbar.validnavs.navbar-box.box-style-one  .attr-right .attr-nav li.search a {
		color: var(--white);
	}

	nav.navbar.validnavs.navbar-box.sticked {
		top: 0;
		background: var(--color-primary) !important;
		box-shadow: none;
	}

	nav.navbar.validnavs.logo-less .navbar-brand .logo-display {
		display: none;
	}

	nav.navbar.validnavs.navbar-fixed.no-background.navbar-style-one {
		top: 90px;
		padding: 0;
	}

	.navbar.navbar-style-one.no-background .attr-right .attr-nav li i {
		color: var(--white);
	}

	nav.navbar.validnavs.navbar-box.navbar-style-three {
		top: 65px;
		padding: 0;
	}

	nav.navbar.validnavs.navbar-box.navbar-style-three.sticked {
		top: 0;
		background: transparent !important;
	}

	nav.navbar.validnavs.navbar-box.navbar-style-three .nav-box {
		box-shadow: 0 8px 25px 0 rgb(0 0 0 / 20%);
		padding: 5px 50px;
	}
}

@media (max-width: 1023px) {

	nav.navbar.validnavs.logo-less .navbar-brand .logo-display {
		display: block;
	}

	nav.navbar.validnavs.logo-less .navbar-brand .logo-scrolled {
		display: none;
	}
}

@media (min-width: 1400px) {

	.top-bar-style-two ul.top-header-list {
		justify-content: right;
	}

	nav.navbar.validnavs.navbar-fixed.no-background.navbar-style-one .attr-nav li.button a {
		background: #003b7c !important;
		clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
	}
}

@media (min-width: 1399px) {
	nav.navbar.navbar-style-one.no-background a.navbar-brand {
		position: relative;
		z-index: 1;
		padding-left: 48px;
		top: -55px;
	}

	nav.navbar.navbar-style-one a.navbar-brand {
		transition: inherit;
	}

	nav.navbar.navbar-style-one.no-background a.navbar-brand::after {
		position: absolute;
		left: 0;
		top: -50px;
		content: "";
		height: 180px;
		width: 100%;
		background: var(--white);
		z-index: -1;
		border-bottom-left-radius: 10px;
		border-top-left-radius: 10px;
		box-shadow: -40px 18px 40px 0 rgb(0 0 0 / 10%);
	}

	nav.navbar.navbar-style-one.no-background a.navbar-brand::before {
		position: absolute;
		right: -35px;
		top: -58px;
		content: "";
		height: 186px;
		background: var(--white);
		width: 60px;
		border-radius: 0 10px 10px 0;
		z-index: -1;
		transform: rotate(15deg);
		box-shadow: 0 8px 25px 0 rgb(0 0 0 / 20%);
	}

	nav.navbar.validnavs.navbar-fixed.no-background.navbar-style-one .align-items-center::after {
		position: absolute;
		top: 0;
		content: "";
		height: 100%;
		right: -35px;
		background: var(--color-primary);
		left: 19%;
		z-index: -1;
		transform: skewX(-15deg);
		border-radius: 0 0 10px 10px;
	}

	nav.navbar.validnavs.navbar-fixed.no-background.navbar-style-one .align-items-center {
		position: relative;
		z-index: 1;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1399px) {
	nav.navbar.navbar-style-one.no-background a.navbar-brand img {
		filter: brightness(0) invert(1);
	}
}

@media (min-width: 1350px) {
	.container-full ul.item-flex {
		padding-left: 80px;
	}

	.top-bar .container-full.pr, 
	.navbar .container-full.pr {
		padding-left: 0;
		padding-right: 80px;
	}

	.container-full.pr .navbar-collapse.collapse {
		padding-left: 65px;
	}

	.top-bar-area .container-full {
		padding-right: 80px;
	}
}

nav.navbar.validnavs.navbar-style-two .navbar-header .logo-display {
	display: none;
}

@media (min-width: 1200px) {

	nav.navbar.validnavs.navbar-style-two .navbar-header .logo-display {
		display: inline-block;
	}

	nav.navbar.validnavs.navbar-style-two .navbar-header .logo-scrolled {
		display: none;
	}

	nav.navbar.validnavs.navbar-style-two .navbar-header {
		position: relative;
		z-index: 1;
	}

	nav.navbar.validnavs.navbar-style-two .navbar-header::after {
		position: absolute;
		right: -100px;
		top: -24px;
		content: "";
		width: 700%;
		background: var(--color-primary);
		z-index: -1;
		bottom: -24px;
		display: block;
		transform: skewX(-25deg);
	}

	.color-style-two nav.navbar.validnavs.navbar-style-two .navbar-header::after {
		background: var(--color-style-two);
	}

	.color-style-three nav.navbar.validnavs.navbar-style-two .navbar-header::after {
		background: var(--color-style-three);
	}

	nav.navbar.validnavs.navbar-style-two .navbar-header::before {
		display: block;
		position: absolute;
		right: -130px;
		top: -23px;
		bottom: 0;
		content: "";
		background: var(--white);
		width: 30px;
		transform: skewX(-25deg);
		box-shadow: 0 8px 25px 0 rgb(0 0 0 / 20%);
		z-index: -1;
		border-bottom-right-radius: 10px;
	}
}


/* Banner Two */

.banner-style-two  .information {
	margin-top: 200px;
}

.banner-style-two p {
	color: #c7d2e4;
	padding-right: 20%;
}

.banner-style-two .information .animate {
	animation-duration: .55s;
}

/* Banner Style Three */

/* Banner Four */


/* Banner Style Five */

/* Banner Style Six */


/* ============================================================== 
    # About Area
=================================================================== */

/* About Syle Two */

/* About Style Three */

/* About Style Four */

/* About Style Five */

/* About Six */


/* ============================================================== 
    # History Area
=================================================================== */


/* ============================================================== 
    # Award Area
=================================================================== */


/* ============================================================== 
    # Faq
=================================================================== */

/* ============================================================== 
    # Services Area
=================================================================== */

/* ============================================================== 
    # Services Two
=================================================================== */

/* Services Swiper Nav */


/* ============================================================== 
    # Services Three
=================================================================== */


/* ============================================================== 
    # Service Four
=================================================================== */

/* ============================================================== 
    # Service Five Area
=================================================================== */


/* ============================================================== 
    # Service Six
=================================================================== */


/* ============================================================== 
    # Services Details
=================================================================== */

/* ============================================================== 
    # Newsletter Area
=================================================================== */

/* ============================================================== 
    # Video Area
=================================================================== */



/* ============================================================== 
    # Get Estimate Form
=================================================================== */

/* ============================================================== 
    # Testimonial Two
=================================================================== */

/* ============================================================== 
    # Blog
=================================================================== */


/* ============================================================== 
    # Feature Style One
=================================================================== */

/* Feature Style Two */

/* Feature Style Three */

/* Feature Style Five */


/* Choose Us Style Two */

/* Choose us Style Three */


/* Choose Us Style Four */

/* ============================================================== 
    # Team Style One
=================================================================== */

/* ============================================================== 
    Team Style Two
=================================================================== */

/* ============================================================== 
     # Team Single  
=================================================================== */

/* ============================================================== 
    # Pricing One
=================================================================== */

/* Pricing Two */

/* ============================================================== 
    # Process One
=================================================================== */

/* ============================================================== 
    # Process Style Two
=================================================================== */


/* ============================================================== 
    # Fun Fact Style One
=================================================================== */


/* ============================================================== 
    # Speciality Style One
=================================================================== */

/* ============================================================== 
    # Estimate Style One
=================================================================== */


/* Estimate Style Two */

/* Estimate Three */

/* Estimate Style Four */

/* ============================================================== 
    # Testimonial One
=================================================================== */

/* Testimonial Two */

/* ============================================================== 
    # Testimonial Style Three
=================================================================== */


/* ============================================================== 
    # Testimonial Style Four
=================================================================== */

/* ============================================================== 
    # Brand Style One
=================================================================== */

/* Brand Two */


/* ============================================================== 
    # Gallery Style One
=================================================================== */

/* ============================================================== 
    # Project Details
=================================================================== */

/* ============================================================== 
    # Contact
=================================================================== */

/* ============================================================== 
    # App Download
=================================================================== */


/* ============================================================== 
    # Footer
=================================================================== */

footer.footer-one {
	background-size: 35%;
	background-repeat: no-repeat;
	background-position: right bottom;
}

/* Footer Bottom */

.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--dark);
}

.footer-bottom p {
	margin: 0;
}


/* ============================================================== 
    # 404 page
=================================================================== */



/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.title {
		font-size: 42px;
	}

    /* Banner Two */

    /* Banenr Four */

    /* Banner Five */

    /* About */

    /* Fun Factor */

    /* Estimate */
    

    /* Choose Us */

    /* Process */

    /* Service Details */

    /* Quote */

    /* Services */

    /* Testimonial */

    /* Newsletter */

    /* Footer */
}

/* Screen Mobile To Tablet */
@media screen and (max-width: 1023px) {

	ul.top-header-list {
		justify-content: center;
	}

	.top-bar-style-two {
		background: var(--dark-secondary);
	}

	.top-bar-style-two ul.top-header-list li p {
		color: #cccccc;
	}

	.top-bar-style-two ul.top-header-list li h6, 
    .top-bar-style-two ul.top-header-list li a {
		color: var(--white);
	}

	.top-bar-style-two ul.top-header-list li::after {
		background: rgba(255, 255, 255, 0.3);
	}

	.top-bar-style-two ul.top-header-list li:last-child {
		display: none;
	}

    /* Banner */

	.banner-style-two p {
		padding-right: 0;
	}

    /* Banner Four */

    /* Banner Six */
}

/* Tablet Layout Custom */

@media screen and (max-width: 991px) {
  
	/* global reset - start */

    /* About */

    /* About Two */

    

    /* Feature Style One */

     /* Fun Factor */

     /* Process */

    /* Pricing */

    /* Quote Style One */

    /* Pricing */

    /* Testimonial */

    /* Feature */

      /* Services */

    /* Team */

    /* Blog */


    /* Footer */

	.footer-bottom {
		text-align: center;
	}

    /* Footer Two */
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Banner */

    /* Banner Two */
	.banner-style-two .information {
		margin-top: 110px;
	}

    /* Banner Three */

    /* About */

    /* Estimate Style Four */

    /* Fun Fact */

    /* Speciality */

    /* Feature */

    /* App */

    /* Choose Us */

    /* Process */

    /* Services */

    /* Pricing */

    /* Project Details */

    /* Footer Two */
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

	h2 {
		font-size: 36px;
	}

	.site-heading .title {
		font-size: 20px;
	}

    /* Topbar */

	ul.top-header-list {
		display: block;
		text-align: center;
	}

	ul.top-header-list li {
		margin: 0;
		padding: 0;
		border: none;
		display: block;
		text-align: center;
		margin-top: 24px;
	}

	ul.top-header-list li::after {
		display: none;
	}

	.top-bar-style-two ul.top-header-list li i {
		margin: 0;
		margin-bottom: 10px;
	}

	.top-bar-style-two {
		display: none;
	}

    /* Banner */

    /* Banner Two */

	.banner-style-two .information {
		margin-top: 80px;
	}

	.banner-style-two p {
		padding-right: 0;
	}


}

@media only screen and (max-width: 480px) {

	.banner-style-two {
		text-align: center;
	}

  .navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .navbar-toggle {
    display: block;
  }