/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root{
	--orange: #ed7409;
	--btnHover: #d46808;
	--darkOrange: #bc5c07;
	--dark: #000;
	--light: #EAEAEA;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--orange);
	color: #fff;
}
::selection{
	background-color: var(--orange);
	color: #fff;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
body {
	line-height: 1.42;
	font-family: "Open Sans", sans-serif;
	background-color: #fff;
	color: var(--dark);
	font-weight: 400;
	font-size: 1.4rem;
}
ul,
ol{
	padding-left: 2.2rem;
}
ul li::marker,
ol li::marker{
	color: var(--orange);
}
a{
	color: inherit;
	text-decoration: underline;
}
a:hover {
	color: var(--orange);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 4.6rem;
	font-weight: 300;
	line-height: 1.1;
}
h2{
	font-size: 4.6rem;
	font-weight: 300;
	line-height: 1.1;
}
h3, .h3{
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}
h4, .h4{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}
h5, .h5{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}
h6, .h6{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}
strong{
    font-weight: 700;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span{
	color: var(--orange);
}
p, ul, ol{
	margin-top: 1rem;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--orange);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	font-size: 3rem;
	color: #000;
}

.container{
	padding-left: 2rem;
	padding-right: 2rem;
}
header{
	z-index: 1024;
}
.header_top{
	padding: 2rem 0;
}
.logo{
	width: 23rem;
}
.right_menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.social_icons{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.social_icons a {
    text-decoration: none !important;
    background: #f5f5f5;
    width: 4rem;
    height: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #494b53;
    font-size: 2.4rem;
}
.social_icons a[href*=facebook]:hover{
    background: #3B5998;
    color: #fff;
}
.social_icons a[href*=instagram]:hover {
    background: -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
 	color: #fff;
}
.social_icons a[href*=pinterest]:hover {
    background: #c8232c;
    color: #fff;
}
.button.store_btn {
	padding: 1rem 1rem 1rem 4.5rem;
}
.button.store_btn::after{
	content: '\f3c5';
	font-weight: 300;
	right: auto;
	left: 0;
	font-size: 1.8rem;
}


.menu_wrapper{
	background-color: #f5f5f5;
	position: relative;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 3.2rem;
	   -moz-column-gap: 3.2rem;
	        column-gap: 3.2rem;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	padding-left: 0;
	margin: 0 -1.5rem;
}
.menu>ul>li>a {
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	color: #494b53;
	line-height: 1;
	padding: 1.55rem 1.5rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover,
.menu>ul>li:hover>a {
	color: var(--orange) !important;
}
.menu>ul>li.dropdown_wrap>a::after {
	content: '\f078';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	margin-left: 0.8rem;
	position: relative;
	top: 0.1rem;
}
.menu>ul>li.dropdown_wrap .mega_menu {
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	padding: 2rem 0 3rem;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}
.menu>ul>li.dropdown_wrap:hover .mega_menu{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap .mega_menu .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-column-gap: 8rem;
	   -moz-column-gap: 8rem;
	        column-gap: 8rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.menu_item a{
	text-decoration: none;
}
.menu_item a:hover,
.menu_item a.active{
	color: var(--orange);
}
.menu_item p a{
	font-weight: 700;
	text-transform: uppercase;
	color: #333;
}
.menu_item ul{
	list-style: none;
	margin-top: 0;
	padding-left: 0;
	color: #494b53;
}
.menu_item ul li{
	margin-top: 1rem;
}
.menu_item ul li a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	white-space: nowrap;
}
.menu_item ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
}
.search_toggle{
	border: none;
	border-radius: 0;
	background-color: transparent;
	color: #494b53;
	padding: 0;
	font-size: 2rem;
}
.search_toggle:hover{
	color: var(--orange);
}

.search_wrap{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.search_wrap.open{
	pointer-events: all;
	opacity: 1;
}
.search_box{
	display: inline-block;
	padding: 1rem;
	-webkit-box-shadow: 0 0 2.5rem rgba(0,0,0,0.05);
	        box-shadow: 0 0 2.5rem rgba(0,0,0,0.05);
	background-color: #b5b5b5;
	position: relative;
	width: 54%;
	margin-right: -3rem;
	margin-top: 1.5rem;
}
.search_box::before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-left: 1.0rem solid transparent;
	border-right: 1.0rem solid transparent;
	border-bottom: 1.0rem solid #b5b5b5;
	right: 3rem;
	top: -0.9rem;
}
.search_box input{
	width: 100%;
	height: 4rem;
	padding: 0 1rem;
	background-color: #fff;
	color: var(--dark);
	font-size: 1.4rem;
	border: none;
}
.search_box button{
	position: absolute;
	background-color: transparent;
	border: none;
	padding: 0;
	border-radius: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 2rem;
	font-size: 2rem;
	color: #b5b5b5;
}





/*button*/
.button {
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.143;
    position: relative;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: .7rem 4.5rem .7rem 1.0rem;
    overflow: hidden;
    border: none !important;
}
.button::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    right: 0;
    padding: 0 1.13rem;
    height: 100%;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.2rem;
    background-color: var(--darkOrange);
}
.button:hover{
	text-decoration: none;
	background-color: var(--btnHover);
	color: #fff;
}
.black_btn{
	background-color: var(--dark);
	color: #fff;
}
.black_btn:hover{
	background: var(--orange);
	color: #fff;
}
.white_btn{
	background-color: #fff;
	color: var(--orange);
}
.white_btn:hover{
	background: var(--dark);
	color: #fff;
}
.outline{
	background: transparent;
	color: var(--orange);
	border: 0.2rem solid var(--orange);
	text-shadow: none;
	padding: 1rem 1.8rem;
}
.outline:hover{
	background: var(--dark);
	color: #fff;
	border-color: var(--dark);
}
.black_btn.outline{
	border-color: var(--dark);
	color: var(--dark);
}
.black_btn.outline:hover{
	color: #fff;
}
.outline_white{
	border: 0.2rem solid #fff;
	color: #fff;
	background-color: transparent;
	padding: 1rem 1.8rem;
}
.outline_white:hover{
	background-color: var(--orange);
	color: #fff;
	border-color: var(--orange);
}
.button_wrapper{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	        row-gap: 2rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 1.8rem;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 2.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--orange);
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}
/*Home area*/
.home_slider .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.slider_item{
	position: relative;
	height: 100%;
}
.slider_item img{
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.slider_inner{
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	padding: 4rem 0;
}
.slider_content{
    background: rgba(255,255,255,0.95);
    padding: 2.5rem 3.0rem;
    max-width: 37rem;
    margin-left: auto;
    text-align: center;
}
.home_slider .owl-dots{
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	padding: 1.3rem;
}

.row:not(.no-gutters){
	margin-left: -1.25rem;
	margin-right: -1.25rem;
}
.row:not(.no-gutters)>div{
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.lg_gutters:not(.no-gutters){
	margin-left: -4.5rem;
	margin-right: -4.5rem;
}
.lg_gutters:not(.no-gutters)>div{
	padding-left: 4.5rem;
	padding-right: 4.5rem;
}
.md_gutters:not(.no-gutters){
	margin-left: -3rem;
	margin-right: -3rem;
}
.md_gutters:not(.no-gutters)>div{
	padding-left: 3rem;
	padding-right: 3rem;
}
.owl-dots{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 0.6rem;
	   -moz-column-gap: 0.6rem;
	        column-gap: 0.6rem;
    background: rgba(255,255,255,0.5);
    border-radius: 5rem;
    -webkit-box-shadow: 0 0 22.5rem rgba(0,0,0,0.05);
            box-shadow: 0 0 22.5rem rgba(0,0,0,0.05);
}
.owl-dots button{
	height: 1.3rem;
	width: 1.3rem;
	border-radius: 50%;
	background-color: #dcdcdc;
	padding: 0.1rem;
	border: none;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.owl-dots button:hover {
    background-color: #a9a9a9;
}
.owl-dots button.active{
	background-color: var(--orange);
}
.owl-nav button {
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	font-size: 2.5rem;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.owl-nav button:hover{
	color: var(--orange);
}
.owl-nav button.owl-prev{
	left: 0;
}
.owl-nav button.owl-next{
	right: 0;
}
.controls_inner{
	display: inline-block;
	position: relative;
	padding: 0 5.5rem;
}

/*blog area*/
.blog_area{
	padding: 1.5rem 0 4rem;
}
.blog_card{
	position: relative;
	height: 100%;
	border-bottom: 0.1rem solid #eceded;
	padding-bottom: 1.5rem;
}
.blog_card .blog_img{
	overflow: hidden;
	width: 100%;
}
.blog_card .blog_img img{
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 397/223;
}
.blog_card .blog_content{
	padding-top: 2rem;
}
.blog_row>div:nth-child(even) .blog_img{
	height: 100%;
}
.blog_row>div:nth-child(even) .blog_content{
	position: absolute;
	bottom: 3.1rem;
	right: 1.5rem;
	left: 1.5rem;
	padding: 1.5rem;
	background-color: #fff;
}

/*about area*/
.about_area{
	background-color: #f0f0f0;
	padding: 0.5rem 0 4.5rem;
}
.about_content{
	max-width: 74rem;
}
.about_content h2{
	margin: 1rem 0;
}
.about_card{
	background-color: #fff;
}
.about_card .about_img{
	position: relative;
	overflow: hidden;
}
.about_card:hover .about_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.circle {
    position: absolute;
    left: 30%;
    bottom: 2.5rem;
    height: 12rem;
    width: 12rem;
    border: .3rem solid #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 1.5rem rgba(0,0,0,0.25);
            box-shadow: 0 0 1.5rem rgba(0,0,0,0.25);
    background-color: var(--orange);
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-shadow: .2rem .2rem .3rem rgba(0,0,0,0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
            transform: rotate(-20deg);
    padding-bottom: 1rem;
}
.about_body{
	padding: 2rem;
	text-align: center;
}
.about_body p{
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.6rem;
}
/*cta area*/
.cta_area{
	padding: 5rem 0;
	background-color: var(--dark);
	background-size: cover;
	background-position: center center;
	min-height: 60vh;
}
.cta_card{
	text-align: center;
	max-width: 31rem;
}
.cta_card h2{
	margin-top: 1rem;
}
.cta_top{
	background-color: rgba(255,255,255,0.95);
	padding: 2rem 2rem 3rem;
}
.cta_bottom{
	background-color: #494b53;
	padding: 2rem;
	color: #fff;
}
.cta_bottom p{
	margin-top: 0;
}
/*footer*/
footer{
	padding: 1.5rem 0 1rem;
	background-color: #494b53;
	color: #fff;
	line-height: 1.57;
}
footer a{
	color: #fff;
	display: inline-block;
	text-decoration: none;
}
footer a:hover{
	color: #fff;
	text-decoration: underline;
}
footer ul{
	list-style: none;
	padding-left: 0;
	margin-top: 0;
}
footer .h6{
	text-transform: uppercase;
}
.footer_bottom{
	font-size: 1.3rem;
	padding-top: 3rem;
	text-align: center;
}
.subscribe_form {
    max-width: 48.5rem;
}
.join_input{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.join_input input{
	font-size: 1.4rem;
	padding: 0 1.5rem;
	border: none;
	background-color: #fff;
	border-radius: 0;
	width: 100%;
	color: var(--dark);
	height: 3.8rem;
}
.join_input button{
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.check_box input{
	display: none;
}
.check_box label{
	cursor: pointer;
	position: relative;
	padding-left: 2.4rem;
	font-size: 1.2rem;
}
.check_box label::before {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.35;
}
.check_box input:checked + label::before{
	content: '\f14a';
}
footer .social_icons a:not(:hover){
	background: #868995;
}

/*inner pages*/
.breadcrumb{
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 0;
	margin-top: 2rem;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: #a3a3a3;
}
.breadcrumb li,
.breadcrumb li.active,
.breadcrumb li a{
	font-size: 1.2rem;
	color: #333;
	text-decoration: none;
}
.breadcrumb li.active{
	color: #a3a3a3;
}
.breadcrumb li a:hover{
	color: var(--orange);
}

/*binnen area*/
.binnen_area{
	/*padding-bottom: 8rem;*/
}
.binnen_area h2,
.binnen_area h1{
	font-size: 3.6rem;
	font-weight: 700;
	margin-top: 1.5rem;
}
.binnen_area h4,
.binnen_area .h4{
	margin-top: 3rem;
}
.binnen_area p{
	margin-top: 2rem;
}
.binnen_area p>strong{
	display: block;
	margin-bottom: 0.8rem;
}
.binner_box{
	display: block;
	position: relative;
	border: 0.2rem solid transparent;
	text-decoration: none !important;
	color: #fff !important;
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
}
.binner_box:hover{
	border-color: var(--orange);
	-webkit-filter: grayscale(0);
	        filter: grayscale(0);
}
.binner_box img{
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 396/248;
}
.binnen_content{
	background-color: rgba(0,0,0,0.4);
	padding: 1rem 2rem;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}
.binnen_content p{
	margin: 0;
	font-size: 1.8rem;
	font-weight: 600;
}
.bottom_caption{
	top: auto;
	bottom: 5rem;
	color: #fff;
}
.bottom_caption h1{
	max-width: 34rem;
}


.blog_wrapper h1{
	font-size: 3rem;
	font-weight: 700;
	margin-top: 3rem;
}
.date{
	color: #666;
	margin-top: 1rem;
}
.pagination_wrap{
	padding-top: 4rem;
}
.pagination_wrap ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 1.8rem;
	   -moz-column-gap: 1.8rem;
	        column-gap: 1.8rem;
	color: #494b53;
	list-style: none;
}
.pagination_wrap ul li a{
	text-decoration: none;
}
.pagination_wrap ul li a:hover{
	text-decoration: underline;
}
.pagination_wrap ul li a.active{
	color: var(--orange);
	font-weight: 700;
}
.blog_wrapper .blog_row>div:nth-child(even) .blog_img{
	height: auto;
}
.blog_wrapper .blog_row>div:nth-child(4n + 2) .blog_img,
.blog_wrapper .blog_row>div:nth-child(4n + 3) .blog_img{
	height: 100%;
}
.blog_wrapper .blog_row>div:nth-child(even) .blog_content{
	position: relative;
	left: auto;
	bottom: auto;
	right: auto;
	padding: 0;
	padding-top: 2rem;
}
.blog_wrapper .blog_row>div:nth-child(4n + 2) .blog_content,
.blog_wrapper .blog_row>div:nth-child(4n + 3) .blog_content{
	position: absolute;
	bottom: 3.1rem;
	right: 1.5rem;
	left: 1.5rem;
	padding: 1.5rem;
	background-color: #fff;
}
.side_bar{
	position: relative;
	z-index: 1;
	padding-left: 2.5rem;
	height: 100%;
	color: #494b53;
	padding-bottom: 3rem;
	padding-top: 14rem;
}
.side_bar::before{
	content: '';
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	position: absolute;
	z-index: -1;
	background-color: #f5f5f5;
}
.sidebar_item:not(:last-child){
	padding-bottom: 2.5rem;
	margin-bottom: 2.5rem;
	border-bottom: 0.1rem solid rgba(73, 75, 83, 0.3);
}
.sidebar_item ul {
	list-style: none;
	padding-left: 0;
}
.sidebar_item ul li{
	padding-top: 1rem;
}
.sidebar_item ul li a{
	text-decoration: none;
}
.sidebar_item.tags ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.sidebar_item.tags a{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 0.5rem;
	   -moz-column-gap: 0.5rem;
	        column-gap: 0.5rem;
	text-transform: uppercase;
	padding: 0.4rem 0.8rem;
	background-color: var(--orange);
	color: #fff;
	font-weight: 400;
}
.sidebar_item.tags a::before{
    content: '\f02b';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: inherit;
    line-height: 1;
}
.sidebar_item.tags a:hover{
	background-color: var(--btnHover);
}
.blog_details>p{
	margin-top: 2rem;
}

/*map area*/
/*map area*/
.map_area{
	background-color: #F2F2F2;
	position: relative;
	z-index: 1;
	padding-bottom: 10rem;
	padding-top: 0.1rem;
}
.map_area .link_wrap{
	width: 100%;
	border-bottom: 0;
}
.location_box {
    background-color: #fff;
    height: 100%;
    border: 0.1rem solid #707070;
    padding: 3rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.location_box p{
	margin-top: 1.6rem;
}
.location_box p a{
	color: inherit;
}
.location_box p:nth-last-child(2){
	margin-bottom: auto;
}
.location_box h4{
	font-family: inherit;
	font-size: 3.4rem;
}
.location_box a.button {
	margin-top: 2rem;
}
.location_wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 10rem;
}
.location_form {
    background-color: var(--orange);
    max-width: 34rem;
    padding: 3rem 3rem 2rem;
    color: #fff;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.location_form h4{
	text-transform: none;
}
.location_form>p{
	margin-top: 2rem;
}
.map_box {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 82rem;
    z-index: 1;
    margin-bottom: 4rem;
}
.map_box img,
.map_box iframe{
	width: 100%;
	height: 100%;
	display: block;
	border: none;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: top center;
	   object-position: top center;
}
.cta_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cta_search input {
    width: 100%;
    border: none;
    background-color: #fff;
    color: var(--dark);
    padding: 0 2rem;
    font-size: 1.5rem;
    height: 4.5rem;
    border-radius: 0;
}
.cta_search button {
    border: none;
    width: 4.5rem;
    background-color: var(--dark);
    color: #fff;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


.specialist_box{
	text-align: center;
	margin-top: 4rem;
	max-width: 30rem;
	margin-left: auto;
	margin-right: auto;
}
.specialist_box img{
	width: 100%;
}
.specialist_box p{
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 1.5rem 0;
}

/*skilled area*/
.skill_area{
	font-size: 1.5rem;
}
.skill_content h2{
	margin-top: 1rem;
}
.opening_box {
    background-color: #f0f0f0;
    padding: 1rem 2rem 2rem 2rem;
}
.opening_box ul{
	list-style: none;
	border-bottom: 0.1rem solid #cfcfcf;
	padding-left: 0;
	padding-bottom: 1rem;
}
.opening_box ul li{
	display: flex;
	align-items: flex-start;
	column-gap: 1rem;
}
.opening_box ul li span{
	width: 12.5rem;
	flex-shrink: 0;
}
.icon-telephone,
.icon-mail{
	display: flex;
	align-items: center;
	text-decoration: none !important;
	margin-top: 1rem;
}
.icon-telephone span,
.icon-mail span{
	text-decoration: underline;
}
.icon-telephone::before,
.icon-mail::before{
	background: var(--orange);
    color: #fff;
    border-radius: 50%;
    width: 4.0rem;
    height: 4.0rem;
    font-size: 1.8rem;
    margin-right: 1.0rem;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.icon-telephone::before{
	content: '\f095';
}
.icon-mail::before{
	content: '\f0e0';
}
.search_item{
    position: relative;
    padding-left: 5.5rem;
    border-bottom: 0.1rem solid #b7afaf;
    margin-top: 3rem;
    padding-bottom: 3rem;
}
.search_item h4{
    margin-top: 0;
}
.search_item p{
    margin-top: 1rem;
}
.item_number {
    height: 4rem;
    width: 4rem;
    background-color: var(--orange);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.pager {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-top: 2rem;
}
.simplesearch-page,
.simplesearch-page a{
    text-decoration: none;
}
.simplesearch-current-page{
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    color: #fff;
}


