@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:400,500,600,700&display=swap);
/* =====================================
Template Name: Precon
Author Name: ThemeLamp
Author URI: http://themelamp.com/
Template Provide By: https://www.codeglim.com/
Description: Precon is a Multipurpose Business HTML5 Template.
Version:	1.0
========================================*/

/*==================================
	Reset CSS
====================================*/

* {
    margin: 0;
    padding: 0;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #353535;
	background-color: #fff;
	line-height: 24px;
	position: relative;
}
a,button,input,textarea{
    font-family: 'Open Sans', sans-serif;
	font-weight:600;
	border:none;
}
a,button,input,li,textarea{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
	font-weight:600;
	margin:0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
h1 a,h2 a,h3 a,h4 a,h5 a, h6 a{
	font-family: 'Poppins', sans-serif;
	font-weight:600;
}
p {
	color:#555;
    margin: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul {
    list-style: none;
    margin-bottom: 0;
}
img {
    max-width: 100%;
	display:block;
}
select:focus,
select:active {
    box-shadow: 0;
    border: 0;
    outline: 0
}
a:hover,a:focus,a:active,input:hover,input:focus{
    text-decoration: none;
    outline: none;
}
img{
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
input,
input:focus,
input:active {
    outline: none;
}
button,a{
	cursor:pointer;
}
select{
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}
textarea:focus {
    outline: none !important;
    box-shadow: none !important
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* Button Style */
.btn {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	position:relative;
	color: #fff;
	padding: 13px 30px;
	text-transform: uppercase;
	border: none;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: #2A2D2F;
	border-radius: 3px;
	border: 2px solid #2A2D2F;
}
.btn i{
	margin-left:10px;
}
.btn.radius{
	border-radius:50px;
}
.btn.theme-1 {
	background: #379CB0;
	color: #fff;
	border: 2px solid #379CB0;
	-webkit-box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
	-moz-box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
	box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
}
.btn.theme-1:hover{
	background:#fff;
	box-shadow:none;
	color:#379CB0;
}
.btn.theme-1.no-style {
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
	color: #379CB0;
}
.btn.theme-1.no-style:hover{
	opacity:0.6;
}
.btn.theme-2 {
	background: #FC6761;
	color: #fff;
	border: 2px solid #FC6761;
	-webkit-box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
	-moz-box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
	box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
}
.btn.theme-2:hover{
	background:#fff;
	box-shadow:none;
	color:#FC6761;
}
.btn.theme-2.no-style {
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
	color: #FC6761;
}
.btn.theme-2.no-style:hover{
	opacity:0.7;
}

@-webkit-keyframes shine {
    100% {left: 125%;}
}
@keyframes shine {
    100% {left: 125%;}
}
/* Button Effect */
.btn.effect{
	overflow:hidden;
}
.btn.effect:before{
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 30%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.btn.effect:hover:before{
	-webkit-animation: shine 1.75s;
	animation: shine 1.75s;
}
.btn.theme-1.effect:before{
	background: -webkit-linear-gradient(left, rgba(55, 156, 176, 0.2) 0%, rgba(55, 156, 176, 0.2) 100%);
	background: linear-gradient(to right, rgba(55, 156, 176, 0.2) 0%, rgba(55, 156, 176, 0.2) 100%);
}
.btn.theme-2.effect:before{
	background: -webkit-linear-gradient(left, rgba(252, 103, 97, 0.2) 0%, rgba(252, 103, 97, 0.2) 100%);
	background: linear-gradient(to right, rgba(252, 103, 97, 0.2) 0%, rgba(252, 103, 97, 0.2) 100%);
}
/* Section Style */
section {
	z-index: 10;
	position: relative;
}
.section-padding{
    padding-top: 100px;
    padding-bottom: 100px;
	position:relative;
}
.section-title h2 {
	font-size: 32px;
	position: relative;
	margin-bottom: 15px;
	color: #353535;
	line-height: 32px;
}
.section-title h2 span {
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
	color: #FC6761;
	display: inline-block;
}
.section-title h2 span::before {
	position: absolute;
	right: 0;
	top: 0;
	width: 2px;
	height: 100%;
	content: "";
	background: #FC6761;
}
.section-title p {
	line-height: 24px;
}
.section-title p a {
	color: #FC6761;
	margin-left: 5px;
	display: inline-block;
}
/* Section Title  */
.section-title.white h2 {
	color: #fff;
}
.section-title.white h2 span {
	color: #fff;
}
.section-title.white h2 span:before {
	background: #fff;
}
.section-title.white p {
	color: #fff;
}
.section-title.white a {
	background: #fff;
	color: #353535;
	display: inline-block;
	padding: 5px 15px;
	border-radius: 30px;
}

/* Overlay Fix */
.overlay{
	position:relative;
}
.overlay::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	opacity: 0.4;
	background: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Margin Top Fix */
.m-top-10{margin-top:10px;}
.m-top-20{margin-top:20px;}
.m-top-30{margin-top:30px;}
.m-top-40{margin-top:40px;}
.m-top-50{margin-top:50px;}
.m-top-60{margin-top:60px;}
.m-top-70{margin-top:70px;}
.m-top-80{margin-top:80px;}
.m-top-90{margin-top:90px;}
.m-top-100{margin-top:100px;}

/* Margin Bottom Fix */
.m-bottom-10{margin-bottom:10px;}
.m-bottom-20{margin-bottom:20px;}
.m-bottom-30{margin-bottom:30px;}
.m-bottom-40{margin-bottom:40px;}
.m-bottom-50{margin-bottom:50px;}
.m-bottom-60{margin-bottom:60px;}
.m-bottom-70{margin-bottom:70px;}
.m-bottom-80{margin-bottom:80px;}
.m-bottom-90{margin-bottom:90px;}
.m-bottom-100{margin-bottom:100px;}

/* Margin Left Fix */
.m-left-10{margin-left:10px;}
.m-left-20{margin-left:20px;}
.m-left-30{margin-left:30px;}

/* Margin Right Fix */
.m-right-10{margin-right:10px;}
.m-right-20{margin-right:20px;}
.m-right-30{margin-right:30px;}

/* Paddtin Top Fix */
.p-top-10{padding-top:10px;}
.p-top-20{padding-top:20px;}
.p-top-30{padding-top:30px;}
.p-top-40{padding-top:40px;}
.p-top-50{padding-top:50px;}
.p-top-60{padding-top:60px;}
.p-top-70{padding-top:70px;}
.p-top-80{padding-top:80px;}
.p-top-90{padding-top:90px;}
.p-top-100{padding-top:100px;}

/* padding Bottom Fix */
.p-bottom-10{padding-bottom:10px;}
.p-bottom-20{padding-bottom:20px;}
.p-bottom-30{padding-bottom:30px;}
.p-bottom-40{padding-bottom:40px;}
.p-bottom-50{padding-bottom:50px;}
.p-bottom-60{padding-bottom:60px;}
.p-bottom-70{padding-bottom:70px;}
.p-bottom-80{padding-bottom:80px;}
.p-bottom-90{padding-bottom:90px;}
.p-bottom-100{padding-bottom:100px;}

/* Padding Left Fix */
.p-left-10{padding-left:10px;}
.p-left-20{padding-left:20px;}
.p-left-30{padding-left:30px;}

/* Margin Right Fix */
.p-right-10{padding-right:10px;}
.p-right-20{padding-right:20px;}
.p-right-30{padding-right:30px;}

/* Scroll Up CSS */
#scrollUp {
	right: 15px;
	bottom: 12px;
	color: #fff;
	opacity: 0.8;
	font-size: 14px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 100%;
	background: #FC6761;
}
#scrollUp:hover {
	opacity:1;
}

/* Others Fix */
.mobile-nav{
	display:none;
}
.form-control:focus {
	border-color: #ccc;
	box-shadow: 0 0 0 ;
	outline: 0 none;
}
.navbar {
    margin-bottom: 0;
    border: 0;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
    text-decoration: none;
}
.nav-tabs > li > a {
    border: 0
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border: 0;
    outline: 0
}
.nav-tabs {
    border: 0
}
.nav-tabs > li > a:hover {
    border: 0
}
.slick-slide {
    outline: none !important;
}

/* Preloader CSS */
.preloader-main {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 99999;
	text-align: center;
}
.preloader {
	width: 64px;
	height: 64px;
	border: 3px solid transparent;
	border-top-color: #379CB0;
	border-bottom-color: #379CB0;
	border-radius: 50%;
	animation: spin 1.5s linear infinite;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -32px 0 0 -32px;
}
.preloader::before {
	content: '';
	display: block;
	margin: auto;
	width: 16px;
	height: 16px;
	border: 3px solid #FC6761;
	border-radius: 50%;
	animation: pulse 1s alternate ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

/* Precon Options */  
.precon-options {
	position: fixed;
	display: block;
	z-index: 99998;
	padding: 20px;
	width: 245px;
	background: #fff;
	right: -245px;
	text-align: left;
	top: 50%;
	margin-top: -151.2px;
	-webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
	box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
}
.precon-options .icon {
	width: 22px;
	height: 22px;
	background: #968A8C;
	border-radius: 0px;
	top: 50%;
	line-height: 22px;
	cursor: pinter;
	font-size: 15px;
	position: absolute;
	left: -50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	border-radius: 5px 0 0 5px;
	background: #fff;
	color: #444;
	text-align: center;
	background: #379CB0;
	color: #fff;
	top: 0;
	cursor: pointer;
}
.precon-options .icon i {
	cursor: pointer;
}
.precon-options h4 {
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
}
.precon-options ul li{
	font-weight:500;
	font-size:14px;
}
.precon-options ul li a{
	color:#555;
}
.precon-options span {
	width: 48px;
	height: 40px;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	border: 2px solid #eee;
}
.precon-options .select-layout a {
	border: 1px solid #eee;
	text-align: center;
	padding: 5px 0;
	outline: none;
	display: inline-block;
	padding: 5px 13px;
	color: #353535;
	cursor: pointer;
	font-size: 13px;
}
.precon-options .select-layout a i {
	margin-right: 5px;
}
.precon-options .single-option {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	outline:none;
}
.precon-options .single-option:last-child{
	margin:0;
	padding:0;
	border:none;
}
.precon-options .bg-pattern li{
	display:inline-block;
}
.precon-options .bg-pattern li img {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
}
.precon-options span{
	position:relative;
}
.precon-options .pattern-main{
	overflow:hidden;
	opacity:0;
	visibility:hidden;
	transform: scale(0);
	height:0%;
	transform-origin: 0 0;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.precon-options .pattern-main.active{
	opacity:1;
	height:100%;
	visibility:visible;
    transform: scale(1);
}
/* Skin 1 */
.precon-options span.skin1:before,
.precon-options span.skin1:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin1:before{
	left:0;
	background:#379CB0;
}
.precon-options span.skin1:after{
	right:0;
	background:#FC6761;
}

/* Skin 2 */
.precon-options span.skin2:before,
.precon-options span.skin2:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin2:before{
	left:0;
	background:#2ECC71;
}
.precon-options span.skin2:after{
	right:0;
	background:#48CFAD;
}

/* Skin 3 */
.precon-options span.skin3:before,
.precon-options span.skin3:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin3:before{
	left:0;
	background:#5D9CEC;
}
.precon-options span.skin3:after{
	right:0;
	background:#8067B7;
}

/* Skin 4 */
.precon-options span.skin4:before,
.precon-options span.skin4:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin4:before{
	left:0;
	background:#9A88CC;
}
.precon-options span.skin4:after{
	right:0;
	background:#A4E01B;
}

/* Layout CSS */  
#layout.boxed-layout{
	position: relative;
	max-width: 1240px;
	background: #fff;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
#layout.boxed-layout .header.sticky .header-inner {
	max-width: 1240px;
	top: 0;
	left: auto;
	right: auto;
}
#layout.boxed-layout .testimonials .slick-dots {
	right: -30px;
}
#layout.boxed-layout .team button.PrevArrow {
	left: -40px;
}
#layout.boxed-layout .team button.NextArrow {
	right: -40px;
}
#layout.boxed-layout #footer-fixed {
	position: relative;
}
#layout.boxed-layout .footer-height {
	display: none;
}
.boxed-bg{
    background-color: #353535;
	/* background-repeat: repeat;
	background-attachment: inherit;
	background-size: inherit;
	background-image:url('../images/bg-pattern/bg-pattern-1.png') */
}
/*==================================
	End Reset CSS
====================================*/ 
/* =====================================
Template Name: Precon
Author Name: ThemeLamp
Author URI: http://themelamp.com/
Template Provide By: https://www.codeglim.com/
Description: Precon is a Multipurpose Business HTML5 Template.
Version:	1.0
========================================*/

/*======================================
[ CSS Table of contents ]
* Header CSS
* Hero Area CSS
* Why Choose CSS
* Services CSS
* Testimonials CSS
* Team CSS
* Call To Action CSS
* News CSS
* Partner Info CSS
* About Us CSS
* Faq's CSS
* Contact Us CSS
* Theme Widget CSS
* Footer CSS
========================================*/

/*====================================
	Header CSS
======================================*/

.buy-button {
    position: fixed;
    bottom: 0;
    z-index: 333;
    left: 0;
}

.header {
    position: relative;
}

.topbar {
    position: relative;
    background: #fff;
    z-index: 1000;
}

.top-inner {
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
}

/* Top Contact */

.top-contact {
    text-align: left;
}

.top-contact li {
    cursor: pointer;
}

.top-contact li {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3 ease;
}

.top-contact li:hover, .top-contact li:hover a {
    opacity: 0.95;
}

.top-contact li:last-child {
    margin-right: 0px;
}

.top-contact li a {
    color: #fff;
    font-weight: 500;
}

.top-contact li i {
    margin-right: 10px;
    color: #fff;
}

.topbar .top-right {
    text-align: right;
}

/* Language Nav */

.lang-nav {
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

.lang-nav li i {
    margin-left: 5px;
}

.lang-nav li a {
    color: #fff;
    font-weight: 400;
}

.lang-nav li a:hover {
    opacity: 0.9;
}

.lang-nav .lang-dropdown {
    position: absolute;
    background: #2A2D2F;
    width: 150px;
    top: 34px;
    z-index: 33;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    text-align: left;
    transform: scale(1, 0);
    transform-origin: 0 0;
}

.lang-nav li:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.lang-nav .lang-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.lang-nav .lang-dropdown li:last-child {
    border: none;
}

.lang-nav .lang-dropdown li a {
    color: #ccc;
    display: block;
    padding: 5px 15px;
    font-size: 13px;
}

.lang-nav .lang-dropdown li a:hover {
    color: #fff;
}

/* Social Icons */

.social-icons {
    display: inline-block;
}

.social-icons li {
    display: inline-block;
    margin-right: 15px;
}

.social-icons li:last-child {
    margin: 0;
}

.social-icons li a {
    display: block;
    text-align: center;
    color: #fff;
}

.social-icons li a:hover {
    opacity: 0.9;
}

.header-inner {
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3 ease;
    position: relative;
    background: #fff;
}

/* Logo */

.logo {
    padding-top: 20px;
    padding-left: 10px;
}

.logo .text-logo a {
    color: #353535;
    font-size: 28px;
    font-weight: 700;
}

.logo .img-logo img {
    display: inline-block;
}

.footer-top .logo img {
    width: 200px;
    margin-bottom: 10px;
}

.main-menu-bar {
    position: relative
}

.main-menu {
    text-align: center;
}

/* Main Menu */

.main-menu .navbar {
    float: right;
    padding: 0;
}

.main-menu .nav li {
    margin-right: 20px;
    position: relative;
}

.main-menu .nav li:last-child {
    margin: 0;
}

.main-menu .nav li a {
    text-transform: capitalize;
    color: #353535;
    display: block;
    background: transparent;
    border-radius: 0px;
    padding: 30px 8px;
    position: relative;
    font-weight: 600;
}

.main-menu .nav li.active a, .main-menu .nav li:hover a {
    color: #FC6761;
}

.main-menu .nav li a::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    width: 0%;
    height: 6px;
    background: #FC6761;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-menu .nav li:hover a::before, .main-menu .nav li.active a::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.main-menu .nav li a i {
    margin-left: 5px;
}

.main-menu .nav .dropdown {
    position: absolute;
    left: 0;
    width: 225px;
    background: #2A2D2F;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    visibility: hidden;
    top: 100%;
    padding: 10px 0;
    z-index: 999;
    transform: scale(1, 0);
    transform-origin: 0 0;
}

.main-menu .nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-menu .nav .dropdown:before {
    content: "";
}

.main-menu .nav .dropdown li {
    margin: 0;
    float: none;
    width: 100%;
}

.main-menu .nav li .dropdown li a {
    color: #eee;
    padding: 5px 15px;
    text-transform: capitalize;
    font-weight: 400;
}

.main-menu .nav li .dropdown li:last-child a {
    border-bottom: 0px;
}

.main-menu .nav li .dropdown li:hover a {
    color: #fff;
    border-color: transparent;
}

.main-menu .nav li .dropdown li a:before {
    display: none;
}

/* Search & Nav Icon */

.search-nav-icon {
    position: absolute;
    right: 0;
    top: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.search-nav-icon li {
    display: inline-block;
    margin-right: 10px;
}

.search-nav-icon li:last-child {
    margin-right: 0px;
}

.search-nav-icon li a {
    font-size: 15px;
    color: #353535;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.search-nav-icon li a:hover {
    color: #FC6761;
}

/* Search Form */

.search-form {
    position: absolute;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    width: 300px;
    top: 82px;
    background: #fff;
    padding: 15px;
    border-top: 2px solid #FC6761;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
}

.search-form.s-active {
    opacity: 1;
    visibility: visible;
    animation: jelly 0.5s;
    transform: scaleY(1);
}

@keyframes jelly {
    0%, 100% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    50% {
        transform: scale(1.1, 0.9);
    }
    75% {
        transform: scale(0.95, 1.05);
    }
}

.search-form input[type="text"] {
    width: 100%;
    height: 50px;
    margin: 0;
    z-index: 60;
    border: none;
    font-weight: 600;
    padding: 0 50px 0 20px;
    background: #F5F8F9;
    color: #353535;
}

.search-form button[type="submit"] {
    height: 50px;
    position: absolute;
    right: 16px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 50px;
    top: 15px;
    background: #FC6761;
    cursor: pointer;
}

.search-form button[type="submit"]:hover {
    background: #333333;
}

/* Header Style 2*/

.header.style2 {
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.63);
    border-bottom: 1px solid #ebebeb;
}

.header.style2 .header-inner, .header.style2 .topbar {
    background: inherit;
}

.header.style2 .logo {
    padding-top: 22px;
}

.header.style2 .search-nav-icon {
    top: 24px;
}

.header.style2 .main-menu .nav li.active a, .header.style2 .main-menu .nav li:hover a {
    background: #F5F8F9;
    color: #FC6761;
}

.header.style2 .main-menu .nav .dropdown li a {
    background: transparent;
}

.header.style2 .main-menu .nav li a {
    color: #fff;
    padding: 24px 10px;
}

.header.style2 .logo .text-logo a {
    color: #fff;
}

.header.style2 .search-nav-icon li a {
    color: #fff;
}

.header.style2 .search-nav-icon li a:hover {
    color: #FB6761;
}

.header.style2 .main-menu .nav li .dropdown li a {
    background: transparent;
    color: #eee;
    padding: 5px 15px;
}

.header.style2 .main-menu .nav .dropdown li a:hover {
    color: #fff;
}

.header.style2 .search-form {
    top: 72px;
}

/* Sidebar Qucik */

.sidebar-quick {
    position: fixed;
    right: 0;
    height: 100%;
    width: 280px;
    background: #2A2D2F;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    z-index: 9999;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.sidebar-quick.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
}

.sidebar-quick .remove a {
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    background: #0098DA;
    line-height: 30px;
    padding: 0;
    right: 15px;
    top: 15px;
    color: #fff;
}

.sidebar-quick .remove a:hover {
    background: #fff;
    color: #0098DA;
}

.sidebar-quick .logo {
    text-align: center;
}

.sidebar-quick .logo a {
    color: #fff;
}

.sidebar-quick .side-nav {
    text-align: center;
    margin: 30px 0;
}

.sidebar-quick .side-nav li {
    float: none;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.sidebar-quick .side-nav li:last-child {
    border: none;
}

.sidebar-quick .side-nav li a {
    color: #eee;
    width: 100%;
    padding: 8px 0;
    display: block;
    font-weight: 600;
}

.sidebar-quick .side-nav li a:hover {
    color: #FC6761;
}

.sidebar-quick .about-info {
    text-align: center;
    padding: 0 20px;
}

.sidebar-quick .about-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.sidebar-quick .about-info p {
    color: #eee;
}

.sidebar-quick .social-icons {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.sidebar-quick .social-icons li a {
    color: #353535;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #fff;
}

.sidebar-quick .social-icons li a:hover {
    background: #0098DA;
    color: #fff;
    border-radius: 100%;
}

.sidebar-quick .social-icons li {
    margin-right: 5px;
}

.sidebar-quick .social-icons li:last-child {
    margin: 0;
}

/* Sidebar Quick 2 */

.sidebar-quick.style2 {
    background: #0098DA;
}

.sidebar-quick.style2 .remove a {
    background: #fff;
    color: #0098DA;
    border: 1px solid #fff;
    line-height: 28px;
}

.sidebar-quick.style2 .remove a:hover {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.sidebar-quick.style2 .side-nav li a, .sidebar-quick.style2 .about-info p {
    color: #fff;
}

.sidebar-quick.style2 .side-nav li a:hover {
    opacity: 0.8;
}

.sidebar-quick.style2 .social-icons li a {
    border: 1px solid #fff;
}

.sidebar-quick.style2 .social-icons li a:hover {
    background: transparent;
}

/*====================================
	End Header CSS
======================================*/

/*====================================
	Hero Area CSS
======================================*/

.hero-area {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-area .single-slide {
    height: 650px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-area .welcome-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 650px;
    background: transparent;
}

.hero-area .welcome-text-inner {
    position: relative;
    padding: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(118, 123, 123, 0.10);
}

.hero-area .welcome-text-content {
    padding: 30px;
    position: relative;
    background-color: #fff;
    z-index: 50;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-area .welcome-text b {
    display: block;
    font-size: 18px;
    color: #555;
    font-weight: 400;
    position: relative;
    margin-bottom: 5px;
    letter-spacing: 2.5px;
}

.hero-area .welcome-text h1 {
    color: #353535;
    font-size: 45px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-area .welcome-text h1 span {
    color: #0098DA;
}

.hero-area .welcome-text p {
    color: #555;
    font-size: 15px;
}

.hero-area .button {
    margin-top: 20px;
}

/* Animation */

.hero-area .single-slide.slick-active .welcome-text {
    animation: fadeInDown 0.8s both 1s;
}

/* Hero Slider Control */

.hero-area button {
    position: absolute;
    top: 50%;
    font-size: 28px;
    z-index: 1;
    padding: 5px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.75);
    margin: -30px 0 0 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    outline: none;
    opacity: 0;
    visibility: hidden;
}

.hero-area:hover button {
    opacity: 1;
    visibility: visible;
}

.hero-area button:hover {
    background: #FC6761;
}

.hero-area button span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    display: inline-block;
    background: #FC6761;
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.hero-area button:hover span {
    background: #fff;
    color: #353535;
}

.hero-area button.PrevArrow {
    left: 20px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}

.hero-area:hover button.PrevArrow {
    transform: translateX(0%);
}

.hero-area button.NextArrow {
    right: 20px;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}

.hero-area:hover button.NextArrow {
    transform: translateX(0%);
}

/* Style Two */

.hero-area.style2 {
    background-image: url(images/8dbf4412b3671edfd5e5b82bc3288fd1.png);
    background-size: contain;
    background-position: center;
    background-color: #fff;
}

.hero-area.style2 .background-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-area.style2 .single-layer {
    position: absolute;
    background-size: auto auto;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-area.style2, .hero-area.style2 .single-slide {
    height: 700px;
}

.hero-area.style2 .single-slide::before {
    opacity: 0.9;
    background: #fff;
}

.hero-area.style2 .welcome-text-inner {
    margin: 84px 0 0;
    text-align: center;
    padding: 0;
    background: transparent;
}

.hero-area.style2 .welcome-text span {
    font-size: 30px;
    display: block;
    line-height: 40px;
    font-weight: 500;
}

.hero-area.style2 .welcome-text h1 {
    line-height: 80px;
    font-size: 60px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.hero-area.style2 .welcome-text p {
    font-size: 15px;
    line-height: 25px;
}

.hero-area.style2 .button {
    margin-top: 30px;
}

.hero-area.style2 .btn {
    margin-right: 15px;
}

.hero-area.style2 .btn:last-child {
    margin: 0;
}

.hero-area.style2 .single-layer.one {
    /* background-image: url('images/layer/layer1.png'); */
    background-position: top 22px left 85px;
}

.hero-area.style2 .single-layer.two {
    /* background-image: url('images/layer/layer2.png'); */
    background-position: top -7% right 10%;
}

.hero-area.style2 .single-layer.three {
    /* background-image: url('images/layer/layer3.png'); */
    background-position: right 0 bottom 10%;
}

.hero-area.style2 .single-layer.four {
    /* background-image: url('images/layer/layer4.png'); */
    background-position: left -94px bottom -87%;
}

/* Animation */

.hero-area.style2 .single-slide.slick-active .welcome-text {
    animation: fadeIn 0.5s both 0.8s;
}

.hero-area.style2 .single-slide.slick-active .single-layer.one {
    animation: fadeInLeft 0.8s both 1.2s;
}

.hero-area.style2 .single-slide.slick-active .single-layer.two {
    animation: fadeInDown 0.8s both 1.6s;
}

.hero-area.style2 .single-slide.slick-active .single-layer.three {
    animation: fadeInRight 0.8s both 2.5s;
}

.hero-area.style2 .single-slide.slick-active .single-layer.four {
    animation: fadeInDown 0.8s both 2s;
}

/* Slider Meta */

.hero-area.style2 .slick-dots {
    text-align: center;
    position: absolute;
    bottom: 70px;
    left: 50%;
    margin-left: -30px;
}

.hero-area.style2 .slick-dots::before {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 110%;
    height: 2px;
    background: #FC6761;
    left: -5px;
}

.hero-area.style2 .slick-dots li {
    display: inline-block;
    margin-right: 20px;
}

.hero-area.style2 .slick-dots li button {
    width: 12px;
    height: 12px;
    line-height: 12px;
    border-radius: 100%;
    font-size: 0;
    background: transparent;
    border: 2px solid #FC6761;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
    background: #fff;
    opacity: 1;
    visibility: visible;
}

.hero-area.style2 .slick-dots li:hover button, .hero-area.style2 .slick-dots li.slick-active button {
    background: #FC6761;
}

/*====================================
	End Hero Area CSS
======================================*/

/*====================================
	Why Choose CSS
======================================*/

.why-choose {
    background: #2A2D2F;
    padding-top: 70px;
}

.why-choose .section-title h2 {
    color: white;
}

/* .why-choose::before {
	position: absolute;
	left: 0;
	width: 48%;
	background: #FC6761;
	content: "";
	height: 100%;
	top: 0;
} */

.why-choose .why-img {
    position: relative;
    margin-top: 30px;
    border: 5px solid #fff;
    border-radius: 3px;
}

.why-choose .why-img img {
    width: 100%;
}

.why-choose .why-img .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    font-size: 15px;
    margin: -31px 0 0 -86.4px;
    background: #fff;
    padding: 16px 25px;
    color: #353535;
    border-radius: 50px;
    text-transform: capitalize;
}

.why-choose .why-img .video-play:hover {
    background: #0098DA;
    color: #fff;
}

.why-choose .why-img .video-play i {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background: #0098DA;
    border-radius: 100%;
    text-align: center;
    padding-left: 5px;
    z-index: 2;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.why-choose .why-img .video-play:hover i {
    background: #fff;
    color: #0098DA;
}

.why-choose .waves-block .waves {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(55, 156, 176, 0.4);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    top: -4px;
    left: 6px;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.why-choose .video-play:hover .waves-block .waves {
    background-color: rgba(255, 255, 255, 0.4);
}

.why-choose .waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.why-choose .waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.why-choose .waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.why-choose .single-choose {
    position: relative;
    margin-top: 30px;
}

.why-choose .single-choose i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    text-align: center;
    position: relative;
    left: 0;
    font-size: 25px;
    color: #fff;
    top: 0;
    background: #0098DA;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.why-choose .single-choose:hover i {
    background: #fff;
    border-radius: 20px;
}

.why-choose .single-choose h4 {
    font-size: 18px;
    color: #fff;
    margin: 15px 0;
}

.why-choose .single-choose p {
    color: #eee;
}

/*====================================
	End Why Choose CSS
======================================*/

/*====================================
	Services CSS
======================================*/

.services {
    background-color: #F5F8F9;
}

.services .single-service {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 50px 20px;
    margin-top: 30px;
    box-shadow: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services .single-service:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.services .single-service:hover h4 a {
    color: #FC6761;
}

.services .single-service .icon {
    font-size: 25px;
    position: relative;
    width: 75px;
    height: 75px;
    line-height: 75px;
    background: #0098DA;
    z-index: 55;
    color: #fff;
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
    display: inline-block;
}

.services .single-service .icon::before {
    content: '';
    position: absolute;
    top: 9px;
    right: -9px;
    width: 75px;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services .single-service:hover .icon::before {
    top: 0px;
    right: 0px;
}

.services .single-service h4 {
    font-size: 18px;
    margin: 25px 0;
}

.services .single-service h4 a {
    color: #2A2D2F;
}

.services .single-service h4:hover a {
    opacity: 0.8;
}

.services .single-service .btn {
    margin-top: 25px;
}

.services .single-service .btn i {
    margin-left: 10px;
}

/* Services Style 2 */

.services.style2 .single-service {
    text-align: left;
    padding: 40px 20px 40px 110px;
}

.services.style2 .single-service .icon {
    border-radius: 100%;
    position: absolute;
    left: 20px;
    text-align: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.services.style2 .single-service .icon::before {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    right: -5px;
    top: 5px;
}

.services.style2 .single-service:hover .icon::before {
    right: 0;
    top: 0;
}

.services.style2 .single-service h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.services.style2 .single-service .btn {
    margin-top: 15px;
}

/* Service Single */

.services.single {
    background: #F5F8F9;
    padding: 70px 0 100px;
}

.services.single .single-service {
    text-align: left;
    padding: 0;
    box-shadow: none;
    margin: 30px 0 0;
}

.services.single .single-service:before {
    display: none;
}

.services.single .service-content {
    padding: 20px;
}

.services.single .single-service h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.services.single .single-service h1 a {
    font-weight: 700;
    color: #353535;
}

.services.single .single-service h1:hover a {
    color: #0098DA;
}

.services.single .single-service p {
    margin-bottom: 15px;
}

.services.single .single-service p:last-child {
    margin: 0;
}

/* Services Sidebar */

.services-sidebar .single-sidebar {
    background: #fff;
    margin-top: 30px;
    padding: 20px;
}

.services-sidebar .single-sidebar h2 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.services-sidebar .single-sidebar h2::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 1px;
    background: #0098DA;
    content: "";
}

/* Service Category */

.service-category ul li {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.service-category ul li:last-child {
    margin: 0;
}

.service-category ul li:before {
    display: none;
}

.service-category ul li a {
    color: #353535;
    padding: 10px;
    display: block;
    border-radius: 3px;
}

.service-category ul li:hover a, .service-category ul li.active a {
    color: #fff;
    background: #0098DA;
}

.service-category ul li i {
    margin-right: 10px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #e6e6e6;
    border-radius: 100%;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.service-category ul li:hover a i, .service-category ul li.active a i {
    color: #fff;
    border-color: #fff;
}

/*====================================
	End Services CSS
======================================*/

/*====================================
	Achivements CSS
======================================*/

.achivements {
    background: #fff;
    position: relative;
}

.achivements .single-count {
    margin-top: 50px;
    text-align: right;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.achivements .single-count .icon {
    font-size: 25px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    color: #fff;
    text-align: center;
    background: #0098DA;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.achivements .single-count:hover .icon {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    transform: scale(0.9);
}

.achivements .single-count .icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 75px;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: -1;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.achivements .single-count:hover .icon::after {
    opacity: 0;
    visibility: hidden;
}

.achivements .count {
    font-size: 30px;
    position: relative;
    margin-bottom: 10px;
    color: #FC6761;
}

.achivements .count span {
    color: #353535;
}

.achivements .single-count p {
    font-size: 15px;
}

/*====================================
	End Achivements CSS
======================================*/

/*====================================
	Projects CSS
======================================*/

.projects {
    overflow: hidden;
    background: #F5F8F9;
}

/* Project Nav */

.projects .project-nav {
    display: block;
    text-align: center;
    width: 100%;
    margin: 20px 0 50px;
}

.projects .project-nav li {
    padding: 10px 25px;
    position: relative;
    cursor: pointer;
    color: #353535;
    text-transform: capitalize;
    margin: 0;
    background: #fff;
    margin-right: 10px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 1;
    border-radius: 30px;
    display: inline-block;
}

.projects .project-nav li:hover, .projects .project-nav li.active {
    color: #fff;
    background: #0098DA;
}

.projects .project-nav li:last-child {
    margin-right: 0px;
}

.projects .project-nav li::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.projects .project-nav li:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.projects .project-nav li i {
    color: #16A085;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.projects .project-nav li.active i, .projects .project-nav li:hover i {
    color: #fff;
}

.projects .single-project {
    overflow: hidden;
    position: relative;
    background: #fff;
}

.projects .project-head {
    position: relative;
    z-index: 66;
    overflow: hidden;
}

.projects .single-project img {
    display: block;
    width: 100%;
    z-index: 3;
}

.projects .single-project:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

.projects .project-hover {
    position: absolute;
    z-index: 5;
    color: #fff;
    text-align: center;
    background: rgba(42, 45, 47, 0.65);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.projects .single-project:hover .project-hover {
    opacity: 1;
    visibility: visible;
}

.p-title {
    margin: 103px 0;
}

.projects .p-title h4 {
    position: relative;
    font-size: 20px;
    text-transform: capitalize;
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    transform: translateX(30px);
}

.projects .single-project:hover .p-title h4 {
    transform: translateX(0);
}

.projects .p-title h4 a {
    color: #fff;
}

.projects .p-title h4 a:hover {
    color: #FC6761;
}

.projects .p-title h4 span {
    display: block;
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
}

.projects .project-hover .button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.projects .single-project:hover .button {
    transform: translateY(0);
}

.projects .project-hover .button::before {
    content: "";
    position: absolute;
    background: #0098DA;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
}

.projects .project-hover .btn {
    color: #FC6761;
    padding: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 100%;
    margin-right: 5px;
    background: #fff;
    z-index: 333;
    position: relative;
    border: none;
    text-align: center;
    border: 1px solid transparent;
}

.projects .project-hover .btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.projects .project-hover .btn:last-child {
    margin-right: 0px;
}

.projects .project-hover .btn i {
    margin: 0;
}

/* Portfolio Archive */

.project.archive .project-nav {
    padding-top: 0px;
}

/* Grid Style */

.projects.grid .project-nav {
    margin-bottom: 20px;
}

.projects.grid .single-project {
    margin-top: 30px;
}

/* Portfolio Single */

.project-single {
    background: #F5F8F9;
}

.project-single .project-head:before {
    display: none;
}

.project-single .single-project {
    margin-top: 0px;
    background: #fff;
    padding: 25px;
    border: 0px solid;
}

.project-single .single-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.project-single .single-content h1 a {
    color: #353535;
}

.project-single .single-content p {
    margin-bottom: 20px;
}

.project-single .single-content p:last-child {
    margin: 0;
}

/* Project Sidebar */

.project-info {
    background: #0098DA;
    padding: 20px;
    position: relative;
}

.project-info .single-info {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.project-info .single-info:last-child {
    margin: 0;
}

.project-info .single-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.project-info .single-info h4:hover {
    opacity: 0.8;
}

.project-info .single-info i {
    position: absolute;
    left: 0;
    color: #fff;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.project-info .single-info:hover i {
    border-color: transparent;
    background: #fff;
    color: #0098DA;
}

.project-info .single-info a {
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
}

.project-info .single-info a:hover {
    opacity: 0.8;
}

/* Testimonial Slider Control */

.project-slider .slick-dots {
    text-align: center;
    position: absolute;
    right: 11px;
    top: 50%;
    margin-top: -29px;
}

.project-slider .slick-dots li {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0px;
    margin-bottom: 8px;
}

.project-slider .slick-dots li:last-child {
    margin-bottom: 0px;
}

.project-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    line-height: 14px;
    border-radius: 100%;
    font-size: 0;
    background: #fff;
    margin-left: 5px;
    border: 3px solid transparent;
    cursor: pointer;
    outline: none;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.project-slider .slick-dots li.slick-active button, .project-slider .slick-dots li:hover button {
    background: #FC6761;
    border-color: #fff;
}

/*====================================
	End Projects CSS
======================================*/

/*====================================
	Testimonials CSS
======================================*/

.testimonials {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials::before {
    background: #0098DA;
    opacity: 0.95;
}

.testimonials .testimonial-active {
    margin-top: 20px;
}

.testimonials .single-testimonial {
    background: #fff;
    padding: 20px 35px 35px 35px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    text-align: center;
    position: relative;
    margin-top: 7px;
}

/* Table Ribbon */

.testimonials .ratting-main {
    position: absolute;
    right: -6px;
    top: -13px;
    z-index: 1;
    width: 90px;
    height: 90px;
    text-align: right;
    overflow: hidden;
}

.testimonials .ratting-main .rating {
    font-size: 11px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    -webkit-transform: rotate(45deg);
    width: 107px;
    display: block;
    background: #FC6761;
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 25px;
    right: -23px;
    height: 25px;
    line-height: 25px;
}

.testimonials .ratting-main .rating::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #FC6761;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #FC6761;
}

.testimonials .ratting-main .rating::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #FC6761;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #FC6761;
}

.testimonials .ratting-main .rating li {
    display: inline-block;
}

.testimonials .single-testimonial p {
    position: relative;
    content: "";
    z-index: 4;
}

.testimonials .single-testimonial p::before {
    position: absolute;
    content: "\f10d";
    font-size: 20px;
    font-family: 'FontAwesome';
    left: -6px;
    font-size: 43px;
    z-index: -4;
    opacity: 0.4;
}

.testimonials .t-info {
    position: relative;
    overflow: hidden;
    padding-top: 25px;
}

.testimonials .t-info .img-head {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.testimonials .t-info .img-head::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 3px solid transparent;
    border-radius: 100%;
    transform-origin: center;
    transform: scale(1);
}

.testimonials .single-testimonial:hover .img-head:before {
    transition: all 0.75s ease-in-out;
    transform-origin: center;
    transform: scale(1.5);
    border-color: #0098DA;
    opacity: 0;
}

.testimonials .t-info img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: inline-block;
    position: relative;
}

.testimonials .t-info .t-name {
    font-size: 20px;
    display: block;
    color: #353535;
    margin: 20px 0;
}

.testimonials .t-info .t-name span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    color: #FC6761;
}

/* Testimonial Dots */

.testimonials .slick-dots {
    text-align: center;
    position: absolute;
    right: -40px;
    top: 50%;
    margin-top: -27.5px;
}

.testimonials .slick-dots li {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0px;
    margin-bottom: 8px;
}

.testimonials .slick-dots li:last-child {
    margin-bottom: 0px;
}

.testimonials .slick-dots li button {
    width: 13px;
    height: 13px;
    line-height: 13px;
    border-radius: 100%;
    font-size: 0;
    background: #fff;
    margin-left: 5px;
    border: 3px solid transparent;
    cursor: pointer;
    outline: none;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.testimonials .slick-dots li:hover button, .testimonials .slick-dots li.slick-active button {
    background: #FC6761;
    border-color: #fff;
}

/*====================================
	End Testimonials CSS
======================================*/

/*====================================
	Team CSS
======================================*/

.team {
    background: #FFF;
    overflow: hidden;
}

.team .single-team {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.team .single-team:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

/* Team Head */

.team .team-head {
    position: relative;
}

.team .team-head img {
    z-index: 5;
    width: 100%;
}

.team .team-position {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    position: absolute;
    background: #0098DA;
    color: #fff;
    padding: 5px 20px;
    bottom: 0;
    left: -14px;
}

.team .team-position::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #0098DA;
}

.team .team-position span {
    font-size: 14px;
    position: relative;
    font-weight: 600;
}

.team .team-position span::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    margin-left: -18px;
    width: 36px;
    height: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Team Bottom */

.team .team-bottom {
    padding: 20px;
    background: #fff;
}

.team .team-title {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.team .team-title::before {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 4px;
    bottom: -2px;
    background: #FC6761;
}

/* Social */

.team .team-social {
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
}

.team .team-social li {
    display: inline-block;
    margin-right: 5px;
}

.team .team-social li:last-child {
    margin: 0;
}

.team .team-social a {
    text-align: center;
    color: #353535;
    display: block;
    width: 28px;
    height: 28px;
    line-height: 26px;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 50px;
}

.team .team-social a:hover {
    background: #0098DA;
    color: #fff;
    border-color: transparent;
}

.team .team-social {
    display: block;
    width: 100%;
    margin-top: 15px;
}

/* Team Slider Control */

.team button {
    position: absolute;
    top: 50%;
    font-size: 28px;
    z-index: 1;
    padding: 5px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.75);
    margin: -30px 0 0 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    outline: none;
    opacity: 0;
    visibility: hidden;
}

.team:hover button {
    opacity: 1;
    visibility: visible;
}

.team button:hover {
    background: #FC6761;
}

.team button span {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 100%;
    display: inline-block;
    background: #FC6761;
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.team button:hover span {
    background: #fff;
    color: #353535;
}

.team button.PrevArrow {
    left: -70px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}

.team:hover button.PrevArrow {
    transform: translateX(0%);
}

.team button.NextArrow {
    right: -70px;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}

.team:hover button.NextArrow {
    transform: translateX(0%);
}

/* Team Home */

.team.home .single-team {
    margin-bottom: 10px;
}

/*====================================
	End Team CSS
======================================*/

/*====================================
	Consultation CSS
======================================*/

.consultation {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.consultation .consult-title {
    margin-bottom: 20px;
}

.consultation .consult-title h2 {
    font-size: 25px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.consultation .consult-title h2:before {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    height: 4px;
    background: #FC6761;
    bottom: -2px;
}

.consultation .form-area {
    text-align: center;
    background: #fff;
    padding: 35px;
}

.consultation .section-title {
    text-align: left;
    padding: 0;
    margin: 0;
}

.consultation .section-title h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.consultation .section-title p {
    padding: 0;
}

.consultation .form {
    margin-top: 20px;
}

.consultation .form-group {
    position: relative;
}

.consultation .form-group input, .consultation .form-group textarea {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: none;
    resize: none;
    border: 1px solid #e7e7e7;
    background: #fff;
}

.consultation .form-group input:hover, .consultation .form-group textarea:hover {
    border-bottom-color: #0098DA;
}

.consultation .form-group textarea {
    height: 130px;
    padding: 15px;
}

.consultation .form-group.button {
    margin-bottom: 0px;
    text-align: left;
}

/*====================================
	End Consultation CSS
======================================*/

/*====================================
	Call to Action CSS
======================================*/

.call-to-action {
    padding: 40px 0;
    position: relative;
    background: #0098DA;
}

.call-to-action h2 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
}

.call-to-action h5 {
    color: rgba(255, 255, 255, 0.8)
}

.call-to-action p {
    color: #fff;
}

.call-to-action .btn {
    background: #fff;
    color: #FC6761;
    margin-top: 5px;
    border-color: #fff;
}

.call-to-action .btn:hover {
    background: transparent;
    color: #fff;
}

/*====================================
	End Call To Action CSS
======================================*/

/*====================================
	News Area CSS
======================================*/

.news-area {
    background: #F5F8F9;
}

/* Latest News */

.news-area .single-news {
    background: #fff;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-area .single-news:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.news-area .news-head {
    position: relative;
}

.news-area .news-head img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 3;
}

.news-area .news-head .date {
    text-align: center;
    position: absolute;
    background: #0098DA;
    color: #fff;
    padding: 5px 20px;
    left: -14px;
    bottom: 0;
    font-weight: 600;
}

.news-area .news-head .date::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #0098DA;
}

.news-area .date span {
    display: block;
}

/* News body */

.news-area .news-body {
    position: relative;
    padding: 20px;
}

.news-area .news-body h4 {
    font-size: 18px;
    line-height: 25px;
    position: relative;
    background: #fff;
    margin-bottom: 20px;
}

.news-area .news-body h4 a {
    color: #353535;
    cursor: pointer;
}

.news-area .news-body h4 a:hover {
    color: #FC6761;
}

/* News Meta */

.news-area .news-meta {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    margin: 15px 0 0;
}

.news-area .news-meta ul li {
    display: inline-block;
    color: #555;
    margin-right: 10px;
    font-weight: 600;
}

.news-area .news-meta ul li:last-child {
    margin: 0;
}

.news-area .news-meta ul li a {
    color: #555;
    font-weight: 600;
}

.news-area .news-meta ul li i {
    color: #FC6761;
    margin-right: 10px;
}

/* News Video */

.news-area .single-news.video .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    text-align: center;
    color: #FC6761;
    background: #fff;
    font-size: 20px;
    margin: -30px 0 0 -30px;
}

.news-area .single-news.video .video-play:hover {
    background: #FC6761;
    color: #fff;
}

/* Testimonial Slider Control */

.news-area .single-news.slider .slick-dots {
    text-align: center;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -24.5px;
}

.news-area .single-news.slider .slick-dots li {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0px;
    margin-bottom: 5px;
}

.news-area .single-news.slider .slick-dots li:last-child {
    margin-bottom: 0px;
}

.news-area .single-news.slider .slick-dots li button {
    width: 13px;
    height: 13px;
    line-height: 13px;
    border-radius: 100%;
    font-size: 0;
    background: #fff;
    border: 3px solid transparent;
    cursor: pointer;
    outline: none;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-area .single-news.slider .slick-dots li:hover button, .news-area .single-news.slider .slick-dots li.slick-active button {
    background: #FC6761;
    border-color: #fff;
}

/* News Archive */

.news-area.archive {
    padding-top: 70px;
}

/* Pagination */

.pagination-main {
    margin: 50px 0 0;
}

.pagination {
    display: block;
    padding-left: 0;
    border-radius: 0px;
    text-align: center;
}

.pagination li {
    display: inline-block;
    margin-right: 2px;
}

.pagination li:last-child {
    margin: 0;
}

.pagination li a {
    background: #fff;
    display: block;
    width: 45px;
    height: 45px;
    color: #2E303C;
    line-height: 45px;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.pagination li.active a, .pagination li:hover a {
    box-shadow: 0px 10px 15px #FC676133;
}

.pagination li.active a, .pagination li:hover a {
    color: #fff;
    background: #FC6761;
}

.pagination li a span, .pagination li a i {
    position: relative;
    z-index: 40;
}

.pagination li a i {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pagination li.prev:hover a i, .pagination li.next:hover a i {
    color: #fff;
}

.pagination li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pagination li.active a::before, .pagination li:hover a::before {
    opacity: 1;
    visibility: visible;
}

.pagination li.prev a, .pagination li.next a {
    display: ;
    width: auto;
    height: auto;
    padding: 0 30px;
}

.pagination li.prev a i {
    margin-right: 10px;
}

.pagination li.next a i {
    margin-left: 10px;
}

/* News Sidebar */

.sidebar-main {
    margin-top: 30px;
}

.sidebar-main .single-widget {
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
}

.sidebar-main .single-widget:Last-child {
    margin-bottom: 0px;
}

.sidebar-main .single-widget h2 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
}

.sidebar-main .single-widget h2::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: "";
    width: 50px;
    height: 6px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #0098DA;
}

.sidebar-main .single-widget h2:hover:before {
    width: 100px;
}

/* Search Form */

.sidebar-main .search .form {
    position: relative;
}

.sidebar-main .search .form input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #ebebeb;
}

.sidebar-main .search .form:hover input {
    border-color: #FC9895;
    background: #f9f9f9;
}

.sidebar-main .search .form button {
    position: absolute;
    border-radius: 100%;
    cursor: pointer;
    background: transparent !important;
    top: 11px;
    color: #FC6761;
    right: 15px;
    font-size: 15px;
    outline: none;
}

.sidebar-main .search .form button:hover {
    color: #353535;
}

/* Categories */

.sidebar-main .categories-inner li {
    line-height: 40px;
}

.sidebar-main .categories-inner li a {
    color: #555;
    font-size: 15px;
}

.sidebar-main .categories-inner li a:hover {
    color: #0098DA;
}

.sidebar-main .categories-inner li a span {
    margin-left: 10px;
    border: 1px solid #0098DA;
    width: 25px;
    display: inline-table;
    height: 10px;
    line-height: 10px;
    text-align: center;
    height: 25px;
    line-height: 24px;
    font-size: 13px;
    border-radius: 100%;
}

.sidebar-main .categories-inner li a i {
    margin-right: 5px;
}

/* Popular */

.sidebar-main .popular {}

.sidebar-main .signle-popular {
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-main .signle-popular img {
    width: 90px;
    height: 70px;
    float: left;
    margin-right: 15px;
}

.sidebar-main .signle-popular h4 {
    font-size: 18px;
}

.sidebar-main .signle-popular h4 a {
    font-size: 14px;
    color: #353535;
}

.sidebar-main .signle-popular h4 a:hover {
    color: #0098DA;
}

.sidebar-main .signle-popular p {
    font-size: 13px;
}

.sidebar-main .signle-popular p i {
    margin-right: 10px;
    color: #FC6761;
}

/* Tags */

.sidebar-main .tags {}

.sidebar-main .tags ul {}

.sidebar-main .tags ul li {
    display: inline-block;
    margin-top: 10px;
}

.sidebar-main .tags ul li a {
    color: #555;
    font-size: 14px;
    display: block;
    padding: 10px;
    background: #F5F8F9;
}

.sidebar-main .tags ul li a:hover {
    background: #0098DA;
    color: #fff;
}

/* Subscribe */

.sidebar-main .subscribe form {
    position: relative
}

.sidebar-main .subscribe form input {
    height: 50px;
    padding: 0 50px 0 15px;
    border: none;
    width: 100%;
}

.sidebar-main .subscribe {
    background: #0098DA;
}

.sidebar-main .subscribe h2 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.sidebar-main .subscribe h2::before {
    display: none;
}

.sidebar-main .subscribe form button {
    background: #F5F8F9;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    box-shadow: none;
    width: 50px;
    padding: 0;
    margin: 0;
    height: 50px;
    border-radius: 0px;
    text-align: center;
    color: #353535;
    display: block;
    margin: 0;
}

.sidebar-main .subscribe form button:hover {
    color: #fff;
    background: #2A2D2F;
}

.sidebar-main .subscribe form button i {
    margin: 0;
}

/*====================================
	End News Area CSS
======================================*/

/*====================================
	News Single
======================================*/

.news-area.single {}

.news-area.single .news-body h1 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 20px;
}

.news-area.single .news-body h1 a {
    color: #353535;
}

.news-area.single .news-body h1 a:hover {
    color: #FC6761;
}

.news-area.single .news-head .date {
    font-size: 15px;
}

.news-area.single .news-meta {
    margin: 0 0 15px;
}

.news-area.single .news-body p {
    margin-bottom: 20px;
}

.news-area.single .news-body p:last-child {
    margin: 0;
}

.news-area.single blockquote {
    padding: 20px;
    color: #353535;
    font-size: 18px;
    border-left: 4px solid #FC6761;
    background: #F5F8F9;
    line-height: 28px;
}

.news-area.single .content-inner {
    margin-bottom: 20px;
}

.news-area.single .heading h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Title fix */

.news-area.single .bottom-title h2 {
    text-align: center;
    position: relative;
    background: #0098DA;
    color: #fff;
    padding: 5px 20px;
    left: -39px;
    top: 0;
    font-size: 17px;
    display: inline-block;
    margin-bottom: 20px;
}

.news-area.single .bottom-title h2::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #0098DA;
}

/* Blog Comments */

.blog-comments {
    margin-top: 50px;
    background: #fff;
    padding: 25px;
    position: relative;
}

.blog-comments .single-comments {
    overflow: hidden;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 30px;
}

.blog-comments .single-comments:last-child {
    border-bottom: none;
    padding: 0px;
    margin: 0;
}

.blog-comments .single-comments .main {
    overflow: hidden;
}

.blog-comments .single-comments .head {
    float: left;
    margin-right: 20px;
    text-align: center;
}

.blog-comments .single-comments .head img {
    width: 70px;
    height: 70px;
    line-height: 80px;
    border: 3px solid #F5F8F9;
    padding: 2px;
}

.blog-comments .single-comments .body {
    padding-left: 90px;
}

.blog-comments .single-comments .comment-list {
    margin-top: 30px;
    overflow: hidden;
    border-top: 1px solid #ebebeb;
    padding-top: 30px;
    padding-left: 0px;
    margin-left: 50px;
}

.blog-comments .single-comments h4 {
    margin: 0 0 5px;
    font-size: 16px;
    text-align: left;
    color: #353535;
    font-weight: 600;
}

.blog-comments .single-comments .meta {
    font-size: 13px;
    margin: 0;
    color: #666;
    font-weight: 400;
}

.blog-comments .single-comments .meta span {
    display: inline-block;
}

.blog-comments .single-comments .meta i {
    color: #FC6761;
    margin: 0 5px;
}

.blog-comments .single-comments a {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 400;
    display: block;
}

.blog-comments .single-comments .reply {
    background: #FC6761;
    color: #fff;
    padding: 2px 10px;
    display: inline-block;
    border-radius: 50px;
    margin-left: 5px;
    font-weight: 600;
}

.blog-comments .single-comments .reply:hover {
    background: #222534;
}

/* Comments Form */

.blog-comments-form {
    background: #fff;
    margin-top: 50px;
    padding: 25px;
    position: relative;
}

.blog-comments-form .form-group {
    position: relative;
    display: block;
    margin: 0 0 25px;
}

.blog-comments-form label span {
    color: #FC6761;
    font-weight: 600;
    position: relative;
    top: 2px;
    left: 2px;
}

.blog-comments-form .form-group input {
    width: 100%;
    height: 42px;
    padding-left: 10px;
    border-radius: 5px;
    font-weight: 400;
    border-radius: 0px;
    background: #f6f6f6;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: inset 0px 1px 2px 0px rgba(238, 238, 238, 1);
    -moz-box-shadow: inset 0px 1px 2px 0px rgba(238, 238, 238, 1);
    box-shadow: inset 0px 1px 2px 0px rgba(238, 238, 238, 1);
}

.blog-comments-form .form-group textarea {
    padding: 10px;
    width: 100%;
    padding-left: 10px;
    resize: none;
    box-shadow: none;
    border-radius: 0px;
    background: #f6f6f6;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: inset 0px 1px 2px 0px rgba(238, 238, 238, 1);
    -moz-box-shadow: inset 0px 1px 2px 0px rgba(238, 238, 238, 1);
    box-shadow: inset 0px 1px 2px 0px rgba(238, 238, 238, 1);
}

.blog-comments-form .form-group input:hover, .blog-comments-form .form-group input:focus, .blog-comments-form .form-group textarea:hover {
    outline: none;
    background: #fff;
}

.blog-comments-form .form-group.button {
    margin: 0;
    text-align: center;
}

.blog-comments-form .form-group .btn {
    padding: 15px 30px;
    font-size: 14px;
    text-transform: uppercase;
    border: 0px solid;
    background: #FC6761;
    display: inline-block;
    color: #fff;
    float: left;
}

/*====================================
	End News Area Single
======================================*/

/*====================================
	Partner Info CSS
======================================*/

.partner-info {
    background: #fff;
    z-index: 10;
    position: relative;
    border-top: 1px solid #e7e7e7;
}

.partner-info .single-slide {
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.partner-info .single-slide a {
    display: block;
}

.partner-info .single-slide img {
    display: inline-block;
    opacity: 0.7;
}

.partner-info .single-slide:hover img {
    opacity: 1;
}

.partner-info .slide-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #0098DA;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.partner-info .single-slide:hover .slide-hover, .partner-info .slick-current .slide-hover {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.partner-info .slide-hover a {
    color: #FC6761;
    margin: 45px 0;
    display: inline-block;
    padding: 10px 15px;
    background: #fff;
    border-radius: 50px;
    font-size: 13px;
    border: 2px solid #fff;
}

.partner-info .slide-hover a:hover {
    color: #fff;
    background: transparent;
}

/* Style 2 */

.partner-info.style2 {
    background: #2A2D2F;
    padding: 10px;
}

/*====================================
	End Partner Info CSS
======================================*/

/*====================================
	About Us CSS
======================================*/

.about-us {
    background-color: #fff;
}

/* About Video */

.about-video {
    position: relative;
}

.about-video img {
    width: 100%;
}

.about-video .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    font-size: 25px;
    border-radius: 100%;
    margin-left: -32.5px;
    margin-top: -32.5px;
    color: #fff;
    cursor: pointer;
    padding-left: 4px;
    background: #0098DA;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-video .video-play:hover {
    background: #fff;
    color: #0098DA;
}

.about-video .video-play i {
    z-index: 2;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-video .waves-block .waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(239, 242, 243, 0.25);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    top: -41px;
    left: -41px;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-video .waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.about-video .waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.about-video .waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.about-video .about-img.video a:hover {
    background: #fff;
    border-color: transparent;
}

/* About Content */

.about-des .about-title {
    margin-bottom: 20px;
}

.about-des .about-title h2 {
    font-size: 25px;
    line-height: 32px;
}

.about-des .about-title h2 span {
    font-size: 20px;
    display: block;
    line-height: initial;
    color: #FC6761;
    margin-bottom: 5px;
    font-weight: 500;
}

.about-des .text-content p {
    margin-bottom: 15px;
}

.about-des .text-content p:last-child {
    margin-bottom: 0px;
}

.about-des .btn {
    margin-top: 25px;
}

/* What We Do */

.we-do-list .we-do-title {
    margin-bottom: 20px;
}

.we-do-list .we-do-title h2 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 10px;
}

.we-do-list .we-do-title h2 span {
    font-size: 20px;
    display: block;
    line-height: initial;
    color: #FC6761;
    margin-bottom: 5px;
    font-weight: 500;
}

.we-do-list .single-list {
    overflow: hidden;
    position: relative;
    padding-left: 85px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.we-do-list .single-list:last-child {
    margin: 0;
    border: none;
    padding-bottom: 0px;
}

.we-do-list .icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #ebebeb;
    color: #0098DA;
    float: left;
    position: absolute;
    left: 0;
    top: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.we-do-list .single-list:hover .icon {
    background: #0098DA;
    color: #fff;
    border-color: transparent;
}

.we-do-list h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

/*====================================
	End About Us CSS
======================================*/

/*====================================
	Skills CSS
======================================*/

.skills {
    background: #F5F8F9;
}

.skills .skill-main .title h2 {
    color: #2A2D2F;
    font-size: 22px;
}

.skills .skill-main .title h2 span {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 16px;
}

.skills .skill-main .title p {
    color: #fff;
    margin-top: 15px;
}

.skills .tab-main {
    margin-top: 30px;
    background: #fff;
    padding: 25px;
}

.skills .tab-main .nav {
    border-bottom: 2px solid #0098DA;
    position: relative;
    left: -39px;
    background: #fff;
}

.skills .tab-main .nav:before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #fff;
}

.skills .tab-main .nav li a {
    padding: 14px 20px;
    display: block;
    color: #353535;
    position: relative;
}

.skills .tab-main .nav li a i {
    margin-right: 5px;
    color: #FC6761;
    transition: all 0.3s ease;
}

.skills .tab-main .nav li a:hover i, .skills .tab-main .nav li a.active i {
    color: #fff;
}

.skills .tab-main .nav li a:hover, .skills .tab-main .nav li a.active {
    color: #fff;
    background: #0098DA;
}

.skills .tab-content p {
    margin-bottom: 15px;
}

.skills .tab-content p:last-child {
    margin: 0;
}

.skills .button {}

.skills .button .btn {
    margin-right: 10px;
}

/*====================================
	End Skills CSS
======================================*/

/*====================================
	Pricing Plan CSS
======================================*/

.pricing-plan {
    background: #F5F8F9;
}

.single-table {
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
    border-radius: 0px;
    text-align: center;
    position: relative;
    margin-top: 30px;
}

/* Table Head */

.single-table .table-head {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #ebebeb;
}

.single-table .title {
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    text-align: center;
    position: absolute;
    background: #0098DA;
    color: #fff;
    padding: 5px 20px;
    top: 38px;
    left: -14px;
    font-size: 20px;
}

.single-table .title::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #0098DA;
}

.single-table .price {
    text-align: right;
    padding-right: ;
}

.single-table .price .amount {
    font-weight: 700;
    font-size: 50px;
    margin: 0;
    color: #FC6761;
    line-height: 40px;
}

.single-table .price span {
    font-size: 20px;
    font-weight: 600;
    color: #555;
}

.single-table .price .currency {
    position: relative;
    top: -20px;
}

/* Table List */

.single-table .table-list {
    text-align: left;
    position: relative;
    padding: 25px 30px;
}

.single-table .table-list li {
    color: #555;
    position: relative;
    text-transform: capitalize;
    line-height: 42px;
}

.single-table .table-list li:last-child {
    margin: 0;
}

.single-table .table-list li i {
    margin-right: 10px;
}

/* Table Bottom */

.single-table .table-bottom {
    padding: 20px 0;
    border-top: 1px solid #ebebeb;
}

/*====================================
	End Pricing Plan CSS
======================================*/

/*====================================
	Faqs CSS
======================================*/

.faqs {
    background-color: #fff;
}

.faqs-main .single-faq {
    margin-bottom: 15px;
    background: #F5F8F9;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    background: #fff;
}

.faqs-main .single-faq:last-child {
    margin-bottom: 0px;
}

.faqs-main .single-faq .faq-title {}

.faqs-main .single-faq .faq-title a {
    display: block;
    color: #353535;
    font-size: 16px;
    padding: 15px;
    background: #fff;
}

.faqs-main .single-faq .faq-title a i {
    background: #0098DA;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    margin-right: 10px;
}

.faqs-main .faq-body {
    padding: 20px;
    border-top: 1px solid #e7e7e7;
}

/*====================================
	End Faqs CSS
======================================*/

/*====================================
	Contact CSS
======================================*/

.contact-us {
    background: #F5F8F9;
    border-top: 1px solid #e7e7e7;
}

.contact-form {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 333;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form .form-group h4 {
    font-size: 16px;
}

.contact-form .form-group span {
    color: #0098DA;
    position: absolute;
    top: 13px;
}

.contact-form .form-group input, .contact-form .form-group textarea {
    width: 100%;
    height: 50px;
    padding-left: 25px;
    font-weight: 600;
    border: none;
    border-bottom: 1px solid #ccc;
    resize: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-form .form-group textarea {
    padding-left: 25px;
    height: 200px;
}

.contact-form .form-group input:hover, .contact-form .form-group textarea:hover {
    border-bottom-color: #0098DA;
}

.contact-form .form-group.message span {
    top: 0;
}

.contact-form .form-group.button {
    margin-bottom: 0px;
}

.contact-info {
    background: #fff;
    padding: 60px 20px 30px 30px;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
}

.contact-info .info-head h2 {
    font-size: 20px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    position: absolute;
    background: #0098DA;
    color: #fff;
    padding: 5px 20px;
    top: 15px;
    left: -14px;
}

.contact-info .info-head h2:before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #0098DA;
}

.contact-info .single-address {
    position: relative;
    margin-top: 20px;
}

.contact-info .single-address span {
    font-weight: 600;
}

.contact-info .single-address:last-child {
    margin-bottom: 0;
}

.contact-info .single-address i {
    text-align: center;
    font-size: 15px;
    float: left;
    margin-right: 10px;
    border-radius: 100%;
    margin-top: 4px;
    color: #FC6761;
}

.contact-info .single-address p {
    color: #555;
    /* text-transform:capitalize; */
}

.contact-info .single-address p a {
    color: #555;
    font-weight: 400;
}

/* Social */

.contact-us .social {
    position: relative;
    padding: 60px 20px 30px 30px;
    margin-top: 30px;
    background: #fff;
}

.contact-us .social h2 {
    font-size: 20px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    position: absolute;
    background: #0098DA;
    color: #fff;
    padding: 5px 20px;
    top: 15px;
    left: -14px;
}

.contact-us .social h2:before {
    content: "";
    position: absolute;
    left: 0px;
    top: -25px;
    border-left: 14px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 13px solid #0098DA;
}

.contact-us .social li a {
    border: 1px solid #eee;
    color: #555;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.contact-map {
    background: #fff;
    z-index: 10;
    position: relative;
}

.map {
    width: 100%;
    height: 450px;
}

/*====================================
	End Contact CSS
======================================*/

/*======================================
	404 CSS
========================================*/

.error-page {
    text-align: center;
    background: #fff;
}

.error-page .error-inner {
    display: inline-block;
}

.error-page .error-inner h1 {
    font-size: 150px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    /* background-image: url('images/404.jpg'); */
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    line-height: 120px;
    margin-bottom: 15px;
}

.error-page .error-inner h1 span {
    display: block;
    font-size: 38px;
    color: #fff;
    font-weight: 600;
    text-shadow: none;
}

.error-page .error-inner h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.error-page .error-inner h2 span {
    color: #FC6761;
}

.error-page .error-inner p {
    color: #555;
}

.error-page .search-form {
    width: 100%;
    position: relative;
}

.error-page .error-search-form {
    width: 65%;
    position: relative;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

.error-page .error-search-form input {
    width: 100%;
    height: 50px;
    padding: 0px 55px 0 25px;
    border: none;
    background: #0098DA;
    border-radius: 3px;
    color: #fff;
}

.error-page .error-search-form .btn {
    position: absolute;
    right: 25px;
    top: 12px;
    padding: 0;
    cursor: pointer;
    color: #fff;
    border: none;
    background: transparent;
    font-size: 15px;
}

.error-page .error-search-form .btn:hover {
    opacity: 0.9;
}

.error-page .error-search-form .btn i {
    margin: 0;
}

.error-page .go-back {
    margin-top: 20px;
}

.error-page .go-back span {
    margin-right: 10px;
}

/*======================================
	End 404 CSS
========================================*/

/*======================================
	Theme Widget CSS
========================================*/

/* Pattern */

.pattern-1 {
    background-size: contain;
    /* background-repeat: no-repeat; */
    background-image: url(images/9d31ab10d5c92f548e1ea7b805689f96.png);
}

/* Contact Form */

.request-form {}

.request-form .form {}

.request-form .form input {
    width: 100%;
    height: 45px;
    padding: 0 20px;
    background: #F5F8F9;
    border: none;
    border: 1px solid #e7e7e7;
}

/* Downlaod brochure */

.download-brochure {
    text-align: center;
    padding: 0;
    position: relative;
}

.download-brochure img {
    width: 100%;
}

.download-brochure a {
    color: #fff;
    display: block;
    padding: 10px;
    background: #0098DA;
    position: absolute;
    bottom: 10px;
    left: -17px;
}

.download-brochure a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -26px;
    border-left: 17px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 14px solid #0098DA;
}

.download-brochure i {
    position: relative;
    margin-left: 10px;
    color: #fff;
    top: 0;
}

/* Extra Features */

.extra-feature {
    margin-bottom: 30px;
}

.extra-feature .title h4 {
    font-size: 20px;
    margin: 0 0 10px;
}

.extra-feature .title {
    margin-bottom: 20px;
}

.extra-feature .feature-list li {
    line-height: 35px;
    font-weight: 600;
}

.extra-feature .feature-list li i {
    margin-right: 10px;
    color: #0098DA;
    border: 1px solid;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 100%;
}

/* BreadCrumbs */

.breadcrumbs {
    text-align: center;
    padding: 100px 0;
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.breadcrumbs::before {
    opacity: 0.5;
}

.breadcrumbs h2 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
}

.breadcrumbs ul li {
    display: inline-block;
}

.breadcrumbs ul li a {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.breadcrumbs ul li a i {
    margin-right: 10px;
    font-size: 15px;
}

.breadcrumbs li+li::before {
    color: #b9b9b9;
    content: "/";
    padding: 0 5px;
    font-family: 'FontAwesome';
    content: "\f105";
    font-size: 16px;
}

.breadcrumbs ul li.active a {
    color: #fff;
    border-radius: 5px;
}

/* Animation */

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/*======================================
	Theme Widget CSS
========================================*/

/*====================================
	Footer CSS
======================================*/

.footer {
    background-color: #2A2D2F;
    background-image: url(images/8dbf4412b3671edfd5e5b82bc3288fd1.png);
}

.footer .footer-top {
    padding: 60px 0 90px;
}

.footer .single-widget {
    margin-top: 30px;
}

.footer .single-widget h2 {
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.footer .single-widget h2:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 4px;
    bottom: -2px;
    background: #FC6761;
}

.footer .single-widget p {
    color: #ccc;
}

/* Footer About */

.footer .logo {
    padding: 0;
    text-align: left;
}

.footer .text-logo a {
    color: #fff;
}

.footer .single-widget.about img {
    display: inline-block;
}

.footer .single-widget.about p {
    color: #ccc;
}

.footer .single-widget.about p:hover {
    color: #fff;
}

.footer .single-widget.about h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}

.footer .single-widget.about .social {
    margin-top: 30px;
}

.footer .single-widget.about .social li {
    display: inline-block;
    margin-right: 5px;
}

.footer .single-widget.about .social li:last-child {
    margin-right: 0px;
}

.footer .single-widget.about .social li a {
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    display: block;
    text-align: center;
    color: #fff;
}

.footer .single-widget.about .social li a:hover {
    background: #0098DA;
    color: #fff;
}

.footer .single-widget.about .social li:hover a {
    border-radius: 100%;
    color: #fff;
}

/* Footer Lists */

.footer .single-widget.lists li {
    line-height: 38px;
}

.footer .single-widget.lists li:last-child {
    margin-bottom: 0px;
}

.footer .single-widget.lists li a {
    color: #ccc;
    font-weight: 600;
    font-size: 14px;
}

.footer .single-widget.lists li a:hover {
    color: #fff;
}

.footer .single-widget.lists li a i {
    margin-right: 10px;
}

/* Photo Gallery*/

.footer .photo-gallery h2 {}

.footer .photo-gallery ul {
    margin-left: -15px;
    overflow: hidden;
    margin-top: -15px;
}

.footer .photo-gallery ul li {
    float: left;
    margin: 15px 0 0 15px;
    padding: 0;
}

.footer .photo-gallery ul li:last-child {
    margin-right: 0px;
}

.footer .photo-gallery ul li a {
    display: block;
}

.footer .photo-gallery ul li img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 3px solid #fff;
}

/* Contact CSS */

.footer .single-widget.contact p {
    margin-bottom: 10px;
}

.footer .single-widget.contact ul li {
    padding-left: 30px;
    margin-bottom: 8px;
    position: relative;
    color: #ccc;
    font-weight: 400;
}

.footer .single-widget.contact ul li:last-child {
    margin-bottom: 0px;
}

.footer .single-widget.contact ul i {
    position: absolute;
    left: 0;
    font-size: 15px;
    top: 6px;
}

.footer .single-widget.contact ul a {
    color: #ccc;
    font-weight: 400;
}

.footer .single-widget.contact ul li:hover, .footer .single-widget.contact ul a:hover {
    color: #fff;
}

/* Copyright */

.footer .copyright {
    text-align: center;
}

.footer .copyright-inner {
    padding: 10px;
    border-radius: 8px 8px 0 0;
    background: #0098DA;
}

.footer .copyright p {
    color: #fff;
    font-size: 14px;
}

.footer .copyright p a {
    color: #eee;
}

.footer .copyright p a:hover {
    text-decoration: underline;
}

/*====================================
	End Footer CSS
======================================*/

#thanksForm {
    display: none;
}

#thanksForm h2 {
    font-size: 32px;
    position: relative;
    margin-bottom: 15px;
    color: #353535;
    line-height: 32px;
}

.highlights {
    text-align: center;
}
/* =====================================
Template Name: Precon
Author Name: ThemeLamp
Author URI: http://themelamp.com/
Template Provide By: https://www.codeglim.com/
Description: Precon is a Multipurpose Business HTML5 Template.
Version:	1.0
========================================*/

/* Medium Layout 1280px. */

@media (min-width: 992px) and (max-width: 1200px) {
    .main-menu .nav li {
        margin-right: 15px;
        position: relative;
    }
    .testimonials .slick-dots {
        right: -8px;
    }
    .hero-area .welcome-text h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

/* Tablet Layout 768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn {
        font-size: 13px;
    }
    .main-menu .navbar {
        float: none;
        padding: 0;
    }
    .section-title {
        padding: 0 40px;
    }
    .breadcrumbs {
        padding: 60px 0;
    }
    .faq-img, .topbar .top-right {
        display: none;
    }
    .top-contact, .topbar .top-right {
        text-align: center;
    }
    .lang-nav .lang-dropdown {
        text-align: left;
    }
    .top-right {
        margin-top: 5px;
    }
    .navbar-nav {
        display: initial;
    }
    .navbar-nav li {
        display: inline-block;
    }
    .logo {
        text-align: center;
        padding-top: 25px;
    }
    .img-logo img {
        width: 50%;
    }
    .main-menu .nav li a {
        padding: 25px 0px;
    }
    .main-menu .nav li {
        margin-right: 21px;
    }
    .search-form {
        top: 74px;
    }
    .search-nav-icon {
        top: 24px;
    }
    .header.sticky .header-inner {
        position: relative;
    }
    .header.style2 .main-menu .nav li:hover a, .header.style2 .main-menu .nav li.active a {
        background: transparent;
    }
    .header.style2 .main-menu .nav li a {
        padding: 22px 0;
    }
    .header.style2 .search-nav-icon {
        top: 22px;
    }
    .hero-area.style2 .welcome-text h1 {
        font-size: 52px;
        line-height: 50px;
    }
    .hero-area.style2 .welcome-text h1 span {
        font-size: 25px;
    }
    .header.style2 .search-form {
        top: 68px;
    }
    .sidebar-quick {
        overflow: scroll;
    }
    .background-layer {
        display: none;
    }
    .hero-area, .hero-area .single-slide, .hero-area .welcome-text, .hero-area.style2, .hero-area.style2 .single-slide, .hero-area.style2 .welcome-text {
        height: 500px;
    }
    .hero-area.style2 .welcome-text-inner {
        margin: 124px 0 0;
    }
    .hero-area.style2 .slick-dots {
        bottom: 20px;
    }
    .hero-area .welcome-text h1 {
        font-size: 34px;
        line-height: 50px;
    }
    .hero-area .welcome-text b {
        font-size: 15px;
    }
    .why-choose .single-choose i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
    .why-choose .single-choose h4 {
        font-size: 13px;
        margin: 7px 0;
    }
    .why-choose .single-choose p {
        line-height: 20px;
    }
    .count-img {
        display: none;
    }
    .achivements .section-title, .testimonials .section-title, .skills .section-title {
        padding: 0;
        margin-right: 150px;
    }
    .projects .project-nav li {
        padding: 10px 20px;
    }
    .team .team-title {
        font-size: 18px;
    }
    .extra-feature .feature-list li {
        font-size: 13px;
    }
    .call-to-main {
        text-align: center;
    }
    .call-to-main h2 {
        font-size: 20px;
    }
    .call-to-action .button {
        text-align: center;
        margin-top: 15px;
    }
    .call-to-action .btn {
        display: inline-block;
    }
    .news-area .news-body h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .news-area.latest .news-body p {
        display: none;
    }
    .news-area.latest .news-meta ul li {
        font-size: 13px;
        display: block;
        margin: 0;
    }
    .news-area .news-meta ul li {
        font-size: 13px;
    }
    .project-info {
        margin-top: 30px;
    }
    .footer .photo-gallery ul {
        margin-left: -25px;
        margin-top: -15px;
    }
    .footer .photo-gallery ul li {
        margin-left: 25px;
        margin-top: 15px;
    }
    .footer .photo-gallery ul li img {
        width: 65px;
        height: 65px;
    }
}

/* Mobile Layout 320px. */

@media only screen and (max-width: 767px) {
    .btn {
        font-size: 13px;
    }
    .section-title {
        padding: 0;
    }
    .section-title h2 {
        font-size: 25px;
    }
    .section-title h2 span {
        margin-right: 10px;
        padding-right: 10px;
    }
    .logo {
        padding-top: 0;
        text-align: center;
    }
    .img-logo img {
        width: 50%;
    }
    .mobile-nav {
        display: block;
    }
    .slicknav_menu {
        margin: -27px 0 0 0;
        background: transparent;
        padding: 0;
    }
    .slicknav_menu .slicknav_nav {
        background: #379CB0;
        margin-top: 35px;
    }
    .slicknav_menu .slicknav_nav a i {
        display: none;
    }
    .mobile-nav .slicknav_btn {
        margin: 0;
        background: #379CB0;
    }
    .slicknav_nav a:hover {
        opacity: 0.8;
    }
    .header.style2 .logo {
        padding: 0;
    }
    .header-inner {
        padding: 20px 0;
    }
    .skills .tab-main .nav {
        left: 0;
    }
    .skills .tab-main .nav li {
        display: inline-block;
    }
    .skills .tab-main .nav li a {
        padding: 12px;
    }
    .pagination-main {
        margin: 40px 0 0;
    }
    .pagination-main li {
        margin-top: 10px;
    }
    .breadcrumbs {
        padding: 45px 0;
    }
    .breadcrumbs h2 {
        margin-bottom: 15px;
        font-size: 28px;
    }
    .breadcrumbs ul li a {
        font-size: 14px;
    }
    .breadcrumbs ul li a i {
        margin-right: 10px;
        font-size: 13px;
    }
    .faq-img, .topbar .top-right {
        display: none;
    }
    .top-contact, .topbar .top-right {
        text-align: center;
    }
    .lang-nav .lang-dropdown {
        text-align: left;
    }
    .top-right {
        margin-top: 5px;
    }
    .main-menu {
        display: none;
    }
    .main-menu .nav li a {
        padding: 20px 0px;
    }
    .main-menu .nav li {
        margin-right: 21px;
    }
    .search-form {
        top: 65px;
    }
    .search-nav-icon {
        top: -75px;
        display: none;
    }
    .header.sticky .header-inner {
        position: relative;
    }
    .hero-area .welcome-text-content {
        padding: 15px;
    }
    .hero-area, .hero-area .single-slide, .hero-area .welcome-text, .hero-area.style2, .hero-area.style2 .single-slide, .hero-area.style2 .welcome-text {
        height: 500px;
    }
    .hero-area .welcome-text h1 {
        font-size: 24px;
        line-height: 32px;
    }
    .hero-area.style2 .welcome-text-inner {
        margin-top: 65.5px;
    }
    .hero-area.style2 .button {
        margin-top: 20px;
    }
    .hero-area.style2 .welcome-text p {
        font-size: 14px;
    }
    .hero-area.style2 .btn {
        margin: 0;
        display: inline-block;
        margin-bottom: 10px;
    }
    .hero-area.style2 .btn:last-child {
        margin: 0;
    }
    .hero-area.style2 .slick-dots {
        bottom: 15px;
    }
    .background-layer {
        display: none;
    }
    .hero-area .welcome-text b {
        display: none;
    }
    .hero-area .welcome-text-inner {
        padding: 10px;
    }
    .hero-area.style2 .welcome-text h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .hero-area.style2 .welcome-text h1 span {
        font-size: 20px;
    }
    .why-choose:before {
        display: none;
    }
    .why-choose .single-choose i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
    .why-choose .single-choose h4 {
        font-size: 13px;
        margin: 7px 0;
    }
    .why-choose .single-choose p {
        line-height: 20px;
    }
    .count-img {
        display: none;
    }
    .achivements .section-title, .testimonials .section-title, .skills .section-title {
        padding: 0;
        margin: 0;
    }
    .achivements .single-count {
        padding-right: 35px;
    }
    .projects .project-nav li {
        padding: 8px 17px;
        font-size: 13px;
        margin-right: 5px;
    }
    .projects .project-nav li:last-child {
        margin: 0;
    }
    .consultation .form-area {
        padding: 25px;
    }
    .consultation .consult-title h2 {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .team .team-title {
        font-size: 18px;
    }
    .extra-feature .feature-list li {
        font-size: 13px;
    }
    .call-to-main {
        text-align: center;
    }
    .call-to-main h2 {
        font-size: 20px;
    }
    .call-to-action .button {
        text-align: center;
        margin-top: 15px;
    }
    .call-to-action .btn {
        display: inline-block;
    }
    .news-area .news-body h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .news-area.latest .news-body p {
        display: none;
    }
    .news-area.latest .news-meta ul li {
        font-size: 14px;
        display: block;
        margin: 0;
    }
    .news-area .news-meta ul li {
        font-size: 13px;
    }
    .project-info {
        margin-top: 30px;
    }
    .news-area.single .news-meta {
        display: none;
    }
    .news-area.single blockquote {
        font-size: 15px;
    }
    .news-area.single .content-inner img {
        margin-top: 20px;
    }
    .news-area.single .heading h2 {
        margin-bottom: 0;
    }
    .blog-comments .single-comments .comment-list {
        margin-left: 0;
    }
    .faqs-main .single-faq .faq-title a {
        font-size: 14px;
    }
    .error-page .error-inner h1 {
        font-size: 110px;
    }
    .error-page .error-inner h2 {
        font-size: 22px;
    }
    .error-page .error-search-form {
        width: 100%;
    }
    .map {
        width: 100%;
        height: 250px;
    }
    .skill-img {
        display: none;
    }
    .skills .button {
        text-align: left;
    }
    .skills .button .btn {
        margin: 0 0 10px;
    }
    .skills .button .btn:last-child {
        margin: 0;
    }
    .services.single .single-service h1, .project-single .single-content h1, .news-area.single .news-body h1 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 30px;
    }
    .extra-feature .title h4 {
        font-size: 18px;
        margin: 0 0 10px;
    }
    .extra-feature .feature-list li {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    .extra-feature .feature-list li:last-child {
        margin: 0;
    }
    .extra-feature .image {
        margin-top: 20px;
    }
    .footer .photo-gallery ul {
        margin-left: -25px;
        margin-top: -15px;
    }
    .footer .photo-gallery ul li {
        margin-left: 25px;
        margin-top: 15px;
    }
    .footer .photo-gallery ul li img {
        width: 65px;
        height: 65px;
    }
}

/* Other Responsive CSS */

@media only screen and (max-width: 992px) {
    .footer-height {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    #footer-fixed {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        z-index: 1;
    }
    /* Sticky Style 2 */
    .header.style2.sticky .logo {
        padding-top: 22px;
    }
    .header.style2.sticky .logo .text-logo a {
        color: #353535;
    }
    .header.style2.sticky .main-menu .nav li a {
        color: #353535;
    }
    .header.style2.sticky .main-menu .nav .dropdown li a {
        color: #eee;
    }
    .header.style2.sticky .main-menu .nav .dropdown li a:hover {
        color: #fff;
    }
    .header.style2.sticky .search-nav-icon {
        top: 24px;
    }
    .header.style2.sticky .search-nav-icon li a {
        color: #353535;
    }
}
/* =====================================
Template Name: Precon
Author Name: ThemeLamp
Author URI: http://themelamp.com/
Description: Precon is a Multipurpose Business HTML5 Template.
Version:	1.0

[Note: Please Do not Touch the Color Codes]
========================================*/


/* Color Skin 1 */
.top-inner,.sidebar-quick .remove a,.sidebar-quick .social-icons li a:hover,.sidebar-quick.style2,.why-choose .why-img .video-play:hover,.why-choose .why-img .video-play i,.why-choose .single-choose i,.services .single-service .icon,.services-sidebar .single-sidebar h2::before,.service-category ul li:hover a,
.service-category ul li.active a,.achivements .single-count .icon,.project-info,.team .team-position,.team .team-social a:hover,.call-to-action,.news-area .news-head .date,.sidebar-main .single-widget h2::before,.sidebar-main .tags ul li a:hover,.sidebar-main .subscribe,.news-area.single .bottom-title h2,.partner-info .slide-hover,.about-video .video-play,.we-do-list .single-list:hover .icon,.skills .tab-main .nav li a:hover,.skills .tab-main .nav li a.active,.single-table .title,.faqs-main .single-faq .faq-title a i,.contact-info .info-head h2,.contact-us .social  h2,.error-page .error-search-form input,.download-brochure a,.footer .single-widget.about .social li a:hover,.footer .copyright-inner,.btn.theme-1,.slicknav_menu .slicknav_nav,.mobile-nav .slicknav_btn,.projects .project-nav li:hover,.projects .project-nav li.active,.projects .project-hover .button::before,.testimonials::before{
	background: #0098DA;
}
.sidebar-quick .remove a:hover,.sidebar-quick.style2 .remove a,.hero-area .welcome-text h1 span,.why-choose .why-img .video-play:hover i,.why-choose .single-choose:hover i,.services.single .single-service h1:hover a,.project-info .single-info:hover i,.sidebar-main .categories-inner li a:hover,.sidebar-main .signle-popular h4 a:hover,.about-video .video-play:hover,.we-do-list .icon,.contact-form .form-group span,.extra-feature .feature-list li i,.btn.theme-1:hover,.btn.theme-1.no-style,.project-single .single-content h1:hover a{
	color:#0098DA;
}
.preloader{
	border-top-color:#0098DA;
}
.consultation .form-group input:hover,
.consultation .form-group textarea:hover,
.blog-comments-form .form-group input:hover,
.blog-comments-form .form-group textarea:hover{
	border-bottom-color:#0098DA;
}
.sidebar-main .categories-inner li a span,.btn.theme-1,.testimonials .single-testimonial:hover .img-head:before{
	border-color:#0098DA;
}
.btn.theme-1{
	box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
}
.team .team-position::before,.news-area .news-head .date::before,.news-area.single .bottom-title h2::before,.skills .tab-main .nav,.single-table .title::before,.contact-form .form-group input:hover,.contact-form .form-group textarea:hover,.contact-info .info-head h2:before,.contact-us .social h2:before,.download-brochure a::before,.preloader{
	border-bottom-color:#0098DA;
}

/* Color Skin 2 */
.main-menu .nav li a::before,.search-form button[type="submit"],.hero-area button:hover,.hero-area button span,.hero-area.style2 .slick-dots::before,.hero-area.style2 .slick-dots li:hover button,.hero-area.style2 .slick-dots li.slick-active button,.why-choose::before,.project-slider .slick-dots li.slick-active button,.project-slider .slick-dots li:hover button,.testimonials .ratting-main .rating,.testimonials .slick-dots li:hover button,.testimonials .slick-dots li.slick-active button,.team .team-title::before,.team button:hover,.team button span,.consultation .consult-title h2:before,.news-area .single-news.video .video-play:hover,.news-area .single-news.slider .slick-dots li:hover button,.news-area .single-news.slider .slick-dots li.slick-active button,.pagination li.active a,.pagination li:hover a,.blog-comments .single-comments .reply,.blog-comments-form .form-group .btn,.footer .single-widget h2:before,.main-menu .nav li a::before,.search-form button[type="submit"],.btn.theme-2,.section-title h2 span::before,#scrollUp,.precon-options span.skin1:after{
	background: #0098DA;
}
.main-menu .nav li.active a,.main-menu .nav li:hover a,.search-nav-icon li a:hover,.header.style2 .main-menu .nav li.active a,.header.style2 .main-menu .nav li:hover a,.sidebar-quick .side-nav li a:hover,.services .single-service:hover h4 a,.achivements .count,.projects .p-title h4 a:hover,.projects .project-hover .btn,.testimonials .t-info .t-name span,.call-to-action .btn,.news-area .news-body h4 a:hover,.news-area .news-meta ul li i,.news-area .single-news.video .video-play,.sidebar-main .search .form button,.sidebar-main .signle-popular p i,.news-area.single .news-body h1 a:hover,.blog-comments .single-comments .meta i,.blog-comments-form label span,.partner-info .slide-hover a,.about-des .about-title h2 span,.we-do-list .we-do-title h2 span,.skills .tab-main .nav li a i,.single-table .price .amount,.contact-info .single-address i,.error-page .error-inner h2 span,.btn.theme-2:hover,.btn.theme-2.no-style,.section-title h2 span,.section-title p a,.breadcrumbs ul li a:hover{
	color: #0098DA;
}
.hero-area.style2 .slick-dots li button,.btn.theme-2,.preloader::before{
	border-color:#0098DA;
}
.search-form,.testimonials .ratting-main .rating::before,.testimonials .ratting-main .rating::after,.search-form{
	border-top-color:#0098DA;
}
.testimonials .ratting-main .rating::before,.news-area.single blockquote{
	border-left-color:#0098DA;
}
.testimonials .ratting-main .rating::after{
	border-right-color:#0098DA;
}
.btn.theme-2 {
	box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
}
:root {
    --primary-color: rgba(13, 110, 139, 0.75);
    --overlay-color: rgba(24, 39, 51, 0.85);
    --menu-speed: 0.75s;
}

.menu-wrap {
    position: fixed;
    top: 10px;
    left: 50%;
    margin-left: -20px;
    z-index: 2000;
}

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

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.menu-wrap .hamburger.scrolled {
    opacity: 0;
}

.menu-wrap .hamburger>div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

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

/* Toggler Animate */

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

/* Turn 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 check */

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

/* Show Menu */

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

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

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

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

.menu-wrap .hmenu > div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
  }
  
  .menu-wrap .hmenu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .menu-wrap .hmenu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
  }
  
  .menu-wrap .hmenu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
  }
  
  
