/* Css For Evofly */



/*** 

====================================================================
	Reset
====================================================================

 ***/

 :root {
	--theme_color_01: #AB9C81;
	--theme_color_02: #B04247;
	--theme_color_03: #777777;
	--theme_color_04: #1C2833;
	--theme_color_05: #16222F;
	--bg_color_01: #AB9C81;
	--bg_color_02: #B04247;
	--bg_color_03: #777777;
	--bg_color_04: #1C2833;
	--bg_color_05: #16222F;
	--lora: 'Lora', serif;
	--jost: 'Jost', sans-serif;
	--poppins: 'Poppins', sans-serif;
	--opensans: 'Open Sans', sans-serif;
} 

.theme-color-01{
	color: var(--bg_color_01);
}

.theme-color-02{
	color: var(--bg_color_02);
}

.theme-color-03{
	color: var(--bg_color_03);
}

.theme-color-04{
	color: var(--bg_color_04);
}

.theme-color-05{
	color: var(--bg_color_05);
}

.f_lora{
	font-family: var(--lora);	
}

.f_jost{
	font-family: var(--jost);
}

.f_poppins{
	font-family: var(--poppins);
}

.f_opensans{
	font-family: var(--opensans);
}

.fs_24{
	font-size: 24px;
}

.lh_36{
	line-height: 36px;
}

.fs_47{
	font-size: 47px;
}

.fs_72{
	font-size: 72px;
}

.fs_96{
	font-size: 96px;
}

.py_22{
	padding: 22px 0px;
}

.pt_115{
	padding-top: 115px;
}

.py_220{
	padding: 220px 0px;
}

.pt_250{
	padding-top: 250px;
}

.pb_380{
	padding-bottom: 380px;
}

.tt_u{
	text-transform: uppercase;
}

.tt_c{
	text-transform: capitalize;
}

.tt_l{
	text-transform: lowercase;
}

*{
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/


body {
	font-size:14px;
	color:#777777;
	line-height:26px;
	font-weight:400;
	font-family: var(--opensans);
	background:#ffffff;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center top;
	-webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
	.container {
		max-width: 1200px;
		padding: 0px 15px;
	}
}

.large-container{
	max-width: 1550px;
	padding: 0px 15px;
	margin: 0 auto;
}

.container-fluid{
	padding: 0px;
}

.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.small-container{
	max-width:680px;
	margin:0 auto;
}

.boxed_wrapper{
	position: relative;
	margin: 0 auto;
	overflow: hidden !important;
	width: 100%;
	min-width: 300px;
}

a{
	text-decoration:none;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

a:hover{
	text-decoration:none;
	outline:none;
	color: var(--theme_color_02);
}

input,button,select,textarea{
	font-family: var(--opensans);
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	background: transparent;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px; 
}

input{
	transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
	outline: none;
	box-shadow: none;
	transition: all 500ms ease;
}

p{
	position: relative;
	font-family: var(--opensans);
	color: #777777;
	font-weight: 400;
	margin: 0px;
	transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
	position:relative;
	font-family: var(--lora);
	color: #1C2833;
	margin: 0px;
	transition: all 500ms ease;
}

.centred{
	text-align: center;
}

.pull-left{
	float: left;
}

.pull-right{
	float: right;
}

figure{
	margin: 0px;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
}

/** button **/

.theme-btn{
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	font-size: 14px;
	line-height: 30px;
	font-weight: 700;
	font-family: var(--lora);
	text-align: center;
	padding: 13px 20px;
	text-transform: capitalize;
	z-index: 1;
	cursor: pointer;
	transition: all 500ms ease;
}

.theme-btn:before{
	position: absolute;
	content: '';
	width: 0%;
	height: 100%;
	right: 0px;
	top: 0px;
	z-index: -1;
	transition: all 500ms ease;
}

.theme-btn:hover:before{
	width: 100%;
	left: 0px;
}

.theme-btn.btn-one{
	color: #ffffff;
	border: 2px solid rgb(255 255 255 / 10%);
}

.theme-btn.btn-one:before{
	opacity: 0.1;
	background: var(--bg_color_02);	
}

.theme-btn.btn-one:hover{
	border-color: rgb(176 66 71 / 10%);
}

.theme-btn.btn-two{
	color: #fff;
	background: var(--bg_color_01);
	border: 2px solid var(--theme_color_01);
}

.theme-btn.btn-two:before{
	opacity: 0.2;
	background: var(--bg_color_05);
}

.theme-btn.btn-three{
	color: #fff;
	border: 2px solid #ffffff;
}

.theme-btn.btn-three:before{
	opacity: 0.2;
	background: #ffffff;
}

.theme-btn.btn-four{
	color: var(--theme_color_03);
	background-color: #F6F6F6;
}

.theme-btn.btn-four:before{
	opacity: 1;
	background: var(--bg_color_01);
}

.theme-btn.btn-four:hover{
	color: #ffffff;
}

.theme-btn.btn-five{
	color: #fff;
	background: var(--bg_color_05);
	border: 2px solid var(--theme_color_05);
}

.theme-btn.btn-five:before{
	opacity: 0.2;
	background: var(--bg_color_02);
}

.theme-btn.btn-six{
	color: var(--theme_color_03);
	background-color: #f6f6f6;
}

.theme-btn.btn-six:hover{
	color: #ffffff;
	background-color: var(--bg_color_01);
}

.pagination{
	position: relative;
	display: block;
}

.pagination li{
	position: relative;
	display: inline-block;
	margin: 0px 6px;
}

.pagination li a{
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: var(--theme_color_03);
	padding: 10px 15px;
	font-family: var(--lora);
	border: 1px solid #E8E8E8;
	text-align: center;
	display: inline-block;
	background: transparent;
	transition: all 500ms ease;
}

.pagination li .pagination-btn{
	background-color: #E8E8E8;
}

.pagination li a:hover,
.pagination li a.current{
	color: #ffffff;
	background-color: var(--bg_color_01);
	background-color: var(--theme_color_01);
}

.pagination li .pagination-btn:hover{
	color: #ffffff;
	background-color: var(--bg_color_01);
	background-color: var(--theme_color_01);
}

.sec-pad{
	padding: 115px 0px 120px 0px;
}

.sec-subtitle{
	font-size: 14px;
	line-height: 1.6em;
	font-weight: 500;
	letter-spacing: 4.8px;
	color: var(--theme_color_01);
	font-family: var(--lora);
	text-transform: uppercase;
	margin-bottom: 18px;
}

.sec-title{
	font-size: 36px;
	line-height: 48px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--theme_color_04);
	font-family: var(--lora);
	margin-bottom: 10px;
}

.sec-title.color_white{
	color: #ffffff;
}

.sec-text{
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	color: var(--theme_color_03);
	font-family: var(--opensans);
}

.mr-0{
	margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top{
	position: fixed;
	right: 0px;
	bottom: 100px;
	transform: rotate(90deg);
	z-index: 99;
}

.scroll-to-top .visible {
	visibility: visible!important;
	opacity: 1!important;
}

.scroll-to-top .scroll-top-inner {
	opacity: 0;
	visibility: hidden;
}

.scroll-to-top .scroll-top-inner{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
	-o-transition: all cubic-bezier(.4,0,.2,1) .4s;
	transition: all cubic-bezier(.4,0,.2,1) .4s;
}

.scroll-to-top .scroll-bar {
	width: 50px;
	height: 2px;
	margin-right: 10px;
	position: relative;
}

.scroll-to-top .scroll-bar:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #f4244f;
	opacity: .3;
}

.scroll-to-top .scroll-bar .bar-inner {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-color: currentColor;
}

.scroll-to-top .scroll-bar-text{
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover{
	transform: scale(1.1);
}

@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
						box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
						box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}
@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
						box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
						box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}


/** Tab Box **/

.tabs-box .tab{
	position:relative;
	display:none;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
}
  
.tabs-box .tab.active-tab{
	display:block;  
}
  
.tabs-box .tab{
	transform:scale(0.9,0.9) translateY(0px);
}
  
.tabs-box .tab.active-tab{
	transform:scale(1) translateY(0px);
}

/*** 

====================================================================
							Home-Page-One
====================================================================

***/


/** main-header **/
.main-header{
	position:relative;
	left:0px;
	top:0px;
	right: 0px;
	z-index:999;
	width:100%;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sticky-header{
	position:fixed;
	opacity:0;
	visibility:hidden;
	left:0px;
	top:0px;
	width:100%;
	z-index:0;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
	z-index:999;
	opacity:1;
	visibility:visible;
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

/** header-lower **/

.main-header .outer-box{
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.main-header .outer-box .logo-box{
	width: 12%;
	margin-left: -25px;
}

.main-header .outer-box .menu-area{
	width: 45%;
}

.main-header .outer-box .support-box{
	width: 20%;
}

/** main-menu **/

.main-menu .navbar-collapse{
	padding:0px;
	display:block !important;
}

.main-menu .navigation{
	margin:0px;
}

.main-menu .navigation > li{
	position:inherit;
	z-index:2;
	display: inline-block;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navigation > li > a{
	position:relative;
	display: inline-block;
	text-align:center;
	font-size:18px;
	line-height:24px;
	padding: 38px 20px;
	font-weight:500;
	font-family: 'Lora', serif;
	opacity:1;
	color: #ffffff;	
	z-index:1;
	margin-bottom: -1px;
	text-transform: capitalize;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown.current > a,
.main-menu .navigation > li:hover > a{
	background-color: var(--bg_color_02);
}

.main-menu .navigation > li > ul{
	position:
	absolute;
	left: inherit;
	top:100%;
	width:230px;
	margin-top: 15px;
	
	z-index:100;
	display:
	none;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	background-color: #121113;
	transition:
	all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li{
	position: relative;
	width:100%;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.main-menu .navigation > li > ul > li:last-child{
	border-bottom: none;
}

.main-menu .navigation > li > ul > li > a{
	position: relative;
	display: block;
	padding: 10px 20px;
	line-height:24px;
	font-weight:400;
	font-size:16px;
	text-transform:	capitalize;
	font-family: var(--lora);
	color:#c3c4c8;
	text-align: left;
	z-index: 1;
	transition:	all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:before{
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 0px;
	height: 100%;
	content: '';
	opacity: 0;
	z-index: -1;
	background-color: var(--bg_color_02);
	transition:	all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:hover{
	color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover:before{
	width: 100%;
	opacity: 1;
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:0%;
	margin-left: 30px;
	margin-top: 15px;
	width:230px;
	z-index:100;
	padding: 26px 40px 28px 40px;
	display:none;
	border-radius: 0px;
	background-color: #121113;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	margin-top: 1px;
	top: 100%;
}

.main-menu .navigation li.dropdown .dropdown-btn{
	display: none;
}

.menu-area .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	color: #3786ff;
	display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
	position: relative;
	height: 2px;
	width: 30px;
	display: block;
	margin-bottom: 5px;
	background-color: #222;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
	margin-bottom: 0px;
}

.main-header .sticky-header .outer-box{
	background-color: var(--bg_color_05);
}

.main-header .outer-box:before{
	position: absolute;
	content: '';
	background: var(--bg_color_05);
	width: 40%;
	height: 100%;
	top: 0px;
	right: 0px;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 9% 100%, 0% 0%);
}

.main-header .outer-box .support-box h4 a:hover{
	color: var(--bg_color_02);
}

/** banner-section **/

.banner-section{
	position: relative;
}

.banner-section .slide-item{	
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-section .slide-item:before{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(45 55 81 / 60%);
}

.banner-carousel .content-box h2{
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-carousel .content-box p{
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box p{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-carousel .content-box .btn-box{
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
}

.banner-section .shape .shape-1{
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 320px;
	background-repeat: no-repeat;
	background-size: cover;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
	display: none !important;
}

/** Services Section **/

.service-item-01 .inner{
	display: inline-block;
	transition: 500ms;
}

.service-item-01 .inner:hover{
	cursor: pointer;
	background-color: var(--bg_color_01);
}

.service-item-01 .inner .icon{
	display: inline-block;
	margin-bottom: 15px;
}

.service-item-01 .inner .icon-1{
	visibility: visible;
	z-index: 1;
	display: block;
}

.service-item-01 .inner:hover .icon-1{
	visibility: hidden;
	z-index: 0;
	display: none;
	transition: 500ms;
}

.service-item-01 .inner .icon-2{
	visibility: hidden;
	z-index: 0;
	display: none;
	transition: 500ms;
}

.service-item-01 .inner:hover .icon-2{
	visibility: visible;
	z-index: 1;
	display: block;
}

.service-item-01 .inner h5{
	transition: 500ms;
}

.service-item-01 .inner:hover h5{
	color: #ffffff;
}

.service-item-01 .inner .link a{
	color: rgb(28 40 51 / 20%);
}

.service-item-01 .inner:hover .link a{
	color: #ffffff;
}

.service-item-01 .inner .link a:hover{
	color: var(--bg_color_02);
}

.service-section .owl-dots {
	display: block;
	text-align: center;
	margin-top: 50px;
}

.service-section .owl-dots .owl-dot span{
	width: 20px;
	height: 7px;
	border-radius: 10px;;
	background-color: rgb(22 34 47 / 10%);
}

.service-section .owl-dots .owl-dot.active span{
	width: 30px;
	background-color: var(--bg_color_01);
}

/** About Us Section **/

.about-us-image img{
	float: right;
	max-width: none;
}

.about-us-image .ex-years{
	position: absolute;
	left: 100%;
	bottom: 50%;
	transform: rotate(-90deg) translateX(-50%) translateY(50%);
	transform-origin: bottom left;
	width: max-content;
}

.about-us-content .c-phone{
	display: flex;
	vertical-align: middle;
	justify-content: space-between;
	border-top: 1px solid rgb(22 34 47 / 7%);
}

.about-us-content .c-phone .left-text{
	width: 50%;
}

.about-us-content .c-phone .left-text a{
	display: inline-block;
}

.about-us-content .c-phone .left-text a:hover{
	color: #AB9C81;
}

.about-us-content .c-phone .right-btn{
	width: 50%;
	text-align: left;
}

/** Request Quote Section **/

.request-quote{
	z-index: 1;
}

.request-quote .shape-2{
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
}

.request-quote form{
	z-index: 1;
}

.request-quote form .form-group{
	margin-bottom: 10px;
}

.request-quote form .form-group input[type='text'],
.request-quote form .form-group input[type='email'],
.request-quote form .form-group input[type='date'],
.request-quote form .form-group input[type='time'],
.request-quote form .form-group input[type='tel'],
.request-quote form .form-group textarea{
	position: relative;
	display: block;
	width: 100%;
	height: 47px;
	background: rgb(255 255 255 / 10%);
	border: 1px solid var(--theme_color_04);
	font-size: 16px;
	color: rgb(255 255 255 / 60%);
	padding: 10px 20px;
	transition: all 500ms ease;
}

.request-quote form .form-group textarea{
	height: 90px;
	resize: none;
}

.request-quote form .form-group p{
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	margin-left: 20px;
	color: rgb(255 255 255 / 70%);
	display: inline-block;
}

.request-quote form .form-group p span{
	color: var(--theme_color_02);
}

.request-quote .nice-select:after{
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #6e6e6e;
	border-right: 2px solid #6e6e6e;
	right: 20px;
	display: none;
}
  
.request-quote .nice-select{
	position: relative;
	display: block;
	height: 47px;
	line-height: 47px;
	border: 1px solid var(--bg_color_04);
	background: rgb(255 255 255 / 10%);
	padding: 0px 20px;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: rgb(255 255 255 / 60%);
	border-radius: 0px;
}

.request-quote .nice-select .option:hover, 
.request-quote .nice-select .option.focus, 
.request-quote .nice-select .option.selected.focus{
	color: #fff;
	background: #b04247;
}

.request-quote .nice-select.wide .list{
	color: #fff;
	background-color: rgb(171 156 129);
}

.request-quote form .form-group:last-child{
	margin-top: 20px;
}

/** main-footer **/

.case-section .sec-subtitle{
	margin-bottom: 10px;
}

.case-section .sec-title{
	letter-spacing: normal;
}

.case-section .tabs-box{
	border-bottom: 1px solid rgb(22 34 47 / 7%);
}

.case-section .tabs-box .tab-buttons{
	text-align: center;
	border-bottom: 1px solid rgb(22 34 47 / 7%);
}

.case-section .tabs-box .tab-btn{
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	padding: 10px 0px;
	margin: 0px 30px;
	cursor: pointer;
	font-family: var(--lora);
	text-transform: capitalize;
	transition: 500ms all;
}

.case-section .tabs-box .tab-btn.active-btn{
	color: var(--bg_color_01);
}

.case-section .tabs-box .tab-btn:before{
	position: absolute;
	bottom: -1px;
	left: 0px;
	height: 1px;
	content: '';
	width: 0px;
	transition: 500ms;
}

.case-section .tabs-box .tab-btn.active-btn:before{
	background-color: var(--bg_color_01);
	width: 100%;
}

.case-style-001{
	position: relative;
	border: 1px solid rgb(22 34 47 / 7%);
}

.case-style-001 .case-info{
	display: flex;
}

.case-style-001 .info-details{
	border-top: 1px solid rgb(22 34 47 / 7%);
}

.case-style-001 .info-details .theme-btn.btn-four{
	padding: 5px 33px;
}

.case-style-001 .info-details .theme-btn.btn{
	padding: 10px 0px;
	margin-left: 10px;
}

.case-style-001 .info-details .theme-btn.btn:hover{
	color: var(--theme_color_01);
}

.counterup-01{
	border-bottom: 1px solid rgb(22 34 47 / 7%);
}

.counterup-01 .count-outer{
	position: relative;
}

.counterup-01 .count-outer:before{
	position: absolute;
	bottom: -1px;
	left: 0px;
	width: 0px;
	height: 1px;
	content: '';
	transition: 500ms all;
	background: var(--bg_color_02);
}

.counterup-01 .count-outer:hover:before{
	width: 100%;
}

/** main-footer **/

.charter-section{
	position: relative;
	z-index: 1;
}

.charter-section:after{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50%;
	height: 100%;
	content: '';
	z-index: -1;
	background: #F6F6F6;
}

.charter-section:before{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 100%;
	content: '';
	z-index: -1;
	background: #EEEEEE;
}

.charter-section .left-side .text{
	width: 375px;
	text-align: left;
}

.charter-section .right-side .text{
	width: 375px;
	text-align: left;
}

.charter-section .theme-btn.btn-two{
	padding: 10px 33px;
}

.charter-section .theme-btn.btn-five{
	padding: 10px 33px;
}

.charter-section .image-bg {
    margin-left: -10px;
    position: relative;
    margin-top: -32px;
}

/** Testimonials Section **/

.testimonials-section .sec-subtitle{
	margin-bottom: 10px;
}

.testimonials-block-01{
	border: 1px solid rgb(22 34 47 / 7%);
}

.testimonials-block-01 .ratting-star li{
	display: inline-block;
	font-size: 14px;
	line-height: 30px;
	color: #FCC65D;
}

/** FAQ Section **/

.accordion-box .block{
	position: relative;
	display: block;
	transition: all 500ms ease;
}
  
.accordion-box .block .acc-btn{
	position: relative;
	display: block;
	cursor: pointer;
	padding: 10px 30px;
	border: 1px solid #f6f6f6;
	border-bottom: none;
	transition: all 500ms ease;
}

.accordion-box .block:last-child .acc-btn{
	border-bottom: 1px solid #f6f6f6;
}
  
.accordion-box .block .acc-btn .icon-outer{
	position: absolute;
	top: 14px;
	right: 30px;
}
  
.accordion-box .block .acc-btn .icon-outer:before{
	position: absolute;
	font-size: 10px;
	content: "\f101";
	font-family: 'flaticon';
	transition: all 500ms ease;
}
    
.accordion-box .block .acc-btn.active .icon-outer:before{
	color: #121113;
}
      
.accordion-box .block .acc-content{
	position:relative;
	display:none;
	padding: 20px 30px;
	background: #fdfdfd;
	border: 1px solid #f6f6f6;
}
  
.accordion-box .block .acc-content.current{
	display:block;  
	border-bottom: none;
}
  
/** Growth Business Section **/

.growth-business{
	position: relative;
	background-repeat: no-repeat;
	background-position: center right;
}

.growth-content{
	position: relative;
	max-width: 640px;
	background-color: #f6f6f6;
}

.growth-content .info-list li{
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);	
}

.growth-content .info-list li i{
	margin-right: 5px;
	color: var(--bg_color_01);
}

/** News Section **/

.news-block-01 .inner-box .date{
	bottom: -10px;
	transition: all 500ms ease;
}

.news-block-01:hover .inner-box .date{
	background-color: var(--bg_color_01);
}

.news-block-01 .blog-info li{
	width: 45%;
	font-size: 14px;
	font-weight: 400;
	font-family: var(--opensans);
	display: inline-block;
	color: var(--bg_color_03);
	text-transform: capitalize;
}

.news-block-01 .blog-info li i{
	margin-right: 10px;
}

.news-block-01 .lower-content h4 a{
	color: var(--bg_color_04);
	display: inline-block;
	transition: all 500ms ease;
}

.news-block-01 .lower-content h4 a:hover{
	color: var(--bg_color_01);
}

.news-block-01 .lower-content .link-btn a{
	transition: all 500ms ease;
}

.news-block-01 .lower-content .link-btn a:hover{
	color: var(--bg_color_02);
}

/** Client Section **/

.client-section .client-box{
	position: relative;
	border-top: 1px solid rgb(22 34 47 / 7%);
}

/** main-footer **/

.footer-widget.logo-widget .footer-logo{
	margin-left: -20px;
}

.footer-widget .subscribe-form form .form-group{
	position: relative;
	height: 50px;
	background: rgb(255 255 255 / 6%);
}

.footer-widget .subscribe-form form .form-group input {
    padding-left: 30px;
    width: 100%;
    height: 50px;
    color: rgb(255 255 255 / 30%);
}

.footer-widget .subscribe-form form .form-group button{
	position: absolute;
	top: 0px;
	right: 10px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.footer-widget .subscribe-form form .form-group button:focus,
.footer-widget .subscribe-form form .form-group button:hover{
	color: var(--bg_color_02);
}

.footer-widget.logo-widget p {
    color: rgb(255 255 255 / 70%);
}

.footer-widget .links-list li a {
    color: rgb(255 255 255 / 70%);
}

.footer-widget .links-list li a:hover{
	color: var(--theme_color_01);
}

.footer-widget .social-links li a{
	color: rgb(255 255 255 / 30%);
}

.footer-widget .social-links li a:hover{
	color: #ffffff;
}

/** Home Page Two **/

/** Header Top **/

.header-top{
	position: relative;
	background: var(--bg_color_05);
}

.header-top .htop-right{
	display: flex;
	flex-wrap: wrap;

}

.header-top .htop-right .user-login a:hover{
	color: var(--theme_color_02);
}

.header-top .htop-left .text a:hover{
	color: var(--theme_color_01);
}

.header-top .htop-menu li{
	display: inline-block;
	margin: 0px 30px;
}

.header-top .htop-menu li a{
	transition: all 500ms ease;
}

.header-top .htop-menu li a:hover{
	color: var(--bg_color_01);
}

.header-top .user-login i{
	color: var(--theme_color_02);
}

/** Header Lower **/

.main-header.home-two  .outer-box{
	position: relative;
	background: #ffffff;
	box-shadow: 0px 0px 20px 3px #4b4b4b;
}

.main-header.home-two  .outer-box:before{
	background-color: #F6F6F6;
}

.main-header.home-two .sticky-header .outer-box .logo-box{
	margin-left: 15px;
}

.main-header.home-two .main-menu .navigation > li > a{
	color: var(--theme_color_04);
}

.main-header.home-two .main-menu .navigation > li.current > a,
.main-header.home-two .main-menu .navigation > li:hover > a{
	color: #ffffff;
	background-color: var(--bg_color_02);
}

.main-header.home-two .outer-box .support-box .icon{
	color: var(--bg_color_01);
	background-color: #ffffff;
}

.main-header.home-two .outer-box .support-box h4 a{
	color: var(--theme_color_04);
}

.main-header.home-two .outer-box .support-box h4 a:hover{
	color: var(--theme_color_02);
}

/** Banner Style Two **/

.banner-section.home-two .slide-item:before{
	display: none;
}

/** Service Style Two **/

.service-section.style-two .service-item-01 {
	border: 1px solid rgb(22 34 47 / 7%);
}


/** Request Style Two **/

.request-quote.home-two{
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
}

.request-quote.home-two:before{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	z-index: -1;
	background: rgb(22 34 47 / 80%);
}

.request-quote.home-two form .form-group.wd_100_p p{
	display: block;
	text-align: center;
}

.request-quote.home-two .wd_100_p .theme-btn.btn-two {
    width: 100%;
    margin-bottom: 20px;
}

.request-quote.home-two form .form-group input[type='text'], 
.request-quote.home-two form .form-group input[type='email'], 
.request-quote.home-two form .form-group input[type='date'], 
.request-quote.home-two form .form-group input[type='time'], 
.request-quote.home-two form .form-group input[type='tel'], 
.request-quote.home-two form .form-group textarea{
	height: 60px;
	color: rgb(255 255 255 / 80%);
	background-color: rgb(255 255 255 / 15%);
	border-color: rgb(255 255 255 / 15%);
}

.request-quote.home-two form .form-group textarea{
	height: 120px;
	resize: none;
}

.request-quote.home-two .nice-select{
	height: 60px;
	line-height: 60px;
	color: rgb(255 255 255 / 80%);
	background-color: rgb(255 255 255 / 15%);
	border-color: rgb(255 255 255 / 15%);
}

/** Team Style One**/

.team-style-01 .social-links{
	transition: all 500ms ease;
}

.team-style-01:hover .social-links{
	background-color: var(--bg_color_01);
}

.team-style-01 .social-links li{
	display: inline-block;
	margin: 0px 20px;
}

.team-style-01 .social-links li a{
	font-size: 14px;
	line-height: 30px;
	display: inline-block;
	color: var(--theme_color_03);
	transition: all 500ms ease;
}

.team-style-01:hover .social-links li a{
	color: #ffffff;
}

.team-style-01 .social-links li a:hover{
	color: var(--theme_color_02);
}

/** About Page **/

/** page-title **/

.page-title .bg-layer{
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.page-title .bg-layer:before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: linear-gradient(276.83deg, rgba(28, 40, 51, 0.4) 41%, rgba(22, 34, 47, 0.8) 83.19%);
}

.page-title .content-box h1{
	position: relative;
	display: block;
	font-size: 96px;
	line-height: 116px;
	color: #fff;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;
	text-transform: capitalize;
}

.page-title .content-box .bread-crumb{
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	background: var(--bg_color_01);
}

.page-title .content-box .bread-crumb li{
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
	margin: 0px 5px;
	padding-right: 10px;
	color: var(--theme_color_02);
	font-family: var(--lora);
}

.page-title .content-box .bread-crumb li a{
	color: #fff;
	transition: all 500ms ease;
}

.page-title .content-box .bread-crumb li a:hover{
	color: var(--theme_color_02);
}

.page-title .content-box .bread-crumb li:before{
	position: absolute;
	content: ">";
	font-size: 18px;
	top: 0px;
	right: -8px;
	font-weight: 600;
	line-height: 20px;
	color: #ffffff;
}

.page-title .content-box .bread-crumb li:last-child:before{
	display: none;
}

.about-us-section.style-two .about-us-image{
	max-width: 100%;
}

.counter-section .counterup-01{
	border-top: 1px solid #f6f6f6;
}

.border-bottom{
	border-bottom: 1px solid #f6f6f6;
}

/** Booking Form Page **/

.request-quote.booking-form:before{
	display: none;
}

.booking-form .nice-select,
.request-quote.booking-form form .form-group input[type='text'], 
.request-quote.booking-form form .form-group input[type='email'], 
.request-quote.booking-form form .form-group input[type='date'],
.request-quote.booking-form form .form-group input[type='time'],
.request-quote.booking-form form .form-group input[type='tel'], 
.request-quote.booking-form form .form-group textarea{
	width: 100%;
    font-size: 14px;
    height: 50px;
    padding: 0px 15px;
    color: rgb(119 119 119 / 80%);
    border: 1px solid rgb(22 34 47 / 7%);
}

.request-quote.booking-form form .form-group textarea{
	resize: none;
	height: 150px;
	padding-top: 15px;
}

.request-quote.booking-form form .form-group:last-child{
	margin-top: 50px;
}

.request-quote.booking-form form .form-group.wd_100_p p{
	color: var(--theme_color_03);
}

/** Page Title Two **/

.page-title.style-two{
	padding-bottom: 400px;
}

/** Map Section **/

.location-map{
	position: relative;
	margin-top: -280px;
}

/** Location Details **/

.location-info-block li{
	font-size: 18px;
	line-height: 50px;
	font-weight: 400;
	color: var(--theme_color_03);
	font-family: var(--lora);
}

.location-info-block li:first-child{
	line-height: 40px;
}

.location-info-block li address{
	margin-bottom: 0px;
}

.location-info-block li span{
	color: #FF4040;
	display: block;
}

.location-info-block li strong{
	color: var(--theme_color_04);
	font-size: 18px;
	line-height: 40px;
	font-weight: 400;
	font-family: var(--lora);
}

.location-info-block li a{
	color: var(--theme_color_03);
}

.location-info-block li a:hover{
	color: var(--theme_color_02);
}

/** Conatct Page **/

.contact-page{
	background: rgb(246 246 246 / 58%);
}

.contact-page h4.title{
	font-size: 24px;
	line-height: 30px;
	color: var(--theme_color_04);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-page h6.sub-title{
	font-size: 14px;
	line-height: 20px;
	color: var(--theme_color_03);
	font-weight: 400;
	font-family: var(--opensans);
}

.contact-page.request-quote.home-two form .form-group input[type='text'], 
.contact-page.request-quote.home-two form .form-group input[type='email'], 
.contact-page.request-quote.home-two form .form-group input[type='date'], 
.contact-page.request-quote.home-two form .form-group input[type='time'], 
.contact-page.request-quote.home-two form .form-group input[type='tel'], 
.contact-page.request-quote.home-two form .form-group textarea{
	height: 47px;
	line-height: 47px;
}

.contact-page.request-quote.booking-form form .form-group textarea{
	height: 120px;
}

.any-question .inner-box{
	border: 10px solid #ffffff;
}

.any-question .inner-box h6{
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
	color: #B04247;
	padding: 20px 30px;
	font-family: var(--lora);
	background: #ffffff;
	text-align: center;
	margin: 140px 35px;
}

.page-title.style-three{
	padding-bottom: 370px;
}

.service-details .service-image{
	margin-top: -250px;
}

.service-details .title{
	position: relative;
	padding-left: 80px;
}

.service-details .title .icon{
	position: absolute;
	top: 0px;
	left: 0px;
}

.services-details-content .text p{
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 20px;
}

.services-details-content .info-list li{
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);	
}

.services-details-content .info-list li i{
	margin-right: 5px;
	color: var(--bg_color_01);
}

.deals-details .deals-image{
	margin-top: -250px;
}

.deals-details-content .text p{
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 20px;
}

.deals-details-content .info-list li{
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);	
}

.deals-details-content .info-list li i{
	margin-right: 5px;
	color: var(--bg_color_01);
}

.deals-details-content .case-info li{
	display: inline-block;
}

.solving-problem .text p{
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 15px;
}

.solving-problem .text .icon-item{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.solving-problem .text .icon-item h4{
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	padding-left: 30px;	
}

.solving-problem .text .icon-item h4 a{
	color: #222429;
	padding: 10px 0px;
	display: inline-block;	
}

.solving-problem .text .icon-item h4 a:hover{
	color: var(--theme_color_01);
}

.quote-block{
	display: flex;
	flex-wrap: wrap;
	background: #f6f6f6;
}

.quote-block .image{
	width: 15%;
	margin-top: 10px;
}

.quote-block .image-content{
	width: 85%;
}

.quote-block .image-content h6{
	font-size: 16px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--theme_color_04);
}

.quote-block .image-content p{
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--theme_color_03);
}

/* Destinetion Details Page*/

.destination-details .destination-image{
	margin-top: -250px;
}

.destination-details-content .text p{
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 20px;
}

.destination-details-content .info-list li{
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);	
}

.destination-details-content .info-list li i{
	margin-right: 5px;
	color: var(--bg_color_01);
}

.blog-details-one .blog-image{
	margin-top: -250px;
}

.blog-details-one .image-box{
	margin-top: -250px;
}

.blog-details-one .news-block-01 .blog-info li,
.blog-details-two .news-block-01 .blog-info li{
	width: 35%;
}

.blog-details-one .news-block-01 .text{
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	font-family: var(--opensans);
	color: var(--theme_color_03);
}

.blog-details-one .lower-content .info-list li,
.blog-details-two .lower-content .info-list li{
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);	
}

.blog-details-one .lower-content .info-list li i,
.blog-details-two .lower-content .info-list li i{
	margin-right: 5px;
	color: var(--bg_color_01);
}

.post-tags{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.post-tags h6{
	display: block;
	font-size: 14px;
	line-height: 40px;
	font-weight: 700;
	text-transform: capitalize;
}

.post-tags .tags-list li{
	position: relative;
	display: inline-block;
	margin-left: 10px;
}

.post-tags .tags-list li a{
	position: relative;
	display: inline-block;
	font-size: 12px;
	line-height: 30px;
	font-weight: 400;
	padding: 5px 20px;
	font-family: var(--opensans);
	color: var(--theme_color_03);
	background: #f6f6f6;
	text-transform: capitalize;
	border-radius: 5px;
}

.post-tags .tags-list li a:hover{
	color: var(--theme_color_02);
}

/* Comment Area */

.title-box .title{
	font-size: 24px;
	line-height: 30px;
	font-weight: 400;
	padding-bottom: 20px;
	color: var(--theme_color_04);
}

.title-box .sub-title{
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	font-family: var(--opensans);
	color: var(--theme_color_03);
	margin-bottom: 35px;
}

/* News Sidebar */

.blog-sidebar{
	padding: 20px;
	border: 1px solid #e5e5e5;
}  

.blog-sidebar .widget-title{
	position: relative;
	display: block;
	margin-bottom: 22px;
}

.blog-sidebar .widget-title h4{
	display: block;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	color: var(--theme_color_04);
	font-family: var(--lora);
}

.blog-sidebar .search-widget .form-group{
	position: relative;
	margin: 0px;
}

.blog-sidebar .search-widget .form-group input[type='search']{
	position: relative;
	display: block;
	width: 100%;
	height: 50px;	
	padding: 10px 50px 10px 20px;
	font-size: 12px;
	line-height: 30px;
	font-weight: 400;
	color: #C8C8C8;
	font-family: var(--opensans);
	background: #f6f6f6;
	border: 1px solid #f6f6f6;
	transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-inner .form-group input:focus{
	border-color: var(--theme_color_02);
}

.blog-sidebar .search-widget .search-inner .form-group button{
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 12px;
	color: var(--theme_color_01);
	cursor: pointer;
	transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-inner .form-group button:hover{
	color: var(--theme_color_02);
}

.blog-sidebar .category-widget .category-list li{
	position: relative;
	display: block;
	margin-bottom: 20px;
}

.blog-sidebar .category-widget .category-list li:last-child{
	margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a{
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 30px;
	text-transform: capitalize;
	font-weight: 500;
	color: #75767b;
	padding-left: 15px;
}

.blog-sidebar .category-widget .category-list li a:hover{
	color: var(--theme_color_02);
}

.blog-sidebar .category-widget .category-list li a:before{
	position: absolute;
	content: '';
	width: 7px;
	height: 7px;
	top: 12px;
	left: 0px;
	border-radius: 50%;
	background: var(--bg_color_01);
	transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover:before{
	background-color: var(--bg_color_02);
}

.blog-sidebar .post-widget .post{
	position: relative;
	display: block;
	padding-left: 90px;
	min-height: 90px;
}

.blog-sidebar .post-widget .post:last-child{
	margin-bottom: 0px;
}

.blog-sidebar .post-widget .post .post-thumb{
	position: absolute;
	left: 0px;
	top: 5px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50%;
	background: #121113;
	border-radius: 50%;
}

.blog-sidebar .post-widget .post .post-thumb img{
	width: 100%;
	opacity: 0.9;	
	transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img{
	opacity: 0.25;
}

.blog-sidebar .post-widget .post .post-thumb a{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) scale(0,0);
	font-size: 24px;
	z-index: 1;
	color: #ffffff;
}

.blog-sidebar .post-widget .post:hover .post-thumb a{
	transform: translate(-50%,-50%) scale(1,1);
}

.blog-sidebar .post-widget .post h5{
	display: block;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
}

.blog-sidebar .post-widget .post h5 a{
	display: inline-block;
	color: var(--theme_color_04);
}

.blog-sidebar .post-widget .post h5 a:hover{
	color: var(--theme_color_02);
}

.blog-sidebar .post-widget .post .author-info{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.blog-sidebar .post-widget .post .author-info a{
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	color: var(--theme_color_03);
}

.blog-sidebar .post-widget .post .author-info a:hover{
	color: var(--theme_color_02);
}

.blog-sidebar .post-widget .post .author-info .user{
	margin-left: 50px;
}

.blog-sidebar .tags-widget .tags-list{
	margin: 0px -5px;
}

.blog-sidebar .tags-widget .tags-list li{
	position: relative;
	display: inline-block;
	margin: 4px 3px;
}

.blog-sidebar .tags-widget .tags-list li a{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
	color: #75767b;
	background: #f6f6f7;
	padding: 6px 14px;
	font-family: var(--opensans);
}

.blog-sidebar .tags-widget .tags-list li a:hover{
	color: #ffffff;
	background-color: var(--bg_color_01);
}
