/* 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;
}

.top--bar-right ul li{
    border-right: 1px solid #e6e6e6;
}

.top--bar-right ul li a{
    font-size: 16px;
    color: #333;
    margin: 0 20px;
}

.top--bar-right ul li:last-child {
    border-right: none;
}

.top--bar-right ul li i {
    margin-right: 5px;
    font-size: 20px;
}

#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 .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: 4rem;
	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 ul {
    display: flex;
    align-items: center;
    gap: 3.9rem;

}
.ct-menu ul li {
    height: 7.938rem;
    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: 10px;
}

/*
#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: 10px;
}


.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;
    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;
    max-height: 41vh;
    overflow: auto;
}

.open-menu {
	padding-left: 20px;
}

.open-menu ol {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    align-items:flex-start;
}

.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;
    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: 1.6;
    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*/

/* Footer Mobile fixed Menu Section*/

.mobile-contact{ 
    position:fixed; 
    bottom:0; 
    left:0; 
    right:0;
    width:100%;
    z-index:999;
    display:none;
    justify-content:space-between; 
    flex-wrap:wrap;
    background-color:#3f2e88;
    align-items:center;
   
}


.mobile-contact a{ 
    max-width:50%; 
    flex:0 0 50%;
    text-align:center;
    padding:15px 10px;
    color:#fff;
    font-weight:500;
    border-right:1px solid #fff;
}

.mobile-contact a:last-child{ 
    border:0;
}

/* Footer Mobile fixed Menu Section The End*/


/* Footer Section*/
footer .footer-container {
    max-width: 100rem;
    padding: 1.6rem 0rem 3.4375rem;
}

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: 2rem!important;
    padding-bottom: 0.7rem!important;
    justify-content:flex-start;
    display: flex;
}

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;
}



/* 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;
    left: calc(100% - 40%);
    transform: rotate(16deg);
    top: -402px;
    z-index: 1;
    width: 60%; 
}

.sketchingfive .dimension-img:before {
    padding-top:600px;
}



/*
@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 .big-font {
    font-size: 4rem;
    line-height: 4.5rem;
}
*/ 

.innpage .clutterbreakMain{
    padding-block: 4.8rem;
}

/*4. */
/* .container {
    max-width: 80rem;
} */

#header .logo {
    max-width: 16rem;
}

/*

.big-font {
    font-size: 4.5rem;
    line-height: 6rem;
}
*/
 
#header .header-right{
  gap: 2.5rem;
}

/*4.4 The End*/

} 



@media(max-width:1599px){

.open-menu ol {
    grid-template-columns: repeat(3, 3fr);
}
    
}


@media only screen and (min-width:1441px) and (max-width:1599px){

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

/*
.big-font {
    font-size: 4.2rem;
    line-height: 5.1rem;
}
*/

.open-menu ol li {
    margin-right: 1rem;
}

/*
.innpage .big-font {
    font-size: 3.5rem;
    line-height: 4.3rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}


/* .container {
    max-width: 80rem;
} */


/* 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;
}


/*
.big-font {
    font-size: 4.5rem;
    line-height: 6rem;
}
*/

#header .header-right{
  gap: 2.5rem;
}

/*4.4 The End*/

}



@media only screen and (min-width:1366px) and (max-width:1440px){

#header .header-right {
    gap: 4.5rem;
}

.ct-menu ul {
    gap: 3.1rem;
}

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

.open-menu ol li {
    margin-right: 1rem;
}

/*
.innpage .big-font {
    font-size: 3.5rem;
    line-height: 4.3rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}


/* .container {
    max-width: 80rem;
} */

/* 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;
}


/*
.big-font {
    font-size: 3.75rem;
    line-height: 5rem;
}
*/

#header .header-right{
  gap: 1.5rem;
}

.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: 11rem;
	padding-top: 2.8125rem;
}
/*4.4 The End*/

}


@media only screen and (min-width:1280px) and (max-width:1365px){

#header .header-right {
    gap: 4.5rem;
}

.ct-menu ul {
    gap: 2.1rem;
}

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

.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;
}

/*
.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;
}


    footer .footer-link a {
    font-size: 0.9rem;
    line-height: 21px;
    padding: 7px 0;
    display: inline-block;
    }

/*
.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: 14rem;
}


/*
.big-font {
    font-size: 3.125rem;
    line-height: 4rem;
}
*/

#header .header-right{
  gap: 2.5rem;
}

/*
.btn-basic {
    padding: 0.99rem 2.25rem;
}
*/

/*4.4 The End*/

}


@media only screen and (min-width:1140px) and (max-width:1279px){


footer .footer-link li {
padding-bottom: 10px;
}
footer .footer-link a {
font-size: 0.8rem;
line-height: 20px;
padding: 0px 0;
display: inline-block;
}

.footermenu ul {
    gap: 0.5rem;
}
.ct-menu ul {
    gap: 2.1rem;
}

.ct-menu ul li .nav-link{
  font-size: 1rem;
}

/*
.innpage .big-font {
    font-size: 3.0rem;
    line-height: 3.9rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}

/* .container {
    max-width: 67rem;
} */

#header .logo {
    max-width: 13rem;
}

/* 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: 63rem;
} */

#header .logo {
    max-width: 14rem;
}

/*

.big-font {
    font-size: 3rem;
    line-height: 4rem;
}
*/

#header .header-right{
  gap: 1.5rem;
}

.btn-basic {
    padding: 0.99rem 1.25rem;
}

/*4.4 The End*/

}


@media only screen and (min-width:1024px) and (max-width:1139px){

footer .footer-link li {
padding-bottom: 10px;
}
footer .footer-link a {
font-size: 0.8rem;
line-height: 20px;
padding: 0px 0;
display: inline-block;
}

.footermenu ul {
    gap: 0.5rem;
}

#header .header-right {
    gap: 4rem;
}

.ct-menu ul {
    gap: 2.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: 3.0rem;
    line-height: 3.9rem;
}
*/

.innpage .clutterbreakMain{
    padding-block: 4.5rem;
}



#header .logo {
    max-width: 13rem;
}

.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;
}
*/
    

.sketchingfive {
    left: calc(100% - 35%);
    width: 40%;
}    

.footermenu ul {
    gap: 1.0125rem;
}

.footerSocialIcon ul {
    gap: 0.3rem;
}

/* Footer Section The End */




/*4. */
.container {
    max-width: 90vw;
}

#header .logo {
    max-width: 14rem;
}


/*
.big-font {
    font-size: 3rem;
    line-height: 4rem;
}
*/

#header .header-right{
  gap: 1.5rem;
}

.btn-basic {
    padding: 0.99rem 1.25rem;
}

/*4.4 The End*/



}

@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;
}

footer .footer-link li {
padding-bottom: 10px;
}
footer .footer-link a {
font-size: 0.8rem;
line-height: 20px;
padding: 0px 0;
display: inline-block;
}

/*
.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;
}
*/
    
    
.sketchingfive {
    left: calc(100% - 35%);
    width: 40%;
}        

.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: 1.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;
}
*/
    

.sketchingfive {
    left: calc(100% - 35%);
    width: 40%;
}        

.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: 100%; */
	padding: 0px 0;
}

#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: 2.8rem;
}

.innpage .clutterbreakMain br {
	display: none;
}

/*
.sketchingfive {
	right: -12%;
	top: -110px;
	width: 140px;
	transform: rotate(2deg);
}
*/

    
.sketchingfive {
    left: calc(100% - 35%);
    width: 40%;
    top:-350px;
}    
    
.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;
    left:0%; 
    width: 100%;
    height:100vh;
    z-index: 9999;
    background: var(--dc-white);
    transition: all 600ms linear 0s;
    transform: translateX(100%);
    overflow:hidden;
    visibility:hidden;
  
}

.mobile-menu-div.active {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);   
    visibility:visible; 
}

.fix-body{ 
    padding-right:0;
}

.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: 600;
}

.mobile-menu li .mobile-sub-menu li a {
    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: 280px;
    padding: 15px 20px;
    overflow: auto;
}

.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;
}

/*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%;
}

.mobile-contact {
display: flex;
}
footer {
padding-bottom: 60px;
}

}


/*Responsive work The End*/

