header {background: #fff;}
.header-top .nav.nav-fill li {display: flex;font-size: 14px;font-weight: 500;padding: 0 5px;align-items: center;}
.header-top  .nav.nav-fill li .bi {font-size: 18px;}
.header-top  .nav.nav-fill li a {display: flex;align-items: center;gap: 5px;}
.header-top .nav.nav-fill li .btn {padding: 10px 15px;font-size: 14px;background: transparent;color: #000;text-transform: uppercase;}
.header-top {padding: 7px 0;border-bottom: 1px solid #ddd;}

/* header Section*/
.ml-auto {
    margin-left: auto;
}


#header {
    position: relative;
    /* transition: 0.4s transform; */
    gap: 2.5rem;
    margin: 0rem 0px;
}

/* #header .container {
	padding-bottom: 20px;
} */

.top--bar-Nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2rem;
    padding-block: 0.2rem;
    -webkit-box-shadow: 0px 0.010rem 0.25rem 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0.010rem 0.25rem 0px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* transition: 0.4s all ease; */
    height: 0;
}

.sub--Sub-menu {
    position: absolute;
    background-color: var(--dc-white);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s all ease;
    top: 100%;
    z-index: 1000000;
    left: 0rem;
    transform: translate(0, -10%);
    width: 100%;
    overflow: hidden;
    box-shadow: 0.1875rem 0.25rem 0.375rem rgba(0, 0, 0, 0.25);
}

.navbar-main{
    display: flex;
    margin-left: 2rem;
    position: relative;
}

.navbar-main:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 22px;
    background-color: #e6e6e6;
    left: -1rem;
    margin: 0rem 0px;
    top: 0;
}


.navbar-main ul{
    display: flex;
    gap: 2rem;
}

.navbar-main ul li a{
    color: #808080;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    /* transition: all 0.3s ease-in-out; */
}

.logo img {
	align-self: center;
}

.top--bar-right ul {
    display: flex;
    gap: 0.8rem;
}

#header.fixed-top{
    background: var(--dc-white);
    position: fixed;
    top: 0;
    width: 100%;
    /* z-index: 10000000; */
    width: 100%;
    position: fixed;
    top: 0%;
    -webkit-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
    z-index: 9999;
    -webkit-box-shadow: 0px 0.071rem 0.31rem 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0.071rem 0.31rem 0px rgba(0, 0, 0, 0.2);
}

#header.fixed-top  .top--bar-Nav{
    opacity: 1;
    height: auto;
}

#header.fixed-top  .container {
	padding-bottom: 0px;
}

#header .container{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#header .container.custom{
        flex-direction: column;
}


#header .logo {
    padding: 0rem 0;
    max-width: 28rem;
    display: flex;
    transition: none;
}

#header.fixed-top .logo{
/*   max-width: 10rem;*/
   display: flex;
   justify-content: center;
   align-items: center;
} 


#header .header-right {
    display: flex;
    height: 5.4375rem;
    gap: 6.5rem;
    align-items: center;
}

#header .fixed-logo {
    display: none;
}

#header.fixed-top .unfixed-logo {
    display: none;
}

#header.fixed-top .fixed-logo {
    display: block;
}

#header.fixed-top .header-right {
	display: flex;
	height: 6rem;
	gap: 6.5rem;
	align-items: center;
}

/*header.scrolled {
    position: fixed;
    top: -100%;
    transform: translateY(-100%);
    left: 0;
    width: 100%;
}
*/



@keyframes slide-down{
     0%{ opacity: 1; -webkit-transform: translateY(-100%); transform: translateY(-100%);}
    100%{ opacity: 1; -webkit-transform: translateY(0); transform: translateY(0);} 
} 


@keyframes marquee{
0%{left:0;}
100%{left:-100%;}
}



#header .header-right .btn-container {
    display: flex;
    align-items: center;
}

.ct-menu{
    height: 100%;
    display: flex;
}

.ct-menu ul {
    display: flex;
    align-items: center;
    gap: 1rem;

}
.ct-menu ul li {
   height: 100%;
    display: flex;
    align-items: center;
}


.ct-menu ul li:hover .triangle.down{
	border: 1px solid #f100d7;
    border-width: 0 0 1px 1px;
    width: 10px;
    height: 10px;
    line-height: 0;
    font-size: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    display: inline-block;
    float: right;
    margin-top: 8px;
    margin-left: 0px;
}

#header.fixed-top .ct-menu ul li {
  /*  height: 5.4375rem; */
}
.ct-menu ul li .nav-link {
    color: var(--dc-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #f100d7 10%, #ff1f2f 20%, #f25349 30%, #b3d676 40%, #0000ff 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
}

.ct-menu ul li .nav-link.active {
    background-position: 0%;
}

.ct-menu ul li .nav-link:hover{
     background-position: 0%; 
}

.ct-menu ul li .triangle.down {
    border: 1px solid var(--dc-secondary);
    border-width: 0 0 1px 1px;
    width: 10px;
    height: 10px;
    line-height: 0;
    font-size: 0;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-45deg);
    display: inline-block;
    float: right;
    margin-top: -5px;
    margin-left: 0px;
}


.btn-basic {
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
	padding: 12px 20px;
}

.btn-basic-black {
	background-color: transparent;
	color: #000;
	border-radius: 10px;
	border: 1px solid #000;
}

.fixed-top .btn-basic-black {
	background-color: #000;
	color: #fff;
}


.btn-border-none{
    border: 2px solid #000;  
    color: #000;
    border-radius: 10px;
}

.btn-basic.btn-basic-black:hover,
.btn-basic.btn-border-none:hover,
.btn:hover {
    background: var(--dc-primary) !important;
    border-color: var(--dc-primary) !important;;
    color: #fff !important;
}

/* header Section The End*/


/* Sub Menu Section*/

.sub-menu {
    position: absolute;
    background-color: rgb(255 245 244 / 81%);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s all ease;
    top: 100%;
    /*z-index: 1000000;*/
    z-index: 99;
    left: 0rem;
    transform: translate(0, -10%);
    width: 100%;
    overflow: hidden;
    box-shadow: 0.1875rem 0.15rem 0.375rem rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

#header.fixed-top .sub-menu {
    background-color: #fff !important;
}

.ct-menu ul li.nav-item.active .sub-menu{
    pointer-events:  all;
    opacity: 1;
    transform: translate(0, 0);
}


.ct-menu-panel--column_left {
    padding: 2.5rem 1.5625rem 2.5rem 0.9375rem;
    width: 25rem;
    position: relative;
}


.ct-menu-panel--column_left:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 85%;
    background-color: #e6e6e6;
    right: -1rem;
    margin: 2rem 0px;
    top: 0;
}


.whatNewBox {
     background: transparent;
    border-radius: 10px;
    box-shadow: 0px 0.071rem 0.71rem 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0.071rem 0.71rem 0px rgb(0 0 0 / 10%);
    padding: 1.5rem;
}

.whatNewBox span{
    font-size: 1rem;
    font-weight: 600;
    color: var(--dc-secondary);
    position: relative;
}

.whatNewBox span:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0%;
    width: 100%;
    height: 2px;
    background: var(--dc-primary);
    transform: translate(-50%, -50%);
    margin-bottom: -0.5rem;
}

.whatNewBox p {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--dc-secondary);
    line-height: 1.4rem;
    padding: 1.3rem 0rem 0rem;
}


.ct-menu-panel--column_menu-col{
    padding: 2.5rem 0rem 0.3125rem 0.9375rem;
    width: 75rem;

}

.open-menu {
	padding-left: 20px;
}

.open-menu ol {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.open-menu ol li {
    margin-bottom: 2rem;
    height: auto;
    margin-right: 2rem;
}


.open-menu ol li span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dc-secondary);
    position: relative;
    display: block;
}


.open-menu ol li span:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0%;
    width: 100%;
    height: 2px;
    background: var(--dc-primary);
    transform: translate(-50%, -50%);
    margin-bottom: -0.5rem;
}


.open-menu ol li p{
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--dc-secondary);
    line-height: 1.4rem;
    padding: 1.3rem 0rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 5.1rem;
    overflow: hidden;
}

/* Sub Menu Section The end*/

  

/* clutterbreak Section*/
.gradientBg {
    background: rgb(243,91,73);
    background: linear-gradient(0deg, rgba(243,91,73,1) 0%, rgba(248,174,69,1) 50%, rgba(118,185,149,1) 100%);
}


.innpage .clutterbreakMain{
    padding-block: 5.8rem;
    position:relative;
}


.sec-heading{
    text-align: center;
}

.buttonwripper {
    display: flex;
    justify-content: center;
}



.clutterbreakMain .sec-heading{
  
    max-width:750px;
    margin:0 auto;
}
.clutterbreakMain .sec-heading h2 { 
    color:var(--dc-white);
}


.clutterbreakMain .sec-heading h5 {
    font-weight: 500;
    color: var(--dc-secondary);
    line-height: 2.1rem;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:1rem;
    margin-top: 1rem;
   
}

/* .clutterbreakMain .sec-heading .btn-basic-black{
    font-size: 0.937vw;
    font-weight:400;
    padding:1rem 2rem;
} */

/* clutterbreak Section The End*/



.sub-menu {
    padding: 30px 0;
    background-color: #fff !important;
}

.sub-menu .open-menu {
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    width: 100%;
}

.sub-menu .open-menu li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px 20px 10px 0;
    height: 100px;
    margin-bottom: 20px;

}

.sub-menu .open-menu li a .icon-menu img {
    max-width: 40px;
    margin-top: -8px;
}

.sub-menu .open-menu li a {
    display: flex;
    align-content: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
}

.min-cnt {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    line-height: 20px;
}




/* Footer Section*/
footer .footer-container {
    max-width: 100vw;
    padding: 1.6rem 0rem 3.4375rem;
    border-top: 10px solid var(--dc-primary);
}

footer .footer-container .footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 1.5625rem;
}


footer .footer-container .footer-flex .footer-col{
    max-width: 21rem;
    padding-top: 2.8125rem;
}


footer .footer-container .footer-flex .footer-col p{
    font-size: 0.9rem;
    color: var(--dc-secondary);
    line-height: normal;
}


.footer-col .logo img {
    padding-block-end: 1rem;
    max-width: 15rem;
}


footer .partner-logo{
   gap: 0.3rem;
    padding-top: 1.3rem!important;
    padding-bottom: 0.7rem!important;
    justify-content:flex-start;
}

footer .partner-logo li{
    max-width:100%;
    flex:100%;
    width:62px;
}
 

 footer .partner-logo li:nth-child(3) {
    max-width: 23%;
    flex: 0 0 23%;
}

footer .partner-logo li:last-child {
    display: none;
}
 

footer .title {
    color: var(--dc-secondary);
    font-weight: 600;
    font-size:1rem;
    text-transform: uppercase;
    position: relative;
}

.iso-img .dimension-img:before {
    padding-top: 18%;
}

.iso-img .dimension-img img {
    margin: 0!important;
}


footer .footer-link{
    margin-top: 1.2rem;
}


footer .footer-link a {
    color: var(--dc-secondary);
    font-size: 0.9rem;
    line-height: 47px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #f100d7 10%, #ff1f2f 20%, #f25349 30%, #b3d676 40%, #0000ff 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
}

footer .footer-link a:hover {
    background-position: 0%;
}

.footerBottom .linegradient{
  height: 2px;
    clip-path: polygon(0 43%, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    bottom: 5rem;
    right: 0;
    left: 0;
    z-index: -1;
    background: rgb(241,0,215);
    background: radial-gradient(circle, rgba(241,0,215,1) 0%, rgba(255,31,47,1) 15%, rgba(242,83,73,1) 33%, rgba(255,169,63,1) 49%, rgba(179,214,118,1) 63%, rgba(0,134,202,1) 83%, rgba(0,0,255,1) 100%);
}



.footerBottom .footer-container-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.6rem;
}


.copyright p {
    color: var(--dc-secondary);
    font-size: 0.8rem;
    font-weight: 400;
}



.footermenu ul {
    display: flex;
    gap: 1.8125rem;
}



.footermenu ul li a {
    color: var(--dc-secondary);
    font-size: 0.8rem;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #f100d7 10%, #ff1f2f 20%, #f25349 30%, #b3d676 40%, #0000ff 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
}

.footermenu ul li a:hover{
       background-position: 0%; 
}



.footerSocialIcon ul {
    display: flex;
    gap: 0.6rem;
}



.footerSocialIcon li a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out 0s!important;
    background-image: url(../images/header-sprite.png);
    background-repeat: no-repeat;
}

.footersocialIcon li a img {
    width: 26px;
    height: 26px;
}
 

.footerSocialIcon li a.facebook {
    background-position: -162px -10px;
}

.footerSocialIcon li a.twitter {
    background-position: -191px -10px;
}

.footerSocialIcon li a.instagram {
    background-position: -279px -10px;
}

.footerSocialIcon li a.linkedin {
    background-position: -220px -10px;
}


.footerSocialIcon li a.youtube {
    background-position: -250px -10px;
}


        .chatBox {
            position: fixed;
            z-index: 95;
            right: 12px;
            top: 50%;
            width: 55px;
            height: 55px;
            border-radius: 100px;
            cursor: pointer;
            background: linear-gradient(124deg, rgb(210 52 160) 0%, rgb(0 255 36) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-50%);
        }
        .chatIcon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #3f2e88;
            border-radius: 100px;
        }
        .chatIcon img {
            width: 26px;
            height: 19px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
       .chatButton {
            display: flex;
            position: absolute;
            top: -42px;
            right: 0px;
            background-color: #ff4240;
            padding: 4px 8px;
            border-radius: 4px;
        }
        #buttonOn {
            display: none;
        }
        .live-shop {
            background-color: transparent;
            border: 0px;
            color: #fff;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 400;
            cursor: pointer;
            z-index: 5;
        }






    .chatIcon .pulse {
        position: absolute;
        display: block !important;
        top: 0px;
        background: #ff4e6d;
        width: 14px;
        height: 14px;
        border-radius: 100%;
        right: 2px;
    }
    .chatIcon .pulse.two {
        position: absolute;
        display: block !important;
        left: 50%;
        top: 50%;
        opacity: 0;
        background: #fff;
        width: 16px;
        height: 16px;
        border-radius: 25px;
        transform: translate(-50%, -50%);
        animation-name: popin-animate-pulse;
        animation-iteration-count: infinite;
        animation-duration: 2s;
        z-index: 3
    }
    @keyframes popin-animate-pulse {
        0% {
            opacity: .8;
            transform: translate(-50%, -50%) scale(1)
        }

        50% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(3)
        }

        to {
            opacity: 0;
            transform: translate(-50%, -50%) scale(3)
        }
    }
    .joinDemo {
        position: absolute;
        display: none;
        top: 50%;
        right: calc(100% + 5px);
        padding: 4px 8px;
        background: #3f2e88;
        color: #ffffff;
        font-size: 14px;
        white-space: nowrap;
        border-radius: 4px;
        box-shadow: 0 .125rem .25rem #00000013;
        transform: translateY(-50%)
    }
    .joinDemo:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        height: 0;
        width: 0;
        border-top: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #3f2e88;
        transform: translateY(-50%)
    }

    .chatBox:hover .joinDemo {
        display: block;
        animation: popin-animate-slide-in .5s ease-in-out
    }

    @keyframes popin-animate-slide-in {
        0% {
            opacity: 0;
            top: 80%
        }

        to {
            opacity: 1;
            top: 50%
        }
    }
/* Footer Section The End*/


/*innpage-top-banner--full-width Section*/
.innpage-top-banner--full-width {
    padding-block-end: 6rem;
    padding-block-start: 3rem;
}

/* 
.innpage-top h1{
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 5rem;
}
*/

.innpage-top p{
    margin-block: 1.5rem;
/*    font-size: 1.5rem;*/
    font-weight: 400;
    line-height: 2.1rem;
}


.innpage-top .buttonwripper {
    justify-content: center;
    gap: 1rem;
}

.innpage-top img{
    margin-top: 5rem;
}

/*
.innpage-top h2{
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 5rem;
}
*/

/*innpage-top-banner--full-width Section The End*/

/*sketching Section*/
.sketchingfive {
    position: absolute;
    right: -6%;
    transform: rotate(16deg);
    top: -402px;
    z-index:1;  
}

@media(max-width: 1600px){
.sketchingfive {
  right: -9%;
  top: -259px;
  width: 340px;
}
}

/*sketching Section The End*/


/*Responsive work*/
@media only screen and (min-width:1600px) and (max-width:1918px){

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

.innpage .clutterbreakMain{
    padding-block: 4.8rem;
}

#header .logo {
    max-width: 16rem;
}

 



} 





@media only screen and (min-width:1441px) and (max-width:1600px){

.ct-menu ul li .nav-link{
  font-size: 1rem;
}


.open-menu ol li {
    margin-right: 1rem;
}

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}


/* Footer Section*/

.clutterbreakMain {
    padding-block: 6.8rem;
}

.clutterbreakMain .sec-heading p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2.0rem;
}

.sketchingfive {
    position: absolute;
    right: -7%;
    transform: rotate(16deg);
    top: -309px;
    width: 400px;
}

/* Footer Section The End */


/*4. */
/* .container {
    max-width: 73rem;
} */

#header .logo {
    max-width: 16rem;
}




#header .header-right {
    gap: 1.5rem;
    height: 3.4375rem;
}

#header.fixed-top .header-right {
    gap: 1.5rem;
    height: 3.4375rem;
}

.cntStrip {
    font-size: 16px;
}

.header-top .nav.nav-fill li .btn{
    padding: 6px 15px;
}

}



@media only screen and (min-width:1366px) and (max-width:1440px){

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

.open-menu ol li {
    margin-right: 1rem;
}

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}

/* Footer Section*/

.clutterbreakMain {
    padding-block: 6.8rem;
}

.clutterbreakMain .sec-heading p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2.0rem;
}

.sketchingfive {
    position: absolute;
    right: -7%;
    transform: rotate(16deg);
    top: -309px;
    width: 400px;
}

/* Footer Section The End */

/*4. */
/* .container {
    max-width: 73rem;
} */

#header .logo {
    max-width: 12rem;
}


#header .header-right{
  gap: 1.5rem;
  height: 3.4375rem;
}

#header.fixed-top .header-right {
  gap: 1.5rem;
  height: 3.4375rem;
}

.cntStrip {
    font-size: 16px;
}

.header-top .nav.nav-fill li .btn{
    padding: 6px 15px;
}

.btn-basic {
    padding: 0.99rem 2.25rem;
}
.footer-col .logo img {
	padding-block-end: 1rem;
	max-width: 11rem;
}
footer .footer-link a {
	color: var(--dc-secondary);
	font-size: 0.9rem;
	line-height: 21px;
	padding: 10px 0;
	display: inline-block;
}
footer .footer-container .footer-flex .footer-col:first-child {
	max-width: 17rem;
}
footer .footer-container .footer-flex .footer-col {
	max-width: 12rem;
	padding-top: 2.8125rem;
}
/*4.4 The End*/

}


@media only screen and (min-width:1024px) and (max-width:1365px){

.ct-menu ul {
    gap: 1rem;
}


.ct-menu ul li .nav-link{
  font-size: 0.8rem;
}

.open-menu ol li {
margin-right: 0.55rem;
}

/*

.innpage .big-font {
    font-size: 3.1rem;
    line-height: 4.0rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}


#header .logo {
    max-width: 16rem;
}

.header-top .nav.nav-fill li .btn {
    padding: 6px 15px;
}

/*
.btn-basic {
    padding: 0.99rem 2.25rem;
}
*/


/* Footer Section*/

.clutterbreakMain {
    padding-block: 4.8rem;
}

.clutterbreakMain .sec-heading p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2.0rem;
}

.sketchingfive {
    position: absolute;
    right: -7%;
    transform: rotate(16deg);
    top: -309px;
    width: 400px;
}

/* Footer Section The End */


/*4. */
/* .container {
    max-width: 67rem;
} */

#header .logo {
    max-width: 9rem;
}


/*
.big-font {
    font-size: 3.125rem;
    line-height: 4rem;
}
*/

#header .header-right{
  gap: 2.5rem;
  height: 3.438rem;
}

#header.fixed-top .header-right{
    gap: 2.5rem;
    height: 3.438rem;
}

/*
.btn-basic {
    padding: 0.99rem 2.25rem;
}
*/

/*4.4 The End*/
footer .partner-logo {
	max-width: 240px;
}
footer .container {
	max-width: 90vw;
}
.footermenu ul {
	display: flex;
	gap: 0.5rem;
}
}



@media only screen and (min-width:992px) and (max-width:1023px){

#header .header-right {
    gap: 1rem;
}

.ct-menu ul {
    gap: 1.1rem;
}

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

/*
.big-font {
    font-size: 3.3rem;
    line-height: 4.1rem; 
}
*/

/*
.innpage .big-font {
    font-size: 2.9rem;
    line-height: 3.5rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.1rem;
}

.container {
    max-width: 94vw;
}

#header .logo {
    max-width: 13rem;
}

.btn-basic {
    padding: 0.99rem 1.05rem;
}

.fixedquote .quoteIcon {
    height: 60px;
}

/* Footer Section*/

.clutterbreakMain {
    padding-block: 4.8rem;
}

.clutterbreakMain .sec-heading p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2.0rem;
}

.sketchingfive {
	position: absolute;
	right: -7%;
	transform: rotate(4deg);
	top: -229px;
	width: 290px;
}

.footermenu ul {
    gap: 1.0125rem;
}

.footerSocialIcon ul {
    gap: 0.3rem;
}

/* Footer Section The End */



}


@media(max-width:991px){


.iso-img {
    width: 100%;
}
    
.iso-img .dimension-img img {
    margin: auto!important;
}
    
.iso-img .dimension-img:before {
    padding-top: 8%;
}    
    
#header .header-right {
    gap: 1rem;
    height: 3.1375rem;
}

.ct-menu ul {
    gap: 1.0rem;
}

.navbar-main ul {
    gap: 0.875rem;
}

.navbar-main ul li a{
   font-size: 0.8rem;
}

.ct-menu ul li .nav-link{
    font-size: 0.875rem;
}

/*
.big-font {
	font-size: 1.8rem;
	line-height: 2.4rem;
	margin-bottom: 1rem;
}
*/

/*
.innpage .big-font {
    font-size: 2.5rem;
    line-height: 3.1rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.1rem;
}


.container {
    max-width: 94vw;
}

#header .logo {
    max-width: 8rem;
}

#header.fixed-top .logo {
    max-width: 7rem;
}

.btn-basic {
	padding: 0.53rem 0.8rem;
	font-size: 14px;
	font-weight: 600;
}

.fixedquote .quoteIcon {
    height: 60px;
}

/* Footer Section*/

footer .footer-container {
    padding: 1.4375rem 0rem;
}

footer .footer-container .footer-flex{
        flex-wrap: wrap;
}

footer .footer-container .footer-flex .footer-col.footer-col-info {
    max-width: 100%;
    flex: 0 0 100%;
    border-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-container .footer-flex .footer-col p{
    text-align: center;
    line-height: 1.6rem;
}

.dream-partner-logo {
    margin-block-start: 2rem;
    margin-block-end: 0.7rem;
}

.dream-partner-logo li {
    max-width: 4rem;
}

footer .footer-link a {
	line-height: 35px;
}

.footerSocialIcon {
    padding: 0.89rem 0rem;
}

.copyright p {
    padding: 0.85rem 0rem;
}

.footerBottom .footer-container-inner{
    flex-direction: column;
    padding-block: 1.6rem;
}

.clutterbreakMain {
    padding-block: 4.8rem;
}

.clutterbreakMain .sec-heading p {
	margin-bottom: 1.3rem;
	font-size: 1rem;
	line-height: 1.6rem;
}

.sketchingfive {
	position: absolute;
	right: -7%;
	transform: rotate(16deg);
	top: -219px;
	width: 280px;
}

.footermenu ul {
    gap: 0.8125rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footerSocialIcon ul {
    gap: 0.7rem;
}

.footerSocialIcon li a {
    width: 40px;
    height: 40px;
}
     
    
.footerSocialIcon li a.facebook {
    background-position: 0px -408px;
}
    
.footerSocialIcon li a.twitter {
    background-position: -58px -408px;
}
    
.footerSocialIcon li a.instagram {
    background-position: -115px -408px;
}
    
.footerSocialIcon li a.linkedin {
    background-position: -173px -408px;
}
    
.footerSocialIcon li a.youtube {
    background-position: -230px -408px;
}    

/* Footer Section The End */




}

@media(max-width:1279px){
.underline-text span::after {
    height: 5px;
    bottom: 5px;
}
}


@media(max-width:767px){

.underline-text span::after {
    height: 4px;
    bottom: 5px;
}
.mobileShow {
    display: block;
}
.desktopshow {
    display: none;
}
.container {
/*	max-width: 400px;*/
	padding: 0px 15px;
}

#header .container {
    padding-bottom: 0px;
}
.mobile-header {
	padding: 15px 0;
}
.w-100 {
	width: 100% !important;
}
.mobile-logo img {
	max-width: 190px;
}

.big-font br{
    display: none;
}

/*
.innpage .big-font {
    font-size: 1.875rem;
    line-height: 2.5rem;
}
*/

.innpage .big-font br{
    display: none;
}

.innpage .clutterbreakMain{
    padding-block: 4.1rem;
}

.innpage .clutterbreakMain br {
	display: none;
}

.sketchingfive {
	right: -12%;
	top: -110px;
	width: 140px;
	transform: rotate(2deg);
}

.clutterbreakMain .sec-heading p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
}

.clutterbreakMain .sec-heading p br{
    display: none;
}

/*Mobile Device Menu work*/

.mobile-header {
/*    background: var(--dc-white);
    -webkit-box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.2);*/
}

.navbar-toggler {
    width: 45px;
    height: 35px;
    line-height: 0;
    z-index: 999;
    color: #f6bf16;
    background-color: var(--dc-secondary);
    border-radius: 10px;
    padding: 0px 0px;
    margin: 0rem 0rem 0rem auto;
    border: 0;
}

.navbar-toggler-icon {
    width: 20px;
    height: 2px;
    display: block;
    background-color: var(--dc-white);
    margin: 5px auto;
    font-size: 0;
}


.mobile-menu-div {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--dc-white);
    /*transition: all 600ms linear 0s;
    transform: translateX(100%);
    display: flex;*/
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    overflow: auto;
}

.mobile-menu-div.active {
    /*-webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);*/
    display: flex;
    height: 100vh;
    /*border-top: 1px solid #dedede;*/
}

/*.navbar-toggler.active .navbar-toggler-icon:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: 2px 6px;
}
.navbar-toggler.active .navbar-toggler-icon:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.active .navbar-toggler-icon:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: 2px -3px;
}
.navbar-toggler-icon {
    transition: all 0.5s ease-out;
}*/

.mobile-menu-inner {
    width: 100%;
}


.mobile-menu-header {
    padding: 15px 0px;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.2);
    /*display: none;*/
}


.mobile-menu {
    padding: 15px;
    height: 79vh;
    overflow-y: scroll;
}

.mobile-menu li {
    border-bottom: 1px solid #ececec;
    position: relative;
}

.mobile-sub-menu li:last-child {
    border-bottom: none;
}

.mobile-menu li a {
    font-size: 1rem;
    display: block;
    padding: 1rem 0rem;
    color: var(--dc-secondary);
    font-weight: 500;
}

.mobile-menu li.active > a {
    color: var(--dc-primary);
    padding-left: 0px;
}

.mobile-menu .btn-link, .mobile-menu .arrow {
    position: absolute;
    top: 14px;
    right: 0px;
    width: 15px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}




.mobile-menu .btn-link:after, .mobile-menu .arrow:after {
    border-top: 2px solid #333;
    z-index: 1;
    border-left: 2px solid #333;
    transform: rotate(226deg);
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
}

/*.mobile-menu li.active .btn-link {
    right: 0px;
    transform: rotate(180deg);
}*/

.mobile-sub-menu {
    display: none;
    width: 100%;
    background: #fff5f4;
    border-radius: 10px;
    height: 100%;
    padding: 15px 20px;
}

.mobile-menu-header .menu-close {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-left: auto;
    display: inline-block;
    background-color: var(--dc-secondary);
    border-radius: 10px;
    width: 45px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}

.mobile-menu-header .menu-close img {
    width: 150px;
}


.mobile-menu-header .menu-close img {
    width: 20px;
}


.mobile-menu .drope-down .mobile-sub-menu li {
    border: 0;
    display: flex;
    align-items: center;
}

.mobile-menu .drope-down .mobile-sub-menu li a {
    font-weight: normal!important;
    padding: 10px 0px;
}

/*Mobile Device Menu work The End*/

/*footer Menu work */
footer .footer-container .footer-flex .footer-col {
    max-width: 100%;
    flex: 0 0 100%;
        padding: 1.42rem 0rem;
    border-bottom: 1px solid #fcdce1;
}

footer .footer-container .footer-flex .footer-col:last-child{
       border-bottom: 0px solid #fcdce1;
}



footer .title:after {
    border-top: 2px solid var(--dc-secondary);
    z-index: 1;
    border-left: 2px solid var(--dc-secondary);
    transform: rotate(224deg);
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: 20px;
    transition: all 0.2s ease-in 0s;
}

footer .title.active::after {
    transform: rotate(45deg);
}

footer .footer-col-inner {
    max-width: 100%;
    margin: 0;
}


footer .footer-container .footer-flex {
    gap: 0rem;
}

.footermenu ul li a{
        padding: 0rem 0.5rem;
}

.order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.clutterbreakMain {
    padding-block: 2.8rem;
}

.copyright{
    order: 3;
}

/*footer Menu work The End*/
    
.iso-img .dimension-img:before {
    padding-top: 18%;
}
    
footer .partner-logo {
    flex-wrap: nowrap;
}

}

.footer-col .logo .dimension-img::before {
  content: "";
  display: block;
  padding-top: 19%;
}
.footer-col .logo img {
    margin: 0;
}


@media (max-width: 991px){
.footer-col .logo .dimension-img::before {
    padding-top: 7%;
}
.footer-col .logo img {
  margin: auto;
}
.footer-container .logo {
    width: 100%;
}
}
@media (max-width: 767px){
.footer-col .logo .dimension-img::before {
    padding-top: 15%;
}
}


/*Responsive work The End*/



    @media(max-width:1024px){
    .mobile-menu-header .container {
        max-width: 94vw;
        width: 100%;
        display: flex;
    }
    footer .footer-link {
        margin-top: 1.2rem;
        display: none;
    }
    
    #header {
        display: none;
    }
    .underline-text span::after {
        height: 4px;
        bottom: 5px;
    }
    .mobileShow {
        display: block;
    }
    .desktopshow {
        display: none;
    }
    
    #header .container {
        padding-bottom: 0px;
    }
    .mobile-header {
        padding: 15px 0;
    }
    .w-100 {
        width: 100% !important;
    }
    .mobile-logo img {
        max-width: 190px;
    }
    
    .big-font {
        font-size: 2.125rem;
        line-height: 2.7rem;
        margin-bottom: 1rem;
    }
    
    .big-font br{
        display: none;
    }
    
    .innpage .big-font {
        font-size: 1.875rem;
        line-height: 2.5rem;
    }
    
    .innpage .big-font br{
        display: none;
    }
    
    .innpage .clutterbreakMain{
        padding-block: 4.1rem;
    }
    
    
    .sketchingfive {
        right: -12%;
        top: -110px;
        width: 140px;
        transform: rotate(2deg);
    }
    
    .clutterbreakMain .sec-heading p {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.6rem;
        font-weight: 400;
    }
    
    .clutterbreakMain .sec-heading p br{
        display: none;
    }
    
    /*Mobile Device Menu work*/
    
    .mobile-header {
    /*    background: var(--dc-white);
        -webkit-box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.2);*/
    }
    
    .navbar-toggler {
        width: 45px;
        height: 35px;
        line-height: 0;
        z-index: 999;
        color: #f6bf16;
        background-color: var(--dc-secondary);
        border-radius: 10px;
        padding: 0px 0px;
        margin: 0rem 0rem 0rem auto;
        border: 0;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 2px;
        display: block;
        background-color: var(--dc-white);
        margin: 5px auto;
        font-size: 0;
    }
    
    
    .mobile-menu-div {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: var(--dc-white);
        /*transition: all 600ms linear 0s;
        transform: translateX(100%);
        display: flex;*/
        display: none;
        flex-wrap: wrap;
        justify-content: center;
        overflow: auto;
    }
    
    .mobile-menu-div.active {
        /*-webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);*/
        display: flex;
        height: 100vh;
        /*border-top: 1px solid #dedede;*/
    }
    
    /*.navbar-toggler.active .navbar-toggler-icon:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 2px 6px;
    }
    .navbar-toggler.active .navbar-toggler-icon:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler.active .navbar-toggler-icon:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 2px -3px;
    }
    .navbar-toggler-icon {
        transition: all 0.5s ease-out;
    }*/
    
    .mobile-menu-inner {
        width: 100%;
    }
    
    
    .mobile-menu-header {
        padding: 15px 0px;
        display: flex;
        align-items: center;
        -webkit-box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0.071rem 0.71rem 0px rgba(0, 0, 0, 0.2);
        /*display: none;*/
    }
    
    
    .mobile-menu {
        padding: 15px;
        height: 79vh;
        overflow-y: scroll;
    }
    
    .mobile-menu li {
        border-bottom: 1px solid #ececec;
        position: relative;
    }
    
    .mobile-sub-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu li a {
        font-size: 1rem;
        display: block;
        padding: 1rem 0rem;
        color: var(--dc-secondary);
        font-weight: 500;
         display: flex;
    }

  .mobile-menu li .icon-menu{
    width: 45px;
    height: 45px;
    margin-right: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .min-cnt {
    margin-top: 0px;
    line-height: normal;
}
    
    .mobile-menu li.active > a {
        color: var(--dc-primary);
        padding-left: 0px;
    }
    
.mobile-menu .btn-link, .mobile-menu .arrow {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 100%;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 999;
    cursor: pointer;
}
    

.mobile-menu .drope-downs.active .btn-link:after{
    transform: rotate(45deg);
}
    
    
    
    .mobile-menu .btn-link:after, .mobile-menu .arrow:after {
        border-top: 2px solid #333;
        z-index: 1;
        border-left: 2px solid #333;
        transform: rotate(226deg);
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
    }
    
/*    .mobile-menu li.active .btn-link {
        right: 0px;
        transform: rotate(180deg);
        height: 30px;
        top: 15px;
    }*/
    
    .mobile-sub-menu {
        display: none;
        width: 100%;
        background: #fff5f4;
        border-radius: 10px;
        height: 100%;
        padding: 15px 20px;
    }
    
    .mobile-menu-header .menu-close {
        font-size: 24px;
        font-weight: bold;
        color: #333;
        margin-left: auto;
        display: inline-block;
        background-color: var(--dc-secondary);
        border-radius: 10px;
        width: 45px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top:0px;
    }
    
    .mobile-menu-header .menu-close img {
        width: 150px;
    }
    
    
    .mobile-menu-header .menu-close img {
        width: 20px;
    }
    
    
    .mobile-menu .drope-down .mobile-sub-menu li {
        border: 0;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu .drope-down .mobile-sub-menu li a {
        font-weight: normal!important;
        padding: 10px 0px;
    }
    
    /*Mobile Device Menu work The End*/
    
    /*footer Menu work */
    footer .footer-container .footer-flex .footer-col {
        max-width: 100%;
        flex: 0 0 100%;
            padding: 1.42rem 0rem;
        border-bottom: 1px solid #fcdce1;
    }
    
    footer .footer-container .footer-flex .footer-col:last-child{
           border-bottom: 0px solid #fcdce1;
    }
    
    
    
    footer .title:after {
        border-top: 2px solid var(--dc-secondary);
        z-index: 1;
        border-left: 2px solid var(--dc-secondary);
        transform: rotate(224deg);
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        right: 20px;
        transition: all 0.2s ease-in 0s;
    }
    
    footer .title.active::after {
        transform: rotate(45deg);
    }
    
    footer .footer-col-inner {
        max-width: 100%;
        margin: 0;
    }
    
    
    footer .footer-container .footer-flex {
        gap: 0rem;
    }
    
    .footermenu ul li a{
            padding: 0rem 0.5rem;
    }
    
    .order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    
    .order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    
    .order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    
    .clutterbreakMain {
        padding-block: 2.8rem;
    }
    
    /*footer Menu work The End*/
    
    
    
    }
    
    
    /*Responsive work The End*/
    
    
    
    
    .fix-body {
        overflow: hidden;
    }


@media(max-width: 1599px){
#header .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 90vw;
}
}

@media(max-width: 767px){
.mobile-show-footer {
    display: flex!important;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    background: var(--dc-primary);
}


.mobile-show-footer .left-msf, .mobile-show-footer .right-msf  {
    transition: transform .1s linear,opacity 80ms linear;
    height: 60px;
    animation: 250ms intercom-lightweight-app-launcher;
    line-height: 50px;
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #fff;
}

.mobile-show-footer a {
    border-radius: 50px;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footerBottom {padding-bottom: 50px;}


}