@charset "utf-8";
/* CSS Document */
@import "fonts.css";
@import "animate.css";
@import "font-awesome.min.css";
/***********************************/

.slick-list {
	width: 100%;
	display: inline-block;
}

.main-wrapper {
    width: 100%;
    overflow: hidden;
}
.top-wrapper {
    padding: 20px 0;
    font-size: var(--font-28);
    height: 74px;
    background-color: var(--color-2);
    color: var(--white);
}
.top-wrapper .d-flex > div {
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.top-wrapper p{
    margin-bottom: 0;
}
.top-wrapper .address {
    margin-right: 64px;
    font-family: var(--font-family-3);
    float: left;
}
.top-wrapper .contact-info {
	list-style: none;
	display: flex;
	padding-left: 0;
	margin: 0;
	float: right;
}
.top-wrapper .contact-info li+li {
    margin-left: 64px;
}
.top-wrapper .call, .top-wrapper .email{
    display: flex;
    align-items: center;
}
.top-wrapper .call a, .top-wrapper .email a {
    color: var(--white-color);
}
.top-wrapper .call:before, .top-wrapper .email:before {
    content: "";
    width: 34px;
    height: 34px;
    display: block;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.top-wrapper .call:before{
    background-image: url(../img/icon/phone-icon.svg);
}
.top-wrapper .email:before{
    background-image: url(../img/icon/email-icon-1.svg);
}
/*************/
.navigation-wrapper {
    position: absolute;
    top: 74px;
    z-index: 4;
    left: 0;
    right: 0;
    padding: 50px 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navigation-wrapper.sticky-header {
    position: fixed;
    background-color: rgba(0,0,0,0.70);
    top: 0;
    padding: 20px 0px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.inner .navigation-wrapper {
    background-color: rgba(0, 0, 0, 0.25);
}
.node-type_page .navigation-wrapper.sticky-header{
    background-color: rgba(0,0,0,0.70);
}
.navigation-wrapper .menu-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.menu-wrapper .logo {
    width: 100%;
    max-width: 356px;
}
.menu-wrapper .navbar-collapse {
    align-items: center;
}
.menu-wrapper .navbar {
    padding: 0;
}
.menu-wrapper ul.menu {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.menu-wrapper ul.menu>li{
    margin: 0px 20px;
}
.menu-wrapper ul.menu>li>a {
    color: var(--color-white);
    font-size: var(--font-32);
    line-height: 1;
    padding: 13px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.8px;
}
.menu-wrapper ul.menu>li.dropdown>a:after {
    content: "";
    width: 23px;
    height: 10px;
    display: block;
    margin-left: 26px;
    background-image: url(../img/icon/down-arrow-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.menu-wrapper ul.menu>li>a:hover, .menu-wrapper ul.menu>li>a.is-active{
    color:var(--color-1);
}
.menu-wrapper ul.menu>li>a:hover:after, .menu-wrapper ul.menu>li>a.is-active:after{
    background-image: url(../img/icon/down-arrow-2.png);
}
.menu-wrapper .button-group {
    margin-left: 20px;
}
.menu-wrapper .button-group .btn {
    color: var(--color-white);
    margin: 0;
    min-width: unset;
}
.menu-wrapper .button-group .btn:hover{
    background-color: var(--color-1);
    border-color: var(--color-1);;
}
/***********/
.banner-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.headerBanner {
    overflow: hidden;
}
.headerBanner .banner-img {
    position: relative;
    padding-bottom: 45.25%;
    padding-top: 25px;
    height: 0px;
    overflow: hidden;
}
.headerBanner .banner-img img, .headerBanner .banner-img video, .headerBanner .banner-img iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.headerBanner .banner-img:before, .headerBanner-inner .banner-img:before {
    content: "";
    background-color: var(--color-3);
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: 1;
}
.headerBanner .banner-img:after, .headerBanner-inner .banner-img:after{
    content: "";
    background-image: url(../img/graphics/overlay-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    z-index: 2;
}
.why-us {
    padding-top: 50px;
    padding-bottom: 50px;
}
.why-us .content-box {
    text-align: center;
    max-width: 2140px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    float: none;
}
.why-us .container>.row>div, .why-us .container>.row>div>div>div {
    width: 100%;
}
.why-us .button-group .btn {
    text-transform: uppercase;
    font-family: var(--font-family-2);
    font-weight: var(--weight-bold);
}
.ics-item {
    margin-bottom: 15px;
}

.ics-item>.row {
    margin: 0;
}
.ics-item>.row .col-lg-5, .ics-item>.row .col-lg-7{
    padding-left: 0;
    padding-right: 0;
}
.ics-item .content-link{
    padding: 56px 90px;
    display: block;
}
.viewour-section .content-box {
    background-color: var(--color-6);
}
.viewour-section .img-box{
    background-color: var(--color-4);
}
.viewour-section .ics-item .content-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    position: relative;
}
.viewour-section .ics-item .content-link h2 {
    font-size: var(--font-h2-thumb);
    font-weight: var(--weight-bold);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.ics-item .img-box {
    padding: 13.305%;
    overflow: hidden;
}
.ics-item .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ics-item .content-link .img-content-box{
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.18;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.ics-item .content-box:hover .img-content-box {
    opacity: 0;
}
.ics-item .content-box .img-content-box img{
    object-fit: cover;
    width: 100%;
    height:100%;
}
.our-showroom .content-box {
    text-align: center;
}
.our-showroom .btn {
    margin-top: 10px;
}
/****************/
.mainfooter {
    background-color: var(--color-3);
    color: var(--color-white);
}
.mainfooter .foot-top {
    max-width: 2160px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 150px;
    padding-bottom: 85px;
    align-items: center;
}
.footer-left .footer-logo {
    max-width: 426px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.mainfooter .footer-left {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainfooter .footer-right .form-item div {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.ics-item .content-box:hover a {
    text-decoration: none;
}
.mainfooter .address-line {
    margin-bottom: 40px;
    line-height: 1.2;
}
.address-line h4 {
    font-family: var(--font-family-1);
}
.mainfooter .email {
    margin-bottom: 15px;
}
.social ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.social ul>li>a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}
.social ul>li>a:hover{
    text-decoration: none;
    color: var(--color-1);
}
.social ul>li>a .fa {
    line-height: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-wrap: wrap;
}
.social ul>li>a .fa:before {
    width: 100%;
    height: 100%;
}
.footer-right h2 {
    margin-bottom: 24px;
}
.footer-right h2+p {
    margin-bottom: 32px;
    /*max-width: 980px;*/
}
.footer-right .form-actions {
    text-align: right;
}

.request-quote .footer-right .form-actions {
     width: 100% !important;
    float: right !important;
    padding: 0 !important;
}


.foot-bottom {
    height: 138px;
    background-color: var(--color-2);
    align-items: center;
    padding: 15px 0 15px 0;
}
.cpyright {
    font-size: var(--font-h5);
    color: var(--color-8);
    font-family: var(--font-family-3);
    letter-spacing: normal;
}
.launchedby {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-transform: uppercase;
    font-size: 18.94px;
    color: var(--color-8);
}
.launchedby>div>div>div:not(.contextual-region) {
    display: flex;
    align-items: center;
}
.launchedby p{
    margin-right: 18px;
}
.foot-bottom {
    height: 138px;
    background-color: var(--color-2);
    align-items: center;
    padding: 15px 0 15px 0;
}
.launchedby p {
	margin-right: 18px;
	font-family: var(--font-family-5);
	font-weight: var(--weight-middum);
	float: left;
}
.launchedby img{
    max-width: 237px;
}
/*6-12-2023*/
.image-content-section .container .row > div {
	width: 100%;
}
.ics-item .content-box {
    padding: 0;
}
.background-gold .container .row > div {
	width: 100%;
}
.launchedby > div {
	width: 100%;
}
#block-daze-bottom-logo {
	float: right;
}
/*6-12-2023-end*/
/*8-12-2023*/
/*--inner page css ---*/
.pro-thum>.col-6 {
    background: var(--color-5);
    padding: 0;
}
.pro-thum>.views-field-nothing.col-6 span.field-content {
    display: block;
    width: 100%;
    height: 100%;
    padding: 27.235%;
}
.pro-thum>.views-field-nothing.col-6 img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

header {
	position: relative;
}

.bnr_in_title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding-top: 160px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}
.bnr_in_title h1 {
    color: var(--color-white);
    text-transform: uppercase;
}
/*11-03-2024*/
.row.pro-thum {
	margin: 18px 0px;
	/ display: inline-flex; /
	padding: 0px 5px;
}
/*11-03-2024-end*/
.row.pro-thum:last-child {
    margin-bottom: 36px;
}
.por_con {
    height: 100%;
    position: relative;
    padding: 60px 80px 200px 80px;
}
.por_con h2 {
    text-transform: uppercase;
    margin-bottom: 6px;
}
.por_con p {
    text-align: justify;
}
/*11-03-2024*/
.pr_btn {
	position: absolute;
	bottom: 60px;
	padding: 18px 44px;
	background: var(--color-5);
	color: var(--color-3);
	border: 1px solid var(--color-black);
	display: inline-block;
	left: 30px;
}
/*11-03-2024-end*/
.pr_btn p {
	z-index: 2;
	position: relative;
    text-align: center;
}
.pr_btn::before {
	content: "";
	position: absolute;
	background: var(--color-1);
	width: 18px;
	height: 100%;
	top: 0;
	left: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.pr_btn:hover{
	color:var(--color-5);
	text-decoration:none;
}
.pr_btn:hover::before{
	width: 100%;
}
/*8-12-2023-end*/
/*12-12-2023*/
.menu-wrapper ul.menu .sub-menu {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    background-color: var(--color-1);
    top: 100%;
    padding: 10px 0px;
    min-width: 300px;
}
.menu-wrapper ul.menu .sub-menu>.dropdown-item:hover, .menu-wrapper ul.menu .sub-menu>.dropdown-item:focus, .menu-wrapper ul.menu .sub-menu>.dropdown-item.active{
    background-color: transparent;
}
.menu-wrapper ul.menu .sub-menu > li {
	padding: 0;
	margin: 0;
}
.menu-wrapper ul.menu .sub-menu>li>a {
    font-size: var(--font-28);
    text-align: left;
    justify-content: flex-start;
}
.menu-wrapper ul.menu .sub-menu>li>a:hover, .menu-wrapper ul.menu .sub-menu>.dropdown-item>a.is-active {
    text-decoration: underline;
    color: var(--color-white);
}
#block-daze-primary-local-tasks ul {
	list-style: none;
	margin: 0;
	padding: 0;
	/* width: 100%; */
	/* float: left; */
	margin-bottom: 10px;
}
#block-daze-primary-local-tasks ul li {
	float: left;
}
#block-daze-primary-local-tasks ul li a {
	font-size: 20px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	color: #222;
	background: #eee;
	margin-right: 5px;
}
#block-daze-primary-local-tasks ul li a.is-active, #block-daze-primary-local-tasks ul li a:hover {
	background: #ccc;
}
#block-daze-primary-local-tasks {
	/* float: left; */
	width: 100%;
	display: flex;
}
/*12-12-2023-end*/
/*14-12-2023*/
.content-link p, .content-link a {
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 0;
}
.fa.fa-facebook {
	font-size: 0;
}
.fa-facebook-f::before, .fa-facebook::before {
	font-size: 40px;
}

.footer-right form {
    padding-right: 124px;
}
/*14-12-2023-end*/
/*07-03-2024*/
.about_image .col-lg-6:nth-child(2) {
	padding: 0 !important;
	-ms-flex: 0 0 66.7%;
	flex: 10 0 66.7%;
	max-width: 66.7%;
}
.about_image .col-lg-6:nth-child(3) {
	padding: 0 !important;
	-ms-flex: 0 0 33.3%;
	flex: 0 0 33.3%;
	max-width: 33.3%;
}
#block-daze-views-block-reviews-block-1 {
	text-align: center;
	padding: 60px;
}
.star_img {
	margin-bottom: 50px;
}
.star_img i::before {
	font-size: 60px;
	color: #c5aa70;
}

#block-daze-views-block-reviews-block-1 p {
	margin-bottom: 30px;
}

#block-daze-views-block-reviews-block-1 span {
	margin-bottom: 30px;
	display: block;
}

.views-field.views-field-nothing {
	display: block;
}

.gallery-image-list ul {
	width: 100%;
	float: left;
	list-style: none;
	padding: 60px;
}
.gallery-image-list ul li li {
	list-style: none;
	float: left;
	padding: 0 15px;
	width: 33.333%;
	margin-bottom: 30px;
}
/*07-03-2024-end*/
/*08-03-2024*/

.aboutus_slider .slick-prev, .aboutus_slider .slick-next {
	width: 0;
	height: 0;
	font-size: 0;
	border: 0 none;
}

.aboutus_slider ul.slick-dots {
	bottom: 28px;
}

.aboutus_slider ul.slick-dots button {
	width: 15px;
	height: 15px;
	border: 2px solid #222;
}

.aboutus_slider ul.slick-dots > li {
	margin: 0px 5px;
}
.aboutus_slider ul.slick-dots .slick-active button {
	font-weight: bold;
	border: 3px solid #333;
}
/*08-03-2024-end*/
/*11-03-2-24*/
.aboutus_slider .field-content span {
	font-weight: 600;
}
.node-id_4 .background-gray {
	margin-bottom: 110px;
}
/*11-03-2024-end*/
/*14-03-2024*/
.products-view {
    clear: both;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.text-center h2 {
	text-align: center;
}
.request-quote article .col-12.content-box {
	text-align: center;
	margin-bottom: 50px;
	margin-top: 50px;
}
.request-quote .webform-submission-request-a-quote-form, .request-quote article{
	width: 100%;
	padding: 15px;
	background-color: #efeff0;
	float: left;
}
#webform-submission-request-a-quote-node-18-add-form {
	margin-bottom: 20px;
}
.request-quote .webform-submission-form label {
	color: #333;
}
.request-quote .form-wrapper {
	width: 50%;
	float: left;
	padding: 0 15px;
}
.request-quote .form-wrapper > legend {
	margin: 0;
}
.request-quote .form-item-message {
	width: 50%;
	float: left;
	padding: 0 15px;
}
.request-quote .checkboxes--wrapper {
	width: 100%;
	float: left;
}
.request-quote .form-item {
	display: block;
}
.request-quote .form-required::after {
	content: "*";
}
.request-quote #edit-actions {
	width: 100%;
	border-top: 2px solid #d9d9dc;
	margin-bottom: 60px;
}
.request-quote #edit-actions #edit-submit {
	float: right;
}
.request-quote #edit-message {
	margin-top: 12px;
}
#edit-please-check-all-that-apply--wrapper legend {
	border-bottom: 2px solid #d9d9dc;
	padding-bottom: 9px;
}
/*14-03-2024-end*/
/************/


#edit-please-check-all-that-apply .form-checkbox {
	width: 50px;
	height: 50px;
	position: relative;
	top:13px;
}

.inner_con #block-daze-content {
	margin-bottom: 40px;
	float: left;
	width: 100%;
}
.request-quote .inner_con #block-daze-content {
	margin-bottom: 0;
}

.our-services .pro-thum .col-6:first-child {
	max-width: 53%;
	-ms-flex: 0 0 60%;
	flex: 0 0 53%;
}
.our-services .pro-thum .col-6:last-child {
	max-width: 47%;
	-ms-flex: 0 0 40%;
	flex: 0 0 47%;
}

.headerBanner-inner {
	height:380px;
	width: 100%;
	overflow: hidden;
	background: #ccc;
}

.headerBanner-inner img {
	height:380px;
	width: 100%;
}

.home .why-us {
	margin-bottom: 15px;
}

.headerDesktop{ display: block; }
.headerMobile { display: none; }

@media (min-width: 992px){
    .ics-item .col-lg-5 {
        -ms-flex: 0 0 39.659%;
        flex: 0 0 39.659%;
        max-width: 39.659%;
    }
    .ics-item .col-lg-7{
        -ms-flex: 0 0 60.341%;
        flex: 0 0 60.341%;
        max-width: 60.341%;
    }
    
}
@media (min-width: 1025px){
    .navbar-toggle {
        display: none;
    }
    .collapse:not(.show) {
        display: flex;
    }
    .menu-wrapper ul.menu .dropdown:hover .sub-menu {
        display: block;
    }
    span.dropdownToggle {
        display: none;
    }
}
@media (min-width: 1240px){
    .container{
        max-width: 1230px;
    }
    .mainfooter .foot-top {
        max-width: 1210px;
    }
}
@media (min-width: 1360px){
    .container{
        max-width: 1350px;
    }
    .mainfooter .foot-top {
        max-width: 1330px;
    }
}
@media (min-width: 1440px){
    .container{
        max-width: 1430px;
    }
    .mainfooter .foot-top {
        max-width: 1410px;
    }
}
@media (min-width: 1650px){
    .container{
        max-width: 1630px;
    }
    .mainfooter .foot-top {
        max-width: 1620px;
    }
}
@media (min-width: 1900px){
    .container {
        max-width: 1873px;
    }
    .mainfooter .foot-top {
        max-width: 1696px;
    }
}
@media (min-width: 2300px){
    .container{
        max-width: 2255px;
    }
    .mainfooter .foot-top {
        max-width: 2120px;
    }
}
@media (min-width: 2380px){
    .container {
        max-width: 2350px;
    }   
}
@media (min-width: 2550px){
    .container {
        max-width: 2530px;
    }
}
/*-------06-12-23-----------*/
@media (max-width:2299px) {
    :root {
        --font-h1: 98px;
        --font-h2: 54px;
        --font-h2-thumb: 56px;
        --font-h4: 28px;
        --font-h5: 24px;
        --font-body: 28px;
        --font-32: 26px;
        --font-28: 22px;
    }
    .btn {
        padding: 20px 38px;
        min-width: 406px;
        margin-top: 40px;
    }
    .btn.small {
        padding: 12px 26px;
    }
    .menu-wrapper .logo {
        max-width: 278px;
    }
    .menu-wrapper ul.menu>li {
        margin: 0px 14px;
    }
    .top-wrapper .call:before, .top-wrapper .email:before {
        width: 26px;
        height: 26px;
    }
    .top-wrapper {
        padding: 14px 0;
        height: 58px;
    }
    .navigation-wrapper {
        top: 58px;
        z-index: 4;
        padding: 36px 0;
    }
    .banner-inner .float-logo {
        max-width: 750px;
    }
    .footer-right h2 {
        margin-bottom: 20px;
    }
    .footer-right h2+p {
        margin-bottom: 20px;
        /*max-width: 760px;*/
    }
    .mainfooter .address-line {
        margin-bottom: 30px;
    }
    .footer-left .footer-logo {
        max-width: 342px;
        margin-bottom: 30px;
    }
    .form-item input:not([type="checkbox"]):not([type="radio"]), select, textarea {
        padding: 16px 20px;
        font-size: var(--font-body);
    }
    .form-item input:not([type="checkbox"]):not([type="radio"]), select{
        height: 74px;
    }
    .foot-bottom {
        height: 110px;
        padding: 15px 0 15px 0;
    }
    .mainfooter .foot-top {
        padding-top: 120px;
        padding-bottom: 75px;
    }
    .launchedby {
        font-size: 12.94px;
        line-height: 16.94px;
    }
    .launchedby p {
        margin-right: 12px;
    }
    .launchedby img{
        max-width: 150px;
    }
    .why-us .content-box {
        max-width: 1680px;
    }
    .form-actions input[type="submit"] {
        padding: 20px 38px;
        min-width: 408px;
        margin-top: 15px;
    }
    .por_con {
        padding: 40px 60px 160px 60px;
    }
    .pr_btn {
        bottom: 40px;
    }
}
@media (max-width:1899px) {
    :root {
        --font-h1: 86px;
        --font-h2: 48px;
        --font-h2-thumb: 50px;
        --font-h4: 24px;
        --font-h5: 20px;
        --font-body: 24px;
        --font-32: 22px;
        --font-28: 20px;
    }
    .menu-wrapper ul.menu>li.dropdown>a:after {
        width: 18px;
        height: 8px;
        margin-left: 18px;
    }
    .banner-inner .float-logo {
        max-width: 650px;
    }
    .why-us .content-box {
        max-width: 1496px;
    }
    .footer-left .footer-logo {
        max-width: 290px;
    }
    .footer-right h2+p {
        /*max-width: 750px;*/
    }
    .footer-right form {
        padding-right: 160px;
    }
    .foot-bottom {
        height: 90px;
        padding: 15px 0 15px 0;
    }
    .form-item {
        margin: 10px 0px;
    }
    .por_con {
        padding: 35px 50px 160px 50px;
    }
    .por_con h2>a:hover {
        color: var(--color-1);
    }
    .pr_btn {
        bottom: 35px;
    }
}

@media (max-width:1649px) {
    .menu-wrapper .logo {
        max-width: 216px;
    }
    .top-wrapper {
        padding: 10px 0;
        height: 46px;
    }
    .top-wrapper .address {
        margin-right: 34px;
    }
    .top-wrapper .call:before, .top-wrapper .email:before {
        width: 18px;
        height: 18px;
    }
    .top-wrapper .contact-info li+li {
        margin-left: 40px;
    }
    .navigation-wrapper {
        top: 46px;
        padding: 30px 0;
    }
    .banner-inner .float-logo {
        max-width: 570px;
    }
    .why-us .content-box {
        max-width: 1400px;
        padding: 0 10px;
    }
    .ics-item .content-link {
        padding: 36px 60px;
    }
    .btn.small {
        padding: 10px 20px;
    }
    .menu-wrapper ul.menu>li {
        margin: 0px 10px;
    }
    .form-actions input[type="submit"] {
        padding: 16px 28px;
        min-width: 306px;
        margin-top: 12px;
    }
    .form-item {
        margin: 8px 0px;
    }
    .foot-bottom {
        height: 80px;
        padding: 15px 0 15px 0;
    }
    .bnr_in_title {
        padding-top: 130px;
    }
    .por_con {
        padding: 35px 35px 160px 35px;
    }
    .row.pro-thum {
        margin: 8px 0px;
    }
}
@media (max-width:1439px) {
    :root {
        --font-h1: 70px;
        --font-h2: 38px;
        --font-h2-thumb: 40px;
        --font-h4: 22px;
        --font-h5: 18px;
        --font-body: 20px;
        --font-32: 18px;
        --font-28: 16px;
    }
    h2 {
        margin-bottom: 12px;
    }
    .btn {
        padding: 14px 38px;
        min-width: 286px;
        margin-top: 24px;
    }
    .top-wrapper .contact-info li+li {
        margin-left: 30px;
    }
    .menu-wrapper ul.menu>li {
        margin: 0px 8px;
    }
    .menu-wrapper .button-group {
        margin-left: 14px;
    }
    .menu-wrapper .logo {
        max-width: 200px;
    }
    .banner-inner .float-logo {
        max-width: 536px;
    }
    .why-us {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .why-us .content-box {
        max-width: 1185px;
        padding: 0 15px;
    }
    .footer-right h2{
        margin-bottom: 16px;
    }
    .footer-right h2+p {
        /*max-width: 540px;*/
        margin-bottom: 12px;
    }
    .footer-right form {
        padding-right: 154px;
    }
    .form-item input:not([type="checkbox"]):not([type="radio"]), select {
        padding: 10px 20px;
        height: 56px;
    }
    .form-actions input[type="submit"] {
        padding: 14px 28px;
        min-width: 280px;
    }
    .launchedby img {
        max-width: 136px;
    }
    .footer-left .footer-logo {
        max-width: 240px;
        margin-bottom: 24px;
    }
    .mainfooter .foot-top {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .bnr_in_title {
        padding-top: 125px;
    }
    .por_con {
        padding: 20px 30px 120px 30px;
    }
    .pr_btn {
        bottom: 10px;
        left:10px;
        padding: 14px 36px;
    }
    .pr_btn::before {
        width: 14px;
    }
}
@media (max-width:1359px) {
    .banner-inner .float-logo {
        max-width: 486px;
    }
    .why-us .content-box {
        max-width: 1136px;
    }
}
@media (max-width:1199px) {
    :root {
        --font-h1: 54px;
        --font-h2: 34px;
        --font-h2-thumb: 36px;
        --font-h4: 20px;
        --font-h5: 18px;
        --font-body: 18px;
        --font-32: 16px;
        --font-28: 14px;
    }
    .btn.small {
        padding: 10px 16px;
    }
    .top-wrapper {
        padding: 10px 0;
        height: 40px;
    }
    .navigation-wrapper {
        top: 40px;
        padding: 20px 0;
    }
    .menu-wrapper .logo {
        max-width: 154px;
    }
    .menu-wrapper ul.menu>li {
        margin: 0px 4px;
    }
    .banner-inner .float-logo {
        max-width: 300px;
    }
    .ics-item .content-link {
        padding: 16px 20px;
    }
    .footer-right h2+p {
        /*max-width: 480px;*/
    }
    .footer-right form {
        padding-right: 15px;
    }
    .form-actions input[type="submit"] {
        min-width: 220px;
    }
    .social ul>li>a {
        width: 40px;
        height: 40px;
    }
    .social ul>li>a .fa {
        line-height: 40px;
        height: 40px;
        width: 40px;
    }
    .fa-facebook-f::before, .fa-facebook::before {
        font-size: 30px;
    }
    .mainfooter .address-line {
        margin-bottom: 24px;
    }
    .footer-left .footer-logo {
        max-width: 220px;
    }
    .foot-bottom {
        height: 60px;
        padding: 15px 0 15px 0;
    }
    .bnr_in_title {
        padding-top: 90px;
    }
    .headerBanner-inner .banner-img img {
        height: 470px;
        object-fit: cover;
    }
    .pr_btn {
        padding: 10px 26px;
    }
    .pr_btn::before {
        width: 10px;
    }
}
@media (max-width:1024px) {
    .menu-wrapper .navbar-toggle {
        width: 60px;
        height: 60px;
        background-color: transparent;
        border: 0;
        padding: 0;
        position: absolute;
        right: 15px;
    }
    .menu-wrapper .navbar-toggle > span.icon-bar {
        background-color: red;
        display: block;
        width: 100%;
        height: 6px;
    }
    .menu-wrapper .navbar-toggle.collapsed > span.icon-bar {
        margin: 10px 0;
    }
    .navbar-collapse .menus > ul {
        display: block;
    }
    .navbar-collapse .menus > ul > li, .navigation-wrapper.sticky-header .navbar-collapse .menus > ul > li {
        padding: 5px 10px 5px 10px;
        width: 100%;
    }
    .navbar .navbar-collapse {
        left: auto;
        right: -100%;
        width: 280px;
        position: fixed;
        top: 0;
        background-color: var(--color-3);
        height: 100vh;
        -webkit-transition: right .3s ease-in-out;
        -o-transition: right .3s ease-in-out;
        transition: right .3s ease-in-out;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: normal;
    }
    .navbar .navbar-collapse>.menus {
        overflow: auto;
        /*height: 100vh;*/
        padding: 40px 0px 10px 0px;
        width: 100%;
    }
    .navbar .navbar-collapse .button-group {
        position: relative;
	/*bottom: 30px;*/
	left: 5px;
	right: 0;
    }
    .navbar .navbar-collapse:before, .navbar .navbar-collapse:after {
        display: none;
    }
    .menu-wrapper ul.menu {
        flex-wrap: wrap;
    }
    .menu-wrapper ul.menu>li {
        width: 100%;
        margin: 0;
        padding: 5px 10px 5px 10px;
    }
    .menu-wrapper ul.menu>li>a {
        text-align: left;
        justify-content: flex-start;
        font-size: var(--font-body);
    }
    .navbar .navbar-collapse.show {
        right: 0;
    }
    .navbar .navbar-collapse button.navbar-toggle {
        position: absolute;
        top: 10px;
        left: -65px;
    }
    .menu-wrapper .navbar-toggle:not(.collapsed) > span.icon-bar:first-child {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .menu-wrapper .navbar-toggle > span.icon-bar {
        background-color: #fff;
        display: block;
        width: 100%;
        height: 6px;
    }
    .menu-wrapper .navbar-toggle:not(.collapsed) > span.icon-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-wrapper .navbar-toggle:not(.collapsed) > span.icon-bar:last-child {
        margin-top: -11px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .navbar-collapse ul > li > a {
        font-size: 18px;
        padding: 10px 15px;
        color:#fff;
    }
    .menu-wrapper .navbar {
        padding: 0;
    }
    .menu-wrapper .button-group {
        /*margin: 0 auto;*/
    }
    .menu-wrapper ul.menu .sub-menu {
        position: relative;
        top: 0;
        min-width: 100%;
    }
    .launchedby {
        font-size: 11.94px;
    }	
    .launchedby img {
        max-width: 110px;
    }
    .menu-wrapper ul.menu>li.dropdown>a:after{
        display: none;
    }
    .menu-wrapper ul.menu>li.dropdown span.dropdownToggle {
        font-size: 0;
        width: 40px;
        height: 44px;
        display: block;
        margin-left: 0;
        background-image: url(../img/icon/down-arrow-1.png);
        background-size: 23px;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 5px;
        right: 10px;
    }
    .menu-wrapper ul.menu>li.dropdown span.dropdownToggle.active {
        transform: rotate(180deg);
    }
    .menu-wrapper ul.menu>li.dropdown>a {
        padding-right: 40px;
    }
    /*14-03-2024*/
    .request-quote #edit-message {
	    min-height: inherit;
	    height: 266px;
    }
    
    .por_con {
	padding: 10px;
}
    
    
    /*14-03-2024-end*/
}
@media (max-width:991px) {
    .menu-wrapper ul.menu {
        display: block;
    }
    .menu-wrapper ul.menu > li > a {
        justify-content: left;
    }
    .js-form-type-textarea > div {
        width: 100%;
    }   	
    .cpyright {
        text-align: center;
        margin-bottom: 10px;
    }	
    .launchedby p {
        width: auto;
        float: left;
    }
    .launchedby {
        display: table;
        margin: 0 auto;
    }
    .top-wrapper .contact-info li + li {
        margin-left: 20px;
    }
    .footer-right .form-actions {
    text-align: center;
    width: 100%;
}
    .form-actions input[type="submit"] {
        padding: 16px 18px;
        min-width: 218px;
    }
    .image-content-section .ics-item:nth-child(2n) .row {
        flex-direction: column-reverse;
    }
    .ics-item .img-box {
        padding: 28.305%;
    }
    .foot-bottom {
        height: auto;
        padding: 15px 0 15px 0;
    }
    .pro-thum>.col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-right {
        margin-top: 40px;
    }
        .mainfooter .footer-right {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
    .footer-right>div {
        max-width: 710px;
        margin: 0px auto;
        display: block;
    }
    .footer-right form {
        padding: 0;
    }
    .mainfooter .foot-top {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .space-tb {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    /*11-03-2024*/
    .gallery-image-list ul {
	    padding: 20px 0;
    }
    
  .our-services .pro-thum .col-6:first-child {
	max-width: 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
}
.our-services .pro-thum .col-6:last-child {
	max-width: 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
}  
    
 .ics-item .row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.ics-item .img-box {
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

    .pr_btn {
    	position: relative;
    	bottom: 0;
    	margin-top: 30px;
    	left: 0;
    	width: 100%;
    }

}


@media (max-width:767px) {
  .headerDesktop{ display: none; }
.headerMobile { display: block; }  
.request-quote .form-item-message {
  padding: 0;
}
    
 .request-quote #edit-actions #edit-submit {
  float: none;
} 

.request-quote #edit-actions {
 
  text-align: center;
}
    
    :root {
        --font-h1: 46px;
        --font-h2: 30px;
        --font-h2-thumb: 32px;
        --font-h3: 24px;
        --font-h4: 20px;
        --font-h5: 18px;
        --font-body: 18px;
        --font-32: 16px;
        --font-28: 14px;
    }
    .navbar .navbar-collapse {
        background-color: rgba(0,0,0,1);
    }
    .pro-thum .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /*11-03-2024-end*/
    .por_con {
        padding: 20px 20px 30px 20px;
    }
    .btn-link-3, .btn-link-2 {
        min-width: inherit;
    }
    .headerBanner .banner-img {
        height: 440px;
    }
    .top-wrapper {
        height: 68px;
    }
    .top-wrapper .address {
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    .top-wrapper .call:before, .top-wrapper .email:before {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }
    .top-wrapper .contact-info {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .navigation-wrapper {
        top: 68px;
    }
    .footer-right>div {
        max-width: 516px;
    }
    
    .request-quote .form-wrapper {
	width: 100%;
	padding: 0;
}
.request-quote .form-item-message {
	width: 100%;
}
.request-quote .col-12.content-box {
	margin-bottom: 0px;
}
#edit-please-check-all-that-apply .form-checkbox {
	width: 30px;
	height: 30px;
	top: 3px;
}
#edit-please-check-all-that-apply label {
	display: inline !important;
}
.about_image {
	margin-bottom: 20px;
}




}
@media (max-width: 575px) {
    .footer-right h2+p br {
	display: none;
}
    .menu-wrapper .navbar-toggle {
        width: 50px;
        height: 50px;
    }
    .menu-wrapper .navbar-toggle > span.icon-bar {
        height: 4px;
    }
    .mainfooter .footer-left, .mainfooter .footer-right {
        padding: 0;
    }
    .mainfooter .footer-left, .mainfooter .footer-right {
        padding: 0;
    }
    .viewour-section .ics-item .content-link h2 {
        font-size: var(--font-h3);
    }
    .menu-wrapper .navbar-toggle:not(.collapsed) > span.icon-bar:last-child {
        margin-top: -8px;
    }
    .navbar .navbar-collapse button.navbar-toggle {
        left: -50px;
    }
    /*11-03-2024*/
    .gallery-image-list ul li li {
    	padding: 0 10px;
    	margin-bottom: 20px;
    }
    .star_img i::before {
	font-size: 50px;
	color: #c5aa70;
}
    
    /*11-03-2024-end*/
}
@media (max-width:414px) {
    
    .star_img i::before {
	font-size: 35px;
	color: #c5aa70;
}
    
	.top-wrapper {
	font-size: 12px;
}
.top-wrapper .call::before, .top-wrapper .email::before {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}
.top-wrapper .contact-info li + li {
	margin-left: 10px;
}
.banner-inner .float-logo {
    max-width: 250px;
}	
}
@media (max-width:330px) {
    .star_img i::before {
	font-size: 30px;
	color: #c5aa70;
}
    .navbar .navbar-collapse {
        width: 260px;
    }
}
/*-------06-12-23-end-----------*/
.products-view .views-row-even {
	display: flex;
	flex-direction: row-reverse;
}
/*14-03-2024*/
@media screen and (max-width:1920px){
.request-quote #edit-message {
	min-height: 341px;
}		
}

@media screen and (max-width:1680px){
.request-quote #edit-message {
	min-height:320px;
}		
}

@media screen and (max-width:1600px){
.request-quote #edit-message {
	min-height:314px;
}		
}

@media screen and (max-width:1366px){
.request-quote #edit-message {
	min-height: inherit;
	height: 248px;
}		
}

/*14-03-2024-end*/