@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	font-family: 'widescreenex_regular';
    font-size: 1.6rem;
	background: #131313;
    color: #1c1c1c;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}
/* .add_morgan_footer_margin{
	height: 100px !important;
} */
/****captcha****/
.grecaptcha-badge{
	display:none;
}
/*****************header****************/
/***header-area*****/
.header-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 45px 0 25px;
	z-index: 99;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    border-bottom: 1px solid transparent;
}
.header-logo {
    /* margin: 0 158px; */
    width: 33.33%;
}
.header-logo img {
	width: 148px;
}
.header-wrap {
    max-width: 1228px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-nav {
    width: 33.33%;
}
.header-nav ul {
	display: flex;
	align-items: center;
	/* justify-content: end; */
    column-gap: 71px;
	margin: 0;
}
.header-nav li {
    font-family: 'widescreen_ex_mediumregular';
	line-height: normal;
}
.header-nav li::after {
	display: none;
}
.header-nav li a {
	color: #fff;
}
.header-area li a{
    position: relative;
}
.header-area li a::after {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    content: "";
    width: 3px;
    height: 3px;
    background-color: #AA5626;
    background-size: 3px;
    opacity: 0;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
    border-radius: 100%;
}
.header-area li a:hover::after {
    opacity: 1;
}
.header-active {
    position: fixed;
    z-index: 99;
    background-color: #131313;
    border-color: rgba(255, 255, 255, 0.3);
}
/* .header-active .header-logo img {
    filter: brightness(100) invert(1);
}
.header-area.header-active a {
    color: #131313;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
} */
.header-area.header-active a:hover {
    color: #AA5626;
}
.header-area.header-active li:hover a::after {
    opacity: 1;
}
.header-area::after {
    content: "";
    height: 0;
    width: 100%;
    background-color: #131313;
    position: absolute;
    left: 0;
    top: 0;
    position: absolute;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: -1;
}
.header_hover::after {
    height: 100%;
}
.header-area.header_hover li a:hover {
    color: #AA5626;
}
/* .header-area.header_hover li a {
    color: #131313;
}
.header-area.header_hover .header-logo img {
    filter: brightness(100) invert(1);
} */
/***mobile-header*****/
.mobile-header .header-menu {
    position: fixed;
    top: 86px;
    background: #131313;
    height: 100vh;
    width: 100%;
    left: 0;
    padding: 40px;
    clip-path: inset(0 0 100% 0);
    transition: all 0.5s;
}
.mobile-header .header-menu ul {
	flex-direction: column;
	text-align: center;
}
.mobile-header .header-menu.mob-menu-active {
	clip-path: inset(0 0 0 0);
}
.mobile-header .header-menu ul {
	margin: 0;
}
.mobile-header .header-menu li {
    padding: 0;
    font-size: 1.8rem;
    margin-bottom: 26px;
}
.mobile-header .header-menu li a {
	color: #fff;
}
.mobile-header .header-menu li a:hover {
	color: #AA5626;
}
.mobile-header .header-menu li::after {
	display: none;
}
.mobile-header .header-menu li.active {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
	animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
    -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	-o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.menu-bar {
    position: relative;
    max-width: 30px;
    width: 100%;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, 
.menu-bar::before {
    display: block;
    background-color: #fff;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 30px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div {
	transform: scale(0);
}
.menu-bar.active  div {
    transform: scale(0);
}
.menu-bar.active:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-bar.active:after {
    transform: translateY(-8px) rotate(-135deg);
}
.header-area.header-active .menu-bar div, 
.header-area.header-active .menu-bar::after, 
.header-area.header-active .menu-bar::before {
    background-color: #131313;
}
.header-area.header-active.header-area-mob-active .menu-bar div, 
.header-area.header-active.header-area-mob-active .menu-bar::after, 
.header-area.header-active.header-area-mob-active .menu-bar::before {
    background-color: #fff;
}
.header-area.header-area-mob-active .header-logo img {
    filter: brightness(0) invert(1);
}
/**************index**************/
/*==== banner ====*/
.home_banner .banner-video,
.home_banner .each-banner  {
	height: 893px;
}
.each-banner img{
    height: 100%;
    object-fit: cover;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.home_banner{
	position: relative;
}
.home_banner_content {
    position: absolute;
    left: 0;
    bottom: 54px;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.home_banner_content h1 {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.home_banner::after {
    content: "";
    height: 160px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.00) 0%, rgba(19, 19, 19, 0.60) 82.4%, #131313 100%);
    position: absolute;
    z-index: 1;
}
/*==== home-about-sec ====*/
.home-about-sec {
    padding: 257px 0 131px;
	position: relative;
}
.home-about-bg {
	position: absolute;
    bottom: 0;
	width: 100%;
    height: 57%;
    z-index: -1;
}
.home-about-top-info {
    padding-left: 31px;
    width: 100%;
    max-width: 602px;
}
.home-about-top-info h2 {
	margin: 29px 0 47px;
}
.home-about-top-info p {
	margin-bottom: 16px;
}
.home-about-top-info .common-btn {
	margin-top: 41px;
}
.home-about-btm {
    padding-top: 134px;
}
.home-about-btm .col-lg-7 {
    width: 50.32%;
}
.home-about-btm .col-lg-5 {
    width: 49.68%;
}
.home-about-btm-img {
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.video-play-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	transform: translate(-50%, -50%);
}
.video-player {

}
/*****video*****/
.video-player {
    position: relative;
    height: 100%;
}
.video-player video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    opacity: 0.75;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.video-btn:hover {
    opacity: 1;
}
/* .video-play-icon img {
    width: 100%;
} */
/* .home-about-btm-img:hover .video-play-icon img {
	filter: brightness(0) invert(1);
} */
.home-about-btm-info {
    max-width: 528px;
    width: 100%;
    padding-right: 50px;
}
.home-about-btm-info h3 {
	margin-bottom: 55px;
}
.home-about-btm-info ul li:first-child {
    margin-bottom: 50px;
}
.home-about-btm-info li h4 {
    margin-bottom: 24px;
}
.home-about-btm-info li p {
	color: #fff;
	opacity: 0.5;
}
/*==== home-gallery-sec ====*/
.home-gallery-sec {
	padding-bottom: 55px;
	overflow: hidden;
    position: sticky;
    top: 0;
    height: 100%;
    width: 100%;
}
.home-gallery-wrap {
    margin: 0 -143px;
}
.home-gallery-slider {
	position: relative;
}
.home-gallery-slider img {
    height: 304px;
    object-fit: cover;
}
.home-gallery-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.home-gallery-slider::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 29%;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.00) 0%, #131313 82.4%, #131313 100%);
    z-index: 1;
}
.home-service-sec .swiper-wrapper{
    transition-timing-function: linear !important;
}
/*==== home-accor-sec ====*/
.home-accor-sec {
    background: #F7F7F7;
    padding: 116px 0 115px;
    position: relative;
    z-index: 1;
}
.home-expertise-area {
	padding-bottom: 61px;
}
.home-expertise-left h4 {
	margin-bottom: 40px;
}
.home-expertise-right {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}
.home-expertise-right p {
	margin-bottom: 39px;
}
.acc-block li {
    margin-bottom: 64px;
}
.acc-block h4 {
    font-family: 'Widescreen Ex';
    color: #131313;
	position: relative;
	cursor: pointer;
    display: inline-block;
    padding-left: 22px;
}
.acc-block h4::after {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    background-color: #AA5626;
    border-radius: 50px;
}
.acc-block li:last-child {
    margin-bottom: 0;
}
.acc-block li.show_accordian h4 {
    color: #AA5626;
}
.acc-block li p {
    margin-top: 38px;
}
.about-sec {
    position: relative;
    z-index: 1;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li>*:not(:first-child) {
	display: none;
}
.acc-block p {
	margin-top: 15px;
	margin-bottom: 0;
    max-width: 642px;
	width: 100%;
}
.acc-img {
    padding-left: 81px;
    height: 100%;
}
.acc-img .each-acc-img {
    display: none;
    height: 540px;
}
.acc-img .each-acc-img img { 
    height: 100%;
    object-fit: cover;
}
.acc-img .each-acc-img.active {
    display: block;
}
/*==== brand-marquee ====*/
.brand-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
    background: #F7F7F7;
    border-top: 1.5px solid rgba(19, 19, 19, 0.10);
    padding: 40px 0 35px;
    z-index: 1;
}
.brand-marquee-wrap,
.certificate-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 90px;
	align-items: center;
}
.brand-marquee-wrap ul,
.certificate-marquee-wrap ul {
	display: flex;
	gap: 90px; 
	padding: 0;
	margin: 0;
	list-style: none;
	align-items: center;
}
.brand-marquee-wrap li,
.certificate-marquee-wrap li {
	white-space: nowrap;
	padding: 0;
}
.brand-marquee-wrap li::after {
	display: none;
}
.brand-marquee-sec li img {
    /* filter: brightness(0); */
    opacity: 0.3;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 80px;
    aspect-ratio: 7/4;
    object-fit: scale-down;
}
.brand-marquee-sec li img:hover {
    filter: brightness(1);
    opacity: 1;
}
/*==== home-exhibitions-sec ====*/
.home-exhibitions-sec {
    padding: 184px 0 126px;
    background: #131313;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.home-exhibitions-area {
    position: relative;
}
.home-exhibitions-info p {
    max-width: 566px;
    width: 100%;
    margin-bottom: 27px;
}
.home-exhibitions-info h2 {
    margin: 29px 0 44px;
}
.home-exhibitions-map {
    position: absolute;
    right: -11%;
    top: -48px;
    width: 69%;
    z-index: 1;
}
.point-bg, .outer-point {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}
.point-bg {
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 100%;
    animation: pulse 1.2s ease infinite;
    background: #AA5626;
    top: -6px;
    left: -6px;
}
.outer-point {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 99;
    border: none;
    background: #AA5626;
    background-size: 16px;
    cursor: pointer;
    outline: none;
}
@keyframes pulse {
    0% {
      transform: scale(1, 1);
    }
    50% {
      opacity: 0.3;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
}
.dot-1 {
    position: absolute;
    top: 152px;
    left: 53%;
}
.dot-2 {
    position: absolute;
    top: 218px;
    left: 21%;
}
.dot-2 .point-bg {
    width: 21px;
    height: 21px;
    top: -6px;
    left: -6px;
}
.dot-2 .outer-point {
    width: 9px;
    height: 9px;
}
.dot-3 {
    position: absolute;
    top: 267px;
    left: 66%;
}
.dot-3 .point-bg {
    width: 14px;
    height: 14px;
    top: -4px;
    left: -4px;
}
.dot-3 .outer-point {
    width: 8px;
    height: 8px;
}
.dot-4 {
    position: absolute;
    top: 215px;
    left: 75%;
}
.dot-4 .point-bg {
    width: 10px;
    height: 10px;
    top: -2px;
    left: -2px;
}
.dot-4 .outer-point {
    width: 6px;
    height: 6px;
}
/*==== home-service-sec ====*/
.home-service-sec {
    background: #131313;
    padding-bottom: 115px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.home-service-wrap {
    margin: 0 -33%;
}
.hover_img {
    position: relative;
    height: 100%;
}
.hover_img img {
    height: 100%;
    object-fit: cover;
}
.hover_img::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
	height: 75px;
	width: 75px;
	background-color:rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.21);
	backdrop-filter: blur(2px);
	border-radius: 50%;
	background-image: url(../images/arrow.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: all 0.5s;
}
.each-service-slider:hover .hover_img::after{
	opacity: 1;
}
.each-service-slider-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 37px;
}
.each-service-slider-info h3 {
    font-family: 'widescreen_ex_mediumregular';
    letter-spacing: normal;
    margin-bottom: 4px;
}
.each-service-slider-info h4 {
    font-family: 'widescreenex_regular';
}
.each-service-slider {
    height: 473px;
}
/*==== google-review ====*/
.google-review {
    background: #131313;
    padding-bottom: 26px;
    position: relative;
    z-index: 1;
}
/*==== home-btm-sec ====*/
.home-btm-sec {
    border: 1px solid rgba(20, 20, 20, 0.07);
    background: #262626;
    box-shadow: 0px 24px 32.1px 0px rgba(30, 27, 27, 0.04);
    padding: 58px 0 50px;
    position: relative;
    z-index: 1;
}
.home-btm-area {
    text-align: center;
}
.home-btm-area h4 {
    font-family: 'Widescreen Ex';
    line-height: 32px; 
    opacity: 0.5;
    letter-spacing: 0.24px;
    margin-bottom: 31px;
}
/*==== footer ====*/
.footer-area {
    padding: 86px 0 23px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.footer-top {
    padding-bottom: 72px;
}
.footer-top .col-5 {
    width: 38%;
}
.footer-top .col-2 {
    width: 23%;
}
.footer-top li a {
    font-family: 'widescreen_ex_mediumregular';
    line-height: normal;
}
.footer-top-left ul,
.footer-top-right ul {
    display: flex;
    column-gap: 98px;
}
.footer-top-left ul {
    justify-content: end;
}
.footer-logo {
    width: max-content;
    margin: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-logo img {
    width: 148px;
}
.footer-btm-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 44px;
    position: relative;
}
.footer-btm-area::after {
    content: '';
    position: absolute;
    left: -160px;
    bottom: 0;
    height: 1px;
    width: 200vw;
    background-color: rgba(255, 255, 255, 0.20);
}
.footer-contact-dtls {
    width: 25%;
}
.footer-contact-dtls a {
    font-family: 'widescreenex_regular';
    color: rgba(255, 255, 255, 0.5);
    line-height: 26px; 
    letter-spacing: 0.16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    word-break: break-word;
}
.footer-contact-dtls a:hover {
    color: #AA5626;
}
.footer-contact-dtls ul {
    text-align: center;
}
.footer-contact-dtls li {
    display: inline-block;
    margin-right: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-contact-dtls li:last-child {
    margin-right: 0;
}
.footer-contact-dtls li a {
    height: 44px;
    width: 44px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-contact-dtls li a img {
    height: 17px;
    width: 17px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-contact-dtls li:hover a{
    background-color: #AA5626;
    border-color: #AA5626;
}
.footer-privacy {
    padding-top: 22px;
    /* max-width: 750px;
    width: 100%;
    margin: 0 auto; */
}
.footer-privacy a {
    line-height: 26px;
    letter-spacing: 0.16px;
}
.mobile-footer-logo {
    display: none;
}

/*********** Expertise **************/
/*==== inner-banner ====*/
.inner-banner-img  {
	height: 650px;
}
.inner-banner-img img{
    height: 100%;
    object-fit: cover;
}
.inner-banner{
	position: relative;
}
.inner-banner-content {
    position: absolute;
    left: 0;
    bottom: 39%;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.inner-banner-content h1 {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}
/*==== expertise-list-top ====*/
.exp-list-top {
    padding: 79px 0 83px;
}
.exp-list-top-area {
    position: relative;
    padding-bottom: 53px;
}
.exp-list-top-area .row {
    align-items: center;
}
.exp-list-top-area::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}
.exp-list-top-area h4 {
    margin-bottom: 40px;
}
.exp-list-top-right p {
    margin-right: 0;
    margin-left: auto;
    width: 100%;
    max-width: 517px;
}
.exp-list-top-right {
    margin-top: 30px;
}
/*==== expertise-list-sec ====*/
.exp-list-sec {
    padding-bottom: 115px;
}
.exp-list-area .row {
    row-gap: 15px;
}
.each-exp-list {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.exp-list-txt-wrap {
    position: relative;
    bottom: -162px;
}
.each-exp-list-txt {
    padding: 40px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all 0.5s;
    z-index: 0;
}
.each-exp-list-txt::after {
    position: absolute;
    left: 0;
    top: 100%;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(38, 38, 38, 0.96) 0%, rgba(38, 38, 38, 0.96) 100%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: -1;
}
.each-exp-list-txt h4 {
    color: #fff;
    margin-bottom: 35px;
}
.each-exp-list-txt p {
    width: 100%;
    max-width: 582px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.each-exp-list:hover .exp-list-txt-wrap {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    bottom: 0;
}
.each-exp-list:hover .each-exp-list-txt::after {
    top: 0;
}
.each-exp-list:hover .each-exp-list-txt h4 {
    margin-bottom: 32px;
}
.each-exp-list .hover_img::after {
    z-index: 1;
    transform: translateX(-50%);
    top: 33%;
}
.each-exp-list:hover .hover_img::after {
    opacity: 1;
}
.exp-list-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 65px;
}
.exp-list-block h4 {
    margin-bottom: 30px;
}
.exp-list-block p {
    margin: 44px 0 27px;
}

/*********** Expertise-dtl **************/
/*==== exp-dtl-banner ====*/
.exp-dtl-banner .inner-banner-content {
    bottom: 26%;
}
.exp-dtl-banner .inner-banner-content h1 {
    margin-bottom: 27px;
}
/*==== exp-dtl-top-sec ====*/
.exp-dtl-top-sec {
    padding: 80px 0 115px;
}
.exp-dtl-top-img {
    padding-right: 57px;
}
.exp-dtl-top-txt {
    padding-left: 54px;
}
.exp-dtl-top-txt h3 {
    margin: 29px 0 20px;
}
.exp-dtl-top-txt p {
    margin-bottom: 15px;
    width: 100%;
    max-width: 587px;
}
.exp-dtl-top-txt p:last-child {
    margin-bottom: 0;
}
/*==== exp-dtl-mid-sec ====*/
.exp-dtl-mid-sec {
    padding-bottom: 116px;
}
.exp-dtl-mid-title {
    text-align: center;
    margin-bottom: 73px;
}
.each-exp-mid-info h4 {
    font-family: 'Widescreen Ex';
    color: #FFF;
    margin-bottom: 14px;
}
.each-exp-mid-info p {
    width: 100%;
    max-width: 400px;
}
.exp-dtl-mid-area .col-lg-3 {
    width: 30.8%;
}
.exp-dtl-mid-area .col-lg-6 {
    width: 38.4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.exp-dtl-mid-info.right {
    margin-left: 37px;
}
.exp-dtl-mid-img {
    border-radius: 213px;
    overflow: hidden;
}
.exp-dtl-mid-info {
    position: relative;
}
.exp-dtl-mid-info::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}
.each-exp-mid-info {
    margin-bottom: 104px;
}
.each-exp-mid-info:last-child {
    margin-bottom: 0;
}
/*==== exp-dtl-slider-sec ====*/
.exp-dtl-slider-sec {
    padding-bottom: 13px;
    overflow: hidden;
}
.exp-dtl-slider-title {
    text-align: center;
    margin-bottom: 81px;
}
.exp-dtl-slider-wrap {
    margin: 0 -143px;
}
/*==== form-sec ====*/
.form-sec {
    background: #F7F7F7;
    padding: 102px 0;
}
.form-sec .col-lg-7 {
    width: 55%;
}
.form-sec .col-lg-5 {
    width: 45%;
}
.form-left-area {
    padding-right: 75px;
}
.form-title h3 {
    color: #000;
    margin-bottom: 18px;
}
.form-title p {
    color: #131313;
    width: 100%;
    max-width: 648px;
}
.form-main-area {
    margin-top: 97px;
}
.form-sec .form-group {
    margin-bottom: 65px;
    position: relative;
}
.form-sec .form-styl {
    font-family: 'widescreen_ex_mediumregular';
    color: #000;
    font-size: 2.4rem;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    line-height: normal;
    resize: none;
    border: 0;
    border-bottom: 1px solid rgba(19, 19, 19, 0.5);
    outline: none;
    padding: 16px 0 4px;
}
.form-sec .form-styl:focus{
    color: #000;
    background: transparent;
    outline: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1.5px solid #AA5626;
}
.form-sec .form-label {
    font-family: 'widescreen_ex_mediumregular';
    color: rgba(19, 19, 19, 0.6);
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    margin-bottom: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: transparent;
    line-height: 24px;
    pointer-events: none;
}
.form-sec .focus-input .form-label{
    top: -35px;
    color: #AA5626;
}
.form-sec textarea.form-styl {
    height: 50px;
}
.form-sec .form-group.form-comment {
    margin-bottom: 0;
}
.form-btn {
    margin-top: 50px;
}
.form-img {
    height: 100%;
}
.form-img img {
    height: 100%;
    object-fit: cover;
}
/*==== exp-dtl-review ====*/
.exp-dtl-review {
    padding-top: 115px;
}
/*********** Events **************/
/*==== event-list-sec ====*/
.event-list-sec {
    padding-bottom: 115px;
}
.event-list-area .row {
    row-gap: 13px;
}
.each-event-list {
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 534px;
}
.each-event-txt {
    padding: 40px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all 0.5s;
    z-index: 0;
}
.each-event-list:hover .each-event-txt::after {
    top: 0;
}
.each-event-list:hover .hover_img::after {
    opacity: 1;
}
.each-event-txt h3 {
    font-family: 'widescreen_ex_mediumregular';
    line-height: 24px;
    letter-spacing: normal;
    margin-bottom: 16px;
}
.each-event-txt h4 {
    font-family: 'widescreenex_regular';
    color: #fff;
}
/*********** Case studies **************/
/*==== case-studies-list-top ====*/
.case-studies-list-top .exp-list-top-right p {
    max-width: 577px;
}
.case-studies-list-top .exp-list-top-area::after {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.50);
}
.case-studies-list-top .exp-list-top-area {
    padding-bottom: 83px;
}
/*==== case-studies-list-sec ====*/
.case-studies-list-sec .each-event-txt h4 {
    font-family: 'Widescreen Ex';
    width: 100%;
    max-width: 600px;
    line-height: 29px;
}
.case-studies-list-sec .each-event-txt {
    padding: 40px;
}
.case-list-top .exp-list-top-right p {
    max-width: 600px;
}
/*********** Contact **************/
/*==== map ====*/
.map {
    height: 650px;
    position: relative;
}
.map::after {
    content: "";
    height: 160px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.00) 0%, rgba(19, 19, 19, 0.60) 82.4%, #131313 100%);
    z-index: 1;
}
/*==== contact-form ====*/
.contact-form {
    background-color: #131313;
    padding-bottom: 218px;
}
.contact-form .form-title h3,
.contact-form .form-title p {
    color: #fff;
}
.contact-form .form-styl {
    color: #fff;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
}
.contact-form .form-styl:focus {
    color: #fff;
}
.contact-form .form-label {
    color: rgba(255, 255, 255, 0.6);
}
/*********** Events-dtl **************/
/*==== events-dtl-banner ====*/
.events-dtl-banner .inner-banner-content h3 {
    font-family: 'widescreen_ex_mediumregular';
    line-height: 24px;
    letter-spacing: normal;
    margin: 18px 0 46px;
}
.events-dtl-banner .inner-banner-content ul {
    display: flex;
    justify-content: space-between;
    max-width: 391px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 49px;
    column-gap: 10px;
}
.events-dtl-banner .inner-banner-content h6 {
    line-height: 24px;
    color: #fff;
    font-size: 1.6rem;
}
.events-dtl-banner .inner-banner-content {
    bottom: 9%;
}
/*==== events-dtl-top-sec ====*/
.events-dtl-top-sec {
    padding: 80px 0 115px;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 0;
    height: 100%;
    width: 100%;
}
.events-dtl-top-bg {
    position: absolute;
    bottom: -37%;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.events-dtl-top-bg {
    object-fit: cover;
}
.events-dtl-top-bg::after {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #131313 0%, #131313 42.74%, rgba(19, 19, 19, 0.00) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.events-dtl-top-area {
    position: relative;
    z-index: 1;
}
.events-dtl-top-info {
    padding-right: 80px;
}
.events-dtl-top-title {
    margin-bottom: 59px;
}
.events-dtl-top-title h3 {
    margin: 29px 0 22px;
}
.events-dtl-top-info-area h3 {
    font-family: 'widescreenex_regular';
    line-height: 24px;
    letter-spacing: normal;
    margin-bottom: 28px;
}
.events-dtl-top-info-area li {
    margin-bottom: 29px;
}
.events-dtl-top-info-area ul li:last-child {
    margin-bottom: 0;
}
.events-dtl-top-info-area li h6 {
    line-height: 24px;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 3px;
}
.events-dtl-top-info-area li p {
    max-width: 553px;
    width: 100%;
}
/*==== events-map-sec ====*/
.events-map-sec {
    background: #F7F7F7;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.events-map {
    height: 644px;
}
.events-map-title h3 {
    color: #131313;
    margin: 28px 0 54px;
}
/*==== events-dtls-sec ====*/
.events-dtls-sec {
    background: #F7F7F7;
    padding: 27px 0 42px;
    position: relative;
    z-index: 1;
}
.events-dtls-area ul {
    display: flex;
    max-width: 951px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.events-dtls-area li {
    border-right: 1.5px solid #131313;
    padding: 45px 50px;
}
.events-dtls-area ul li:first-child {
    padding-left: 0;
}
.events-dtls-area ul li:last-child {
    padding-right: 0;
    border-right: 0;
}
.events-dtls-area li h5 {
    margin-bottom: 3px;
}
.events-dtls-area li a {
    line-height: 24px;
    color: rgba(19, 19, 19, 0.50);
}
.events-dtls-area li a:hover {
    color: #AA5626;
}
/*==== events-contact-sec ====*/
.events-contact-sec {
    padding: 117px 0 93px;
    background-color: #131313;
    position: relative;
    z-index: 1;
}
.events-contact-sec .col-lg-5 {
    width: 34%;
}
.events-contact-sec .col-lg-7 {
    width: 66%;
}
.events-contact-title h3 {
    margin: 29px 0 81px;
}
.events-contact-left p {
    color: #fff;
    margin-top: 36px;
}
.events-contact-right {
    margin-left: 55px;
    padding: 47px 71px 54px;
}
.events-contact-right h4 {
    color: #FFF;
}
.events-contact-right p {
    max-width: 545px;
    width: 100%;
    margin: 19px 0 26px;
}
.events-contact-right p:last-child {
    max-width: 496px;
}
.whatsapp-btn {
    height: 83px;
    max-width: 276px;
    border-radius: 41.5px;
    background: rgba(37, 211, 102, 0.30);
    color: #fff;
    margin-bottom: 86px;
}
.whatsapp-icon {
    width: 63px;
    height: 63px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.whatsapp-btn img {
    width: 24px;
}
.whatsapp-info {
    line-height: 24px;
    font-size: 1.6rem;
    margin-left: 18px;
}
.each-events-contact-info a {
    line-height: 24px;
    color: rgba(255, 255, 255, 0.50);
}
.each-events-contact-info ul {
    text-align: end;
}
.each-events-contact-info li {
    display: inline-block;
    margin-right: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-events-contact-info li:last-child {
    margin-right: 0;
}
.each-events-contact-info li a {
    height: 44px;
    width: 44px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-events-contact-info li a:hover {
    background-color: #AA5626;
    border-color: #AA5626;
}
/*********** Thnak-you **************/
.thank-you-banner .home_banner_content {
    bottom: 116px;
}
/*********** popup **************/
.modal-area .modal-dialog {
    max-width: 751px;
    margin: 8% auto 0;
}
.modal-area .modal {
	background: rgba(19, 19, 19, 0.50);
    backdrop-filter: blur(12px);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 0;
    background-color: transparent;
	position: relative;
}
.modal-content-wrap {
    padding: 0;
    background: #232323;
}
.modal-area .pop-up-image h2 {
    position: absolute;
    top: 31%;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 0 52px;
    text-align: center;
}
.modal-area .pop-up-image {
    position: relative;
}
.modal-area .popup-content {
    padding: 39px 113px 37px;
    background: #F7F7F7;
}
.modal-area .popup-content ul {
    list-style: none;
    margin: 0 0 20px;
}
.modal-area .popup-content li {
    position: relative;
	margin-bottom: 15px;
    line-height: 24px;
    color: #131313;
    padding-left: 16px;
}
.modal-area .popup-content li:last-child {
    margin-bottom: 0;
}
.modal-area .popup-content li::after {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-image: url(../images/bullet.svg);
    background-size: 8px;
}
.modal-area .popup-content p {
    margin-bottom: 20px;
    color: #131313;
    max-width: 537px;
    width: 100%;
}
.close-img {
    position: absolute;
    top: -27px;
    right: -30px;
    z-index: 1;
    height: 57px;
    width: 57px;
    background-color: #AA5626;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.close-img img {
	width: 23px;
    height: 23px;
}
/*********** about-us **************/
/*==== drk-bg-marquee ====*/
.drk-bg-marquee{
    background-color: #151515;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.10);
}
.drk-bg-marquee .brand-marquee-wrap img {
    filter: brightness(1) invert(1);
}
.drk-bg-marquee .brand-marquee-wrap img:hover {
    filter: brightness(1) invert(1);
} 
/*==== story-commitment-sec ====*/
.story-commitment-sec{
    padding-top: 80px;
    padding-bottom: 26px;
}
.story-content{
    padding-left: 55px;
}
.story-content h2{
    margin: 30px 0;
}
.story-content p{
    margin-bottom: 14px;
}
.story-area{
    padding-bottom: 115px;
}
.commitment-heading{
    margin-bottom: 56px;
}
.commitment-area .row {
    margin: 0 -9px;
}
.commitment-area .col-lg-6 {
    padding: 0 9px;
}
.each-commitment{
    background-color: #262626;
    padding: 70px 30px 30px;
    overflow: hidden;
}
.each-commitment p{
    max-width: 510px;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}
.commitment-bg-icon{
    position: absolute;
    right: -33px;
    top: -27px;
}
.each-commitment h4 {
    padding: 32px 0 22px;
}
/*==== watch-our-story-sec ====*/
.watch-our-story-sec{
    padding-top: 116px;
    padding-bottom: 115px;
    background-color: #F7F7F7;
}
.watch-our-story-sec h2{
    text-align: center;
    margin-bottom: 52px;
    color: #131313;
}
/***about-exhibitions-sec****/
.about-exhibitions-sec {
    padding-top: 43px;
}
/*********** case-studies **************/
/*==== case-studies-banner ====*/
.case-studies-banner h1{
    margin-bottom: 42px;
    max-width: 1084px;
}
.case-studies-banner .inner-banner-content{
    bottom: 17%;
}
/*==== project_overview_sec ====*/
.project_overview_sec{
    padding: 80px 0 115px;
}
.project_overview_cotent h3{
    margin: 24px 0 18px;
}
.project_overview_cotent h2{
    color: #AA5626;
    font-family: 'widescreen_ex_mediumregular';
    font-size: 3.6rem;
    line-height: 24px;
    letter-spacing: normal;
    margin: 36px 0 24px;
}
.project_overview_cotent td h5 strong{
    color: rgba(255, 255, 255, 0.50);
    padding-left: 11px;
}
.project_overview_cotent td{
    padding-bottom: 7px;
}
.project_overview_cotent h6{
    color: #FFF;
    font-family: 'widescreen_ex_mediumregular';
    font-size: 1.6rem;
    line-height: 24px; 
}
.project_overview_cotent{
    padding-right: 90px;
}
/*==== achievements_sec ====*/
.achievements_sec {
    padding: 81px 0 100px;
    background-color: #F7F7F7;
    border-bottom: 2px solid rgba(19, 19, 19, .15);
}
.achievements_sec .exp-dtl-mid-title h3,
.achievements_sec .each-exp-mid-info h4{
    color: #131313;
}
.achievements_sec .exp-dtl-mid-title h4{
    margin-bottom: 29px;
}
.achievements_sec .exp-dtl-mid-info::after{
    display: none;
}
.achievements_sec .each-exp-mid-info p{
    color: rgba(19, 19, 19, 0.50);
}
.achievements_sec .each-exp-mid-info {
    margin-bottom: 77px;
}
.achievements_sec .each-exp-mid-info:last-child {
    margin-bottom: 0;
}
.achievements_sec .exp-dtl-mid-area .col-lg-3{
    margin-top: 38px;
}
/*==== client-feedback-sec ====*/
.client-feedback-sec {
    background-color: #F7F7F7;
    padding: 80px 0 68px;
}
.client-feedback-wrapper {
    max-width: 1317px;
    width: 100%;
    margin: 0 auto;
}
.client-feedback-content {
    padding-right: 65px;
    margin-top: 11px;
}
.client-feedback-content h3{
    margin-bottom: 35px;
    color: #131313;
}
.client-feedback-content h5{
    color: #131313;
    margin-bottom: 19px;
}
.client-feedback-content p{
    color: #858585;
}
.client-feedback-img img {
    padding-left: 24px;
}
/*==== related-case-sec ====*/
.related-case-heading {
    text-align: center;
    padding: 115px 0 83px;
}
.related-case-sec .each-service-slider-info h4{
    line-height: 29px;
}
.related-service-wrap {
    margin: 0 -33%;
}
.related-service-slider .each-service-slider-info {
    padding-right: 86px;
}

.home-about-sec .banner-about,
.home-about-sec .banner-video, .each-banner {
    height: 480px;
    object-fit: cover;
}
.watch-our-story-sec .banner-about,
.watch-our-story-sec .banner-video, .each-banner {
    height: 645px;
    object-fit: cover;
}


/*******loader*****/
#loader_section{
    display:none;
    width:100%;
    position: fixed;
    top: 0;
    background: #000000b8;
    z-index: 9999999;
    height: 100vh;
    padding: 30vh 0px;
  }
  #loader_section p{
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
  }
  #loader_section img{
    width: 100px;
    margin-bottom: 25px;
  }
  
  /*********Morgen Footer************/
  .morgeninternet-footer {
      background: #000000;
      width: 100%;
      height: 50px;
      display: block;
      text-align: center;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer:hover {
      background: #202020;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer > img {
      height: 30px;
      padding-top: 15px;
  }
  
  
  /****aanbod dtl****/
  .kenteken_np{
      background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding: 4px 10px 6px 20px;
      color: #000;
      background-size: contain;
  }
  .star_icon{
      margin-bottom: 30px;
  }
  .star_icon h4{
      padding-bottom: 10px;
      text-transform: uppercase;
      padding-top: 15px;
      margin-bottom: 15px;
     /* color: #1c1c1c;*/
      border-bottom: 1px solid #181716;
      padding-bottom: 10px;
  }
  .star_icon p img{
      width: 15px;
      margin-top: -3px;
      margin-right: 5px;
  }
  .star_icon p{
      padding-bottom: 6px;
      word-break: break-word;
  }
  .photo_contnt li img{
      width: 15px;
      margin-left: 5px;
  }
  .star_icon h3 {
      margin: 40px 0 30px;
  }
  .aanbod-detail-tab-sec .tab-content .star_icon p {
      margin: 0;
  }
  .bullet-panel h3 {
      margin-bottom: 30px;
  }
  .cursor{
      cursor:pointer;
  }
  .aanbod-loader {
      width: 45px;
      height: 40px;
      background: linear-gradient(#555 calc(1*100%/6),#fff 0 calc(3*100%/6),#555 0),
                linear-gradient(#555 calc(2*100%/6),#fff 0 calc(4*100%/6),#555 0),
                linear-gradient(#555 calc(3*100%/6),#fff 0 calc(5*100%/6),#555 0);
      background-size: 10px 400%;
      background-repeat: no-repeat;
      animation: matrix 1s infinite linear;
    }
    @keyframes matrix {
      0% {
        background-position: 0% 100%, 50% 100%, 100% 100%
      }
    
      100% {
        background-position: 0% 0%, 50% 0%, 100% 0%
      }
    }
    .load_aanbod{
      justify-content: center;
      display: flex;
      column-gap: 30px;
      align-items: center;
      color: #fff;
    }
  @media (max-width: 991px) {
      .form-1, .form-2 {
          padding: 0 !important;
      }
  }
  .radio_filter .form-check-input {
      display: none;
  }
  .aanbod-dtl-right-slide-top .common-btn{
      background-color: #fbb969;
      border-color: #fbb969;
  }
  
  .carpass-img {
      width: 115px;
  }
  body .error_cls,
  body .success_cls {
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
  }
  .privacy_section {
    padding: 150px 0 50px;
  }
.privacy_section p strong {
    color: rgba(255, 255, 255, 0.50);
}
.formError {
    z-index: 1 !important;
}
.home-gallery-sec .swiper-slide, .exp-dtl-slider-sec .swiper-slide{
	cursor:pointer;
}
.home-service-sec .swiper-slide{
    cursor: pointer;
}
.read_more_btn{
    max-width: max-content;
    font-family: 'widescreenex_regular';
    border: 1px solid rgba(246, 246, 246, 0.45);
    padding: 14px;
    border-radius: 100px;
    color: #fff;
    font-size: 1.6rem;
    line-height: normal;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-transform: none;
    background: transparent;
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.exp-dtl-top-txt{
    overflow: hidden;
    position:relative;
}
.show_full_text{
    overflow: visible;
}
.exp-dtl-top-txt:after{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    content: "";
    background: linear-gradient(0deg, #131313 0%, rgba(19, 19, 19, 0.74) 47.83%, rgba(19, 19, 19, 0.00) 100%);
    pointer-events: none;
    z-index: 0;
}
.show_full_text:after{
    display:none;
}
.show_full_text .read_more_btn{
    position: initial;
}