@charset "UTF-8";
/*
Theme Name: Solute - Technology & IT Solutions HTML5 Template
Template URL: https://html.urnothemes.com/solute/
Description: Solute is a Technology & IT Solutions HTML5 Template
Author: urnoit
Author URI: https://www.templatemonster.com/authors/urnoit/
Version: 1.0.0
*/

/*================
 Theme Base
==================*/

:root {
	--main-color: #ff7426;
	--title-color: #222429;
	--paragraph-color: #696969;
}
html{
	scroll-behavior: smooth;
}
body{
	color: var(--paragraph-color);
	font-size: 16px;
	font-weight: normal;
	font-family: 'Space Grotesk';
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--title-color);
	font-weight: bold;
	margin: 0;
	line-height: 1.2;
}
h1 {
	font-size: 56px;
}
h2 {
	font-size: 56px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 14px;
}

a{
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

/*================
 Top Bar
==================*/

.site-header .top-bar {
    padding: 8px 0;
    background: linear-gradient(270deg, rgba(252,152,55,1) 0%, rgba(221,29,38,1) 100%);
}
.site-header .top-bar .text-left {
    display: flex;
}
.site-header .top-bar .text-left i {
    color: #fff;
    margin-right: 5px;
}
.site-header .top-bar .text-left span,
.site-header .top-bar .text-left a {
    color: #fff;
    margin-right: 20px;
}

.site-header .top-bar .text-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.site-header .top-bar .text-right ul li {
    margin-left: 16px;
}
.site-header .top-bar .text-right ul li a {
    color: #fff;
    font-size: 14px;
}

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

.site-header .menu-container{
	max-width: 1320px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	padding: 0 10px;
}
.site-header .menu-bar .nav-menu{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.site-header .menu-bar .nav-menu li{
	position: relative;
}
.site-header .menu-bar .nav-menu li a {
	display: inline-block;
	color: var(--title-color);
	font-size: 16px;
	font-weight: 600;
	padding: 38px 13px;
}
.site-header .menu-bar .nav-menu li a:hover{
	color: var(--main-color);
}
.site-header .menu-bar .nav-menu li a i{
	font-size: 10px;
}
.site-header .menu-bar .component .search-icon{
	cursor: pointer;
}
.site-header .menu-bar .component .search-icon i{
	color: var(--title-color);
}

/* Transparent Menu */

.transparent-header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
}
.transparent-header .menu-bar .nav-menu li a {
	color: #fff;
}
.transparent-header .menu-bar .component .search-icon i {
	color: #fff;
}

/* Sub Menu */

.site-header .menu-bar .nav-menu li .sub-menu{
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	width: 270px;
	background-color: #fff;
	padding: 10px 0 10px 18px;
	top: 130%;
	visibility: hidden;
	opacity: 0;
	z-index: 99;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.site-header .menu-bar .nav-menu li:hover .sub-menu{
	top: 100%;
	visibility: visible;
	opacity: 1;
}
.site-header .menu-bar .nav-menu li .sub-menu:before {
    content: "";
    position: absolute;
    left: 23px;
    top: 30px;
    width: 1px;
    background-color: #ededed;
    height: calc(100% - 60px);
}
.site-header .menu-bar .nav-menu .sub-menu li a{
	display: block;
	color: var(--title-color);
	padding: 7px 20px 7px 25px;
}
.site-header .menu-bar .nav-menu .sub-menu li a:hover{
	color: var(--main-color);
}
.site-header .menu-bar .nav-menu .sub-menu li a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	background-color: #fff;
	box-shadow: inset 0px 2px 4px 0px rgba(173, 136, 88, 0.4);
}
.site-header .menu-bar .nav-menu .sub-menu li a::after {
	content: '';
	position: absolute;
	height: 4px;
	width: 4px;
	border-radius: 50%;
	background-color: var(--main-color);
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
}

/*================
 Mobile Menu
==================*/

.mobile-menu{
	position: relative;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	display: none;
}
.mobile-menu .menu-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
}
.mobile-menu .menu-toggle{
	cursor: pointer;
}
.mobile-menu .menu-toggle i{
	color: var(--main-color);
	font-size: 24px;
}
.mobile-menu .nav-menu {
	margin: 0;
	padding: 30px 20px;
	list-style: none;
	position: absolute;
	width: 100%;
	top: 100%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	z-index: 99;
	display: none;
}
.mobile-menu .nav-menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--title-color);
	font-weight: 600;
	text-decoration: none;
	padding: 10px 10px;
}
.mobile-menu .nav-menu .sub-menu{
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	display: none;
}

@media(max-width: 1200px){

	.site-header{
		display: none;
	}
	.mobile-menu{
		display: block;
	}
}

/*================
 Hero Slider
==================*/

.hero-section.style1 {
	position: relative;
    height: 990px;
}
.hero-section.style1 .hero-content {
    text-align: center;
}
.hero-section.style1 .hero-content .subtitle {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 6px;
    z-index: 1;
}
.hero-section.style1 .hero-content .subtitle::before, 
.hero-section.style1 .hero-content .subtitle::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -55px;
}
.hero-section.style1 .hero-content .subtitle::after {
    left: inherit;
    right: -55px;
}
.hero-section.style1 .hero-content .title {
    position: relative;
    font-size: 85px;
    font-weight: bold;
    margin-bottom: 18px;
    z-index: 1;
    color: #fff;
}
.hero-section.style1 .hero-content .title span {
    color: var(--main-color);
}
.hero-section.style1 .hero-content .description {
    color: rgba(255, 255, 255, 0.8);
    width: 50%;
    margin: 0 auto 51px;
}
.hero-section.style1 .hero-content .button {
    display: inline-block;
    margin: 0 10px;
}
.hero-section.style1 .hero-content .button a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
    color: #fff;
}
.hero-section.style1 .hero-content .button a::before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-section.style1 .hero-content .button a::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-section.style1 .hero-content .button a:hover::before {
    left: -50%;
}
.hero-section.style1 .hero-content .button a:hover::after {
    right: -50%;
}
.hero-section.style1 .hero-content .button-two {
    display: inline-block;
}
.hero-section.style1 .hero-content .button-two a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
    color: #fff;
}
.hero-section.style1 .hero-content .button-two a::before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-section.style1 .hero-content .button-two a::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-section.style1 .hero-content .button-two a:hover::before {
    left: 0;
}
.hero-section.style1 .hero-content .button-two a:hover::after {
    right: 0;
}
.hero-section.style1 .hero-shape{
    position: absolute;
    left: 0;
    bottom: -5px;
}
.hero-section.style1 .hero-shape img{
    width: 100%;
}

/* Style two */

.hero-section.style2 {
    height: 820px;
}
.hero-section.style2.two {
    height: 820px;
}

.hero-section.style2 .hero-content .subtitle {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0 0 8px;
}
.hero-section.style2 .hero-content .title {
    color: #fff;
    font-size: 85px;
    font-weight: bold;
    margin-bottom: 16px;
}
.hero-section.style2 .hero-content .title span {
    color: var(--main-color);
}
.hero-section.style2 .hero-content .description {
    color: rgba(255, 255, 255, 0.8);
    width: 74%;
    margin: 0 0 58px;
}
.hero-section.style2 .hero-content .button a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(270deg, rgba(221,29,38,1) 0%, rgba(252,152,55,1) 100%);
    padding: 11px 32px;
    border: 1px solid var(--main-color);
}
.hero-section.style2 .hero-content .button a:hover{
	background: transparent;
}
.hero-section.style2 .button {
    display: inline-block;
}
.hero-section.style2 .button-two {
    display: inline-block;
}
.hero-section.style2 .hero-content .button-two a {
    background: transparent;
    margin-left: 15px;
    border: 1px solid var(--main-color);
    padding: 12px 34px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.hero-section.style2 .hero-content .button-two a:hover{
	background: linear-gradient(270deg, rgba(221,29,38,1) 0%, rgba(252,152,55,1) 100%);
}

.hero-slider .owl-nav .owl-prev, 
.hero-slider .owl-nav .owl-next {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index:99999;
}
 .hero-slider .owl-nav .owl-prev i, 
 .hero-slider .owl-nav .owl-next i {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #fff;
}
.hero-slider .owl-nav .owl-prev{
	right: auto;
    left: 0%;
    opacity: 0;
}
.hero-slider:hover .owl-nav .owl-prev{
    left: 8%;
    opacity: 1;
}
 .hero-slider .owl-nav .owl-next{
	left: auto;
    right: 0%;
    opacity: 0;
}
 .hero-slider:hover .owl-nav .owl-next{
	right: 8%;
	opacity: 1;
}
 .hero-slider .hero-video {
    float: right;
}
.hero-slider .hero-video .video-icon a{
	position: relative;
}
.hero-slider .hero-video .video-icon a i{
    position: relative;
    color: #fff;
    font-size: 27px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    display: inline-block;
    background: linear-gradient(270deg, rgba(221,29,38,1) 0%, rgba(252,152,55,1) 100%);
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.hero-slider .hero-video .video-icon a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 37%;
    height: 100px;
    width: 100px;
    background: rgba(255,116,38, 0.8);
    border-radius: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
	opacity: 1;
	}
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
	opacity: 0;
	}
}

/* Style Three */

.hero-section.style3 {
    position: relative;
    z-index: 2;
}
.hero-section.style3 #particles-js2 {
	position: absolute;
	width: 100%;
	height: 100%;
}

canvas {
  display: block;
  vertical-align: bottom;
}

/*particles.js*/

#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
}

/*================
 About Section
==================*/

.about.style1 {
    padding: 75px 0 100px;
}
.about.style1 .section-image img {
    width: 100%;
}
.col-lg-6.col-md-12.padding-left {
    padding-left: 63px;
}
.about.style1 .content {
    border-left: 3px solid#FF7426;
    padding: 0 0 0 20px;
    margin-bottom: 48px;
}
.about.style1 .content .title {
    font-size: 18px;
    margin: 0 0 15px;
}
.about.style1 .content .name span {
    color: #696969;
    font-weight: 400;
    font-size: 16px;
}

/* Style Two */

.about.style2 {
    padding: 38px 0 100px;
}
.about.style2 .single-image{
	position: relative;
}
.about.style2 .single-image .about-shape {
	position: absolute;
	top: -30px;
	left: -33px;
	z-index: -1;
}
.about.style2 .about-icon-box{
	display: flex;
}
.about.style2 .about-icon-box .icon {
	margin-right: 15px;
	line-height: 1;
}
.about.style2 .about-icon-box .icon i {
	display: inline-block;
	color: var(--main-color);
	font-size: 40px;
	line-height: 1.2;
	background: linear-gradient(to right, rgba(221,29,38,1) 0%, rgba(252,152,55,1) 100%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.about.style2 .about-icon-box .content h4 {
	font-size: 20px;
	margin-bottom: 5px;
}
.about.style2 .about-icon-box .content p {
	margin: 0;
}
.about.style2 .about-btn{
	margin-top: 44px;
}
.about.style2 .about-btn a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 34px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.about.style2 .about-btn a::before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.about.style2 .about-btn a::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.about.style2 .about-btn a:hover {
    color: var(--title-color);
}
.about.style2 .about-btn a:hover::before {
    left: -50%;
}
.about.style2 .about-btn a:hover::after {
    right: -50%;
}

/* Style Three */

.about.style3 {
    padding: 95px 0 95px;
    background-image: linear-gradient(90deg, #F6F6F8 40%, #F2295B00 40%);
}
.about.style3 .about_right {
    padding-left: 53px;
}
.about.style3 .about-icon-box {
    border: 1px solid#CCCCCC;
    padding: 20px;
    display: flex;
    align-items: center;
    margin: 27px 0 40px;
}
.about.style3 .about-icon-box .image{
	 margin-right: 20px;
}
.about.style3 .image {
    margin-right: 20px;
}
.about.style3 .content .title {
    margin: 0 0 11px;
    font-size: 18px;
}
.about.style3 .content .title span {
    color: var(--main-color);
    font-weight: 600;
}
.about.style3 .content .description {
    margin: 0;
}
.about.style3 .item_list ul {
    padding: 0;
}
.about.style3 .item_list li {
    display: block;
    margin: 0 0 5px;
    color: var(--main-color);
    font-size: 16px;
    margin-right: 5px;
    font-weight: 600;
}
.about.style3 .item_list li i {
    margin-right: 5px;
}
.about.style3 .item_list ul li span {
    color: var(--paragraph-color);
}
.about.style3 .btn-set {
    display: inline-block;
    margin-top: 43px;
}

/*button*/
.btn-set a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 34px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.btn-set a::before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.btn-set a::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.btn-set a:hover {
    color: var(--title-color);
}
.btn-set a:hover::before {
    left: -50%;
}
.btn-set a:hover::after {
    right: -50%;
}

/*================
 Feature Section
==================*/

.feature-section {
    padding: 100px 0 42px;
}
.feature-section .feature-box {
    position: relative;
    padding: 51px 15px 40px 32px;
    border-radius: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.feature-section .feature-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: url(../images/feature.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.feature-section .feature-box.two:last-child:before {
    background: url(../images/feature2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.feature-section .feature-box .img {
    display: inline-block;
    margin-right: 14px;
}
.feature-section .feature-box .content .title {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 8px;
}
.feature-section .feature-box .content p.description {
    font-size: 16px;
    transition: .5s;
    color: #fff;
    opacity: 0.8;
    margin: 0;
}

/*================
 Section Title
==================*/

.section-title .subtitle {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.section-title.left .subtitle::after {
	content: '';
	position: absolute;
	height: 2px;
	width: 45px;
	background-color: var(--main-color);
	top: 50%;
	right: -55px;
}
.section-title .title {
    font-size: 50px;
    margin-bottom: 20px;
}
.section-title .description {
    margin: 23px 0 29px;
    width: 93%;
}
/*center*/
.section-title.center .subtitle::before, .section-title.center .subtitle::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -55px;
}
.section-title.center .subtitle::after {
    left: inherit;
    right: -55px;
}
.section-title.center {
    text-align: center;
    margin-bottom: 49px;
}

/* Style Two */

.section-title.style2 .subtitle {
	position: relative;
	display: inline-block;
	color: var(--main-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 25px;
}
.section-title.style2.left .subtitle::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 45px;
    top: inherit;
    bottom: -11px;
    background: url(../images/title-shape.png);
    height: 10px;
    width: 79px;
    right: -15px;
}
.section-title.style2.left .description {
    margin: 21px 0 29px;
    width: 87%;
    color: #222429;
    font-size: 18px;
}

/*================
 Service Section
==================*/

.service.style1 {
    padding: 95px 0 79px;
    background: url(../images/service-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.service-box.style1 {
    display: flex;
    background-color: #fff;
    padding: 38px 40px 40px;
    box-shadow: 0px 20px 40px 0px rgba(145, 139, 187, 0.05);
    background-image: url(../images/service-box-bg.png);
    background-repeat: no-repeat;
    background-position: 205px -20px;
    margin-bottom: 25px;
}
.service-box.style1:hover{
	 box-shadow: 0px 20px 40px 0px rgba(145, 139, 187, 0.09);
}
.service-box.style1 .icon {
    margin-right: 25px;
}
.service-box.style1 .icon i {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-style: normal;
    font-size: 36px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style1 .icon i::after {
    content: '';
    position: absolute;
    background-image: url(../images/service-icon-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 73px;
    height: 55px;
    left: -15px;
}
.service-box.style1 .service-content .title {
    font-size: 20px;
    margin-bottom: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style1 .service-content .description {
    margin-bottom: 27px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style1 .service-content a.read-more {
    display: inline-block;
    color: var(--title-color);
    font-weight: 600;
}
.service-box.style1 .service-content a.read-more i {
    color: var(--main-color);
    margin-left: 10px;
}
/* Style Two */
.service.style2 {
    padding: 85px 0 100px;
}
.row.services{
	margin-top: 28px;
}
.service-box.style2{
	position: relative;
	background-color: #fff;
	padding: 40px 28px 32px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	text-align: center;
}
.service-box.style2::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 0;
	background: linear-gradient(270deg, rgba(221,29,38,1) 0%, rgba(252,152,55,1) 100%);
	top: 0;
	right: 50%;
	transition: 0.5s;
}
.service-box.style2:hover::before {
	width: 100%;
	right: 0;
}
.service-box.style2 .icon{
	margin-bottom: 25px;
}
.service-box.style2 .icon i{
	position: relative;
	display: inline-block;
	color: #fff;
	font-family: "Flaticon";
	font-style: normal;
	font-size: 36px;
	height: 85px;
	width: 85px;
	line-height: 85px;
	text-align: center;
	background: linear-gradient(0deg, rgba(221,29,38,1) 0%, rgba(252,152,55,1) 100%);
	border-radius: 50%;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}
.service-box.style2:hover .icon i{
	color: var(--main-color);
	background: #fff;
}
.service-box.style2 .title h3{
	font-size: 22px;
	margin-bottom: 15px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}
.service-box.style2 .description p{
	margin-bottom: 27px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}
.service-box.style2 .content{
	position: relative;
}
.service-box.style2 .content .service-btn a{
	display: inline-block;
	color: var(--title-color);
	font-weight: 600;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}
.service-box.style2 .content .service-btn a i{
	color: var(--main-color);
	margin-left: 10px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}
.service-box.style2:hover .title h3,
.service-box.style2:hover .description p,
.service-box.style2:hover .content .service-btn a,
.service-box.style2:hover .content .service-btn a i{
	color: #fff;
}
.service.style2 .btn-set {
    float: right;
}

/*service_section*/

.service_section {
    position: relative;
    padding: 95px 0 0px;
    background: #F6F6F8;
}
.service_section .section-title.style2.left {
    margin-bottom: 42px;
}
.service-box.style3 {
    position: relative;
    text-align: center;
    background-color: #fff;
    padding: 0 30px 25px;
    transition: .5s;
    box-shadow: 0px 8px 20px 0px rgba(34, 36, 41, 0.05);
    margin-bottom: 20px;
    z-index: 2;
}
.service-box.style3.two {
    position: relative;
    top: -30px;
}
.service-box.style3 .icon {
    margin-bottom: 35px;
}
.service-box.style3 .icon i {
	display: inline-block;
    color: var(--main-color);
    font-size: 46px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #f6f6f8;
    text-align: center;
    transition: .5s;
}
.service-box.style3:hover .icon i {
    color: #fff;
    background-color: var(--main-color);
}
.service-box.style3 .title h4 {
    position: relative;
    margin-bottom: 37px;
}
.service-box.style3 .title h4::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 65px;
    background-color: #f6f6f8;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -18px;
}
.service-box.style3 .description p {
    margin-bottom: 12px;
}

.service_section .single_service {
    display: inline-block;
    position: absolute;
    bottom: 20%;
    background: #fff;
    padding: 45px 0px 45px 49px;
    width: 30%;
    right: 16%;
}

.service_section .service_content {
    display: inline-block;
    padding-left: 37px;
    border-left: 10px solid#F6F6F8;
}
.service_section .content {
    display: inline-block;
    overflow: hidden;
}
.service_section .single_service .icon {
    float: left;
    align-items: center;
}
.service_section .single_service .title {
    display: inline-block;
    padding-right: 22px;
    font-size: 20px;
}
.service_section .single_service .content .title {
    color: #696969;
    font-size: 16px;
    display: inline-block;
    margin: 0 0 4px;
}
.service_section .single_service .icon i {
    display: inline-block;
    color: #FF7426;
    font-size: 43px;
    margin-right: 19px;
}
.service_section .single_service .content .number {
    color: #FF7426;
    font-size: 20px;
}

/* service shape*/

.service_section .shape {
    display: inline-block;
    position: absolute;
    top: -127px;
    right: 0;
}

/*service page*/

.service.style2.service_page {
    padding: 100px 0 82px;
}
.service.style2.service_page .service-box.style2 {
    margin-bottom: 25px;
}
.service.style2.service_page .section-title .title {
    margin-bottom: 21px;
}

/*
===================
 Flip Box
===================
*/

.flip-section{
	padding: 100px 0 80px;
}
.flip-box.style1 {
	background-color: transparent;
	height: 350px;
	perspective: 1000px;
}
.flip-box.style1 .flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.flip-box.style1:hover .flip-box-inner {
	transform: rotateY(180deg);
}
.flip-box.style1 .flip-box-front,
.flip-box.style1 .flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.flip-box.style1 .flip-box-front {
	background: url(../images/flip1-front.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	color: black;
	display: flex;
	align-items: end;
	justify-content: center;
	padding: 35px;
}
.flip-box.style1 .flip-box-front.one {
	background: url(../images/flip2-front.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.flip-box.style1 .flip-box-front.two {
	background: url(../images/flip3-front.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.flip-box.style1 .flip-box-front .title{
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 0;
}
.flip-box.style1 .flip-box-back {
	background: url(../images/flip1-back.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	color: white;
	transform: rotateY(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 35px;
}
.flip-box.style1 .flip-box-back .title{
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.flip-box.style1 .flip-box-back .description{
	margin-bottom: 28px;
}
.flip-box.style1 .flip-box-back .back-btn{
	display: inline-block;
	color: var(--main-color);
	font-weight: 600;
}
/*breand*/
.brand_section {
    padding: 94px 0 94px;
    margin-top: -100px;
    background: #fff;
    position: relative;
    z-index: 1;
}
.brand{
	padding: 97px 0 99px;
	border-top: 1px solid#0000000D;
}
.brand .single_brand img {
    width: auto;
    object-fit: cover;
    filter: grayscale(100%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.brand .single_brand:hover img {
    filter: grayscale(0);
}


/*why choose section*/
.choose-section {
    position: relative;
    z-index: 2;
    padding: 20px 0 20px;
    background: url(../images/choose-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.choose-section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 84.7%;
    background: #fff;
    z-index: -1;
}
.choose-section .section-title.left {
    padding-top: 37px;
}
.choose-section .choose-box {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid#DEE1DF;
    padding-bottom: 15px;
    transition: .5s;
    margin-top: 47px;
}
.choose-section .choose-box:last-child {
    border: none;
    margin-top: 35px;
    margin-bottom: 0;
}
.choose-section .choose-box .icon {
	display: inline-block;
	margin-right: 21px;
}
.choose-section .choose-box .icon i {
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 52px;
    background: var(--primary-color);
    text-align: center;
    transition: .5s;
    border-radius: 100%;
    color: #fff;
    font-size: 20px;
}
.choose-section .choose-content {
    overflow: hidden;
}
.choose-section .choose-box .choose-content .description {
    line-height: 27px;
    width: 75%;
}
.choose-section .choose-box .choose-content .title {
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 11px;
}
.choose-section .choose-box:hover .icon i{
	background: var(--secondary-color);
}
/*choose right side*/
.choose-section .choose-thumb {
    text-align: right;
    position: relative;
    z-index: 1;
}
.choose-section .choose-shape {
    position: absolute;
    top: 64px;
    left: 42px;
    z-index: -1;
}
/*sectoin*/
.section {
    position: relative;
    z-index: 2;
    padding: 70px 0 59px;
    background: url(../images/section.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.section .section-title .title {
    color: #fff;
}
.section p.description {
    color: #fff;
}
.section .btn-set {
    text-align: right;
}
.section .btn-set a {
    background: #fff;
    color: var(--title-color);
}
.section .btn-set a:hover{
	color: #fff;
	background: var(--secondary-color);
}


/*================
 Portfolio Tab
==================*/

.portfolio-section.style1 {
    padding: 95px 0 83px;
    background: #F6F5FA;
}
.portfolio-section.style1 .section-title{
	margin-bottom: 47px;
}
.portfolio-tab.style1{
	position: relative;
}
.portfolio-tab.style1 .portfolio-menu {
	position: absolute;
	right: 0;
	top: -80px;
}
.portfolio-tab.style1 .portfolio-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.portfolio-tab.style1 .portfolio-menu ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    margin-right: 34px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: inline-block;
}
.portfolio-tab.style1 .portfolio-menu ul li:last-child {
    margin-right: 15px;
}
.portfolio-tab.style1 .portfolio-menu ul li.active {
	color: var(--main-color);
}
.portfolio-tab.style1 .portfolio-menu ul li:hover {
    color: var(--main-color);
}

.portfolio-tab.style1 .portfolio-item .item {
	width: 33.3%;
	display: inline-block;
	margin-bottom: 20px;
	padding: 0 10px;
}
.portfolio-tab.style1 .portfolio-item .item .thumb {
	position: relative;
	height: 380px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.portfolio-tab.style1 .portfolio-item .item .thumb::before{
    content: '';
    position: absolute;
    background-color: rgba(34, 36, 41, 0.75);
    width: 100%;
    height: 100%;
    bottom: -100%;
    clip-path: polygon(0 180px, 0% 100%, 100% 100%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style1 .portfolio-item .item:hover .thumb:hover::before {
    bottom:0px;
}
.portfolio-tab.style1 .portfolio-item .item:hover .thumb::before{
	opacity: 1;
}
.portfolio-tab.style1 .portfolio-item .item .content{
	position: absolute;
    left: 40px;
    bottom: -100%;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style1 .portfolio-item .item:hover .content{
	bottom:16px;
}
.portfolio-tab.style1 .portfolio-item .item .content .title {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}
.portfolio-tab.style1 .portfolio-item .item .content .title a{
    color: #fff;
}
.portfolio-tab.style1 .portfolio-item .item .content .category {
    display: inline-block;
    color: var(--main-color);
}

/* Style Two */

.portfolio-section.style2 {
    padding: 95px 0 83px;
}
.portfolio-section.style2 .section-title{
	margin-bottom: 33px;
}
.portfolio-tab.style2 .portfolio-menu ul {
	margin: 0 0 45px;
	padding: 0;
	list-style: none;
	text-align: center;
}
.portfolio-tab.style2 .portfolio-menu ul li {
	position: relative;
    display: inline-block;
	font-size: 16px;
	font-weight: 500;
	margin-right: 16px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio-tab.style2 .portfolio-menu ul li::before {
	content: '/';
	margin-right: 16px;
}
.portfolio-tab.style2 .portfolio-menu ul li:first-child::before {
	display: none;
}
.portfolio-tab.style2 .portfolio-menu ul li.active {
	color: var(--main-color);
}
.portfolio-tab.style2 .portfolio-menu ul li:hover {
    color: var(--main-color);
}

.portfolio-tab.style2 .portfolio-item .item {
	width: 33.3%;
	display: inline-block;
	margin-bottom: 20px;
	padding: 0 10px;
}
.portfolio-tab.style2 .portfolio-item .item .thumb {
	position: relative;
	height: 380px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.portfolio-tab.style2 .portfolio-item .item .thumb::before{
    content: '';
    position: absolute;
    background-color: rgba(34, 36, 41, 0.75);
    width: 100%;
    height: 100%;
    bottom: -100%;
    clip-path: polygon(0 180px, 0% 100%, 100% 100%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style2 .portfolio-item .item:hover .thumb:hover::before {
    bottom:0px;
}
.portfolio-tab.style2 .portfolio-item .item:hover .thumb::before{
	opacity: 1;
}
.portfolio-tab.style2 .portfolio-item .item .content{
	position: absolute;
    left: 40px;
    bottom: -100%;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style2 .portfolio-item .item:hover .content{
	bottom:16px;
}
.portfolio-tab.style2 .portfolio-item .item .content .title {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}
.portfolio-tab.style2 .portfolio-item .item .content .title a{
    color: #fff;
}
.portfolio-tab.style2 .portfolio-item .item .content .category {
    display: inline-block;
    color: var(--main-color);
}

/* Style Three */

.portfolio-section.style3 {
    padding: 95px 0 83px;
    background: transparent;
}
.portfolio-section.style3 .section-title{
	margin-bottom: 46px;
}
.portfolio-section.style3 .section-title .title {
    margin-bottom: 0;
}
.portfolio-section.style3 .portfolio-tab{
	position: relative;
}
.portfolio-section.style3 .portfolio-menu {
	text-align: center;
	position: absolute;
	right: 0;
	top: -140px;
}
.portfolio-section.style3 .portfolio-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.portfolio-section.style3 .portfolio-menu ul li {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
    cursor: pointer;
    border: 1px solid var(--main-color);
    padding: 4px 20px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.portfolio-section.style3 .portfolio-menu ul li:hover, 
.portfolio-section.style3 .portfolio-menu ul li.active{
    color: #fff;
    background-color: var(--main-color);
}

.portfolio-section.style3 .portfolio-item .item {
	width: 33.3%;
	display: inline-block;
	margin-bottom: 20px;
	padding: 0 10px;
}
.portfolio-section.style3 .thumb {
    display: block;
    height: 500px;
    width: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.portfolio-section.style3 .thumb img {
	display: block;
	height: 500px;
	width: 100%;
	object-fit: cover;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.portfolio-section.style3 .portfolio-item .item .content {
    position: absolute;
    left: 10px;
    bottom: 40px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-section.style3 .portfolio-item .item .content .category {
    display: inline-block;
    color: var(--main-color);
    color: #fff;
    font-weight: 600;
    padding: 5px 30px;
    background-color: var(--main-color);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    margin: 0;
}
.portfolio-section.style3 .portfolio-item .item .content .title {
    font-weight: bold;
    text-transform: capitalize;
    text-transform: capitalize;
    background-color: #fff;
    padding: 9px 30px;
}
.portfolio-section.style3 .portfolio-item .item .content .title a {
    color: var(--title-color);
    font-size: 24px;
}

/*portfolio page*/

.portfolio {
    padding: 100px 0 55px;
}
.portfolio .item {
    margin-bottom: 30px;
}
.portfolio .item .thumb img {
    height: 425px;
    object-fit: cover;
}
.portfolio .item .thumb img {
    width: 100%;
}
.portfolio .item .content {
    padding: 20px 30px 20px 56px;
}
.portfolio .item .content .category {
    position: relative;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
}
.portfolio .item .content .category::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -56px;
}
.portfolio .item .content .category li {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.portfolio .item .content .title a {
    color: var(--title-color);
}

@media screen and (max-width: 1024px) {
	.portfolio-item .item {
		width: 50%;
		padding:0 15px;
	}
}

@media screen and (max-width: 640px) {
	.portfolio-item .item {
		width: 100%;
	}
}

/*================
 Testimonial
==================*/

.testimonial.style1 {
	padding: 95px 0 100px;
}
.testimonial.style1 .single-box {
	background-color: #fff;
	padding: 40px 40px 36px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.testimonial.style1 .single-box:hover{
	border-color: var(--main-color);
}
.testimonial.style1 .author {
    display: flex;
    align-items: center;
}
.testimonial.style1 .author .name {
    font-size: 20px;
    margin-bottom: 4px;
}
.testimonial.style1 .author-image {
    margin-right: 30px;
}
.testimonial.style1 .testi-content {
    overflow: hidden;
}
.testimonial.style1 .category {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.testimonial.style1 p.description {
    margin: 30px 0 0;
}
.testimonial.style1 .icons {
    margin-bottom: 0;
}
.testimonial.style1 .icons ul {
    padding: 0;
    margin: 0;
}
.testimonial.style1 .icons ul li {
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
}
.testimonial.style1 .testi-author .title {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
}
.testimonial.style1 .testi-author span {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
}
/*nav*/
.testimonial.style1 .owl-carousel .owl-nav .owl-prev, 
.testimonial.style1 .owl-carousel .owl-nav .owl-next {
    position: absolute;
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.testimonial.style1 .owl-carousel .owl-nav .owl-prev{
	left: -20px;
}
.testimonial.style1 .owl-carousel .owl-nav .owl-next{
	right: -20px;
}
.testimonial.style1 .owl-carousel .owl-nav .owl-prev:hover, 
.testimonial.style1 .owl-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background-color: var(--main-color);
}

/* Style Two */

.testimonial.style2{
	padding: 85px 0 80px;
	background: #F6F5FA;
}
.testimonial.style2 .single-testimonial {
    position: relative;
    background-color: #fff;
    padding: 30px 40px 40px;
    border-left: 10px solid var(--main-color);
}
.testimonial.style2 .single-testimonial::before {
    content: '';
    position: absolute;
    height: 45px;
    width: 35px;
    background: url(../images/quote-icon.png);
    background-repeat: no-repeat;
    right: 40px;
    bottom: 40px;
}
.testimonial.style2 .single-testimonial .rating-stars ul {
    padding: 0;
}
.testimonial.style2 .single-testimonial .rating-stars ul li {
    color: var(--main-color);
    display: inline-block;
    font-size: 14px;
}
.testimonial.style2 .single-testimonial .quote-text {
    margin-bottom: 29px;
    margin-top: 22px;
}
.testimonial.style2 .single-testimonial .client-profile {
    display: flex;
    align-items: center;
}
.testimonial.style2 .single-testimonial .client-profile .image {
    margin-right: 20px;
}
.testimonial.style2 .single-testimonial .client-profile .image img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}
.testimonial.style2 .single-testimonial .client-profile .client-bio h5 {
    font-size: 20px;
    margin: 0 0 5px;
}
.testimonial.style2 .single-testimonial .designation {
    color: var(--main-color);
    margin: 0;
}

/* Style Three */

.testimonial.style3 {
    background: #222429;
    padding: 100px 0 100px;
}
.testimonial.style3 .section-title .title {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fff;
}
.testimonial.style3 .text_content .description {
    color: #FFFFFFCC;
    width: 70%;
    margin: 20px 0 38px;
}
.testimonial.style3 .testi-thumb{
	margin-right: 20px;
}
.testimonial.style3 .testi-thumb img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial.style3 .testi-inner .title {
    font-size: 24px;
    color: #fff;
}
.testimonial.style3 .testi-inner span {
    color: var(--main-color);
    font-size: 16px;
    transition: .5s;
    font-weight: 600;
}
/*dots*/
.testimonial.style3 .owl-dots {
    text-align: center;
    position: relative;
    right: 0;
    left: 0;
    cursor: pointer;
    margin: auto;
    top: 56px;
    display: inline-block;
}
.testimonial.style3 .owl-dot {
    background: transparent;
    display: inline-block;
    margin: 0 3px;
    border-radius: 100%;
    position: relative;
    height: 20px;
    width: 20px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.testimonial.style3 .owl-dots .owl-dot.active{
    background-color: var(--main-color);
}

/*================
 Brand
==================*/

.brand-aection.style1{
	background: url(../images/brand-bg.jpg);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 80px 0 80px;
}
.brand-aection.style1 .single-brand img {
    width: auto;
    object-fit: cover;
    filter: grayscale(100%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.brand-aection.style1 .single-brand:hover img {
    filter: grayscale(0);
}

/*================
 counter
==================*/

.counter-section.style1{
    padding: 100px 0 194px;
}
.counter-section.style1 .section-title .title{
	margin-bottom: 0;
}
.counter-section .single-counter {
    padding-left: 0;
    margin-bottom: 30px;
    text-align: left;
}
.counter-section.style1 .single-counter {
	display: flex;
	align-items: center;
}
.counter-section.style1 .single-counter .icon {
	margin-right: 20px;
}
.counter-section.style1 .single-counter .icon i {
	display: inline-block;
	color: #696969;
	font-size: 50px;
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	background: #f6f6f8;
}
.counter-section h4.counter {
    font-size: 50px;
    margin: 0;
    font-weight: 700;
    display: inline-block;
    color: var(--title-color);
    line-height: 50px;
}
.counter-section.style1 .counter-section p.description {
    position: relative;
    color: var(--main-color);
    font-size: 18px;
    margin: 4px 0 0;
    font-weight: 500;
}
.counter-section .counter-title span {
    display: inline-block;
    color: var(--title-color);
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
}

/* Counter style2 */

.counter-section.style2 {
    padding: 72px 0 64px;
}
.counter-section.style2 .single-counter {
	display: flex;
	align-items: center;
}
.counter-section.style2 .icon {
	margin-right: 20px;
}
.counter-section.style2 .icon i {
	color: var(--main-color);
	font-size: 50px;
}
.counter-section.style2 h4.counter {
    font-size: 36px;
    margin: 0;
    color: #fff;
    line-height: 35px;
}
.counter-section.style2 .counter-title span {
    color: #fff;
    font-size: 36px;
    line-height: 35px;
}
.counter-section.style2 .description {
	position: relative;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	margin: 0;
	font-weight: normal;
}

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

.our-team.style1 {
    padding: 95px 0 72px;
}
.our-team.style1 .team-member.style1 {
    transition: .5s;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}
.team-member.style1 .image {
    position: relative;
    z-index: 1;
    transition: .5s;
    overflow: hidden;
}
.team-member.style1 .image img {
    width: 100%;
}
.team-member.style1 .image::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(22, 28, 45, 0.4);
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.team-member.style1:hover .image::before{
	opacity: 1;
	 visibility: visible;
}
.team-member.style1 .icons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    transition: 0.5s;
}
.team-member.style1:hover .icons {
    bottom: 20px;
}
.team-member.style1 .icons ul li {
    display: inline-block;
    margin-right: 5px;
}
.team-member.style1 .icons ul li a{
	color:#fff;
	display: inline-block;
	height: 45px;
    width: 45px;
    line-height: 45px;
    background: var(--main-color);
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.team-member.style1 .icons ul li a:hover {
    color: var(--main-color);
    background-color: #fff;
}
.team-member.style1 .content {
    padding: 35px 10px 20px 10px;
    box-shadow: 0px 10px 60px 0px rgba(22, 28, 45, 0.06);
    background: #fff;
}
.team-member.style1 .content .name {
    font-size: 20px;
    margin: 0;
}
.team-member.style1 .content .designation {
    color: var(--main-color);
}
/*team page*/
.our-team.style1.team_page {
    padding: 101px 0 72px;
}


/*subscribe section*/
.subscribe {
    padding: 54px 0 60px;
    background: url(../images/subscribe.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.subscribe h2.title {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}
.subscribe .subscribe-box {
    display: flex;
    align-items: center;
    float: right;
}
.subscribe .subscribe-box .number {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.subscribe .subscribe-image {
    margin-right: 21px;
}

/*================
 Blog Posts
==================*/

.blog-posts {
    padding: 95px 0 100px;
}
.blog-posts .single-post.style1 {
    position: relative;
    transition: .5s;
    background: #fff;
    border-radius: 0 0 5px 5px;
}
.blog-posts .single-post.style1 .thumb img {
    width: 100%;
}
.blog-posts .single-post.style1 .content {
    padding: 37px 40px 35px;
    box-shadow: 0px 5px 30px 0px rgba(34, 36, 41, 0.05);
    transition: 0.5s;
}
.blog-posts .single-post.style1 .content span.category {
    display: inline-block;
    font-size: 15px;
    color: var(--primary-color);
}
.blog-posts .single-post.style1 .content .title {
    font-size: 20px;
    margin: 1px 0 23px;
}
.blog-posts .single-post.style1 .post-catagory {
    display: inline-block;
}
.blog-posts .single-post.style1 .post-catagory ul{
	padding: 0;
}
.blog-posts .single-post.style1 .post-catagory ul li {
    display: inline-block;
}
.blog-posts .single-post.style1 .post-catagory ul li a {
    display: inline-block;
    color: var(--main-color);
    font-size: 12px;
    text-transform: uppercase;
}
.blog-posts .single-post.style1 .bar {
    height: 2px;
    width: 5px;
    background: var(--main-color);
    margin-right: 6px;
    display: inline-block;
    margin-left: 3px;
}
.blog-posts .single-post.style1 .content .title a{
	color: var(--title-color);
	font-weight: 600;
	transition: .5s;
}
.blog-posts .single-post.style1 .content .title a:hover{
	color: var(--main-color);
}
.blog-posts .single-post.style1 .blog-meta {
    border-top: 1px solid#E7E8E7;
    padding: 20px 31px 22px;
}
.blog-posts .single-post.style1 .author {
    font-size: 12px;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
}
.blog-posts .single-post.style1 .blog-btn a {
    color: var(--main-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
}

/*contact us*/

.contact-us.one {
    padding: 95px 0 75px;
}
.contact-us.one .form-area {
    background: #FFFFFF1A;
    padding: 32px 40px 40px;
    position: relative;
    margin-right: 99px;
}
.contact-us.one .form-area:before {
    position: absolute;
    content: "";
    top: 0;
    height: 4px;
    width: 241px;
    background: var(--main-color);
    left: 0;
}
.contact-us.one .contact-title .title {
    color: #fff;
    font-size: 30px;
    margin: 0 0 25px;
}
.contact-us.one .section-title .title {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fff;
}
.contact-us.one .form-area input.form-control {
    color: #fff;
    border: 1px solid rgba(255, 116, 38, 0.25);
    outline: 0;
    width: 100%;
    padding: 12px 20px;
    border-radius: 0;
    background-color: rgba(0,0,0,0.15);
    margin-bottom: 20px;
}
.contact-us.one .form-area textarea.form-control {
    color: #fff;
    border: 1px solid rgba(255, 116, 38, 0.25);
    outline: 0;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
    background-color: rgba(0,0,0,0.15);
    height: 136px;
}
.contact-us.one .form-area button.btn {
    display: block;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    height: 50px;
    width: 100%;
    border: 0;
    outline: 0;
    background-color: var(--main-color);
    margin-top: 28px;
}
.contact-us.one .form-area .form-control:focus {
    border-color: var(--main-color);
    outline: 0;
    box-shadow: none;
}

/*================
 Pricing
==================*/

.pricing {
    padding: 100px 0 94px;
}
.single_pricing.style1 {
    background: #ffffff;
    border: 1px solid #ededed;
    -webkit-box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    margin-bottom: 25px;
}
.single_pricing.style1 .table-head {
    text-align: center;
    border-bottom: 1px solid #ededed;
    padding: 36px 30px 25px;
}
.single_pricing.style1 .pricing-title {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 9px;
}
.single_pricing.style1 .price {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
}
.single_pricing.style1 .price .net-price {
    font-size: 24px;
}
.single_pricing.style1 .table-body {
    padding: 33px 30px 32px;
}

.single_pricing.style1 .pricing-feature ul{
	padding: 0;
}
.single_pricing.style1 .pricing-feature ul li {
    margin-bottom: 14px;
    display: block;
}
.single_pricing.style1 .pricing-feature ul li i {
    color: var(--main-color);
    margin-right: 10px;
}
.single_pricing.style1 .pricing-btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 32px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
    color: #616161;
    transition: .5s;
    margin-top: 22px;
}
.single_pricing.style1 .pricing-btn::before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single_pricing.style1 .pricing-btn::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single_pricing.style1 .pricing-btn:hover::before{
	left: 0;
}
.single_pricing.style1 .pricing-btn:hover::after{
	right: 0;
}
.single_pricing.style1 .pricing-btn:hover{
	color: #fff;
}
/*price heading*/
.price-heading {
    display: block;
    text-align: center;
    margin-top: 19px;
}
.price-heading .title {
    font-size: 24px;
    margin: 0 0 10px;
}
.price-heading span a {
    color: var(--main-color);
    text-decoration: underline;
}

/*================
 FAQ
==================*/

.faq .section-title {
    margin-bottom: 71px;
}
.faq {
    margin-top: 42px;
}
.faq .accordion a .number {
    display: inline-block;
    color: #fff;
    font-size: 25px;
    background-color: var(--main-color);
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    margin-right: 15px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    flex-shrink: 0;
}
.faq .accordion .faq-item .description {
    display: none;
    margin: 0;
    padding: 0 0 0 94px;
    color: #FFFFFFB3;
}
.faq .accordion {
	margin: 0;
	padding: 0;
	list-style: none;
}
.faq .accordion .faq-item {
    display: block;
    position: relative;
    padding-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 19px;
}
.faq .accordion .faq-item::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: rgba(255,255,255,0.1);
    left: 94px;
    right: 0;
    bottom: -1px;
}
.faq .accordion .faq-item:last-child:after{
	display: none;
}
.faq .accordion .title {
    display: block;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0px 8px;
    background-color: transparent;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}
.faq .accordion .title.active {
    color: #fff;
    background-color: transparent;
}
.faq .accordion .title i{
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--primary-color);
}
.faq .accordion .title i.fa-minus{
	display: none;
}
.faq .accordion .title.active i.fa-plus{
	display: none;
}
.faq .accordion .title.active i.fa-minus{
	display: block;
}

.faq .image .faq-thumb{
	padding: 0 40px 40px 0;
	border-radius: 5px;
}
.faq .image .text-box{
	position: absolute;
	display: flex;
	align-items: center;
	padding: 28px 55px;
	border-radius: 5px;
	background-color: var(--primary-color);
	right: 0;
	bottom: 0;
}
.faq .image .text-box .icon{
	margin-right: 20px;
}
.faq .image .text-box .title{
	color: #fff;
	margin-bottom: 5px;
}
.faq .image .text-box .description{
	color: #fff;
	margin-bottom: 0;
}

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

.site-footer {
    padding: 93px 0 16px;
    background: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.site-footer .resent-post {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.site-footer .resent-post:last-child {
    margin-bottom: 0px;
}

.site-footer .footer-widget.info {
    padding-right: 0;
}
.site-footer .footer-widget {
    margin-top: 9px;
}
.site-footer .footer-widget .footer-logo{
	margin-bottom: 22px;
}
.site-footer .footer-widget .footer-logo img{
	width: auto;
}
.site-footer .footer-widget.info .description {
    color: #FFFFFF99;
    margin: 35px 0 34px;
    width: 89%;
}
.site-footer .footer-widget .description {
    color: #fff;
    margin-bottom: 18px;
    font-weight: 400;
    opacity: 0.8;
}
.site-footer .footer-widget .social-icon {
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.site-footer .footer-widget .social-icon li {
    margin-right: 5px;
}
.site-footer .footer-widget ul.social-icon li a {
	display: inline-block;
    background: #69696926;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 100%;
    line-height: 40px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.site-footer .footer-widget ul.social-icon li a:hover{
	background: var(--main-color);
	color: #fff;
}
.site-footer .footer-widget .social-icon li a i {
    color: #fff;
    font-size: 15px;
    display: inline-block;
    background: #69696926;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 100%;
    line-height: 40px;
}
.footer-widget.middle {
    margin-right: 11px;
}
.site-footer .footer-widget .footer-icon-box {
    display: flex;
}
.site-footer .footer-widget .icon {
    display: inline-block;
    margin-right: 14px;
}

/*subscribe*/
.site-footer .subscribe_form {
    position: relative;
    margin: 20px 0 19px;
}
.site-footer .subscribe_form input {
    height: 50px;
    background: transparent;
    border: 1px solid#272D29;
    position: relative;
    padding: 0 22px;
}
.site-footer button.btn {
    background: var(--primary-color);
    height: 50px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    position: absolute;
    right: 0;
    bottom: -66px;
}
.site-footer input::placeholder {
    color: #fff!important;
    font-size: 15px;
}
.site-footer .subscribe-content p {
    font-size: 14px;
    margin: 0;
}
.site-footer .image img {
    border-radius: 5px;
    margin-right: 17px;
}
.site-footer .footer-widget .title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 42px;
    font-weight: 700;
    text-transform: capitalize;
}
.site-footer .footer-widget .resent-post .title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 25px;
}
.site-footer .footer-widget .resent-post .title a {
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 25px;
    text-transform: capitalize;
}
.site-footer span.date {
    color: var(--primary-color);
    font-size: 14px;
}
.site-footer .footer-widget .list{
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-footer .footer-widget .list li {
    color: #fff;
    margin-bottom: 16px;
    font-size: 11px;
}
.site-footer .footer-widget .list li:last-child{
	margin-bottom: 0;
}
.site-footer .footer-widget .list li a {
    color: #FFFFFF99;
    font-size: 16px;
}
.site-footer .footer-widget .list li a:hover{
	color: #fff;
}
.site-footer .footer-menu ul li i {
    color: var(--main-color);
    font-size: 10px;
    margin-right: 0;
}
.contact-info ul {
    padding: 0;
}
.contact-info ul li {
    display: block;
    margin-bottom: 16px;
    color: #FFFFFF99;
}
.contact-info ul li i {
    color: var(--main-color);
    font-size: 16px;
    margin-right: 6px;
}



.site-footer .copyright {
    margin-top: 57px;
    padding: 46px 0 14px;
}
.site-footer .copyright .copyright-text {
    color: #fff;
    margin: 0;
    text-align: center;
}
.site-footer .row.copyright {
    padding: 39px 0 20px;
    border-top: 1px solid#FFFFFF0D;
    margin-top: 64px;
}
.site-footer .copyright-list {
    float: right;
}
.site-footer .copyright-list ul {
    padding: 0;
}
.site-footer .copyright-list ul li {
    display: inline-block;
    margin-right: 21px;
    color: #fff;
}
.site-footer .copyright-list ul li:last-child{
	margin: 0;
}
.site-footer .copyright-list ul li a {
    color: #fff;
}
.site-footer p.copyright-text {
    color: #fff;
}
.site-footer span.solar {
    color: var(--primary-color);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}


/*focus*/
.site-footer .form-control:focus {
    color: #fff!important;
    background-color: transparent;
    border-color: #fff!important;
    outline: 0;
    box-shadow: none;
}

/*================
 Breadcrumb
==================*/

.breadcrumb-area {
    padding: 133px 0 0;
}
.breadcrumb-area .breadcrumb-inner {
    padding-bottom: 136px;
}
.breadcrumb-area .breadcrumb-items {
    border-top: 1px solid #dde6ee;
    padding: 25px 0 27px;
}
.breadcrumb-area .breadcrumb-inner .page-title {
    font-size: 65px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.breadcrumb-area .breadcrumb-items ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.breadcrumb-area .breadcrumb-items ul li {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    margin: 0 3px;
    text-transform: uppercase;
}
.breadcrumb-area .breadcrumb-items ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
}
.breadcrumb-area .breadcrumb-items ul li:last-child {
    color: var(--main-color);
}

/*subscribe*/

.subscribe .row.subscribe {
    padding: 76px 46px 57px 62px;
    background-image: url(../image/subs.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
.subscribe h2.title-two {
    letter-spacing: -0.005em;
    opacity: 0.4;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #E3E3E3;
}
.subscribe .subscribe-box .subscribe_form {
    position: relative;
}
.subscribe .subscribe-box .subscribe_form .form-control {
    display: block;
    width: 95%;
    padding: 0 29px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 80px;
    float: right;
}
.subscribe .subscribe-box button.btn {
    display: inline-block;
    background: var(--secondary-color);
    padding: 17px 26px;
    font-size: 16px;
    border-radius: 5px;
    position: absolute;
    right: 10px;
    top: 9px;
    color: #fff;
}

/*================
 Sidebar
==================*/

.sidebar{
	margin-left: 30px;
}
.sidebar .widget{
	margin-bottom: 60px;
}
.sidebar .title {
    font-size: 20px;
    color: var(--title-color);
    margin: 0 0 9px;
}
.sidebar .widget:last-child{
	margin-bottom: 0;
}
.sidebar .widget .title{
	font-weight: bold;
	margin-bottom: 21px;
}
.sidebar .widget .content .input-wrapper{
	position: relative;
}
.sidebar .widget .content .input-wrapper input {
    padding: 20px 36px 20px 30px;
    border-radius: 5px;
    border: none;
    background: #F8F8F8;
    margin: 30px 0 0;
}
.sidebar .widget .content .input-wrapper button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: 0;
    outline: 0;
    width: 57px;
    background: transparent;
    color: var(--primary-color);
}
.sidebar .widget .content .input-wrapper button::before{
	content: '';
	position: absolute;
	left: 0;
	height: 20px;
	width: 1px;
	background-color: #e3e3e3;
}

.sidebar .widget .content .categories {
    margin: 29px 0 0;
    padding: 0;
    list-style: none;
}
.sidebar .widget .content .categories li {
    padding: 14px 16px;
    justify-content: space-between;
    background: #EFF7F8;
    border-left: 3px solid #008BF9;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    transition: .5s;
}
.sidebar .widget .content .categories li:hover{
	background: var(--primary-color);
	border-color: var(--title-color);
}
.sidebar .widget .content .categories li a{
	color: var(--title-color);
	transition: .5s;
}
.sidebar .widget .content .categories li:hover a{
	color:#fff;
}
.sidebar .widget .content .categories li a i{
	color: #fff;
	height: 15px;
	width: 15px;
	line-height: 15px;
	text-align: center;
	border-radius: 50%;
	margin-right: 12px;
	background-color: var(--primary-color);
}
.sidebar .widget .content .categories li span{
	display: inline-block;
	color: #fff;
	font-size: 12px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--primary-color);
}
.sidebar .widget .content .post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.sidebar .widget .content .post .thumb{
	margin-right: 18px;
}
.sidebar .widget .content .post .thumb img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 5px;
}
.sidebar .widget .post-content {
    padding: 0 31px 0 0;
}
.sidebar .widget .content .post .post-content .post-title {
    display: inline-block;
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
    margin-top: 2px;
}
.sidebar .widget .content .post .post-content .meta span {
    position: relative;
    font-size: 15px;
    margin-right: 10px;
    padding-right: 10px;
    color: #757575;
}
.sidebar .widget .content .post .post-content .meta span::after{
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	background-color: #dfdfdf;
	right: 0;
}
.sidebar .widget .content .post .post-content .meta span:last-child::after{
	display: none;
}
.sidebar .widget .content .post .post-content .meta span i{
	margin-right: 5px;
}
.sidebar .widget .office-address .title {
    font-weight: bold;
    margin-bottom: 29px;
}
.sidebar .widget .office-address h3.title {
    font-size: 18px;
    margin-bottom: 23px;
}
.sidebar .widget .office-address .description {
    color: #757575;
    margin-bottom: 10px;
}
.sidebar .sidebar-box {
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 5px;
    padding: 40px 32px 40px;
}
.sidebar .sidebar-box:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: url(../image/add.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 5px;
}
.sidebar .image {
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: #fff;
    border-radius: 5px;
}
.sidebar .image img{
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
}
.sidebar .sidebar-box .description {
    color: #fff;
    margin: 21px 0 29px;
}
.sidebar .sidebar-box a {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 36px;
    transition: .5s;
    border-radius: 10px;
}

/*================
 Search Popup
==================*/

.search-popup{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0,0,0,0.90);
	-webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.search-active .search-popup{
	transform: translateY(0%);
	margin-top: 0;
}
.search-active .search-popup .close-search {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}
.search-popup .close-search {
	position: absolute;
	right: 40px;
	top: 40px;
	margin: 0;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	border: 0;
	padding: 0;
	border-radius: 5px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-popup .close-search i {
	display: inline-block;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	background-color: var(--main-color);
}
.search-popup form{
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin:-35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.search-active .search-popup form{
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}
.search-popup .form-group{
	position:relative;
	margin:0px; 
	overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	height: 70px;
	width: 100%;
	padding: 10px 170px 10px 30px;
	background-color: #ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 0;
	outline: 0;
	border-radius: 0;
}
.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
	position: absolute;
	right: 0;
	top: 0px;
	height: 70px;
	width: 140px;
	line-height: 70px;
	background: var(--main-color);
	text-align: center;
	font-size: 24px;
	color: #fff;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	border-radius: 0;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
	color: #000000;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder{
	color: #000000;
}

/*================
 Scroll to Top
==================*/

.prgoress_scrollup {
    position: fixed;
    right: 55px;
    bottom: 80px;
    height: 48px;
    width: 48px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 119, 249, 0.2);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}
.prgoress_scrollup.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) !important;
}
.prgoress_scrollup::after {
    position: absolute;
    content: "\F286";
    font-family: bootstrap-icons;
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}
.prgoress_scrollup:hover::after {
	color: var(--main-color);
}
.prgoress_scrollup svg path {
	fill: none;
}
.prgoress_scrollup svg.progress-circle path {
    stroke: var(--main-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

/*================
 About Page
==================*/

.page .about.style2{
	padding: 100px 0 100px;
}

/*================
 Blog Grid
==================*/

.blog-grid {
    padding: 95px 0 100px;
}
.blog-grid .single-post{
	border: 1px solid #e6e6e6;
	margin-bottom: 30px;
	background-color: #fff;
	transition: all 0.3s ease-in-out 0s;
}
.blog-grid .single-post:hover{
	border-color: transparent;
	box-shadow: 6px 5px 30px rgb(0 0 0 / 12%);
}
.blog-grid .single-post .thumb img {
    width: 100%;
}
.blog-grid .single-post .content {
    padding: 30px 40px 35px;
    box-shadow: 0px 5px 30px 0px rgba(34, 36, 41, 0.05);
    transition: 0.5s;
}
.blog-grid .single-post .content .post-meta{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.blog-grid .single-post .category {
    display: inline-block;
    color: var(--main-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.blog-grid .single-post .bar {
    height: 2px;
    width: 5px;
    background: var(--main-color);
    margin: 0 10px;
}
.blog-grid .single-post .date {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
.blog-grid .single-post .content .title {
    font-size: 20px;
    margin: 1px 0 23px;
}
.blog-grid .single-post .content .title a{
	color: var(--title-color);
	font-weight: 600;
	transition: .5s;
}
.blog-grid .single-post .content .title a:hover{
	color: var(--main-color);
}
.blog-grid .single-post .blog-btn a {
    color: var(--main-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
}
.blog-grid .single-post .blog-btn a i{
	font-size: 20px;
	margin: 4px 0 0 2px;
}

/*================
 Blog Details
==================*/

.blog_details {
    padding: 120px 0 120px;
}
.blog_details .content {
    padding: 36px 0 0;
}
.blog_details .content .title {
    font-size: 36px;
    margin: 0 0 23px;
}
.blog_details .details_thumb img {
    width: 100%;
}
.blog_details .thumb img {
    width: 100%;
}
.blog_details .details_thumb {
    margin-bottom: 15px;
}
.blog_details blockquote {
    color: #0d1e35;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    background-image: url(../images/quote-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 40px 0 45px;
    padding: 53px 105px 50px;
}
.blog_details blockquote cite {
    color: var(--main-color);
    font-size: 16px;
}
.blog_details h3.title {
    font-size: 24px;
    margin: 7px 0 14px;
}
.blog_details .blog_details_inf {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    margin: 40px 0 0;
    padding: 17px 0 11px;
}
.blog_details .blog_details_inf .post_tage .title {
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
}
.blog_details .blog_details_inf .post_tage {
    display: flex;
}
.blog_details .blog_details_inf .post_tage ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.blog_details .blog_details_inf .social_share {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.blog_details .blog_details_inf .post_tage ul li{
	display: inline-block;
}
.blog_details .blog_details_inf .post_tage ul li a {
    display: inline-block;
    color: #818790;
    font-size: 14px;
    padding: 7px 15px;
    text-align: center;
    margin-right: 10px;
    background-color: #eef1f4;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.blog_details .blog_details_inf .post_tage ul li a:hover {
    color: #fff;
    background-color: var(--main-color);
}
.blog_details .blog_details_inf .social_share {
    float: right;
    text-align: right;
    display: inline-block;
    padding-left: 60px;
}
.blog_details .blog_details_inf .social_share .title {
    font-size: 18px;
    display: inline-block;
    margin-right: 12px;
}
.blog_details .blog_details_inf .social_share ul li a {
    display: inline-block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #eef1f4;
    padding: 0;
    background: #4267B2;
    color: #fff;
}
.blog_details .blog_details_inf .social_share ul li:nth-child(2) a{
	background:#1DA1F2;
}
.blog_details .blog_details_inf .social_share ul li:nth-child(3) a{
	background: #e60023;
}
.blog_details .blog_details_inf .social_share ul li:nth-child(4) a{
	background: #0077b5;
}
.blog_details .form-area.style3 {
    background-color: #eef1f4;
    padding: 72px 80px 80px;
    margin-top: 60px;
}
.blog_details .form-area.style3 .contact-title .description {
    margin: 0 0 40px;
}
.blog_details .form-area.style3 h3.title {
    font-size: 36px;
    margin: 0px 0 14px;
}
.blog_details .form-area.style3 input.form-control {
    height: 54px;
    background-color: #fff;
    padding: 6px 20px;
    border: 0;
    border-radius: 0;
    margin-bottom: 20px;
}
.blog_details .form-area.style3 textarea.form-control {
    height: auto;
    background-color: #fff;
    padding: 6px 20px;
    border: 0;
    border-radius: 0;
}
.blog_details .form-area.style3 button.btn {
    color: #fff;
    background-color: var(--main-color);
    border: 0;
    outline: 0;
    padding: 13px 35px;
    border-radius: 0;
    height: inherit;
    margin-top: 30px;
}
/*sidebar*/
.blog_details .sidebar-area .search-form form {
    position: relative;
    margin-bottom: 30px;
}
.blog_details .sidebar-area .search-form form input {
    height: 50px;
    width: 100%;
    border: 1px solid #eee;
    padding: 10px;
    font-size: 15px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.blog_details .sidebar-area .search-form form button {
    position: absolute;
    right: 5px;
    top: 0;
    height: 100%;
    border: none;
    background: transparent;
    color: #6d6d6d;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.blog_details .sidebar-area .recent-post {
    margin-bottom: 40px;
    padding: 35px 30px 35px;
    background-color: #eef1f4;
}
.blog_details .sidebar-area .recent-post ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog_details .sidebar-area .recent-post ul li {
    position: relative;
    padding-left: 100px;
    margin-bottom: 15px;
}
.blog_details .sidebar-area .recent-post ul li a {
    display: block;
    color: var(--title-color);
    transition: .4s;
}
.blog_details .sidebar-area .recent-post ul li a:hover{
	color: var(--main-color);
}

.blog_details .sidebar-area .recent-post ul li a img {
    position: absolute;
    left: 0;
    top: 3px;
    width: 85px;
    height: 65px;
}
.blog_details .sidebar-area .recent-post ul li h5 {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 2px;
}
.blog_details .sidebar-area .recent-post ul li p {
    margin: 0;
    font-size: 14px;
}
.blog_details .sidebar-area .recent-post ul li {
    position: relative;
    padding-left: 100px;
    margin-bottom: 15px;
}
.blog_details .sidebar-area .widget-title h3 {
    font-size: 24px;
    margin: 0 0 25px;
}
/*category*/
.blog_details .sidebar-area .categories {
    margin-bottom: 40px;
    padding: 35px 30px 35px;
    background-color: #eef1f4;
}
.blog_details .sidebar-area .categories ul {
    padding: 0;
    margin: 0;
}
.blog_details .sidebar-area .categories ul li a {
    font-size: 15px;
    padding: 0;
    margin-top: 6px;
    color: #6d6d6d;
    display: inline-block;
    margin-right: 5px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.blog_details .sidebar-area .categories ul li a:hover{
	color: var(--main-color);
}
.blog_details .sidebar-area .categories ul li{
	display: block;
	margin-bottom: 5px;
}
.blog_details .sidebar-area .categories ul li:last-child{
	margin: 0;
}
/*tag*/
.blog_details .sidebar-area .tags {
    margin-bottom: 40px;
    padding: 35px 30px 35px;
    background-color: #eef1f4;
}
.blog_details .sidebar-area .tag-list a {
    display: block;
    margin-bottom: 12px;
    color: var(--title-color);
    transition: .4s;
}
.blog_details .sidebar-area .tag-list a:hover{
	color: var(--main-color);
}
.blog_details .sidebar-area .tag-list a:last-child{
	margin: 0;
	padding: 0;
}
/*archive*/
.blog_details .sidebar-area .archives{
	margin-bottom: 40px;
    padding: 35px 30px 35px;
    background-color: #eef1f4;
}
.blog_details .sidebar-area .archives ul {
    padding: 0;
    margin: 0;
}
.blog_details .sidebar-area .archives ul li {
    display: block;
    margin: 0 0 12px;
    color: var(--title-color);
}
.blog_details .sidebar-area .archives ul li a{
    display: block;;
    color: var(--title-color);
    transition: .4s;
}
.blog_details .sidebar-area .archives ul li a:hover{
	color: var(--main-color);
}
.blog_details .sidebar-area .archives ul li:last-child{
	margin: 0;
}

/*=================
 Portfolio Details
===================*/

#portfolio-details{
	padding: 100px 0;
}
#portfolio-details .portfolio-header{
	position: relative;
	background-image: url('../images/case06.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 2;
}
#portfolio-details .portfolio-header::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
#portfolio-details .portfolio-header .details-box {
    background-color: #fff;
    margin: 30px;
    border-top: 4px solid var(--main-color);
    padding: 54px 40px 50px 40px;
}
#portfolio-details .portfolio-header .details-box ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
#portfolio-details .portfolio-header .details-box ul li{
	font-size: 16px;
	color: #6d6d6d;
}
#portfolio-details .portfolio-header .details-box ul li:not(:last-child){
	border-bottom: 1px solid #E7E7E7;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
#portfolio-details .portfolio-header .details-box ul li span{
	color: #222;
	font-weight: bold;
}
#portfolio-details .portfolio-content{
	margin-top: 30px;
}
#portfolio-details .portfolio-content h3{
	font-weight: bold;
	margin: 20px 0;
}

/*================
 Contact page
==================*/

.contact_page{
	padding: 100px 0 80px;
}
.contact_page .contact_location {
    border: 1px solid#0000001A;
    padding: 60px;
    margin-bottom: 26px;
}
.contact_page .contact_location .title {
    font-size: 20px;
    margin-bottom: 24px;
}
.contact_page .contact_location .contact_box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid#0000001A;
    padding-bottom: 29px;
    margin: 0 0 24px;
}
.contact_page .contact_location .contact_box.two{
	margin: 0;
	border: none;
	padding: 0;
}
.contact_page .contact_location .icon {
    margin-right: 16px;
}
.contact_page .contact_location .contact_box .icon i {
    display: inline-block;
    color: var(--main-color);
    font-size: 24px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(255, 116, 38, 0.1);
}
.contact_page .contact_location .content .description {
    margin: 0;
}
.contact_page .contact-title .title {
    font-size: 24px;
    margin: 0 0 6px;
}
.contact_page .contact-title .description {
    margin: 0 0 40px;
}
/*contact form*/
.contact_page .form-area.style2 {
    padding: 0 0 0 40px;
}
.contact_page .form-area input.form-control {
    height: 55px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    margin-bottom: 20px;
    padding: 10px 25px;
}
.contact_page .form-area textarea.form-control {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    margin-bottom: 30px;
    padding: 20px 25px;
    height: 156px;
}
.contact_page .form-area button.btn {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    background-color: var(--main-color);
    padding: 14px 30px;
    border-radius: 0;
}
.contact_page .form-area button.btn:hover {
    background-color: #0d1e35;
}
.contact_page .form-area.style2 .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color:var(--main-color);
    outline: 0;
    box-shadow: none;
}

/*================
 404 page
==================*/

.four-zero-four {
    background-color: #F6F6F6;
    padding: 0 0 100px;
}
.four-zero-four .breadcrumb-inner {
    padding-bottom: 0;
    text-align: center;
}
.four-zero-four .info-text {
    padding-top: 58px;
}
.four-zero-four .info-text .page-title {
    color: var(--title-color);
    font-size: 48px;
    margin: 0 0 8px;
}
.four-zero-four .btn-set {
    display: inline-block;
    margin-top: 23px;
}