/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--orange: #E84E0F;
	--dark: #303B3D;
	--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.5;
	background-color: #fff;
	color: var(--dark);
	font-weight: 400;
	font-size: 2.2rem;
}
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: 7rem;
	font-weight: 800;
	line-height: 1.1;
}
h2{
	font-size: 7rem;
	font-weight: 800;
	line-height: 1.1;
}
h3, .h3{
	font-size: 5rem;
	font-weight: 800;
	line-height: 1.1;
}
h4, .h4{
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
}
h5, .h5{
	font-size: 3rem;
	font-weight: 800;
}
h6, .h6{
	font-size: 2.6rem;
	font-weight: 800;
}
strong{
    font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin-top: 4rem;
}
h1 span,
h2 span,
h3 span,
.h3 span,
h4 span,
h5 span,
h6 span{
	color: var(--orange);
}
p, ul, ol{
	margin-top: 3rem;
}

/* 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;
	z-index: 999;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hamburger-menu span {
	background: var(--dark);
	width: 4.5rem;
	height: .4rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(300%) rotate(135deg);
	-ms-transform: translateY(300%) rotate(135deg);
	transform: translateY(300%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-290%) rotate(-135deg);
	-ms-transform: translateY(-290%) rotate(-135deg);
	transform: translateY(-290%) rotate(-135deg);
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.top_menu{
	padding: 1rem 0;
	background-color: var(--dark);
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.25;
	text-align: center;
	position: relative;
	z-index: 1025;
}
.top_menu .container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 18.8rem;
	   -moz-column-gap: 18.8rem;
	        column-gap: 18.8rem;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.top_menu p,
.top_menu ul{
	margin-top: 0;
}
.top_menu ul {
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 4.9rem;
	   -moz-column-gap: 4.9rem;
	        column-gap: 4.9rem;
}
.top_menu ul li 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: 1.4rem;
	   -moz-column-gap: 1.4rem;
	        column-gap: 1.4rem;
	text-decoration: none;
}
.rating_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1.8rem;
	   -moz-column-gap: 1.8rem;
	        column-gap: 1.8rem;
}
.rating_wrap img{
	height: 1.1rem;
}
header {
	position: sticky;
	top: 4.3rem;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	background-color: #fff;
	padding-top: 2.2rem;
}
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   top: 0;
}
.logo_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
    margin-bottom: -8rem;
    position: relative;
    top: 1rem;
}
.logo{
	width: 16rem;
}
.logo2{
	width: 3rem;
}
.logo img,
.logo2 img{
    height: auto;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-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;
	margin-right: -2.5rem;
}
.menu>ul>li {
    padding: 2rem 2.5rem 3.5rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 1rem 1rem 0 0;
    margin-left: 4.2rem;
}
.menu>ul>li>a {
	font-size: 2rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--dark);
	line-height: 1;
	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 {
	color: var(--orange) !important;
}
.menu>ul>li.dropdown_wrap{
	position: relative;
}
.menu>ul>li.dropdown_wrap:hover{
	background: var(--orange);
}
.menu>ul>li.dropdown_wrap:hover>a{
	color: #fff !important;
}
.menu>ul>li.dropdown_wrap>a::after {
	content: '\f107';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	margin-left: 1rem;
	font-size: 90%;
	position: relative;
	top: 0.1rem;
}
.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--orange);
	padding: 0.8rem 2.5rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	min-width: calc(100% + 2rem);
	overflow: hidden;
	border-radius: 0 0rem 1rem 1rem;
	list-style: none;
	margin: 0;
}
.menu>ul>li.dropdown_wrap:hover>ul{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap>ul>li>a{
	color: #fff;
	white-space: nowrap;
	padding: 0.6rem 0rem;
	display: block;
	font-size: 2rem;
	font-weight: 500;
	text-decoration: none;
}
.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a{
	color: var(--dark);
}
/*button*/
.button {
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.2rem 1.7rem;
	color: #fff;
	border-radius: 1rem;
	font-weight: 800;
	min-width: 15.5rem;
	font-size: 2.2rem;
	line-height: 1.16;
	text-align: left;
	border: none;
	background-color: var(--orange);
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.button::after{
	content: '\f178';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
}
.mail_btn::before{
	content: '\f0e0';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	margin-right: -0.5rem;
}
.button:hover{
	text-decoration: none;
	background-color: var(--dark);
	color: #fff;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
}
.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: 2rem;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--orange);
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}
/*Home area*/
.home_area{
	position: relative;
	z-index: 1;
	padding: 6.5rem 0;
	max-height: 120rem;
	height: calc(100vh - 15.3rem);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.home_slider{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #fff;
	padding-bottom: 1rem;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20rem), 0% 100%);
	        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20rem), 0% 100%);
}
.home_slider .owl-stage {
  display: flex;
}
.home_slider .owl-stage-outer{
	height: 100%;
}
.home_slider .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.banner_item{
	background-size: cover;
	background-position: center center;
	position: relative;
	height: 100%;
	z-index: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20rem), 0% 100%);
	        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20rem), 0% 100%);
}
.banner_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -2;
}
.banner_item::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	mix-blend-mode: multiply;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(rgba(48,59,61,0.75)));
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(48,59,61,0.75) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(48,59,61,0.75) 100%);
}
.home_content{
	max-width: 67rem;
}
.home_content h5,
.home_content .h5{
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
}
.home_content h1{
	color: #fff;
	margin-top: 1rem;
}
.form_box{
	background-color: #fff;
	border-radius: 1rem;
}
.form_box .form_header{
	background-color: var(--orange);
	color: #fff;
	padding: 2.4rem 4rem;
	border-radius: 1rem 1rem 0 0;
}
.form_box .form_header h4,
.form_box .form_header .h4{
	margin-top: 0;
	margin-bottom: 0;
}
.form_box .form_content{
	padding: 2rem 4rem 4rem;
}
.form_btn{
	display: -webkit-box;
	display: -ms-flexbox;
	display: 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;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.more_link{
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 2rem;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	color: var(--orange);
}
.more_link::after{
	content: '\f178';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
}
.more_link:hover{
	color: var(--dark);
	text-decoration: none;
}
.row:not(.no-gutters){
	margin-left: -2rem;
	margin-right: -2rem;
}
.row:not(.no-gutters)>div{
	padding-left: 2rem;
	padding-right: 2rem;
}
.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: 1rem;
   -moz-column-gap: 1rem;
        column-gap: 1rem;
    row-gap: 1rem;
}
.owl-dots button {
    height: 1.6rem;
    width: 1.6rem;
    border-radius: 50%;
    background-color: var(--dark);
    padding: 0.1rem;
    border: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0.8rem;
}
.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;
}

/*recent area*/
.recent_area{
	position: relative;
	padding: 6rem 0 9rem;
}
.recent_area h3,
.recent_area .h3{
	margin-top: 0;
}
.recent_area::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	background-color: var(--dark);
	width: 100%;
	height: 180%;
}
.box.v2{
	border-radius: 1rem;
}
.box.v2 .box_content{
	padding: 0.2rem 3rem 8rem;
}
.sold_area .box.v2 .box_content{
	padding: 0.2rem 3rem 2.8rem;
}
.box.v2 .box_content .link_box{
	right: 2rem;
	bottom: 2rem;
}
.recent_area .slider_controls .owl-nav button{
	color: #fff;
}
.recent_area .slider_controls .owl-dots button:not(.active){
	background-color: #fff;
}
/*about area*/
.about_inner{
	padding: 4rem 0 11rem;
	border-bottom: 0.1rem solid #E0E0E0;
}
.about_content {
   max-width: 60.5rem;
}
.about_img{
	position: relative;
	padding-bottom: 4.4rem;
	padding-left: 13.5rem;
}
.about_img img{
	border-radius: 1rem;
	height: auto;
}
.about_img img:last-child{
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-box-shadow: 0.1rem 0.5rem 5rem rgba(0, 0, 0, 0.4);
	        box-shadow: 0.1rem 0.5rem 5rem rgba(0, 0, 0, 0.4);
	z-index: 2;
	width: 41rem;
}
/*news area*/
.sold_area{
	padding: 10rem 0;
}
.sold_area h3,
.sold_area .h3{
	margin-top: 0;
}
.slider1 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.box{
	overflow: hidden;
	display: block;
	position: relative;
	height: 100%;
	color: var(--dark);
	color: inherit !important;
	background-color: #fff;
	border-radius: 1rem 1rem 0 0;
	text-decoration: none !important;
}
.box_img img {
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 4.4/3;
	height: auto;
}
.box:hover .box_img img{
	-webkit-transform: scale(1.15);
	    -ms-transform: scale(1.15);
	        transform: scale(1.15);
}
.box_content .link_box{
	position: absolute;
	right: 0;
	bottom: 0;
}
.link_box{
	height: 4rem;
	width: 4rem;
	border-radius: 0.5rem;
	background-color: var(--orange);
	color: #fff;
	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;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 2rem;
}
.link_box:hover{
	background-color: var(--dark);
}
.box_content h5,
.box_content .h5,
.box_content h6,
.box_content .h6{
	margin-top: 2.8rem;
}
.box_content h6,
.box_content .h6{
	color: var(--orange);
}
.box_content p{
	margin-top: 0.5rem;
}
.badge_label{
	font-size: 1.6rem;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.2;
	padding: 0.6rem 1rem;
	border-radius: 0.5rem;
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	background-color: var(--dark);
	color: #fff;
}
.badge_label.new{
	background-color: var(--orange);
}
.link_btn .button{
	position: absolute;
	right: 1.5rem;
	top: 0.2rem;
}

/*service area*/
.service_area{
	background-color: var(--light);
}
.service_inner{
	position: relative;
	padding: 5rem 0 11.5rem;
	z-index: 1;
}
.service_content{
	max-width: 56rem;
}
.service_box{
	background-color: #fff;
	border-radius: 1rem;
	padding: 3rem 5rem 3rem;
}
.service_box a{
	padding: 2rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	font-size: 3rem;
	font-weight: 800;
	text-decoration: none;
}
.service_box a:not(:last-child){
	border-bottom: 0.1rem solid #E0E0E0;
}
.service_img{
	position: absolute;
	bottom: 0;
	width: 47rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: -1;
}

/*cta area*/
.cta_area{
	color: #fff;
	padding: 10rem 0;
	background-color: var(--orange);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.cta_content{
	max-width: 101.6rem;
}
.cta_area h3,
.cta_area .h3{
	color: #fff;
	margin-top: 0;
}
.cta_area p{
	margin-top: 2.2rem;
}
.cta_img{
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 68rem;
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
.cta_img::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: -0.1rem;
	background: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(rgba(0,0,0,0)));
	background: -o-linear-gradient(left, var(--orange) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(90deg, var(--orange) 0%, rgba(0,0,0,0) 100%);
}

/*footer*/
footer{
	padding: 4rem 0 9rem;
	background-color: var(--dark);
	color: #fff;
}
footer h4{
	margin-top: 0;
	padding-bottom: 1rem;
}
footer a{
	color: #fff;
	display: inline-block;
	text-decoration: none;
}
footer a:hover{
	color: var(--orange);
	text-decoration: none;
}
footer ul{
	list-style: none;
	padding-left: 0;
	margin-bottom: -1.47rem;
}
footer ul li {
    padding-bottom: 1.47rem;
}
.brand_logo{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 10.9rem;
	   -moz-column-gap: 10.9rem;
	        column-gap: 10.9rem;
	row-gap: 3rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: 8rem;
}
.brand_logo img {
    max-height: 6rem;
    width: auto;
}
.footer_bottom{
	font-size: 1.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	margin-top: 7rem;
}
.footer_bottom p{
	margin-top: 0;
}
.footer_bottom ul{
	list-style: disc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	list-style-position: inside;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	margin: 0;
}
.footer_bottom ul li{
	padding: 0;
}
.footer_bottom ul li::marker{
	color: #fff;
}
.icon_box{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	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: #fff;
	fill: #fff;
	border-radius: 0.5rem;
	background-color: var(--orange);
	font-size: 2rem;
	text-decoration: none;
}
.icon_box a svg{
	height: 2rem;
}
.icon_box a:hover {
	background-color: #fff;
	color: var(--orange);
	fill: var(--orange);
}
.icon_box a:not(:last-child){
	margin-right: 2rem;
}
.lg_gap{
	margin-top: 14.5rem;
}


/*inner pages*/
.breadcrumb{
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 2rem;
	margin-top: 2.2rem;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: var(--orange);
}
.breadcrumb li,
.breadcrumb li.active,
.breadcrumb li a{
	font-size: 1.8rem;
	color: #fff;
	text-decoration: none;
}
.breadcrumb li a:hover{
	color: var(--orange);
}
.back_link:hover{
	color: #fff;
}
.inner_home.home_area{
	height: 60rem;
	padding: 4rem 0 10rem;
}
.inner_home .home_slider{
	height: 100%;
}
.back_btn {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	min-width: auto;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.button.back_btn::after {
   -webkit-transform: rotate(180deg);
       -ms-transform: rotate(180deg);
           transform: rotate(180deg);
}
.select_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
	row-gap: 3rem;
}
.select{
	position: relative;
}
.select select, .select .nice-select{
	border: 0.1rem solid var(--dark);
	background-color: transparent;
	height: 4.5rem;
	line-height: 4.5rem;
	border-radius: 0rem;
	width: 100%;
	font-size: 2rem;
	font-weight: 400;
	color: var(--dark);
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	padding: 0 4rem 0 1.8rem;
}
.select .nice-select::after{
    display: none;
}
.select::before{
	content: '';
	position: absolute;
	right: 1.8rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	height: 0.6rem;
	width: 1.2rem;
	background-image: url(../img/angle-down.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.inner_area{
	padding-bottom: 12rem;
	position: relative;
	margin-top: -6rem;
}
.gray_bg::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	height: 180%;
	background-color: var(--light);
}
.content_box{
	background-color: #fff;
	border-radius: 1rem;
	padding: 2rem 5rem 5rem;
	position: relative;
	z-index: 3;
}
.content_box h6{
	font-size: 2.4rem;
	font-weight: 700;
}
.information{
	padding-top: 2.5rem;
}
.information>p{
	margin-top: 1rem;
}
.author_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 4rem;
	   -moz-column-gap: 4rem;
	        column-gap: 4rem;
	padding-top: 1.5rem;
	font-size: 2rem;
}
.author_wrap>img{
	height: 15rem;
	width: 15rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	margin-top: 1.5rem;
}
.author_wrap a{
	text-decoration: none !important;
}
.author_wrap p{
	margin-top: 1.5rem;
}

.service_card{
	text-decoration: none !important;
	display: block;
}
.service_card_content h4{
	font-size: 3.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	margin-top: 3rem;
}
.service_card_content h4 i{
	color: var(--orange);
}
.service_img_wrap{
	overflow: hidden;
	border-radius: 1rem;
}
.service_img_wrap img {
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 4.9/3;
}
.service_card:hover .service_img_wrap img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.pagination_wrap{
	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: 2rem;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.pagination_wrap ul{
	padding: 0;
	list-style: none;
	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;
	margin: 0;
	line-height: 1;
}
.pagination_wrap ul li:not(:last-child){
	border-right: 0.1rem solid var(--dark);
}
.pagination_wrap ul li a{
	font-size: 2rem;
	font-weight: 800;
	text-decoration: none !important;
	line-height: 1;
	display: block;
	padding: 0 2rem;
}
.pagination_wrap ul li.active a,
.pagination_wrap ul li a.active{
	color: var(--orange);
}

.filter_form{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-column-gap: 6.5rem;
	   -moz-column-gap: 6.5rem;
	        column-gap: 6.5rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	position: relative;
}
.filter_form label{
	font-weight: 800;
	font-size: 2rem;
	display: block;
	margin-bottom: 1rem;
}
.reset_btn{
	background-color: transparent;
	border: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 2rem;
	color: var(--orange);
}
.filter_form .button{
	min-width: auto;
}
.filter_select{
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.sorting_details p{
	margin-top: 0;
}
.sorting_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3.5rem;
	   -moz-column-gap: 3.5rem;
	        column-gap: 3.5rem;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.sorting_wrap .select{
	width: 100%;
	max-width: 32rem;
}
.sorting_wrap .select select{
	background-color: transparent;
}


.contact_area{
	padding: 1rem 0 10rem;
}
.contact_details img{
	height: 100%;
	border-radius: 1rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.contact_details iframe{
	display: block;
	border: none;
	width: 100%;
	border-radius: 1rem;
	height: 25.6rem;
}
.contact_details p a{
	text-decoration: none !important;
}
.input_group{
	margin-top: 3rem;
}
.input_group label{
	font-weight: 600;
	line-height: 1.2;
	color: var(--dark);
}
.input_group label span{
	color: var(--orange);
}
.contact_form h6{
	padding-bottom: 1rem;
}
.contact_form input,
.contact_form textarea{
	width: 100%;
	border: 0.1rem solid var(--dark);
	border-radius: 0rem;
	display: block;
	resize: none;
	color: var(--dark);
	padding: 0 1.8rem;
	height: 4.5rem;
	font-size: 2rem;
	margin-top: 2rem;
}
.contact_form input::-webkit-input-placeholder, .contact_form textarea::-webkit-input-placeholder{
	color: var(--dark);
	opacity: 1;
}
.contact_form input::-moz-placeholder, .contact_form textarea::-moz-placeholder{
	color: var(--dark);
	opacity: 1;
}
.contact_form input:-ms-input-placeholder, .contact_form textarea:-ms-input-placeholder{
	color: var(--dark);
	opacity: 1;
}
.contact_form input::-ms-input-placeholder, .contact_form textarea::-ms-input-placeholder{
	color: var(--dark);
	opacity: 1;
}
.contact_form input::placeholder,
.contact_form textarea::placeholder{
	color: var(--dark);
	opacity: 1;
}
.contact_form textarea{
	height: 27.4rem;
	padding-top: 1.5rem;
}
.check_wrap{
	padding-top: 1rem;
	font-size: 2rem;
}
.check_wrap label{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1.4rem;
	   -moz-column-gap: 1.4rem;
	        column-gap: 1.4rem;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-top: 2rem;
	color: var(--dark);
}
.check_wrap label input{
	width: 2.7rem;
	height: 2.7rem;
	accent-color: var(--orange);
	margin-top: 0;
	overflow: hidden;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.check_wrap label input:checked::after {
	content: '✔';
	color: white;
	width: 100%;
	height: 100%;
	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;
	background-color: var(--orange);
	border-radius: 0.3rem;
}
.check_wrap a{
	text-decoration: underline;
	color: var(--orange);
}
.radio_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 2rem;
	font-size: 2rem;
	margin-top: 2rem;
	padding-bottom: 1.5rem;
}
.radio_wrap input{
	width: 2.5rem;
	height: 2.5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin: 0;
	accent-color: var(--orange);
}
.radio_wrap label{
	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;
}
small{
	font-weight: inherit;
}

/*details area*/
.details_area{
	padding-bottom: 12rem;
}
.details_area::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 83rem;
	background-color: #EAEAEA;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20rem), 0% 100%);
	        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20rem), 0% 100%);
}
.gallery{
	display: block;
	position: relative;
	text-decoration: none !important;
	color: #fff !important;
}
.gallery>div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	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;
	background-color: rgba(48, 59, 41, 0.4);
}
.gallery h3{
	margin-top: 0;
}
.gallery>img {
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 3.2/2;
}
.big_image .gallery img{
	height: 71rem;
}
.gallery_items>div:nth-child(n+3){
	display: none;
}
.details_area .breadcrumb {
	margin-top: 1.7rem;
	margin-bottom: 0;
}
.details_area .breadcrumb li,
.details_area .breadcrumb li.active,
.details_area .breadcrumb li a{
	color: var(--dark);
}
.heading_area h3,
.heading_area h4,
.heading_area h5,
.heading_area h6{
	margin-top: 1rem;
}
.heading_area h5{
	font-weight: 600;
}
.left_content{
	max-width: 102rem;
}
.details_area .more_link{
	font-weight: 800;
}
.outline_icon{
	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;
}
.outline_icon a{
	height: 5rem;
	width: 5rem;
	border-radius: 1rem;
	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: var(--orange);
	border: 0.2rem solid var(--orange);
	text-decoration: none;
}
.outline_icon a:hover{
	background-color: var(--orange);
	color: #fff;
}
.fa-phone{
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.details_content{
	padding-top: 2rem;
	border-top: 0.1rem solid #E0E0E0;
	margin-top: 4.5rem;
}
.details_content h5{
	font-weight: 700;
}
.stripe_table{
	width: 100%;
	table-layout: fixed;
	margin-top: 3.5rem;
}
.stripe_table th,
.stripe_table td{
	padding: 1.6rem 2.8rem;
}
.stripe_table tr:nth-child(odd) th,
.stripe_table tr:nth-child(odd) td{
	background-color: #EAEAEA;
}
.stripe_table + .more_link{
	margin-left: 2.8rem;
}
.brochure_box{
	padding: 4.2rem 4rem;
	background-color: #EAEAEA;
}
.brochure_box h5{
	margin-top: 0;
}
.heeft_box{
	background-color: var(--orange);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding: 4.2rem 4rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 2rem;
}
.heeft_box>img{
	height: 15rem;
	width: 15rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.heeft_box h5{
	margin-top: 0;
}
.heeft_box p{
	margin-top: 2.2rem;
}
.heeft_box p a{
	text-decoration: none !important;
}
.heeft_box p a:hover{
	color: var(--dark);
}

.architecture_box{
	background-color: #fff;
	padding: 3rem;
	-webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0 0 2rem rgba(0, 0, 0, 0.16);
}
.architecture_box img{
	max-height: 43rem;
	width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.architecture_box iframe{
    width: 100%;
    height: 43rem;
}
.architecture_box h6{
	padding-left: 1.5rem;
}
.architecture_box h6:first-child{
	margin-top: 0;
}
.architecture_box .stripe_table{
	table-layout: auto;
	width: calc(100% + 6rem);
	margin-left: -3rem;
	margin-top: 1.5rem;
}
.architecture_box .stripe_table th, 
.architecture_box .stripe_table td {
    padding: 1rem 2.8rem;
}
.architecture_box .stripe_table th {
    padding-left: 4.5rem;
    width: 40rem;
}
.nav-tabs{
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	border-bottom: none;
}
.nav-tabs button.nav-link{
	background-color: transparent;
	border: 0.1rem solid #D0D0D0;
	border-bottom: none !important;
	border-radius: 1rem 1rem 0 0 !important;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--dark);
	padding: 2rem 2.8rem;
	margin-bottom: 0 !important;
}
.nav-tabs button.nav-link.active {
	border-color: transparent !important;
	-webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.08), -0.5rem 0 2rem rgba(0, 0, 0, 0.05), 0.5rem 0 2rem rgba(0, 0, 0, 0.08);
	        box-shadow: 0 0 2rem rgba(0, 0, 0, 0.08), -0.5rem 0 2rem rgba(0, 0, 0, 0.05), 0.5rem 0 2rem rgba(0, 0, 0, 0.08);
	-webkit-clip-path: inset(-5rem -5rem 0.1rem -5rem);
	        clip-path: inset(-5rem -5rem 0.1rem -5rem);
}
.slider2 .owl-dots{
	position: absolute;
	left: 0;
	width: 100%;
	top: calc(100% + 6.4rem);
}
.content_box h2{
    font-size: 5rem;
}
.content_box h3{
    font-size: 3.5rem;
    color: var(--orange);
}
#contact{
	display: none;
}
#contact h6{
	font-size: 2.2rem;
	font-weight: 700;
}

/*faq*/
.accordion-content {display: none;}
.accordion-content.default {display: block;}
.accordion_item{
   border-bottom: 0.1rem solid rgba(48, 59, 61, 0.25);
   padding: 3rem 0rem;
}
.accordion-toggle{
	position: relative;
	padding-right: 6rem;
	cursor: pointer;
}
.accordion-toggle h5{
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--dark);
	margin-top: 0;
}
.accordion-toggle::before {
	content: '';
	position: absolute;
	right: 0;
	top: 1rem;
	height: 0.8rem;
	width: 1.5rem;
	background-image: url(../img/faq1.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.accordion-toggle.active::before{
	background-image: url(../img/faq2.svg);
   -webkit-transform: rotate(-180deg);
       -ms-transform: rotate(-180deg);
           transform: rotate(-180deg);
}
.accordion-toggle.active h5{
	color: var(--orange);
}
.accordion-content {
   padding-top: 2rem;
}
.accordion-content p{
	margin-top: 0;
}

.quality_box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid var(--dark);
    height: 25rem;
    padding: 2rem 3rem;
}
.quality_box img{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.quality_row{
	padding-top: 3rem;
}
.quality_row h6{
	margin-top: 0;
}
.quality_row p{
	max-width: 110rem;
}
.sticky_part{
    position: sticky;
    top: 14rem;
}
footer p a {
    padding: 0.75rem 0;
}

.gallery>div.gallery_date_box,
.gallery_date_box{
    background-color: var(--orange);
    display: inline-block;
    height: auto;
    width: auto;
    top: 3rem;
    right: 3rem;
    left: auto;
    border-radius: 0.5rem;
    padding: 2rem 2.5rem;
    font-size: 1.6rem;
    position: absolute;
    color: #fff;
    z-index: 1;
}
.gallery>div.gallery_date_box p,
.gallery_date_box p{
    margin-top: 0;
}
.gallery>div.gallery_date_box p:first-child,
.gallery_date_box p:first-child {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.8rem;
}
.box.v2 .gallery_date_box {
    top: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
}
.box.v2 .gallery_date_box p:first-child {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}


