@import url(paperlogy-font.css);
:root{
    --white-color:#fff;
    --black-color:#0A0A0A;
    --blue-color:#1368F4;
    --border-color:#E9E9E9;
    --gradient-bg: radial-gradient(circle,rgba(15, 94, 224, 1) 0%, rgba(0, 52, 137, 1) 58%);
    --font-pretendred: 'Pretendard', sans-serif;
    --font-Paperlogy:  'Paperlogy', sans-serif;
    
}
body{
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--font-pretendred);
    letter-spacing: -1px;
}
.container{
    max-width: 1280px;
    width: 100%;
}

.gradient-text{
    font-family: var(--font-Paperlogy);
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    -webkit-background-clip: text;   
    -webkit-text-fill-color: transparent;
    background-clip: text;         
    color: transparent;
    font-weight: bolder;
    letter-spacing: -1px; 
}
  
       
         
/************* Header CSS ******************/
.header{
    background-color: var(--black-color);
    width: 100%;
    height: 76px;
    left: 0;
    z-index: 999;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}
.header.fixed{
    background-color: #000;
    position: fixed;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}
.header nav.navbar.navbar-expand-lg {
    padding: 13px 0;
}
.header .navbar-nav .nav-link{
    padding: 14px;
}
.header .navbar-nav .nav-link,.header .navbar-nav .nav-link.active, .header .navbar-nav .nav-link.show {
    color: var(--white-color);
    font-family: var(--font-pretendard);
    font-weight: 600;
}
.header .header-button-wrap {
    display: flex;
    gap: 16px;
}
.header-button-wrap a.btn-primary{
    color: var(--white-color);
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    background-size: 100%;
    width: 88;
    height: 35;
    opacity: 1;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    gap: 10px;
    border-radius: 4px;
    border: 0;
    font-family: var(--font-Paperlogy);
    font-weight: 700;

}
.header-button-wrap a.btn-primary:hover{
    background-size: 200% 0;
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
}
.CryptoMenuNavigation .navbar-nav{
    margin-right: 14px;
}
.header button.navbar-toggler {
    font-size: 36px;
    color: #fff;
    padding: 0;
    border: 0;
    box-shadow: none;
    position: absolute;
    right: 10px;
}
.header button.navbar-toggler:focus{
 box-shadow: none;
 border: 0;
}

/****************** Hero Section CSS *********************/
section.HomeheroSection{
    position: relative;
    z-index: 8;
    padding: 10% 0;
    background-image: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    text-align: center;
}
section.HomeheroSection:before{
    content: "";
    height: 100%;
    width: 100%;
    background-color: #222222d3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.HeroTopSection,.HeroBottomSection
 {
    position: relative;
    z-index: 11;
}
section.HomeheroSection h1{
    color: var(--white-color);  
     margin-bottom: 20px; 
     font-size: 32px;
    font-weight: 600;
    letter-spacing: -2px;
}
section.HomeheroSection h1 span{
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    -webkit-background-clip: text;   /* Chrome, Safari */
    -webkit-text-fill-color: transparent;
    background-clip: text;           /* Standard */
    color: transparent;              /* Fallback */
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: var(--font-Paperlogy);

}
section.HomeheroSection p{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-weight: 500;
}
section.HomeheroSection a.HeroSectionBtn{
    background-color: #ff0000;
    color: var(--white-color);
    text-decoration: none;
    padding: 2px 8px;
    color: #FFFF00;

}
.HeroBottomSection {
    margin-top: 50px;
}
.slick-initialized .slick-slide > div {
    margin: 0 10px;
}
.slick-slide img {
    display: block;
    width: 100%;
    height: auto;
}
.slick-initialized .slick-slide img{
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0;
    border: 0;
    margin-top: 20px;
}
ul.slick-dots li button{
    height: 12px;
    width: 12px;
    background-color: var(--white-color);
    opacity: .5;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
ul.slick-dots li.slick-active button{
    height: 12px;
    width: 36px;
    background-color: var(--white-color);
    opacity: 1;
}
button.slick-arrow {
 height: 48px;
 width: 48px;
 border: 0;
 position: absolute;
 top: 50%;
 z-index: 11;
 border-radius: 50%;
 -webkit-border-radius: 50%;
 -moz-border-radius: 50%;
 -ms-border-radius: 50%;
 -o-border-radius: 50%;
 transform: translate(0%, -70%);
 -webkit-transform: translate(0%, -70%);
 -moz-transform: translate(0%, -70%);
 -ms-transform: translate(0%, -70%);
 -o-transform: translate(0%, -70%);
}
button.slick-prev.slick-arrow {
    left: -15px;
}

button.slick-next.slick-arrow {
    right: -15px;
}

/***************** CleanAvengersStartupCostSection *******************/
.CleanAvengersStartupCostSection {
 position: relative;
    z-index: 8;
    padding: 10% 0;
    background-image: url(../images/cleanavengers/CleanAvengersStartupCostSectionbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    background-attachment: fixed;
}
.CleanAvengersStartupCostSection:before{
    content: "";
    height: 100%;
    width: 100%;
    background-color: #fffffff0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.CleanAvengersStartupCostSection .container{
    position: relative;
    z-index: 11;
}
.CleanAvengersStartupCostWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.CleanAvengersStartupCostWrap .CleanAvengersStartupCostBox h2{
    font-family: var(--font-Paperlogy);
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
  -webkit-background-clip: text;   
  -webkit-text-fill-color: transparent;
  background-clip: text;         
  color: transparent;
  font-size: 48px;
  font-weight: 700;
   letter-spacing: -1px;        
}
.CleanAvengersStartupCostBox ul{
    list-style: none;
    color: #808080;
    margin: 0;
    padding: 12px;
    margin-top: -67px;
}
.CleanAvengersStartupCostWrap .CleanAvengersStartupCostBox h3{
    font-family: var(--font-pretendred);
    color: var(--black-color);
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -2px;

}
img.img-fluid.CleanAvengersStartupCostsImg {
    height: auto;
    width: auto;
}

/*********************** A cleaning business Section  CSS ***************/

.AcleaningbusinessSection {
 position: relative;
    z-index: 8;
    padding: 130px 0;
    background-image: url(../images/cleaningbusiness-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.AcleaningbusinessSection:before{
    content: "";
    height: 100%;
    width: 100%;
    background-color: #fffffff0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.AcleaningbusinessSection .container{
    position: relative;
    z-index: 11;
}
.AcleaningbusinessSection h2{
font-family: var(--font-Paperlogy);
font-size: 48px;
font-weight: 700;
letter-spacing: -1px;
text-align: center;
}
.AcleaningbusinessSection h3{
font-family: var(--font-pretendred);
font-size: 32px;
font-weight: 600;
letter-spacing: -1px;
text-align: center;
color: var(--black-color);
}
.AcleaningbusinessSection p{
font-family: var(--font-pretendred);
font-size: 20px;
font-weight: 500;
letter-spacing: -1px;
text-align: center;
color: #808080;
}
.AcleaningbusinessGridWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.AcleaningbusinessBox {
  background: #ffffffe7;
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.3s ease;
    border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  box-shadow: 0px 8px 16px 0px #0000001F;

}

.AcleaningbusinessBox:hover {
  transform: translateY(-5px);
}

.AcleaningbusinessTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #808080;
  font-family: var(--font-pretendred);
  letter-spacing: -2px; 
}

.cleaningbusinessAmount {
    display: block;
    font-family: var(--font-Paperlogy);
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    -webkit-background-clip: text;   
    -webkit-text-fill-color: transparent;
    background-clip: text;         
    color: transparent;
    font-weight: bolder;
    letter-spacing: -2px; 
}

.cleaningbusinessPercentage {
  display: block;
  font-size: 36px;
  font-family: var(--font-Paperlogy);
  font-weight: 700;
  color: #f00;
  letter-spacing: -3px; 
}
/***************************CostsRecoveredSection *********************************/


.CostsRecoveredSection {
 position: relative;
    z-index: 8;
    padding: 130px 0;
    background-image: url(../images/CostsRecoveredBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.CostsRecoveredSection:before{
    content: "";
    height: 100%;
    width: 100%;
    background-color: #222222e0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.CostsRecoveredSection .container{
    position: relative;
    z-index: 11;
}
.CostsRecoveredMobile{
    display: none;
}

.CostsRecoveredSection h2{
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-Paperlogy);
    letter-spacing: -1px;
}

.CostsRecoveredSection  h3{
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-pretendard);
    letter-spacing: -1px;
    margin-bottom: 70px;
    color: var(--white-color);
}
.CostsRecoveredmiddleSection {
    margin-top: 100px;
}
.CostsRecoveredList{
    margin: 0;
    padding: 0;
    list-style: none;
}
.CostsRecoveredList li{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -2px;
    padding: 24px 32px;
    background-color: var(--white-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 16px;
}
.CostsRecoveredList li:last-child{
    margin-bottom: 0;
}
.CostsRecoveredList li span{
    color: #f00;
    margin-left: 20px;
}
.CostsRecoveredbottomSection{
    margin-top: 60px;
}
/***************************** Business item Video Section ****************************/

.BusinessitemVideoSection{
background-color: #f5f5f5;
padding: 130px 0;
}
.BusinessitemVideoSection h2{
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-Paperlogy);
    letter-spacing: -1px;
}
.BusinessitemVideoSection h3{
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-pretendard);
    letter-spacing: -2px;
}
.BusinessitemVideoSection p{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
    text-align: center;
    color: #808080;
    margin-bottom: 40px;
}

.video-player-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

.main-video iframe {
  width: 930px;
  height: 538px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-thumb iframe {
  width: 305px;
  height: 171px;
  cursor: pointer;
  pointer-events: none;
    border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.video-thumb {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 305px;
}

/* .video-thumb:hover {
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
} */




/***************************** Professional Training Section ****************************/

.ProfessionalTrainingSection {
 position: relative;
    z-index: 8;
    padding: 130px 0;
    background-image: url(../images/ProfessionalTrainingSection-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}
.ProfessionalTrainingSection:before{
    content: "";
    height: 100%;
    width: 100%;
    background-color: #222222E5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.ProfessionalTrainingSection .container{
    position: relative;
    z-index: 11;
}
.ProfessionalTrainingSection h2{
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    font-family: var(--font-Paperlogy);
}
.ProfessionalTrainingGridWrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 70px;
    margin-bottom: 130px;
}
.ProfessionalTrainingGridWrap .ProfessionalTrainingGridBox{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 2s ease;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
}
.ProfessionalTrainingGridWrap .ProfessionalTrainingGridBox img {
  transition: transform 2s ease;
  -webkit-transition: transform 2s ease;
  -moz-transition: transform 2s ease;
  -ms-transition: transform 2s ease;
  -o-transition: transform 2s ease;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ProfessionalTrainingGridWrap .ProfessionalTrainingGridBox:hover img {
      transition: transform 2s ease;
  -webkit-transition: transform 2s ease;
  -moz-transition: transform 2s ease;
  -ms-transition: transform 2s ease;
  -o-transition: transform 2s ease;
  transform: scale(1.1); 
}
.ProfessionalTrainingGridBoxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, #000000 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.4s ease; 
}



.ProfessionalTrainingGridBoxOverlay h4 {
    position: relative;
    z-index: 11;
    transform: translate(0%, 0%);
    /*correctedsyntax*/margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    font-family: var(--font-pretendard);
    letter-spacing: -1px; 
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.ProfessionalTrainingGridBoxOverlay:hover h4 {
    background: linear-gradient(80deg, #07BBEE 0%, #54E852 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: translate(0%, -20%);
    -webkit-transform: translate(0%, -20%);
    -moz-transform: translate(0%, -20%);
    -ms-transform: translate(0%, -20%);
    -o-transform: translate(0%, -20%);
}

/******************* proffesional Education CSS *****************/
h2.EducationalBenefitsheading {
font-size: 48px;
font-weight: 700;
font-family: var(--font-Paperlogy);
}
.EducationalBenefitsWrap{
   display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 70px;
}
.EducationalBenefitsGridBox{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: transform 0.3s ease;
}
.EducationalBenefitsGridBox:hover{
    transition: transform 0.3s ease;
   box-shadow: 0 10px 10px rgb(255 255 255 / 21%);
}
.EducationalBenefitsGridBox .EducationalBenefitsiconBox img{
    transition: transform 0.3s ease;
}
.EducationalBenefitsGridBox:hover .EducationalBenefitsiconBox img{
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
.EducationalBenefitsTextBox {
    text-align: center;
    width: 60%;
}
.EducationalBenefitsTextBox .EducationalBenefitsTitlegray{
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #808080;
    font-family: var(--font-pretendard);

}
.EducationalBenefitsTextBox .gradient-text{
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: var(--font-Paperlogy);
}

/************************** ContactUsSection ***********************/
.form-control{
    min-height: 60px;
    padding: 16px 24px;
    border: 1px solid #7A7A7A;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-pretendard);
    letter-spacing: -1px;
    color: #7a7a7a;
}
.form-check-input{
    background-color: #7a7a7a;
    border:0;
    height: 20px;
    width: 20px;
    margin-right: 8px;
    position: relative;
    z-index: 2;
}

/* Hide the default checkbox */
.form-check input[type="checkbox"] + label:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 6px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background-color: #7a7a7a;
    position: absolute;
    left: -23px;
}
/* Checked state with gradient */
.form-check input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    border: none;
}
/* Check icon */
.form-check input[type="checkbox"]:checked + label::after {
content: "\2713";
color: #fff;
font-size: 16px;
position: absolute;
top: 10px;
left: -9px;
transform: translate(-50%, -50%);
font-weight: bold;
height: 20px;
width: 20px;
display: inline-flex;
}

.form-check-input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
label.form-check-label {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-pretendred);
    letter-spacing: -2px;
    color: var(--black-color);
    position: relative;
        padding-left: 5px;
}
.ContactUsSection{
    padding: 100px 0;
}
.ContactUsSection h2{
    font-size: 48px;
    font-family: var(--font-Paperlogy);    
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 30px;
}
.ContactUsSection h3{
    font-size: 32px;
    font-family: var(--font-pretendred);    
    letter-spacing: -2px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}
.ContactUsSection .form-group{
    margin-bottom: 20px;
}
.ContactUsSection .form-control{
    min-height: 60px;
    padding: 16px 24px;
    border: 1px solid #7A7A7A;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(224 255 226);
}
.ContactUsSection .form-check-input{
    background-color: #7a7a7a;
    border: 0;
    height: 20px;
    width: 20px;
    margin-right: 8px;
    display: none;
}

.ContactUsSection .form-check {
    display: flex;
    align-items: center;
}
label.form-check-label a{
 color: var(--black-color);
 text-decoration: none;
}
label.form-check-label a:hover{
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.submit-btn-wrap {
    text-align: right;
}
.submit-btn-wrap .btn-primary{
     max-width: 210px;
     text-align: center;
     width: 100%;
     padding: 12px 24px;
     background-color: #7A7A7A;
     border: 0;
     font-size: 24px;
     font-weight: 700;
     font-family: var(--font-pretendred);
     letter-spacing: -2px;
     border-radius: 8px;
     -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     -ms-border-radius: 8px;
     -o-border-radius: 8px;
     transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
.submit-btn-wrap .btn-primary[disabled] {
    background-color: #7A7A7A;
    opacity: 1;
}
.submit-btn-wrap .btn-primary.btn-gradient{
        background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
.thankyouwrap{
    height: calc(100vh - 150px);
}
.thankyou h1{
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-Paperlogy);
    margin-bottom: 20px;
}
.thankyou p{
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-pretendred);
    margin-bottom: 20px;
}
.thankyou  a.go-to-back{
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 24px;
    max-width: 646px;
    width: 100%;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.policy{
    height: calc(100vh - 150px);
    margin-top: 60px;
}

.policy h2{
    font-family: var(--font-pretendred);
    font-weight: 700;
    font-size: 18px;
    margin-top: 16px;
}
.policy p{
    font-family: var(--font-pretendred);
    font-weight: 500;
    font-size: 16px;
    margin-top: 4px;
}
/************************** Footer CSS ***********************/
footer{
    background: #F5F5F5;
    padding-top: 68px;
    padding-bottom: 200px;
}
footer h4{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}
address ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr) ;
    gap: 6px;   
    list-style: none;
    padding: 0;
    margin: 0;
}

address ul li {
    flex: 0 1 auto;       /* auto shrink + wrap allowed */
    white-space: nowrap;  /* हर item ek line में रहेगा */
    font-size: 15px;
    line-height: 1.6;
}
footer address ul li strong{
    margin-right: 10px;
} 
footer  .SocialMeidaLink{
    text-align: end;
}
footer  .SocialMeidaLink a{
    display: inline-block;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: #7a7a7a;
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    font-size: 32px;
    color: var(--white-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    
}
footer  .SocialMeidaLink a:hover{
    background-color: var(--black-color);
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    transform: translateY(-5px);
     transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
footer p.copyright-text{
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-pretendard);
    letter-spacing: -1px;
}

.footerFixedForm {
    position: fixed;
    width: 100%;
    bottom: 30px;
    z-index: 99;
}
.footerFixedFormWrap {
    background-color: var(--white-color);
    padding: 24px 32px;
    box-shadow: 0px 0px 24px 0px #32D4967A;
        border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.footerFixedFormWrap h2{
    font-size: 24px;
    font-family: var(--font-pretendard);
    letter-spacing: -1px;
    font-weight: 700;
}
.footerFixedFormWrap h2 span{
        letter-spacing: -1px;
        font-weight: 700;
        display: inline-block;
}
.footerFixedFormWrap  form {
    display: none;
    display: grid;
     grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.footerFixedFormWrap .leftBox  .fieldWrap{
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.footerFixedFormWrap .leftBox {
    width: 115%;
}
.footerFixedFormWrap .leftBox .form-control {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 18px;
}
.footerFixedFormWrap .rightBox {
    text-align: right;
}
.footerFixedFormWrap .rightBox .form-check .form-check-input {
    float: none;
    margin-left: -1.5em;
    margin-top: 0px;
    margin-right: 2px;
    display: none;
}
.footerFixedFormWrap .rightBox label.form-check-label {
    font-size: 16px;
    letter-spacing: -2px;
    position: relative;
    padding-left: 0px;
}
/* .MobileFixContactWrap{
    display: none;
} */
.MobileFixContactWrap h2{
    font-size: 24px;
    font-family: var(--font-pretendard);
    letter-spacing: -3px;
}
.MobileFixContactWrap h2 span{
    display: inline-block;
    margin-right: 5px;
}

.MobileFixContactWrap{
    display: none;
    text-align: center;
}
.MobileFixContactWrap h2  strong{
    margin-left: 5px;
}
.MobileFixContactWrap .mobileFixedButton{
    max-width: 515px;
    width: 100%;
    background: linear-gradient(135deg, #07BBEE 0%, #54E852 100%);
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.policy h1 {
    font-family: (--font-Paperlogy);
    font-size: 42px;
}

@media (max-width: 1200px) {
button.slick-prev.slick-arrow {
    left: 10px;
}
button.slick-next.slick-arrow {
    right: 10px;
}
.startup-cost-box {
    padding: 20px;
}
.cleaningbusinessAmount {
    font-size: 40px;
}
.cleaningbusinessPercentage {
    font-size: 30px;
}
.AcleaningbusinessTitle {
    font-size: 30px;
    margin-bottom: 5px;
}
.AcleaningbusinessSection,.BusinessitemVideoSection,.ProfessionalTrainingSection {
    padding: 70px 0;

}
.ProfessionalTrainingGridWrap {
    margin-top: 30px;
    margin-bottom: 50px;
}
.EducationalBenefitsWrap {
    margin-top: 30px;
}
.EducationalBenefitsTextBox .gradient-text {
    font-size: 40px;
}
.EducationalBenefitsTextBox .EducationalBenefitsTitlegray {
    font-size: 24px;
    letter-spacing: -2px;
}
label.form-check-label {
    font-size: 16px;
}
.main-video iframe{
    width: 100%;
}
.video-thumb iframe {
    width: 100%;
    height: 171px;
}
.video-thumb {
    width: 100%;
}
}

@media (max-width: 991px) {
.header .header-button-wrap {
    margin-right: 50px;
}
.header .navbar-nav .nav-link, .header .navbar-nav .nav-link.active, .header .navbar-nav .nav-link.show {
    color: var(--black-color);
}
ul.navbar-nav.ms-auto {
    text-align: right;
}
section.HomeheroSection h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -2px;
}
section.HomeheroSection h1 span {
    font-size: 40px;
    letter-spacing: -2px;
}
section.HomeheroSection p {
    font-size: 16px;
    letter-spacing: -1px;
    line-height: 1.4;
}
.slick-slider {
    padding: 0 40px;
}
.CleanAvengersStartupCostWrap {
    grid-template-columns: 1fr;
    gap: 10px;
}
.CleanAvengersStartupCostBox {
    text-align: center;
}
.CleanAvengersStartupCostBox img{
    width: 100px;
    height: 100px;
}
.CleanAvengersStartupCostWrap .CleanAvengersStartupCostBox h2 {
font-size: 40px;
}
.CleanAvengersStartupCostWrap .CleanAvengersStartupCostBox h3 {
font-size: 28px;
}
.CleanAvengersStartupCostSection {
    background-position: center bottom;
    background-attachment:scroll;
}
.startup-cost-box {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.startup-cost-box .startup-grid {
    width: 100%;
    height: auto;
}
.CleanAvengersStartupCostBox ul {
    margin-top: 40px;
}
.CostsRecoveredSectionTopTextWrap{
    text-align: center;
}
.CostsRecoveredList li {
    font-size: 17px;
    padding: 13px 17px;

}
img.CostsRecoveredDesktop {
    margin: auto;
}
/* .CostsRecoveredMobile {
    display: block;
    margin: auto;
} */
.AcleaningbusinessSection h2 {
    font-size: 40px;
}
.AcleaningbusinessSection h3 {
    font-size: 28px;
}
.AcleaningbusinessSection p {
    font-size: 14px;
}
.AcleaningbusinessGridWrap{
    grid-template-columns: repeat(2, 1fr);
}
}
/* Responsive */
@media (max-width: 991px) {
h2{
    font-size: 40px;
}
.offcanvas {
    max-width: 325px;
}
.header .navbar-nav .nav-link {
    padding: 14px 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Pretendard';
}
  .video-player-container {
    grid-template-columns: 1fr;
  }

  .main-video iframe {
    height: 396px;
  }
  .video-playlist {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.video-thumb iframe {
    height: 123px;
}
.video-player-container {
    gap: 10px;
}
.ProfessionalTrainingSection h2 {
    font-size: 40px;
}
.ProfessionalTrainingGridWrap {
    gap: 10px;
}
.CostsRecoveredSection {
    padding: 70px 0;
}
.CostsRecoveredmiddleSection {
    margin-top: 60px;
}
.CostsRecoveredSection h2 {
    font-size: 40px;
}
.CostsRecoveredSection h3 {
    font-size: 28px;
}
h2.EducationalBenefitsheading {
font-size: 40px;
}
.EducationalBenefitsTextBox .EducationalBenefitsTitlegray {
    font-size: 18px;
    letter-spacing: -1px;
}
.EducationalBenefitsTextBox .gradient-text {
    font-size: 36px;
}
.EducationalBenefitsGridBox .EducationalBenefitsiconBox img {
    width: 113px;
}
.EducationalBenefitsWrap {
    gap: 15px;
}
.EducationalBenefitsGridBox {
    padding: 10px;
}
.ContactUsSection .col-lg-6{
    text-align: center;
}
.ContactUsSection .col-lg-6 img{
    margin:  0 auto;
    width: 100px;
}
.ContactUsSection h2{
    font-size: 40px;
    letter-spacing: -2px;
    margin-bottom: 15px;
    text-align: center;
}
.ContactUsSection h3 {
    font-size: 28px;
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 30px;
}
.ContactUsSection {
    padding: 70px 0;
}
.ContactUsSection form {
    max-width: 550px;
    margin: 0 auto;
}
.ProfessionalTrainingGridBoxOverlay h4 {
    margin-bottom: 20px;
    font-size: 28px;
}
.ProfessionalTrainingGridWrap .ProfessionalTrainingGridBox {
    height: 196px;
}
.CostsRecoveredmiddleSection .col-sm-6{
    width: 50%;
}
.thankyouwrap {
    height: calc(100vh - 100px);
}
.thankyou img{
    width: 100px;
    height: 100px;
}
.thankyou h1{
    font-size: 40px;
}
.thankyou p{
    font-size: 20px;
    margin-bottom: 20px;
}
.thankyou  a.go-to-back{
    font-size: 24px;
    margin: 0 auto;
}
.footerFixedFormWrap  form {
    display: none;
}
.footerFixedFormWrap {
    width: 90%;
    margin: 0 auto;
}
.MobileFixContactWrap {
   display: block;
}
}

@media (max-width: 576px) {
h2{
    font-size: 28px;
}
ul.slick-dots li.slick-active button {
    height: 8px;
    width: 24px;
}
.offcanvas {
    max-width: 275px;
}
section.HomeheroSection {
    padding: 80px 0;
}
ul.slick-dots li button {
    height: 8px;
    width: 8px;
}
.slick-slider {
    padding: 0 20px;
}
section.HomeheroSection h1 {
    font-size: 18px;
    margin-bottom: 15px;
}
section.HomeheroSection h1 span {
    font-size: 28px;
}
section.HomeheroSection p {
font-size: 13px;
margin-bottom: 15px;
}
.CostsRecoveredSection h2 {
    font-size: 28px;
}
.CostsRecoveredSection h3 {
    font-size: 18px;
}
.CleanAvengersStartupCostBox img {
    width: 60px;
    height: 60px;
}
.CleanAvengersStartupCostWrap .CleanAvengersStartupCostBox h2 {
    font-size: 28px;
}
    .CleanAvengersStartupCostWrap .CleanAvengersStartupCostBox h3 {
    font-size: 18px;
}
.CleanAvengersStartupCostBox ul{
    font-size: 13px;
}
.startup-grid .item {
    font-size: 13px;
    letter-spacing: -1px;
}
.startup-grid .value {
    font-size: 15px;
}
.startup-grid .total {
    font-size: 17px;
    padding: 8px;
}
.AcleaningbusinessSection h2 {
        font-size: 28px;
}
.AcleaningbusinessSection h3 {
    font-size: 18px;
    letter-spacing: -1px;
}
.AcleaningbusinessTitle {
    font-size: 16px;
    letter-spacing: -1px;
}
.cleaningbusinessAmount {
        font-size: 19px;
}
.cleaningbusinessPercentage {
    font-size: 15px;
    letter-spacing: -1px;
}
.AcleaningbusinessGridWrap {
    gap: 10px;
}
.AcleaningbusinessBox {
    background: #ffffffe7;
    padding: 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.BusinessitemVideoSection h2 {
font-size: 28px;
}
.BusinessitemVideoSection h3 {
font-size: 18px;
}
.BusinessitemVideoSection p {
font-size: 14px;
}
.video-playlist {
    grid-template-columns: repeat(1, 1fr);
}
.main-video iframe {
    height: 197px;
}
    .video-thumb iframe {
    height: 197px;
}
.video-playlist{
display: none;
}
.ProfessionalTrainingGridBoxOverlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, #020202ab 100%);
}
.ProfessionalTrainingSection h2 {
    font-size: 28px;
    width: 70%;
    margin: 0 auto;
}
.ProfessionalTrainingGridWrap {
    grid-template-columns: repeat(1, 1fr);

}
.ProfessionalTrainingGridBoxOverlay h4 {
    font-size: 20px;
    font-weight: 500;
}
.ProfessionalTrainingGridWrap .ProfessionalTrainingGridBox{
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.EducationalBenefitsGridBox {
    flex-direction: column;
    flex-direction: column-reverse;
}
.EducationalBenefitsGridBox .EducationalBenefitsiconBox img {
width: 90px;
}
.EducationalBenefitsTextBox .EducationalBenefitsTitlegray {
    font-size: 13px;
    letter-spacing: -1px;
}
.EducationalBenefitsTextBox .gradient-text {
    font-size: 26px;
}
.EducationalBenefitsGridBox {
gap: 0px;
}
.EducationalBenefitsTextBox {
    text-align: center;
    width: 100%;
}
.EducationalBenefitsTextBox .EducationalBenefitsTitlegray {
    font-size: 13px;
    letter-spacing: -1px;
    margin-bottom: 0px;
}
.ContactUsSection .col-lg-6 img {
    margin: 0 auto;
    width: 60px;
}
.ContactUsSection h2 {
font-size: 28px;
margin-bottom: 10px;
}
.ContactUsSection h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.ContactUsSection .form-control {
    min-height: 46px;
    padding: 12px 20px;
}
.ContactUsSection .form-group {
    margin-bottom: 15px;
}
.ContactUsSection .form-check {
    justify-content: center;
}
.submit-btn-wrap {
    text-align: center;
    margin-top: 15px;
}
.CostsRecoveredList li {
    font-size: 14px;
    padding: 5px 10px;
    margin-bottom: 5px;
}
.thankyou img{
    width: 60px;
    height: 60px;
}
.thankyou h1{
    font-size: 28px;
    margin-bottom: 10px;
}
.thankyou p{
    font-size: 18px;
    margin-bottom: 10px;
}
.thankyou  a.go-to-back{
    font-size: 24px;
}
footer .container > .row:nth-child(1) .col-sm-9{
    order: 2;
}
footer .container> .row:nth-child(1) .col-sm-3{
    order: 1;
}
footer .SocialMeidaLink {
    text-align: start;
    margin-bottom: 15px;
}
.MobileFixContactWrap h2 {
    font-size: 14px;
    letter-spacing: -1px;
}
}